@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #1B9347;
    --secondary: #1C2B28;
    --accent: #6B9DC2;
    --background: #090D0B;
    --surface: #14201B;
    --text: #E4EAE7;
    --text-muted: #54785C;
    --border: #425A49;
    --success: #3BCD64;
    --danger: #BF3E28;
    --gold: #D4AF37;
    --font-th: 'Prompt', sans-serif;
    --font-en: 'Space Grotesk', sans-serif;
    --radius: 12px;
    --shadow: 0 8px 32px rgba(9, 13, 11, 0.55), 0 0 1px rgba(27, 147, 71, 0.15);
    --glow-green: 0 0 20px rgba(59, 205, 100, 0.35);
    --glow-primary: 0 0 24px rgba(27, 147, 71, 0.3);
    --glow-accent: 0 0 20px rgba(107, 157, 194, 0.35);
    --transition: all 0.3s ease;
}

/* ---------- Neon glow keyframes (subtle) ---------- */
@keyframes neonSoftGlow {
    0%, 100% {
        box-shadow:
            0 0 18px rgba(59, 205, 100, 0.14),
            0 0 36px rgba(27, 147, 71, 0.08);
    }
    50% {
        box-shadow:
            0 0 28px rgba(59, 205, 100, 0.24),
            0 0 52px rgba(27, 147, 71, 0.14);
    }
}

@keyframes neonPulse {
    0%, 100% {
        box-shadow:
            0 0 14px rgba(59, 205, 100, 0.38),
            0 0 28px rgba(27, 147, 71, 0.22),
            inset 0 0 12px rgba(228, 234, 231, 0.06);
    }
    50% {
        box-shadow:
            0 0 26px rgba(59, 205, 100, 0.58),
            0 0 48px rgba(27, 147, 71, 0.38),
            inset 0 0 18px rgba(107, 157, 194, 0.12);
    }
}

@keyframes neonHeadingGlow {
    0%, 100% {
        filter:
            drop-shadow(0 0 6px rgba(59, 205, 100, 0.22))
            drop-shadow(0 0 2px rgba(27, 147, 71, 0.18));
    }
    50% {
        filter:
            drop-shadow(0 0 14px rgba(59, 205, 100, 0.38))
            drop-shadow(0 0 4px rgba(27, 147, 71, 0.32));
    }
}

@keyframes neonBorderPulse {
    0%, 100% {
        border-color: rgba(27, 147, 71, 0.45);
        box-shadow: 0 0 14px rgba(59, 205, 100, 0.12);
    }
    50% {
        border-color: rgba(59, 205, 100, 0.55);
        box-shadow: 0 0 22px rgba(27, 147, 71, 0.18);
    }
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-th);
    background: var(--background);
    color: var(--text);
    line-height: 1.8;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--success); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary); }

img { max-width: 100%; height: auto; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header {
    background: linear-gradient(180deg, var(--secondary) 0%, var(--background) 100%);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(66,90,73,0.3);
}

.header-social { display: flex; gap: 12px; align-items: center; }
.header-social a {
    color: var(--text-muted);
    font-size: 14px;
    transition: var(--transition);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(27,147,71,0.1);
}
.header-social a:hover {
    color: var(--success);
    background: rgba(27,147,71,0.3);
    transform: translateY(-2px);
    box-shadow: var(--glow-green);
}

.header-cta .btn-glow {
    font-size: 13px;
    padding: 6px 20px;
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo img { width: 42px; height: 42px; }

.logo-text {
    font-family: var(--font-en);
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--success) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    animation: neonHeadingGlow 5s ease-in-out infinite;
}

/* Navigation */
.main-nav { display: flex; align-items: center; gap: 4px; }

.main-nav a, .main-nav .dropdown-toggle {
    color: var(--text);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-th);
}

.main-nav a:hover, .main-nav .dropdown-toggle:hover,
.main-nav a.active {
    background: rgba(27,147,71,0.15);
    color: var(--success);
    box-shadow: inset 0 0 12px rgba(59,205,100,0.08);
}

.nav-dropdown { position: relative; }
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 8px;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    box-shadow: var(--shadow);
    z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--text);
}
.dropdown-menu a:hover { background: rgba(27,147,71,0.15); color: var(--success); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 1001;
}
.hamburger span {
    width: 26px;
    height: 2.5px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Hero Banner */
.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--secondary), var(--background));
    border-bottom: 2px solid var(--primary);
}

