:root {
    --navy: #080e24;
    --navy-light: #0f1a3a;
    --blue: #1a3a6a;
    --blue-bright: #2962ff;
    --blue-glow: rgba(41, 98, 255, 0.3);
    --gold: #FFD700;
    --gold-dark: #DAA520;
    --gold-light: #FFECB3;
    --gold-glow: rgba(255, 215, 0, 0.25);
    --text: #E8E8E8;
    --text-muted: #9eafc0;
    --white: #ffffff;
    --border: rgba(255, 215, 0, 0.15);
    --card-bg: #111d3e;
    --card-hover: #162448;
    --gradient-gold: linear-gradient(135deg, #FFD700, #FFC107, #DAA520);
    --gradient-blue: linear-gradient(135deg, #0d1b4a, #1e3a6e);
    --gradient-hero: linear-gradient(180deg, rgba(8,14,36,0) 0%, rgba(8,14,36,0.95) 100%);
    --shadow: 0 4px 30px rgba(0,0,0,0.4);
    --shadow-gold: 0 4px 25px rgba(255,215,0,0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Prompt', sans-serif;
    background: var(--navy);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 { color: var(--white); line-height: 1.3; font-weight: 700; }

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(8, 14, 36, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all var(--transition);
}

.site-header.scrolled {
    background: rgba(8, 14, 36, 0.97);
    box-shadow: 0 2px 30px rgba(0,0,0,0.5);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 1px;
}

.logo:hover { color: var(--gold-light); }

.logo-icon { font-size: 1.8rem; }

.logo-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* NAV */
.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    color: var(--text);
    font-size: 0.92rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all var(--transition);
    white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold);
    background: rgba(255, 215, 0, 0.08);
}

.btn-login {
    border: 1px solid var(--gold);
    color: var(--gold);
}

.btn-login:hover {
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold-light);
}

.btn-register {
    background: var(--gradient-gold);
    color: var(--navy) !important;
    font-weight: 700;
    border: none;
    padding: 8px 20px;
}

.btn-register:hover {
    box-shadow: var(--shadow-gold);
    transform: translateY(-1px);
}

/* DROPDOWN */
.nav-dropdown { position: relative; }

.dropdown-toggle .arrow {
    font-size: 0.7rem;
    transition: transform var(--transition);
}

.nav-dropdown.open .arrow { transform: rotate(180deg); }

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--navy-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    padding: 8px 0;
    z-index: 100;
}

.nav-dropdown.open .dropdown-menu,
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px 18px;
    color: var(--text);
    font-size: 0.9rem;
    transition: all var(--transition);
}

.dropdown-item:hover {
    background: rgba(255, 215, 0, 0.08);
    color: var(--gold);
    padding-left: 22px;
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--gold);
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===== HERO ===== */
.section-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 70px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8,14,36,0.4) 0%, rgba(8,14,36,0.92) 70%, var(--navy) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.12);
    border: 1px solid var(--border);
    color: var(--gold);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content h1 .gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 36px;
    background: var(--gradient-gold);
    color: var(--navy);
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    letter-spacing: 0.5px;
}

.btn-cta:hover {
    box-shadow: 0 8px 35px rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
    color: var(--navy);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 36px;
    background: transparent;
    color: var(--gold);
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid var(--gold);
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-outline:hover {
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.15);
    color: var(--gold-light);
}

/* ===== BANNER SLIDER ===== */
.banner-slider {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.banner-slide {
    display: none;
    width: 100%;
}

.banner-slide.active { display: block; }

.banner-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* ===== SECTIONS ===== */
.section {
    padding: 80px 0;
    position: relative;
}

.section-dark { background: var(--navy-light); }

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.section-title h2 .gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== STATS ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--card-bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
    border-color: rgba(255, 215, 0, 0.3);
}

.stat-icon { font-size: 2.5rem; margin-bottom: 12px; }

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 4px;
}

.stat-label { color: var(--text-muted); font-size: 0.9rem; }

/* ===== FEATURES ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 35px 25px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
    border-color: rgba(255, 215, 0, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: rgba(255, 215, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 18px;
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p { color: var(--text-muted); font-size: 0.92rem; }

/* ===== LOTTO TYPES ===== */
.lotto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.lotto-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}

.lotto-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
    border-color: rgba(255, 215, 0, 0.3);
}

.lotto-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.lotto-card-body {
    padding: 20px;
}

.lotto-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.lotto-card p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 12px; }

.lotto-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ===== REVIEWS ===== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.review-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 25px;
    transition: all var(--transition);
}

.review-card:hover {
    box-shadow: var(--shadow-gold);
    border-color: rgba(255, 215, 0, 0.3);
}

.stars { margin-bottom: 12px; }
.star { font-size: 1.2rem; color: #555; }
.star.filled { color: var(--gold); }

.review-text {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 14px;
    line-height: 1.7;
}

.review-author {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== PROMO CARDS ===== */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
}

.promo-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.promo-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.promo-card-body {
    padding: 24px;
}

.promo-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.promo-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 16px; }

/* ===== ARTICLE PAGE ===== */
.article-hero {
    position: relative;
    height: 450px;
    overflow: hidden;
    margin-top: 70px;
}

.article-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8,14,36,0.3) 0%, rgba(8,14,36,0.95) 100%);
    display: flex;
    align-items: flex-end;
    padding: 40px 0;
}

