* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #00d4ff;
    --primary-dark: #00a8cc;
    --primary-light: #5ce1e6;
    --primary-glow: rgba(0, 212, 255, 0.4);
    --secondary: #7c3aed;
    --secondary-light: #a78bfa;
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --bg-card: rgba(15, 15, 25, 0.9);
    --bg-card-hover: rgba(25, 25, 40, 0.95);
    --text: #e0e0e0;
    --text-muted: #888;
    --text-bright: #ffffff;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --border: rgba(255, 255, 255, 0.08);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-darker);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Animated Background */
.bg-animated {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(124, 58, 237, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 212, 255, 0.03) 0%, transparent 70%),
        var(--bg-darker);
}

/* Floating Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: float-particle 15s infinite ease-in-out;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 20s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 18s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 22s; }
.particle:nth-child(4) { left: 40%; animation-delay: 1s; animation-duration: 19s; }
.particle:nth-child(5) { left: 50%; animation-delay: 3s; animation-duration: 21s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 17s; }
.particle:nth-child(7) { left: 70%; animation-delay: 2s; animation-duration: 23s; }
.particle:nth-child(8) { left: 80%; animation-delay: 4s; animation-duration: 16s; }
.particle:nth-child(9) { left: 90%; animation-delay: 1s; animation-duration: 20s; }
.particle:nth-child(10) { left: 15%; animation-delay: 3s; animation-duration: 18s; }

@keyframes float-particle {
    0%, 100% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
        transform: scale(1);
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh) scale(0);
        opacity: 0;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    background: rgba(5, 5, 10, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.75rem 2rem;
    background: rgba(5, 5, 10, 0.95);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    text-shadow: 0 0 30px var(--primary-glow);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-btn {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--bg-dark);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

/* User Navigation */
.nav-user {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.user-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-bright);
}

.user-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: none;
}

.nav-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.logout-btn {
    padding: 0.5rem 1rem;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #ef4444;
    font-size: 0.85rem;
}

.logout-btn:hover {
    background: rgba(239, 68, 68, 0.3);
    box-shadow: none;
    transform: none;
}

/* Error Banner */
.error-banner {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
    border-radius: 12px;
    color: #ef4444;
    font-weight: 500;
    backdrop-filter: blur(10px);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Promo Banner - Clean & Simple */
.promo-banner {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 998;
    background: rgba(139, 92, 246, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(167, 139, 250, 0.3);
}

.promo-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.promo-text {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
}

.promo-text strong {
    font-weight: 700;
    font-size: 1.05rem;
}

.promo-code {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    margin-left: 0.3rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    color: #fff;
    font-family: 'Courier New', monospace;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .promo-banner {
        padding: 0.65rem 1rem;
        top: 70px;
    }

    .promo-text {
        font-size: 0.85rem;
    }

    .promo-text strong {
        font-size: 0.95rem;
    }

    .promo-code {
        font-size: 0.85rem;
        padding: 0.15rem 0.5rem;
    }
}

/* Hero Section */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10rem 2rem 6rem;
    position: relative;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

/* Hero Badges Row */
.hero-badges-row {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.ready-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: 50px;
    font-size: 0.8rem;
    color: #10b981;
    font-weight: 600;
}

/* Coming Soon Badge */
.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.4);
    border-radius: 50px;
    font-size: 0.8rem;
    color: #f59e0b;
    font-weight: 500;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #f59e0b;
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #fff 40%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.75rem;
    line-height: 1.6;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.9rem;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--success);
    font-weight: 500;
}

.trust-badge svg {
    width: 14px;
    height: 14px;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.75rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--bg-dark);
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px var(--primary-glow);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary), #6d28d9);
    color: white;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(124, 58, 237, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(0, 212, 255, 0.05);
}

/* Discord Buttons */
.discord-btn {
    background: linear-gradient(135deg, #5865F2, #4752C4) !important;
    color: white !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
}

.discord-btn:hover {
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.5);
}

