/* 789Asia - Cyberpunk Gaming Dark Mode Theme */

:root {
    /* Background colors */
    --bg-primary: #0A0118;
    --bg-secondary: #120225;
    --bg-card: rgba(18, 2, 37, 0.8);
    --bg-glass: rgba(255, 255, 255, 0.05);

    /* Neon colors */
    --neon-pink: #FF00FF;
    --neon-cyan: #00FFFF;
    --neon-purple: #8B00FF;
    --neon-magenta: #FF0080;

    /* Gradients */
    --gradient-pink-purple: linear-gradient(135deg, #FF00FF, #8B00FF);
    --gradient-cyan-purple: linear-gradient(135deg, #00FFFF, #8B00FF);
    --gradient-hero: linear-gradient(135deg, #FF00FF 0%, #8B00FF 50%, #00FFFF 100%);

    /* Text colors */
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);

    /* Glows */
    --glow-pink: 0 0 20px rgba(255, 0, 255, 0.5), 0 0 40px rgba(255, 0, 255, 0.3);
    --glow-cyan: 0 0 20px rgba(0, 255, 255, 0.5), 0 0 40px rgba(0, 255, 255, 0.3);
    --glow-purple: 0 0 20px rgba(139, 0, 255, 0.5), 0 0 40px rgba(139, 0, 255, 0.3);

    /* Border */
    --border-glow: 1px solid rgba(255, 0, 255, 0.3);
    --border-cyan: 1px solid rgba(0, 255, 255, 0.3);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans TC', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

/* Circuit Board Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        /* Circuit lines */
        linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(255, 0, 255, 0.03) 1px, transparent 1px),
        /* Diagonal accent lines */
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 100px,
            rgba(139, 0, 255, 0.02) 100px,
            rgba(139, 0, 255, 0.02) 101px
        );
    background-size: 50px 50px, 50px 50px, 200px 200px;
    pointer-events: none;
    z-index: -1;
}

/* Ambient glow effects */
body::after {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 0, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(139, 0, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: ambientPulse 8s ease-in-out infinite;
}

@keyframes ambientPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

a {
    color: var(--neon-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--neon-pink);
    text-shadow: var(--glow-pink);
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-pink-purple);
    color: var(--text-primary);
    box-shadow: var(--glow-pink);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.6), 0 0 60px rgba(255, 0, 255, 0.4);
    color: var(--text-primary);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: inset 0 0 20px rgba(0, 255, 255, 0.1);
}

.btn-outline:hover {
    background: rgba(0, 255, 255, 0.1);
    box-shadow: var(--glow-cyan), inset 0 0 30px rgba(0, 255, 255, 0.2);
    transform: translateY(-3px);
    color: var(--neon-cyan);
}

.btn-cta {
    background: linear-gradient(135deg, var(--neon-cyan), #00D4AA);
    color: var(--bg-primary);
    font-weight: 700;
    box-shadow: var(--glow-cyan);
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.6), 0 0 60px rgba(0, 255, 255, 0.4);
    color: var(--bg-primary);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 16px;
    border-radius: 16px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 12px;
}

/* ============================================
   HEADER - Glassmorphism with Backdrop Blur
   ============================================ */
.site-header {
    background: rgba(10, 1, 24, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.site-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-pink), var(--neon-cyan), transparent);
    opacity: 0.5;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    gap: 20px;
}

.logo img {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 0, 255, 0.5));
    transition: filter 0.3s ease;
}

.logo:hover img {
    filter: drop-shadow(0 0 20px rgba(255, 0, 255, 0.8));
}

/* Navigation with Neon Hover */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

.main-nav a {
    color: var(--text-secondary);
    font-weight: 500;
    padding: 10px 5px;
    position: relative;
    transition: all 0.3s ease;
    font-size: 15px;
}

.main-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-pink-purple);
    transition: width 0.3s ease;
    box-shadow: var(--glow-pink);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--neon-pink);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: var(--glow-pink);
}

.main-nav a:hover {
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

.main-nav a:hover::before {
    width: 100%;
}

.main-nav a:hover::after {
    opacity: 1;
}

.header-actions {
    display: flex;
    gap: 12px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    width: 44px;
    height: 44px;
    position: relative;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--neon-cyan);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    transform-origin: center;
}

