/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: #16161f;
    --bg-card-hover: #1e1e2a;
    --text-primary: #e8e6e3;
    --text-secondary: #9a9a9a;
    --accent: #c9a84c;
    --accent-dark: #8b6914;
    --accent-glow: rgba(201, 168, 76, 0.3);
    --red: #c0392b;
    --green: #2ecc71;
    --blue: #3498db;
    --purple: #8e44ad;
    --border: rgba(201, 168, 76, 0.15);
    --font-title: 'Cinzel', serif;
    --font-body: 'Raleway', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== PARTICLES CANVAS ===== */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}

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

.nav-logo {
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent);
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    font-size: 1.2rem;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { text-shadow: 0 0 10px var(--accent-glow); }
    50% { text-shadow: 0 0 25px var(--accent), 0 0 50px var(--accent-glow); }
}

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

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    transition: color 0.3s;
    position: relative;
}

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

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

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

.btn-register {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #0a0a0f;
    border: none;
    padding: 0.6rem 1.5rem;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
    transition: all 0.3s;
}

.btn-register:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--accent-glow);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger span {
    width: 25px;
    height: 2px;
    background: var(--accent);
    transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(142, 68, 173, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="rgba(201,168,76,0.02)" width="1" height="1" x="20" y="20"/><rect fill="rgba(201,168,76,0.02)" width="1" height="1" x="60" y="40"/><rect fill="rgba(201,168,76,0.02)" width="1" height="1" x="40" y="70"/></svg>');
    background-size: 100px 100px;
    animation: drift 20s linear infinite;
}

@keyframes drift {
    from { transform: translate(0, 0); }
    to { transform: translate(-100px, -100px); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, var(--bg-primary));
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 0.4rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    animation: badge-pulse 3s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { box-shadow: 0 0 10px rgba(201, 168, 76, 0.1); }
    50% { box-shadow: 0 0 25px rgba(201, 168, 76, 0.3); }
}

.hero-title {
    font-family: var(--font-title);
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 900;
    letter-spacing: 15px;
    background: linear-gradient(135deg, var(--accent) 0%, #fff 50%, var(--accent) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

.title-sub {
    display: block;
    font-size: clamp(0.8rem, 2vw, 1.2rem);
    letter-spacing: 10px;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #0a0a0f;
    border: none;
    padding: 1rem 2.5rem;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 1rem 2.5rem;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(201, 168, 76, 0.05);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--accent);
    font-size: 1.5rem;
    animation: bounce 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== SECTIONS ===== */
.section {
    position: relative;
    z-index: 1;
    padding: 6rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--accent);
    background: rgba(201, 168, 76, 0.1);
    padding: 0.3rem 1.2rem;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-title);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-line {
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 0 auto 1.5rem;
}

.section-desc {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
}

/* ===== ABOUT ===== */
.about {
    background: linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.about-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    background: var(--bg-card-hover);
}

.about-card:hover::before {
    opacity: 1;
}

.about-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.about-card h3 {
    font-family: var(--font-title);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.about-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

.about-banner {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.05));
    border: 1px solid var(--accent);
    padding: 2rem;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.banner-icon {
    font-size: 2.5rem;
    color: var(--accent);
    flex-shrink: 0;
}

.banner-content h3 {
    font-family: var(--font-title);
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.banner-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===== RACES ===== */
.races {
    background: var(--bg-secondary);
}

.races-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.race-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.4s;
    cursor: default;
}

.race-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.race-img {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.race-symbol {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.race-info {
    padding: 1.5rem;
}

.race-info h3 {
    font-family: var(--font-title);
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.race-tagline {
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.race-info > p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.race-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.race-stat {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.race-stat span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    min-width: 90px;
}

.stat-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.stat-bar div {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    transition: width 1s ease;
    width: 0;
}

.race-card.animated .stat-bar div {
    width: var(--w);
}

/* ===== LANDS ===== */
.lands {
    background: linear-gradient(180deg, var(--bg-secondary), var(--bg-primary));
}

.lands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.land-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s;
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

.land-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.land-bg {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.land-emblem {
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.6);
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.land-content {
    padding: 1.5rem;
    flex: 1;
    background: var(--bg-card);
}

.land-content h3 {
    font-family: var(--font-title);
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
}

.land-type {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.land-content p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.land-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.land-features span {
    font-size: 0.75rem;
    color: var(--text-secondary);
    background: rgba(201, 168, 76, 0.1);
    padding: 0.3rem 0.8rem;
    border: 1px solid var(--border);
}

/* ===== CLASSES ===== */
.classes {
    background: var(--bg-primary);
}

.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.class-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2rem;
    text-align: center;
    transition: all 0.4s;
    position: relative;
}

.class-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    background: var(--bg-card-hover);
}

.class-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.class-card h3 {
    font-family: var(--font-title);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.class-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.class-role {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--accent);
    background: rgba(201, 168, 76, 0.1);
    padding: 0.3rem 0.8rem;
}

/* ===== NEWS ===== */
.news {
    background: var(--bg-secondary);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.news-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.4s;
    display: flex;
}

.news-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}

.news-date {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #0a0a0f;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
}

.news-date .day {
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
}

.news-date .month {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.news-content {
    padding: 1.5rem;
    flex: 1;
}

.news-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(201, 168, 76, 0.1);
    padding: 0.2rem 0.6rem;
    margin-bottom: 0.5rem;
}

.news-content h3 {
    font-family: var(--font-title);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.news-content p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.news-link {
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    transition: opacity 0.3s;
}

.news-link:hover {
    opacity: 0.7;
}

/* ===== CTA ===== */
.cta {
    background:
        radial-gradient(ellipse at center, rgba(201, 168, 76, 0.1), transparent 70%),
        var(--bg-primary);
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-title);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    color: var(--accent);
}

.cta-content > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-form {
    display: flex;
    gap: 0;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.cta-form input {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-right: none;
    color: var(--text-primary);
    padding: 1rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
}

.cta-form input:focus {
    border-color: var(--accent);
}

.cta-form input::placeholder {
    color: var(--text-secondary);
}

.cta-form .btn-primary {
    clip-path: none;
    white-space: nowrap;
}

.cta-socials {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.3s;
    border: 1px solid var(--border);
    padding: 0.5rem 1.5rem;
}

.social-link:hover {
    color: var(--accent);
    border-color: var(--accent);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 4rem 0 1rem;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    font-family: var(--font-title);
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.footer-col h4 {
    font-family: var(--font-title);
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.footer-col p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.7;
}

.footer-col a {
    display: block;
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.75rem;
}

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal {
    background: var(--bg-card);
    border: 1px solid var(--accent);
    max-width: 500px;
    width: 100%;
    padding: 3rem;
    position: relative;
    animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

.modal-close:hover {
    color: var(--accent);
}

.modal-body {
    text-align: center;
}

.modal-body h2 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.modal-body p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.modal-body .modal-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.modal-body .btn-primary {
    margin-top: 1rem;
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 15, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        border-bottom: 1px solid var(--border);
    }

    .nav-links.active {
        display: flex;
    }

    .btn-register {
        display: none;
    }

    .burger {
        display: flex;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .races-grid,
    .lands-grid {
        grid-template-columns: 1fr;
    }

    .news-card {
        flex-direction: column;
    }

    .news-date {
        flex-direction: row;
        gap: 0.5rem;
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-form {
        flex-direction: column;
    }

    .cta-form input {
        border-right: 1px solid var(--border);
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-stats {
        gap: 1rem;
    }

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

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

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

::-webkit-scrollbar-thumb {
    background: var(--accent-dark);
}

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

/* ===== SELECTION ===== */
::selection {
    background: var(--accent);
    color: var(--bg-primary);
}