.btn-discord-main {
    background: linear-gradient(135deg, #5865F2, #4752C4);
    color: white;
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.4);
    animation: discord-pulse 2s ease-in-out infinite;
}

.btn-discord-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(88, 101, 242, 0.5);
}

@keyframes discord-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(88, 101, 242, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(88, 101, 242, 0.6); }
}

.btn-discord-large {
    padding: 0.75rem 1.75rem;
    background: linear-gradient(135deg, #5865F2, #4752C4);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.35);
}

.btn-discord-large svg {
    width: 18px;
    height: 18px;
}

.btn-discord-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(88, 101, 242, 0.45);
}

.footer-discord-link {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
}

.footer-discord-link svg {
    color: #5865F2;
}

/* Stats */
.stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
}

/* Sections */
.section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-dark {
    background: rgba(10, 10, 20, 0.6);
    max-width: none;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff, var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.features-grid.cols-5 {
    grid-template-columns: repeat(5, 1fr);
}

.feature-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    border-radius: 14px;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.03), rgba(124, 58, 237, 0.03));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px var(--primary-glow);
}

.feature-card:hover::before,
.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    box-shadow: 0 6px 15px var(--primary-glow);
}

.feature-icon svg {
    width: 20px;
    height: 20px;
}

.feature-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-bright);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.5;
    font-size: 0.85rem;
}

/* Classes Grid */
.classes-section {
    background: rgba(10, 10, 20, 0.6);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 2rem !important;
}

.classes-section .section-title {
    margin-bottom: 0.25rem;
    font-size: 1.5rem;
}

.classes-section .section-subtitle {
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.classes-grid {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0.5rem;
    max-width: 100%;
    margin: 0 auto;
}

.class-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    padding: 0;
}

.class-icon:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    box-shadow: 0 6px 15px var(--primary-glow);
}

.class-icon img {
    width: 38px;
    height: 38px;
    border-radius: 6px;
    border: none;
    transition: all 0.3s ease;
}

.class-icon .class-name {
    display: none;
}

