* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #e0e0e0;
    line-height: 1.8;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-section {
    padding: 120px 0 60px;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    margin-bottom: 40px;
    border: 1px solid rgba(78, 205, 196, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.03) 0%, rgba(102, 126, 234, 0.03) 100%);
    pointer-events: none;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1, #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-shadow: 0 0 30px rgba(102, 126, 234, 0.3);
    position: relative;
    z-index: 1;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}

.content-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 25px;
    padding: 50px;
    margin: 40px 0;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(78, 205, 196, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
    border-radius: 25px;
    pointer-events: none;
}

.content-section h2 {
    color: #4ecdc4;
    margin-bottom: 25px;
    font-size: 2rem;
    font-weight: 600;
    text-shadow: 0 0 20px rgba(78, 205, 196, 0.3);
    position: relative;
}

.content-section h3 {
    color: #667eea;
    margin: 30px 0 20px;
    font-size: 1.5rem;
    font-weight: 500;
    text-shadow: 0 0 15px rgba(102, 126, 234, 0.2);
}

.highlight-box {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.08), rgba(102, 126, 234, 0.08));
    border-left: 5px solid #4ecdc4;
    padding: 25px;
    margin: 25px 0;
    border-radius: 15px;
    box-shadow: inset 0 0 20px rgba(78, 205, 196, 0.1);
    position: relative;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.03) 0%, rgba(102, 126, 234, 0.03) 100%);
    border-radius: 15px;
    pointer-events: none;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.tool-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(78, 205, 196, 0.12);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.02) 0%, rgba(102, 126, 234, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.tool-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(78, 205, 196, 0.4);
    box-shadow: 0 12px 40px rgba(78, 205, 196, 0.2);
}

.tool-card:hover::before {
    opacity: 1;
}

.tool-card h4 {
    color: #4ecdc4;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(78, 205, 196, 0.3);
}

.free-badge {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    color: white;
    padding: 6px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(78, 205, 196, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.prompt-examples {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 30px;
    margin: 25px 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(78, 205, 196, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.prompt-examples ul {
    list-style: none;
}

.prompt-examples li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    padding-left: 30px;
    transition: all 0.3s ease;
}

.prompt-examples li:hover {
    padding-left: 35px;
    border-bottom-color: rgba(78, 205, 196, 0.2);
}

.prompt-examples li::before {
    content: "💡";
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    opacity: 0.8;
}

.cta-section {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.12), rgba(118, 75, 162, 0.12), rgba(78, 205, 196, 0.08));
    border-radius: 25px;
    margin: 50px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #667eea, #764ba2, #4ecdc4);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.5);
}

.cta-button:hover::before {
    left: 100%;
}

/* ===== BLOG POST NAVIGATION ===== */

.blog-post-nav {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
}

.back-button {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(78, 205, 196, 0.2);
    color: #e0e0e0;
    padding: 12px;
    border-radius: 50%;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    width: 45px;
    height: 45px;
}

.back-button:hover {
    background: rgba(78, 205, 196, 0.2);
    border-color: rgba(78, 205, 196, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78, 205, 196, 0.3);
}

.share-buttons {
    display: flex;
    gap: 10px;
    pointer-events: auto;
}

.share-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(78, 205, 196, 0.2);
    color: #e0e0e0;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.share-btn:hover {
    background: rgba(78, 205, 196, 0.2);
    border-color: rgba(78, 205, 196, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78, 205, 196, 0.3);
}

.share-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* ===== COMPREHENSIVE ELEMENT LIBRARY ===== */

/* ===== TYPOGRAPHY ELEMENTS ===== */

.text-gradient-primary {
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1, #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-secondary {
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb, #f5576c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-glow {
    text-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
}