.article-hero-content { max-width: 800px; }

.breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: var(--text-muted); }

.article-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 20px 80px;
}

.article-content h2 {
    font-size: 1.8rem;
    margin: 40px 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border);
}

.article-content h3 {
    font-size: 1.35rem;
    margin: 30px 0 12px;
    color: var(--gold);
}

.article-content h4 {
    font-size: 1.1rem;
    margin: 20px 0 10px;
}

.article-content p {
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.85;
}

.article-content ul, .article-content ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.article-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.article-content strong { color: var(--gold-light); }

.article-content a { color: var(--gold); border-bottom: 1px dashed rgba(255,215,0,0.3); }
.article-content a:hover { border-bottom-style: solid; }

.article-banner {
    border-radius: var(--radius);
    overflow: hidden;
    margin: 30px 0;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.article-banner img {
    width: 100%;
    height: auto;
}

.article-cta-box {
    background: var(--card-bg);
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    margin: 40px 0;
    box-shadow: var(--shadow-gold);
}

.article-cta-box h3 { margin-bottom: 10px; }
.article-cta-box p { color: var(--text-muted); margin-bottom: 20px; }

.article-sidebar-links {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin: 30px 0;
}

.article-sidebar-links h3 {
    font-size: 1.1rem;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.article-sidebar-links ul { list-style: none; padding: 0; }

.article-sidebar-links li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.article-sidebar-links li:last-child { border-bottom: none; }

.article-sidebar-links a {
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-sidebar-links a::before { content: '📌'; font-size: 0.8rem; }
.article-sidebar-links a:hover { color: var(--gold); }

.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: var(--card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.info-table th, .info-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.info-table th {
    background: rgba(255, 215, 0, 0.08);
    color: var(--gold);
    font-weight: 600;
}

.info-table tr:last-child td { border-bottom: none; }
.info-table tr:hover td { background: rgba(255,255,255,0.02); }

.faq-section { margin: 40px 0; }

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    padding: 20px;
}

.faq-item h4 {
    color: var(--gold);
    margin-bottom: 8px;
    font-size: 1rem;
}

.faq-item p { color: var(--text-muted); margin: 0; }

/* ===== FORMS ===== */
.form-section {
    max-width: 500px;
    margin: 0 auto;
    padding-top: 120px;
    padding-bottom: 80px;
}

.form-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
}

.form-card h1 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    text-align: center;
}

.form-card .subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--white);
    font-family: 'Prompt', sans-serif;
    font-size: 0.95rem;
    transition: all var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-control::placeholder { color: #666; }

.form-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.contact-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    transition: all var(--transition);
}

.contact-card:hover {
    box-shadow: var(--shadow-gold);
    transform: translateY(-3px);
}

.contact-icon { font-size: 2.5rem; margin-bottom: 14px; }
.contact-card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.contact-card p { color: var(--text-muted); font-size: 0.92rem; }

/* ===== FOOTER ===== */
.site-footer {
    background: #060b1e;
    border-top: 1px solid var(--border);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.footer-logo .logo-icon { font-size: 1.6rem; }

.footer-logo .logo-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.15);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-links a {
    color: var(--text-muted);
    transition: all var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-cta {
    margin-top: 18px;
    display: inline-block;
    padding: 10px 28px;
    font-size: 0.85rem;
}

.footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.float-btn {
    padding: 12px 24px;
    border-radius: 50px;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.float-register {
    background: var(--gradient-gold);
    color: var(--navy);
}

.float-register:hover {
    box-shadow: 0 6px 30px rgba(255,215,0,0.4);
    transform: translateY(-2px);
    color: var(--navy);
}

.float-line {
    background: #06c755;
    color: var(--white);
}

.float-line:hover {
    box-shadow: 0 6px 30px rgba(6,199,85,0.3);
    transform: translateY(-2px);
    color: var(--white);
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible, .slide-up.visible, .slide-left.visible, .slide-right.visible {
    opacity: 1;
    transform: translate(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .promo-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }

    .hero-content h1 { font-size: 2.4rem; }
    .section-title h2 { font-size: 1.8rem; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--navy-light);
        flex-direction: column;
        align-items: stretch;
        padding: 80px 20px 30px;
        gap: 4px;
        transition: right var(--transition);
        box-shadow: -5px 0 30px rgba(0,0,0,0.5);
        overflow-y: auto;
    }

    .main-nav.active { right: 0; }

    .nav-link {
        padding: 12px 16px;
        border-radius: 8px;
        font-size: 1rem;
    }

    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255,255,255,0.03);
        border: none;
        display: none;
        margin: 4px 0;
        border-radius: 8px;
    }

    .nav-dropdown.open .dropdown-menu { display: block; }

    .hero-content h1 { font-size: 2rem; }
    .hero-content p { font-size: 1rem; }

    .section { padding: 50px 0; }
    .features-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }

    .article-hero { height: 300px; }
    .article-content h2 { font-size: 1.5rem; }

    .banner-slide img { height: 250px; }
    .form-card { padding: 24px; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.6rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn-cta, .btn-outline { width: 100%; text-align: center; }
    .floating-buttons { bottom: 16px; right: 16px; }
    .float-btn { padding: 10px 20px; font-size: 0.85rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}