.banner-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 21/8;
    max-height: 500px;
    overflow: hidden;
}

.banner-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.banner-slide.active { opacity: 1; }

.banner-slide img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.banner-slide a { display: block; width: 100%; height: 100%; }

.banner-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 40px;
    background: linear-gradient(transparent, rgba(9, 13, 11, 0.92));
}

.banner-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.banner-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: rgba(228, 234, 231, 0.28);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.banner-dot.active {
    background: var(--success);
    transform: scale(1.2);
    box-shadow: var(--glow-green);
}

.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(9, 13, 11, 0.68);
    color: var(--text);
    border: 1px solid var(--border);
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    font-size: 18px;
}

.banner-nav:hover { background: var(--primary); border-color: var(--primary); box-shadow: var(--glow-green); }
.banner-prev { left: 20px; }
.banner-next { right: 20px; }

/* Content Layout */
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    padding: 40px 0;
}

.main-content { min-width: 0; }

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.widget {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
}

.widget:hover { border-color: var(--primary); box-shadow: 0 0 16px rgba(27,147,71,0.1); }

.widget-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--success);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.widget-list { list-style: none; }
.widget-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(66,90,73,0.3);
}
.widget-list li:last-child { border-bottom: none; }
.widget-list a {
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}
.widget-list a:hover { color: var(--success); padding-left: 5px; }
.widget-list a i { color: var(--primary); width: 16px; }

/* Sections */
.content-section {
    margin-bottom: 40px;
    padding: 30px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    position: relative;
}

.content-section:hover {
    border-color: rgba(27, 147, 71, 0.42);
    box-shadow:
        0 0 28px rgba(59, 205, 100, 0.12),
        0 0 48px rgba(27, 147, 71, 0.08);
    animation: neonSoftGlow 3.5s ease-in-out infinite;
}

/* Infinity Night — เน้นนีออนเขียวบนพื้นมืด (หน้าแรก Zet Casino) */
.content-section--infinity {
    border-color: rgba(59, 205, 100, 0.4);
    box-shadow:
        0 0 36px rgba(59, 205, 100, 0.14),
        inset 0 0 80px rgba(27, 147, 71, 0.05);
}
.content-section--infinity:hover {
    border-color: rgba(59, 205, 100, 0.55);
    box-shadow:
        0 0 48px rgba(59, 205, 100, 0.22),
        inset 0 0 100px rgba(27, 147, 71, 0.07);
}
.content-section--infinity h2 {
    text-shadow: 0 0 24px rgba(59, 205, 100, 0.25);
}

h1 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--success) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: neonHeadingGlow 5.5s ease-in-out infinite;
}

h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--success);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow:
        0 0 18px rgba(59, 205, 100, 0.18),
        0 0 6px rgba(27, 147, 71, 0.12);
    animation: neonBorderPulse 6s ease-in-out infinite;
}

h2 i { color: var(--accent); font-size: 20px; }

h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin: 20px 0 12px;
}

p { margin-bottom: 16px; color: var(--text); }

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.card {
    background: linear-gradient(145deg, var(--surface), rgba(27,147,71,0.05));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--success) 100%);
    box-shadow: 0 0 12px rgba(59, 205, 100, 0.35);
}

.card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 8px 32px rgba(27,147,71,0.15), var(--glow-green);
}

.card-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--success));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: rgba(228, 234, 231, 0.98);
    margin-bottom: 16px;
    box-shadow: var(--glow-green);
}

.card h3 { margin-top: 0; font-size: 18px; }
.card p { font-size: 14px; color: var(--text-muted); margin-bottom: 0; }

/* Reviews */
.review-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 16px;
    transition: var(--transition);
}

.review-card:hover { border-color: var(--primary); box-shadow: 0 0 16px rgba(27,147,71,0.1); }

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.review-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: rgba(228, 234, 231, 0.98);
    font-family: var(--font-en);
    box-shadow: var(--glow-accent);
}

.review-meta { flex: 1; }
.review-name { font-weight: 600; font-size: 16px; font-family: var(--font-en); }
.review-date { font-size: 13px; color: var(--text-muted); }