/* Hamburger to X animation */
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background: var(--neon-pink);
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background: var(--neon-pink);
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 1, 24, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0;
    border-bottom: 2px solid rgba(255, 0, 255, 0.3);
    z-index: 999;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.mobile-nav.active {
    max-height: calc(100vh - 70px);
    opacity: 1;
    transform: translateY(0);
    padding: 20px;
}

.mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
}

.mobile-nav.active li {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered animation for menu items */
.mobile-nav.active li:nth-child(1) { transition-delay: 0.05s; }
.mobile-nav.active li:nth-child(2) { transition-delay: 0.1s; }
.mobile-nav.active li:nth-child(3) { transition-delay: 0.15s; }
.mobile-nav.active li:nth-child(4) { transition-delay: 0.2s; }
.mobile-nav.active li:nth-child(5) { transition-delay: 0.25s; }
.mobile-nav.active li:nth-child(6) { transition-delay: 0.3s; }

.mobile-nav a {
    display: flex;
    align-items: center;
    padding: 16px 0;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.2s ease;
}

.mobile-nav a:hover,
.mobile-nav a:active {
    color: var(--neon-cyan);
    padding-left: 10px;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

/* Mobile Auth Buttons */
.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease 0.2s;
}

.mobile-nav.active .mobile-nav-actions {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 1rem;
    font-weight: 600;
}

.mobile-nav-actions .btn-outline {
    background: transparent;
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
}

.mobile-nav-actions .btn-outline:hover {
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.mobile-nav-actions .btn-primary {
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 0, 255, 0.3);
}

.mobile-nav-actions .btn-primary:hover {
    box-shadow: 0 6px 25px rgba(255, 0, 255, 0.5);
    transform: translateY(-2px);
}

/* Mobile nav overlay for closing on outside click */
.mobile-nav-overlay {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    padding: 100px 0 80px;
    text-align: center;
    overflow: hidden;
}

/* Floating Decorative Elements */
.hero-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF00FF' stroke-width='1' opacity='0.3'%3E%3Crect x='2' y='4' width='20' height='16' rx='2'/%3E%3Cpath d='M6 8h.01M10 8h.01M6 12h.01M10 12h.01M14 8h4M14 12h4'/%3E%3C/svg%3E") center/contain no-repeat;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 0, 255, 0.5));
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 30%;
    right: 10%;
    width: 80px;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300FFFF' stroke-width='1' opacity='0.3'%3E%3Crect x='6' y='2' width='12' height='20' rx='2'/%3E%3Ccircle cx='12' cy='14' r='4'/%3E%3Cline x1='12' y1='6' x2='12' y2='6.01'/%3E%3C/svg%3E") center/contain no-repeat;
    animation: float 8s ease-in-out infinite reverse;
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.5));
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title .highlight {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(20px);
    opacity: 0.7;
}

.hero-subtitle {
    font-size: 22px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    letter-spacing: 3px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-subtitle::before,
.hero-subtitle::after {
    content: '//';
    color: var(--neon-pink);
    margin: 0 15px;
    text-shadow: var(--glow-pink);
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

/* Stats Row with Neon Numbers */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: var(--gradient-pink-purple);
    opacity: 0.5;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 900;
    background: var(--gradient-pink-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 20px rgba(255, 0, 255, 0.5));
    animation: neonPulse 2s ease-in-out infinite;
}

@keyframes neonPulse {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(255, 0, 255, 0.5)); }
    50% { filter: drop-shadow(0 0 30px rgba(255, 0, 255, 0.8)); }
}

.stat-label {
    color: var(--text-secondary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   SECTION TITLES
   ============================================ */
.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-pink-purple);
    box-shadow: var(--glow-pink);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--neon-pink);
    border-radius: 50%;
    box-shadow: var(--glow-pink);
}

/* ============================================
   CATEGORIES SECTION - Glassmorphism Cards
   ============================================ */
.categories-section {
    padding: 80px 0;
    position: relative;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.category-card {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 0, 255, 0.2);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.25s ease,
                border-color 0.25s ease;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-pink-purple);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.category-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1), rgba(0, 255, 255, 0.1));
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-pink);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 0, 255, 0.2),
        inset 0 0 30px rgba(255, 0, 255, 0.05);
}

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

.category-icon {
    font-size: 50px;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.5));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 25px rgba(255, 0, 255, 0.8));
}

.category-card h3 {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-weight: 600;
}