.text-shadow-soft {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.heading-xl {
    font-size: clamp(3rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.heading-lg {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.heading-md {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.heading-sm {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.body-lg {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.body-md {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.body-sm {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

/* ===== LAYOUT ELEMENTS ===== */

.section-spacing-xl {
    padding: 120px 0;
}

.section-spacing-lg {
    padding: 80px 0;
}

.section-spacing-md {
    padding: 60px 0;
}

.section-spacing-sm {
    padding: 40px 0;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-start {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* ===== CONTENT BLOCKS ===== */

.content-block-1 {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 40px;
    margin: 30px 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(78, 205, 196, 0.1);
    position: relative;
}

.content-block-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.03) 0%, rgba(102, 126, 234, 0.03) 100%);
    border-radius: 20px;
    pointer-events: none;
}

.content-block-2 {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(78, 205, 196, 0.08));
    border-radius: 25px;
    padding: 50px;
    margin: 40px 0;
    border: 1px solid rgba(102, 126, 234, 0.2);
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.1);
    position: relative;
}

.content-block-3 {
    background: rgba(255, 255, 255, 0.01);
    border-radius: 15px;
    padding: 30px;
    margin: 25px 0;
    border: 2px solid transparent;
    background-image: linear-gradient(rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.01)),
                      linear-gradient(135deg, rgba(78, 205, 196, 0.3), rgba(102, 126, 234, 0.3));
    background-origin: border-box;
    background-clip: content-box, border-box;
}

.content-block-4 {
    background: radial-gradient(circle at center, rgba(78, 205, 196, 0.05) 0%, transparent 70%);
    border-radius: 30px;
    padding: 60px;
    margin: 50px 0;
    border: 1px solid rgba(78, 205, 196, 0.15);
    position: relative;
}

.content-block-4::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    border-radius: 20px;
    pointer-events: none;
}

.content-block-5 {
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 20px;
    padding: 45px;
    margin: 35px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 50px rgba(255, 255, 255, 0.05);
}

/* ===== CARD VARIATIONS ===== */

.card-basic {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(78, 205, 196, 0.1);
    transition: all 0.3s ease;
}

.card-basic:hover {
    transform: translateY(-5px);
    border-color: rgba(78, 205, 196, 0.3);
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.1);
}

.card-glass {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(78, 205, 196, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.card-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.02) 0%, rgba(102, 126, 234, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.card-glass:hover::before {
    opacity: 1;
}

.card-gradient {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(78, 205, 196, 0.08));
    border-radius: 20px;
    padding: 35px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    transition: all 0.4s ease;
}

.card-gradient:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.card-minimal {
    background: transparent;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.card-minimal:hover {
    background: rgba(255, 255, 255, 0.01);
    border-color: rgba(78, 205, 196, 0.2);
}

.card-border {
    background: rgba(255, 255, 255, 0.01);
    border-radius: 15px;
    padding: 30px;
    border: 2px solid transparent;
    background-image: linear-gradient(rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.01)),
                      linear-gradient(135deg, rgba(78, 205, 196, 0.4), rgba(102, 126, 234, 0.4));
    background-origin: border-box;
    background-clip: content-box, border-box;
    transition: all 0.3s ease;
}

.card-border:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.2);
}

.card-neumorphic {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.05));
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.2),
                -8px -8px 16px rgba(255, 255, 255, 0.01);
    transition: all 0.3s ease;
}

.card-neumorphic:hover {
    transform: translateY(-2px);
    box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.3),
                -12px -12px 24px rgba(255, 255, 255, 0.02);
}

/* ===== HIGHLIGHT BOXES ===== */

.highlight-primary {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1), rgba(102, 126, 234, 0.05));
    border-left: 4px solid #4ecdc4;
    padding: 25px;
    margin: 25px 0;
    border-radius: 10px;
    position: relative;
}

.highlight-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.02) 0%, rgba(102, 126, 234, 0.02) 100%);
    border-radius: 10px;
    pointer-events: none;
}

.highlight-secondary {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.05));
    border-left: 4px solid #667eea;
    padding: 25px;
    margin: 25px 0;
    border-radius: 10px;
    position: relative;
}

.highlight-warning {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 107, 107, 0.05));
    border-left: 4px solid #ffc107;
    padding: 25px;
    margin: 25px 0;
    border-radius: 10px;
}

.highlight-success {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(78, 205, 196, 0.05));
    border-left: 4px solid #28a745;
    padding: 25px;
    margin: 25px 0;
    border-radius: 10px;
}

.highlight-info {
    background: linear-gradient(135deg, rgba(23, 162, 184, 0.1), rgba(102, 126, 234, 0.05));
    border-left: 4px solid #17a2b8;
    padding: 25px;
    margin: 25px 0;
    border-radius: 10px;
}

.highlight-rounded {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.08), rgba(102, 126, 234, 0.08));
    border-radius: 20px;
    padding: 30px;
    margin: 30px 0;
    border: 1px solid rgba(78, 205, 196, 0.2);
    box-shadow: inset 0 0 20px rgba(78, 205, 196, 0.1);
    position: relative;
}

.highlight-glow {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
    border: 1px solid rgba(78, 205, 196, 0.3);
    box-shadow: 0 0 30px rgba(78, 205, 196, 0.2);
}

/* ===== LIST STYLES ===== */

.list-basic {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.list-basic li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 25px;
}

.list-basic li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4ecdc4;
    font-weight: bold;
}

.list-check {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.list-check li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    padding-left: 30px;
}

.list-check li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4ecdc4;
    font-weight: bold;
    font-size: 1.1rem;
}

.list-numbered {
    list-style: none;
    counter-reset: item;
    padding: 0;
    margin: 20px 0;
}

.list-numbered li {
    counter-increment: item;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    padding-left: 35px;
}

.list-numbered li::before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.1rem;
}

.list-icon {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.list-icon li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    padding-left: 35px;
    transition: all 0.3s ease;
}

.list-icon li:hover {
    padding-left: 40px;
    border-bottom-color: rgba(78, 205, 196, 0.2);
}

.list-icon li::before {
    content: "💡";
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    opacity: 0.8;
}

.list-star {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.list-star li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    padding-left: 30px;
}

.list-star li::before {
    content: "⭐";
    position: absolute;
    left: 0;
    font-size: 1rem;
}

/* ===== BADGE VARIATIONS ===== */

.badge-primary {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(78, 205, 196, 0.3);
}