.star-rating { display: flex; align-items: center; gap: 2px; margin: 8px 0; }
.star-rating i { color: var(--gold); font-size: 16px; }
.star-rating .rating-text { margin-left: 8px; font-size: 14px; color: var(--text-muted); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    font-family: var(--font-th);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--success) 100%);
    color: rgba(228, 234, 231, 0.98);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow:
        0 6px 24px rgba(27, 147, 71, 0.45),
        0 0 28px rgba(59, 205, 100, 0.35);
    color: rgba(228, 234, 231, 1);
}
.btn-primary:focus-visible {
    outline: 2px solid rgba(59, 205, 100, 0.65);
    outline-offset: 3px;
}

.btn-glow {
    background: linear-gradient(135deg, var(--success) 0%, var(--primary) 100%);
    color: var(--background);
    font-weight: 700;
    position: relative;
    overflow: hidden;
    animation: neonPulse 2.8s ease-in-out infinite;
}
.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(228, 234, 231, 0.12),
        rgba(59, 205, 100, 0.22),
        rgba(107, 157, 194, 0.14),
        transparent
    );
    animation: shimmer 3s infinite;
}
.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow:
        0 6px 32px rgba(59, 205, 100, 0.5),
        0 0 40px rgba(27, 147, 71, 0.35);
    color: var(--background);
}
.btn-glow:focus-visible {
    outline: 2px solid rgba(107, 157, 194, 0.55);
    outline-offset: 3px;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--success);
}
.btn-outline:hover {
    background: var(--primary);
    color: rgba(228, 234, 231, 0.98);
    box-shadow: var(--glow-green);
}

/* Forms */
.form-section {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    margin: 24px 0;
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text);
    font-size: 14px;
}

.form-group label i { color: var(--accent); margin-right: 6px; }

.form-control {
    width: 100%;
    padding: 12px 16px;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 15px;
    font-family: var(--font-th);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(27,147,71,0.2), var(--glow-green);
}

.form-control::placeholder { color: var(--text-muted); }

textarea.form-control { resize: vertical; min-height: 120px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* FAQ */
.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 18px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: var(--transition);
}

.faq-question:hover { background: rgba(27,147,71,0.1); }

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--accent);
}

.faq-item.active .faq-question i { transform: rotate(180deg); }

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 18px;
}

/* Article Cards */
.article-card {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    transition: var(--transition);
}

.article-card:hover {
    border-color: var(--primary);
    transform: translateX(4px);
    box-shadow: 0 0 12px rgba(27,147,71,0.1);
}

.article-card-img {
    width: 120px; height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--secondary);
}

.article-card-img img { width: 100%; height: 100%; object-fit: cover; }

.article-card-body { flex: 1; }
.article-card-title { font-size: 15px; font-weight: 600; margin-bottom: 6px; line-height: 1.4; }
.article-card-title a { color: var(--text); }
.article-card-title a:hover { color: var(--success); }
.article-card-date { font-size: 12px; color: var(--text-muted); }

/* Steps */
.steps { counter-reset: step; margin: 20px 0; }
.step-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(27,147,71,0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    counter-increment: step;
    transition: var(--transition);
}

.step-item:hover { border-color: var(--primary); box-shadow: 0 0 12px rgba(27,147,71,0.08); }

.step-number {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    color: rgba(228, 234, 231, 0.98);
    flex-shrink: 0;
    font-family: var(--font-en);
    box-shadow: var(--glow-accent);
}

.step-content { flex: 1; }
.step-content h3 { margin-top: 0; }

/* Promo Cards */
.promo-card {
    background: linear-gradient(145deg, var(--surface), rgba(107,157,194,0.08));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--primary), var(--success));
}

.promo-card:hover { border-color: var(--accent); box-shadow: 0 0 20px rgba(107,157,194,0.1); }

.promo-badge {
    display: inline-block;
    padding: 4px 14px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: rgba(228, 234, 231, 0.98);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

/* Contact Info */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: 20px 0;
}

.contact-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    transition: var(--transition);
}

.contact-item:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--glow-green); }

.contact-item i {
    font-size: 32px;
    color: var(--success);
    margin-bottom: 12px;
}

.contact-item h3 { font-size: 16px; margin: 0 0 8px; }
.contact-item p { font-size: 14px; color: var(--text-muted); margin: 0; }