/* Class-specific border colors on hover */
.class-icon.death-knight:hover { border-color: #C41E3A; box-shadow: 0 6px 15px rgba(196, 30, 58, 0.4); }
.class-icon.demon-hunter:hover { border-color: #A330C9; box-shadow: 0 6px 15px rgba(163, 48, 201, 0.4); }
.class-icon.druid:hover { border-color: #FF7C0A; box-shadow: 0 6px 15px rgba(255, 124, 10, 0.4); }
.class-icon.evoker:hover { border-color: #33937F; box-shadow: 0 6px 15px rgba(51, 147, 127, 0.4); }
.class-icon.hunter:hover { border-color: #AAD372; box-shadow: 0 6px 15px rgba(170, 211, 114, 0.4); }
.class-icon.mage:hover { border-color: #3FC7EB; box-shadow: 0 6px 15px rgba(63, 199, 235, 0.4); }
.class-icon.monk:hover { border-color: #00FF98; box-shadow: 0 6px 15px rgba(0, 255, 152, 0.4); }
.class-icon.paladin:hover { border-color: #F48CBA; box-shadow: 0 6px 15px rgba(244, 140, 186, 0.4); }
.class-icon.priest:hover { border-color: #FFFFFF; box-shadow: 0 6px 15px rgba(255, 255, 255, 0.3); }
.class-icon.rogue:hover { border-color: #FFF468; box-shadow: 0 6px 15px rgba(255, 244, 104, 0.4); }
.class-icon.shaman:hover { border-color: #0070DD; box-shadow: 0 6px 15px rgba(0, 112, 221, 0.4); }
.class-icon.warlock:hover { border-color: #8788EE; box-shadow: 0 6px 15px rgba(135, 136, 238, 0.4); }
.class-icon.warrior:hover { border-color: #C69B6D; box-shadow: 0 6px 15px rgba(198, 155, 109, 0.4); }

/* How It Works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
    z-index: 0;
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 20px var(--primary-glow);
}

.step-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-bright);
}

.step-card p {
    color: var(--text-muted);
    line-height: 1.5;
    font-size: 0.85rem;
}

/* FAQ Section */
.faq-grid {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.faq-question {
    padding: 1rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 212, 255, 0.05);
}

.faq-question h4 {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-bright);
}

.faq-question svg {
    color: var(--primary);
    transition: transform 0.3s ease;
    width: 16px;
    height: 16px;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.25rem 1rem;
    color: var(--text-muted);
    line-height: 1.5;
    font-size: 0.85rem;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 0 40px var(--primary-glow);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-name {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-bright);
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
    -webkit-text-fill-color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.6rem 0;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features li svg {
    color: var(--success);
    flex-shrink: 0;
}

/* Security Section */
.security-section {
    padding: 3rem 2rem;
}

.security-box {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(6, 95, 70, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 16px;
}

.security-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.security-content h3 {
    font-size: 1.3rem;
    color: var(--text-bright);
    margin-bottom: 0.5rem;
}

.security-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.security-content p strong {
    color: #10b981;
}

.security-points {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.security-points span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    color: #10b981;
    font-weight: 500;
}

@media (max-width: 768px) {
    .security-box {
        flex-direction: column;
        text-align: center;
    }

    .security-points {
        justify-content: center;
    }
}

/* TBC Announcement */
.tbc-announcement {
    max-width: 600px;
    margin: 0 auto;
}

.tbc-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.4);
    border-radius: 50px;
    font-size: 0.8rem;
    color: #f59e0b;
    font-weight: 500;
    margin-bottom: 1rem;
}

.tbc-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.tbc-feature {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--success);
    font-weight: 500;
}

/* Discord CTA */
.discord-cta {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.12), rgba(124, 58, 237, 0.12));
    border: 1px solid rgba(88, 101, 242, 0.25);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    max-width: 550px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.discord-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(88, 101, 242, 0.08), transparent 70%);
    pointer-events: none;
}

.discord-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-bright);
    position: relative;
}

.discord-cta p {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

/* Footer */
.footer {
    background: rgba(5, 5, 10, 0.95);
    border-top: 1px solid var(--border);
    padding: 2.5rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 2rem;
}

.footer-brand p {
    color: var(--text-muted);
    line-height: 1.5;
    margin-top: 0.75rem;
    max-width: 280px;
    font-size: 0.85rem;
}

.footer-section h4 {
    color: var(--text-bright);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.footer-section a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.3rem 0;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary);
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 20px var(--primary-glow); }
    50% { box-shadow: 0 0 40px var(--primary-glow), 0 0 60px rgba(0, 212, 255, 0.2); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-glow {
    animation: glow-pulse 3s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .steps-grid::before {
        display: none;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .nav-links {
        display: none;
    }

    .stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        max-width: none;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .trust-badges {
        gap: 1rem;
    }

    .trust-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .classes-grid {
        flex-wrap: wrap;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Selection */
::selection {
    background: var(--primary);
    color: var(--bg-dark);
}

/* License Check Styles */
.license-section {
    max-width: 500px;
    margin: 0 auto;
    padding: 8rem 2rem 6rem;
}

.license-box {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border);
}

.license-box h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(5, 5, 10, 0.8);
    border: 2px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
}

.license-result {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 12px;
    display: none;
}

.license-result.success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--success);
    display: block;
}

.license-result.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--danger);
    display: block;
}

.license-info {
    display: grid;
    gap: 0.75rem;
}

.license-info-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}

.license-info-row:last-child {
    border-bottom: none;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-badge.active {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success);
}

.status-badge.expired {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger);
}

.status-badge.disabled {
    background: rgba(136, 136, 136, 0.2);
    color: var(--text-muted);
}