.badge-secondary {
    background: linear-gradient(135deg, #667eea, #5a67d8);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.badge-success {
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(72, 187, 120, 0.3);
}

.badge-warning {
    background: linear-gradient(135deg, #ed8936, #dd6b20);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(237, 137, 54, 0.3);
}

.badge-outline {
    background: transparent;
    color: #4ecdc4;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid #4ecdc4;
}

.badge-glow {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 0 20px rgba(78, 205, 196, 0.5);
}

/* ===== BUTTON VARIATIONS ===== */

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea, #5a67d8);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 23px;
    background: transparent;
    color: #4ecdc4;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #4ecdc4;
    cursor: pointer;
}

.btn-outline:hover {
    background: #4ecdc4;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.3);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    color: #4ecdc4;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(78, 205, 196, 0.2);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: rgba(78, 205, 196, 0.1);
    border-color: #4ecdc4;
    transform: translateY(-2px);
}

.btn-gradient {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea, #764ba2, #4ecdc4);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-gradient:hover::before {
    left: 100%;
}

/* ===== SPECIAL EFFECTS ===== */

.glow-effect {
    box-shadow: 0 0 30px rgba(78, 205, 196, 0.3);
    transition: box-shadow 0.3s ease;
}

.glow-effect:hover {
    box-shadow: 0 0 50px rgba(78, 205, 196, 0.5);
}

.pulse-effect {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 20px rgba(78, 205, 196, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(78, 205, 196, 0.5);
    }
    100% {
        box-shadow: 0 0 20px rgba(78, 205, 196, 0.3);
    }
}

.float-effect {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.shimmer-effect {
    position: relative;
    overflow: hidden;
}

.shimmer-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.shimmer-effect:hover::before {
    left: 100%;
}

/* ===== IMAGE STYLES ===== */

.image-rounded {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.image-circle {
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.image-glow {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3),
                0 0 30px rgba(78, 205, 196, 0.2);
}

.image-border {
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid rgba(78, 205, 196, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* ===== UTILITY CLASSES ===== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }
.opacity-90 { opacity: 0.9; }

/* ===== TABLE STYLES ===== */

.comparison-table {
    width: 100%;
    margin: 20px 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(78, 205, 196, 0.1);
    overflow: hidden;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.comparison-table th,
.comparison-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    vertical-align: top;
}

.comparison-table th {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1), rgba(102, 126, 234, 0.1));
    color: #4ecdc4;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.comparison-table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.01);
}

.comparison-table tr:hover {
    background: rgba(78, 205, 196, 0.05);
    transition: background 0.3s ease;
}

.comparison-table td {
    color: #e0e0e0;
    line-height: 1.4;
}

.comparison-table td:first-child {
    font-weight: 500;
    color: #4ecdc4;
}

/* Hide scrollbars but keep functionality */
.comparison-table::-webkit-scrollbar {
    display: none;
}

.comparison-table {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 1024px) {
    .tools-grid {
        grid-template-columns: 1fr;
    }

    .content-section {
        padding: 25px;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-spacing-xl { padding: 80px 0; }
    .section-spacing-lg { padding: 60px 0; }
    .section-spacing-md { padding: 40px 0; }
    .section-spacing-sm { padding: 30px 0; }

    .heading-xl { font-size: clamp(2.5rem, 8vw, 3.5rem); }
    .heading-lg { font-size: clamp(2rem, 6vw, 3rem); }
    .heading-md { font-size: clamp(1.5rem, 5vw, 2.2rem); }
    .heading-sm { font-size: clamp(1.2rem, 4vw, 1.8rem); }

    .comparison-table {
        margin: 15px -10px;
        border-radius: 8px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .comparison-table table {
        font-size: 0.85rem;
        min-width: 500px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 8px 10px;
        white-space: nowrap;
    }

    .comparison-table::-webkit-scrollbar {
        display: none;
    }

    .comparison-table {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}

@media (max-width: 768px) {
    .container,
    .container-narrow,
    .container-wide {
        padding: 0 15px;
    }

    .content-block-1,
    .content-block-2,
    .content-block-3,
    .content-block-4,
    .content-block-5 {
        padding: 25px;
        margin: 20px 0;
    }

    .card-basic,
    .card-glass,
    .card-gradient,
    .card-minimal,
    .card-border,
    .card-neumorphic {
        padding: 20px;
    }

    .highlight-primary,
    .highlight-secondary,
    .highlight-warning,
    .highlight-success,
    .highlight-info,
    .highlight-rounded,
    .highlight-glow {
        padding: 20px;
        margin: 20px 0;
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline,
    .btn-ghost,
    .btn-gradient {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .comparison-table {
        margin: 15px -15px;
        width: calc(100% + 30px);
        border-radius: 8px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .comparison-table table {
        font-size: 0.8rem;
        min-width: 450px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 6px 8px;
        white-space: nowrap;
    }

    .comparison-table th {
        font-size: 0.7rem;
    }

    .comparison-table::-webkit-scrollbar {
        display: none;
    }

    .comparison-table {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}