/* Footer */
.site-footer {
    background: linear-gradient(180deg, var(--secondary), var(--background));
    border-top: 1px solid var(--border);
    padding: 48px 0 0;
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--success);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
    color: var(--text-muted);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-links a:hover { color: var(--success); padding-left: 4px; }
.footer-links a i { width: 14px; color: var(--primary); font-size: 12px; }

.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(27,147,71,0.15);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 16px;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--primary);
    color: rgba(228, 234, 231, 0.98);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--glow-green);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
}

/* Full Width for Hero */
.full-width { width: 100%; }

/* Table */
.table-responsive { overflow-x: auto; margin: 16px 0; }
table {
    width: 100%;
    border-collapse: collapse;
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
}
th {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: rgba(228, 234, 231, 0.98);
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}
td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}
tr:hover td { background: rgba(27,147,71,0.05); }

/* Badges */
.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
.badge-success { background: rgba(59,205,100,0.15); color: var(--success); }
.badge-primary { background: rgba(27,147,71,0.15); color: var(--primary); }
.badge-accent { background: rgba(107,157,194,0.15); color: var(--accent); }

/* Breadcrumb */
.breadcrumb-nav { padding: 16px 0; }
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 4px;
    font-size: 14px;
}
.breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    margin-right: 4px;
    color: var(--text-muted);
}
.breadcrumb-item a { color: var(--text-muted); }
.breadcrumb-item a:hover { color: var(--success); }
.breadcrumb-item.current { color: var(--success); }

/* Image placeholder */
.img-placeholder {
    width: 100%;
    aspect-ratio: 2/1;
    background: linear-gradient(135deg, var(--surface), rgba(27,147,71,0.1));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    overflow: hidden;
}

.img-placeholder img { width: 100%; height: 100%; object-fit: cover; }

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    margin: 24px 0;
    position: relative;
    overflow: hidden;
}
.cta-box::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(
        circle,
        rgba(107, 157, 194, 0.18) 0%,
        rgba(59, 205, 100, 0.1) 38%,
        transparent 72%
    );
    animation: pulse-glow 4s infinite;
}
@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}
.cta-box h3 {
    color: rgba(228, 234, 231, 0.98);
    margin-top: 0;
    font-size: 22px;
    position: relative;
    text-shadow: 0 0 20px rgba(9, 13, 11, 0.45);
}
.cta-box p { color: rgba(228, 234, 231, 0.88); position: relative; }
.cta-box .btn {
    margin-top: 12px;
    background: rgba(228, 234, 231, 0.96);
    color: var(--primary);
    position: relative;
}
.cta-box .btn:hover {
    background: var(--success);
    color: rgba(9, 13, 11, 0.95);
    box-shadow: 0 0 24px rgba(59, 205, 100, 0.45);
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-in { animation: fadeInUp 0.5s ease forwards; }

/* Neon glow on full-width sections */
.full-width-alt {
    width: 100%;
    padding: 60px 0;
    position: relative;
}
.full-width-alt::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--success), var(--accent), transparent);
}
.full-width-alt::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--success), transparent);
}

/* Responsive */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    .sidebar { order: 2; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }

    .nav-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--secondary);
        border-left: 1px solid var(--border);
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }

    .nav-wrapper.open { right: 0; }

    .main-nav {
        flex-direction: column;
        align-items: stretch;
    }

    .main-nav a, .main-nav .dropdown-toggle {
        padding: 12px 16px;
        border-bottom: 1px solid rgba(66,90,73,0.3);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0 0 0 20px;
        display: none;
    }

    .nav-dropdown.open .dropdown-menu { display: block; }

    .nav-overlay {
        display: none;
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: rgba(9, 13, 11, 0.78);
        z-index: 998;
    }

    .nav-overlay.open { display: block; }

    h1 { font-size: 24px; }
    h2 { font-size: 20px; }

    .header-top { display: none; }
    .banner-slider { aspect-ratio: 16/9; }
    .banner-nav { display: none; }

    .content-section { padding: 20px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .card-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }

    .article-card { flex-direction: column; }
    .article-card-img { width: 100%; height: 160px; }
}

@media (max-width: 480px) {
    .container { padding: 0 15px; }
    .content-section { padding: 16px; }
    h1 { font-size: 20px; }
    h2 { font-size: 18px; }
    .logo-text { font-size: 18px; }
    .btn { padding: 10px 20px; font-size: 14px; }
}