.category-arrow {
    color: var(--neon-cyan);
    font-size: 24px;
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}

.category-card:hover .category-arrow {
    transform: translateX(5px);
    color: var(--neon-pink);
    text-shadow: var(--glow-pink);
}

/* ============================================
   FEATURED CASINOS
   ============================================ */
.featured-section {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(139, 0, 255, 0.05) 50%, transparent 100%);
}

.casino-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.casino-card {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.25s ease,
                border-color 0.25s ease;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.casino-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-cyan-purple);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.casino-card:hover {
    transform: translateX(10px);
    border-color: var(--neon-cyan);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(0, 255, 255, 0.2);
}

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

.casino-card.featured {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1) 0%, rgba(139, 0, 255, 0.1) 100%);
    border-color: var(--neon-pink);
}

.casino-card.featured::before {
    opacity: 1;
    background: var(--gradient-pink-purple);
}

.casino-rank {
    font-size: 28px;
    font-weight: 900;
    background: var(--gradient-cyan-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 60px;
}

.casino-info {
    flex: 1;
}

.casino-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.stars {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.rating-value {
    font-weight: 700;
    color: var(--neon-cyan);
}

.casino-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-tag {
    background: rgba(139, 0, 255, 0.2);
    border: 1px solid rgba(139, 0, 255, 0.3);
    color: var(--text-secondary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(139, 0, 255, 0.4);
    border-color: var(--neon-purple);
}

.casino-bonus {
    text-align: center;
    min-width: 140px;
}

.bonus-label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bonus-amount {
    display: block;
    font-size: 26px;
    font-weight: 900;
    background: var(--gradient-pink-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(255, 0, 255, 0.5));
}

/* ============================================
   CAROUSEL SECTION
   ============================================ */
.carousel-section {
    padding: 80px 0;
    overflow: hidden;
}

.carousel-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.carousel-row {
    animation: scroll-left linear infinite;
}

.carousel-track {
    display: flex;
    gap: 20px;
    width: max-content;
}

.carousel-item {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 0, 255, 0.2);
    border-radius: 16px;
    padding: 25px;
    min-width: 320px;
    transition: all 0.3s ease;
}

.carousel-item:hover {
    border-color: var(--neon-pink);
    box-shadow: var(--glow-pink);
}

.carousel-item h4 {
    color: var(--neon-cyan);
    margin-bottom: 12px;
    font-size: 16px;
}

.carousel-item p {
    font-size: 14px;
    color: var(--text-secondary);
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   ARTICLES SECTION
   ============================================ */
.articles-section {
    padding: 80px 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.article-card {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.25s ease,
                border-color 0.25s ease;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.article-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.article-card:hover {
    transform: translateY(-8px);
    border-color: var(--neon-cyan);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(0, 255, 255, 0.15);
}

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

.article-meta {
    margin-bottom: 15px;
}

.article-category {
    background: var(--gradient-pink-purple);
    color: var(--text-primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: var(--glow-pink);
}

.article-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.article-card h3 a {
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.article-card h3 a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.article-card p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.article-link {
    color: var(--neon-pink);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.article-link:hover {
    color: var(--neon-cyan);
    transform: translateX(5px);
}

/* ============================================
   TAGS SECTION
   ============================================ */
.tags-section {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 0, 255, 0.03) 50%, transparent 100%);
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.tag-item {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 0, 255, 0.3);
    color: var(--text-secondary);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tag-item:hover {
    background: var(--gradient-pink-purple);
    border-color: transparent;
    color: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: var(--glow-pink);
}

.tag-count {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 80px 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.about-content h2 {
    font-size: 32px;
    background: var(--gradient-pink-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    text-align: center;
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.9;
    color: var(--text-secondary);
    text-align: justify;
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(139, 0, 255, 0.2) 0%, rgba(255, 0, 255, 0.2) 100%);
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(rgba(255, 0, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.trust-item {
    text-align: center;
    padding: 30px;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.trust-icon {
    font-size: 50px;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.5));
}

.trust-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.trust-item p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
    padding: 80px 0;
}

.newsletter-content {
    max-width: 550px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 0, 255, 0.3);
    border-radius: 24px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
}

.newsletter-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-pink-purple);
}

.newsletter-content h2 {
    font-size: 28px;
    background: var(--gradient-pink-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.newsletter-content p {
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 12px;
    font-size: 16px;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    border-top: 1px solid rgba(255, 0, 255, 0.2);
    padding: 70px 0 30px;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-pink), var(--neon-cyan), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    height: 45px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(255, 0, 255, 0.5));
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.footer-links h4,
.footer-info h4 {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--neon-pink);
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::before {
    content: '>';
    margin-right: 8px;
    color: var(--neon-cyan);
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-cyan);
    padding-left: 15px;
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-info p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs-section {
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.3);
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.breadcrumbs a {
    color: var(--neon-cyan);
}

.breadcrumbs .separator {
    color: var(--text-muted);
}

.breadcrumbs .current {
    color: var(--text-secondary);
}

/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    padding: 70px 0;
    text-align: center;
    position: relative;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-pink), transparent);
}

.page-title {
    font-size: 42px;
    font-weight: 900;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.page-subtitle {
    color: var(--text-secondary);
    font-size: 16px;
}

.tag-icon {
    font-size: 60px;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 20px rgba(255, 0, 255, 0.5));
}

/* ============================================
   SUBCATEGORIES
   ============================================ */
.subcategories-section {
    padding: 70px 0;
}

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

.subcategory-card {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.subcategory-card:hover {
    transform: translateX(8px);
    border-color: var(--neon-cyan);
    border-left: 4px solid var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.subcategory-card h3 {
    font-size: 18px;
    color: var(--text-primary);
}

.article-count {
    font-size: 12px;
    color: var(--neon-purple);
}

.card-arrow {
    font-size: 24px;
    color: var(--neon-cyan);
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 50px;
}

.page-link {
    padding: 12px 18px;
    border-radius: 10px;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 0, 255, 0.3);
    color: var(--text-secondary);
    font-weight: 500;
    transition: all 0.3s ease;
}

.page-link:hover,
.page-link.active {
    background: var(--gradient-pink-purple);
    border-color: transparent;
    color: var(--text-primary);
    box-shadow: var(--glow-pink);
}

/* ============================================
   ARTICLE LAYOUT
   ============================================ */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 50px;
    padding: 50px 0;
}

.article-main {
    min-width: 0;
}

.article-header {
    padding: 50px 0;
    text-align: center;
}

.article-title {
    font-size: 36px;
    font-weight: 900;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.article-meta-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.category-badge {
    background: var(--gradient-pink-purple);
    color: var(--text-primary);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: var(--glow-pink);
}

.reading-time {
    color: var(--text-muted);
    font-size: 14px;
}

/* TOC Section */
.toc-section {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 35px;
}

.toc-section h3 {
    color: var(--neon-cyan);
    margin-bottom: 20px;
    font-size: 18px;
}

.toc-nav ul {
    list-style: none;
}

.toc-nav li {
    margin-bottom: 12px;
}

.toc-nav a {
    color: var(--text-secondary);
    padding-left: 18px;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    display: block;
    transition: all 0.3s ease;
    font-size: 14px;
}

.toc-nav a:hover {
    border-left-color: var(--neon-pink);
    color: var(--neon-pink);
    padding-left: 22px;
}

/* Article Content */
.article-content {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 0, 255, 0.2);
    border-radius: 20px;
    padding: 45px;
    margin-bottom: 35px;
}

.article-content h2 {
    color: var(--neon-cyan);
    font-size: 26px;
    margin: 40px 0 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.article-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.article-content p {
    margin-bottom: 18px;
    line-height: 1.9;
    color: var(--text-secondary);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 25px 0;
}

.feature-item {
    background: rgba(139, 0, 255, 0.1);
    border: 1px solid rgba(139, 0, 255, 0.2);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--neon-purple);
    box-shadow: var(--glow-purple);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
}

.feature-item h4 {
    color: var(--neon-cyan);
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 14px;
    margin: 0;
    color: var(--text-secondary);
}

/* Pros Cons */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 25px 0;
}

.pros, .cons {
    padding: 30px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.pros {
    background: linear-gradient(135deg, rgba(0, 255, 170, 0.1) 0%, rgba(0, 200, 150, 0.1) 100%);
    border: 1px solid rgba(0, 255, 170, 0.3);
}

.cons {
    background: linear-gradient(135deg, rgba(255, 0, 100, 0.1) 0%, rgba(200, 0, 80, 0.1) 100%);
    border: 1px solid rgba(255, 0, 100, 0.3);
}

.pros h4, .cons h4 {
    margin-bottom: 20px;
    font-size: 18px;
    color: var(--text-primary);
}

.pros ul, .cons ul {
    list-style: none;
}

.pros li, .cons li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-secondary);
}

.pros li::before {
    content: '+';
    position: absolute;
    left: 0;
    color: #00FFAA;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 255, 170, 0.5);
}

.cons li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: #FF0064;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 0, 100, 0.5);
}

/* CTA Box */
.cta-box {
    background: var(--gradient-pink-purple);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 40px;
    box-shadow: var(--glow-pink);
}

.cta-box p {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-size: 20px;
}

.cta-box .btn {
    background: var(--text-primary);
    color: var(--neon-purple);
}

/* Author Section */
.author-section {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 35px;
}

.author-avatar {
    width: 80px;
    height: 80px;
    background: var(--gradient-pink-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-weight: 900;
    font-size: 24px;
    box-shadow: var(--glow-pink);
}

.author-info h4 {
    color: var(--neon-cyan);
    margin-bottom: 8px;
}

.author-info p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

/* Article Tags */
.article-tags-section {
    margin-bottom: 35px;
}

.article-tags-section h3 {
    color: var(--neon-cyan);
    margin-bottom: 18px;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag-badge {
    background: var(--bg-glass);
    border: 1px solid rgba(139, 0, 255, 0.3);
    color: var(--text-secondary);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 13px;
    transition: all 0.3s ease;
}

.tag-badge:hover {
    background: var(--neon-purple);
    color: var(--text-primary);
    border-color: transparent;
}

/* Related Articles */
.related-articles-section {
    margin-bottom: 35px;
}

.related-articles-section h3 {
    color: var(--neon-cyan);
    margin-bottom: 25px;
}

.related-articles-section .related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.related-article {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 0, 255, 0.2);
    padding: 22px;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.related-article:hover {
    transform: translateY(-5px);
    border-color: var(--neon-pink);
    box-shadow: var(--glow-pink);
}

.related-article h4 {
    color: var(--text-primary);
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.read-more {
    color: var(--neon-pink);
    font-size: 12px;
}

/* Sidebar */
.article-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 25px;
}

.widget-title {
    color: var(--neon-cyan);
    font-size: 18px;
    margin-bottom: 22px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.winners-list {
    list-style: none;
}

.winners-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.winners-list li:last-child {
    border-bottom: none;
}

.winner-rank {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

.winner-rank.gold {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a1a;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.winner-rank.silver {
    background: linear-gradient(135deg, #C0C0C0, #A0A0A0);
    color: #1a1a1a;
}

.winner-rank.bronze {
    background: linear-gradient(135deg, #CD7F32, #B87333);
    color: #1a1a1a;
}

.winner-name {
    flex: 1;
    font-size: 14px;
    color: var(--text-secondary);
}

.winner-amount {
    color: var(--neon-cyan);
    font-weight: 700;
    font-size: 14px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.popular-list {
    list-style: none;
}

.popular-list li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.popular-list li:last-child {
    border-bottom: none;
}

.popular-list a {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

.popular-list a:hover {
    color: var(--neon-pink);
}

.sticky-cta {
    background: var(--gradient-pink-purple);
    text-align: center;
    box-shadow: var(--glow-pink);
}

.sticky-cta h3 {
    color: var(--text-primary);
    margin-bottom: 12px;
}

.cta-highlight {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 8px;
}

.sticky-cta p {
    font-size: 14px;
    margin-bottom: 18px;
    opacity: 0.9;
}

.sticky-cta .btn {
    background: var(--text-primary);
    color: var(--neon-purple);
    width: 100%;
}

/* ============================================
   ERROR PAGE
   ============================================ */
.error-section {
    padding: 120px 0;
    text-align: center;
}

.error-icon {
    font-size: 100px;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 30px rgba(255, 0, 255, 0.5));
}

.error-title {
    font-size: 120px;
    font-weight: 900;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    text-shadow: none;
    filter: drop-shadow(0 0 30px rgba(255, 0, 255, 0.5));
}

.error-subtitle {
    font-size: 32px;
    color: var(--text-primary);
    margin-bottom: 25px;
}

.error-message {
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.error-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.popular-section {
    padding: 70px 0;
}

/* No Content */
.no-content {
    text-align: center;
    padding: 70px 25px;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 0, 255, 0.2);
    border-radius: 20px;
}

.no-content p {
    color: var(--text-secondary);
}

/* ============================================
   CASINO CARDS VARIANTS
   ============================================ */
.casino-cards.horizontal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 18px;
}

.casino-card-mini {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 14px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.casino-card-mini:hover {
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.casino-card-mini .rank {
    font-weight: 900;
    color: var(--neon-purple);
}

.casino-card-mini .name {
    flex: 1;
    font-weight: 600;
    color: var(--text-primary);
}

.casino-card-mini .rating {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.casino-card-mini .bonus {
    color: var(--neon-pink);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}

/* Casino Card Row */
.casino-cards-section {
    margin-bottom: 45px;
}

.casino-cards-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.casino-card-row {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 16px;
    padding: 22px;
    display: grid;
    grid-template-columns: 60px 1fr 150px 130px;
    align-items: center;
    gap: 22px;
    transition: all 0.3s ease;
}

.casino-card-row:hover {
    transform: translateX(8px);
    border-color: var(--neon-cyan);
    border-left: 4px solid var(--neon-cyan);
}

.casino-card-row.featured {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1) 0%, rgba(139, 0, 255, 0.1) 100%);
    border: 2px solid var(--neon-pink);
}

.rank-number {
    font-size: 22px;
    font-weight: 900;
    background: var(--gradient-cyan-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Filter Section */
.filter-section {
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.3);
}

.filter-bar {
    display: flex;
    align-items: center;
    gap: 18px;
}

.filter-label {
    font-weight: 500;
    color: var(--text-primary);
}

.filter-option {
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    color: var(--text-secondary);
    border: 1px solid rgba(139, 0, 255, 0.3);
    background: var(--bg-glass);
    transition: all 0.3s ease;
}

.filter-option.active,
.filter-option:hover {
    background: var(--gradient-pink-purple);
    border-color: transparent;
    color: var(--text-primary);
    box-shadow: var(--glow-pink);
}

/* Related Section */
.related-section {
    padding: 70px 0;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.related-card {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 0, 255, 0.2);
    padding: 22px;
    border-radius: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.related-card:hover {
    background: var(--gradient-pink-purple);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--glow-pink);
}

.related-card h4 {
    font-size: 14px;
    color: var(--text-primary);
}

.related-card .arrow {
    color: var(--neon-pink);
    transition: color 0.3s ease;
}

.related-card:hover .arrow {
    color: var(--text-primary);
}

/* Description Section */
.description-section {
    padding: 70px 0;
}

.description-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 0, 255, 0.2);
    padding: 45px;
    border-radius: 20px;
}

.description-content h2 {
    color: var(--neon-cyan);
    margin-bottom: 25px;
}

.description-content p {
    margin-bottom: 18px;
    line-height: 1.9;
    color: var(--text-secondary);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .sidebar-widget {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .header-inner {
        flex-wrap: wrap;
    }

    .main-nav,
    .header-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }

    .stat-number {
        font-size: 40px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 28px;
    }

    .casino-card-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 18px;
    }

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

    .related-articles-section .related-grid {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        grid-template-columns: 1fr;
    }

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

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

    .page-title {
        font-size: 32px;
    }

    .article-title {
        font-size: 28px;
    }

    .article-content {
        padding: 28px;
    }

    .casino-card {
        flex-direction: column;
        text-align: center;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-section {
        padding: 70px 0 60px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .btn-lg {
        padding: 14px 30px;
        font-size: 14px;
    }

    .casino-bonus {
        min-width: auto;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .category-card {
        padding: 25px 15px;
    }

    .category-icon {
        font-size: 40px;
    }
}

/* ============================================
   SCROLL ANIMATIONS (using IntersectionObserver)
   Optimized for fast, responsive feel
   ============================================ */
.fade-in-up {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

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

/* Staggered animations for grid items - Fast & Snappy */
.categories-grid .category-card,
.articles-grid .article-card,
.casino-cards .casino-card {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.categories-grid .category-card.visible,
.articles-grid .article-card.visible,
.casino-cards .casino-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--neon-pink), var(--neon-purple));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--neon-cyan), var(--neon-purple));
}

/* Selection color */
::selection {
    background: rgba(255, 0, 255, 0.3);
    color: var(--text-primary);
}
