/* ============================================
   DARKNEON THEME - main.css (moban-145)
   Neon Dark Cyberpunk Theme with Glowing Outlines
   Colors: #0D0D0D, #FF1493, #00FFFF
   ============================================ */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: #0D0D0D;
    color: #E0E0E8;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: #00FFFF;
    transition: all 0.3s ease;
}

a:hover {
    color: #FF1493;
    text-shadow: 0 0 10px rgba(255, 20, 147, 0.5);
}

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

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

.neon-text {
    color: #FF1493;
    background: linear-gradient(90deg, #FF1493, #00FFFF, #FF1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.neon-cyan-text {
    color: #00FFFF;
    background: linear-gradient(90deg, #00FFFF, #FF1493, #00FFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === KEYFRAME ANIMATIONS === */
@keyframes neonFlicker {
    0%, 100% {
        opacity: 1;
        text-shadow: 0 0 5px #FF1493, 0 0 10px #FF1493, 0 0 20px #FF1493, 0 0 40px #FF1493;
        filter: brightness(1);
    }
    5% {
        opacity: 0.85;
        text-shadow: 0 0 2px #FF1493, 0 0 5px #FF1493;
        filter: brightness(0.8);
    }
    10% {
        opacity: 1;
        text-shadow: 0 0 5px #FF1493, 0 0 10px #FF1493, 0 0 20px #FF1493, 0 0 40px #FF1493;
        filter: brightness(1);
    }
    15% {
        opacity: 0.9;
        text-shadow: 0 0 3px #FF1493, 0 0 7px #FF1493;
        filter: brightness(0.9);
    }
    20% {
        opacity: 1;
        text-shadow: 0 0 5px #FF1493, 0 0 10px #FF1493, 0 0 20px #FF1493, 0 0 40px #FF1493;
        filter: brightness(1.1);
    }
    50% {
        opacity: 1;
        text-shadow: 0 0 7px #FF1493, 0 0 15px #FF1493, 0 0 30px #FF1493, 0 0 60px #FF1493;
        filter: brightness(1.2);
    }
    55% {
        opacity: 0.88;
        text-shadow: 0 0 2px #FF1493;
        filter: brightness(0.85);
    }
    60% {
        opacity: 1;
        text-shadow: 0 0 5px #FF1493, 0 0 10px #FF1493, 0 0 20px #FF1493, 0 0 40px #FF1493;
        filter: brightness(1);
    }
}

@keyframes cyberGlow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(0, 255, 255, 0.3), 0 0 10px rgba(0, 255, 255, 0.2), inset 0 0 5px rgba(0, 255, 255, 0.1);
        border-color: rgba(0, 255, 255, 0.4);
    }
    25% {
        box-shadow: 0 0 10px rgba(0, 255, 255, 0.5), 0 0 20px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.15);
        border-color: rgba(0, 255, 255, 0.6);
    }
    50% {
        box-shadow: 0 0 15px rgba(0, 255, 255, 0.7), 0 0 30px rgba(0, 255, 255, 0.4), 0 0 60px rgba(0, 255, 255, 0.2), inset 0 0 15px rgba(0, 255, 255, 0.2);
        border-color: rgba(0, 255, 255, 0.8);
    }
    75% {
        box-shadow: 0 0 10px rgba(255, 20, 147, 0.5), 0 0 20px rgba(255, 20, 147, 0.3), inset 0 0 10px rgba(255, 20, 147, 0.15);
        border-color: rgba(255, 20, 147, 0.6);
    }
}

@keyframes darkPulse145 {
    0%, 100% {
        background: radial-gradient(ellipse at center, rgba(255, 20, 147, 0.08) 0%, rgba(13, 13, 13, 0) 70%);
        transform: scale(1);
    }
    25% {
        background: radial-gradient(ellipse at center, rgba(0, 255, 255, 0.1) 0%, rgba(13, 13, 13, 0) 60%);
        transform: scale(1.02);
    }
    50% {
        background: radial-gradient(ellipse at center, rgba(255, 20, 147, 0.15) 0%, rgba(13, 13, 13, 0) 50%);
        transform: scale(1.05);
    }
    75% {
        background: radial-gradient(ellipse at center, rgba(0, 255, 255, 0.12) 0%, rgba(13, 13, 13, 0) 55%);
        transform: scale(1.03);
    }
}

@keyframes lightTrail {
    0% {
        transform: translateX(-100%) rotate(45deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        transform: translateX(200%) rotate(45deg);
        opacity: 0.8;
    }
    60% {
        opacity: 0;
    }
    100% {
        transform: translateX(200%) rotate(45deg);
        opacity: 0;
    }
}

/* === HEADER === */
.site-header {
    background: linear-gradient(180deg, #0D0D0D 0%, #111118 100%);
    border-bottom: 2px solid rgba(0, 255, 255, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: cyberGlow 4s ease-in-out infinite;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

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

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

.header-time {
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    color: #00FFFF;
    letter-spacing: 1px;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

.header-btn-group {
    display: flex;
    gap: 10px;
}

.btn-login {
    padding: 8px 18px;
    border: 1px solid #00FFFF;
    color: #00FFFF;
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-login:hover {
    background: rgba(0, 255, 255, 0.15);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
    color: #fff;
}

.btn-register {
    padding: 8px 18px;
    background: linear-gradient(135deg, #FF1493, #FF0066);
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 4px;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-register:hover {
    background: linear-gradient(135deg, #FF0066, #FF1493);
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.6);
    color: #fff;
    transform: translateY(-2px);
}

.btn-demo {
    padding: 8px 18px;
    border: 1px solid #FF1493;
    color: #FF1493;
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-demo:hover {
    background: rgba(255, 20, 147, 0.15);
    box-shadow: 0 0 15px rgba(255, 20, 147, 0.4);
    color: #fff;
}

/* === NAVIGATION === */
.main-navigation {
    background: rgba(13, 13, 13, 0.95);
    border-top: 1px solid rgba(255, 20, 147, 0.2);
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 12px 16px;
    color: #E0E0E8;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.nav-link:hover {
    color: #00FFFF;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
    border-bottom-color: #00FFFF;
    background: rgba(0, 255, 255, 0.05);
}

.nav-link i {
    margin-right: 5px;
    color: #FF1493;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: 1px solid #00FFFF;
    color: #00FFFF;
    font-size: 22px;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 4px;
}

/* === NOTIFICATION BAR === */
.notification-bar {
    background: linear-gradient(90deg, rgba(255, 20, 147, 0.15), rgba(0, 255, 255, 0.15), rgba(255, 20, 147, 0.15));
    padding: 8px 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.notification-content {
    display: flex;
    gap: 40px;
    animation: scrollText 30s linear infinite;
    white-space: nowrap;
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #00FFFF;
}

@keyframes scrollText {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* === ANNOUNCEMENT MODAL === */
.announcement-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.announcement-modal.active {
    display: flex;
}

.announcement-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.announcement-content {
    position: relative;
    background: linear-gradient(145deg, #111118, #0D0D0D);
    border: 2px solid #FF1493;
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.4), 0 0 60px rgba(0, 255, 255, 0.2);
    animation: cyberGlow 3s ease-in-out infinite;
}

.announcement-close {
    position: absolute;
    top: 12px;
    right: 15px;
    background: none;
    border: none;
    color: #FF1493;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
}

.announcement-close:hover {
    color: #00FFFF;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
    transform: rotate(90deg);
}

.announcement-header-icon {
    text-align: center;
    margin-bottom: 15px;
}

.announcement-header-icon i {
    font-size: 40px;
    color: #FF1493;
    animation: neonFlicker 3s ease-in-out infinite;
}

.announcement-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.announcement-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.announcement-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.announcement-item:hover {
    background: rgba(0, 255, 255, 0.08);
    border-color: #00FFFF;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

.announcement-badge {
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.announcement-badge.hot {
    background: linear-gradient(135deg, #FF1493, #FF0066);
    color: #fff;
}

.announcement-badge.new {
    background: linear-gradient(135deg, #00FFFF, #0088CC);
    color: #0D0D0D;
}

.announcement-badge.info {
    background: linear-gradient(135deg, #9B59B6, #8E44AD);
    color: #fff;
}

.announcement-text {
    flex: 1;
    font-size: 13px;
    color: #E0E0E8;
    font-weight: 500;
}

.announcement-item i.fa-chevron-right {
    color: #00FFFF;
    font-size: 12px;
}

.announcement-footer {
    text-align: center;
}

.btn-neon {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #FF1493, #FF0066);
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 6px;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-neon:hover {
    box-shadow: 0 0 25px rgba(255, 20, 147, 0.6), 0 0 50px rgba(255, 20, 147, 0.3);
    transform: translateY(-2px);
    color: #fff;
}

/* === HERO SECTION === */
.darkneon-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 20px 0;
    border-radius: 12px;
    background: linear-gradient(145deg, #0D0D0D, #111118, #0D0D0D);
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.neon-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: darkPulse145 6s ease-in-out infinite;
}

.neon-scanlines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.1) 2px,
        rgba(0, 0, 0, 0.1) 4px
    );
    pointer-events: none;
}

.hero-inner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
}

.hero-main-title {
    margin-bottom: 25px;
}

.hero-brand {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 10px;
    animation: neonFlicker 4s ease-in-out infinite;
}

.hero-divider-line {
    display: block;
    width: 200px;
    height: 2px;
    margin: 15px auto;
    background: linear-gradient(90deg, transparent, #FF1493, #00FFFF, #FF1493, transparent);
}

.hero-tagline {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    letter-spacing: 5px;
    font-weight: 500;
}

.hero-description {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 16px;
    color: #B0B0C0;
    line-height: 1.8;
    font-weight: 400;
}

.hero-stats-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #00FFFF;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.hero-stat-label {
    display: block;
    font-size: 13px;
    color: #808090;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    font-weight: 500;
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-neon-primary {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, #FF1493, #FF0066);
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 6px;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-neon-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 30px;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: lightTrail 4s ease-in-out infinite;
}

.btn-neon-primary:hover {
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.6), 0 0 60px rgba(255, 20, 147, 0.3);
    transform: translateY(-3px);
    color: #fff;
}

.btn-outline-neon {
    display: inline-block;
    padding: 14px 35px;
    border: 2px solid #00FFFF;
    color: #00FFFF;
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-outline-neon:hover {
    background: rgba(0, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4), 0 0 40px rgba(0, 255, 255, 0.2);
    transform: translateY(-3px);
    color: #fff;
}

/* === SECTION TITLES === */
.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-title i {
    margin-right: 10px;
}

.section-subtitle {
    text-align: center;
    color: #808090;
    font-size: 15px;
    margin-bottom: 35px;
    font-weight: 400;
}

/* === NEON STAR GAMES === */
.neon-star-games {
    padding: 40px 0;
}

.neon-star-games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.neon-star-game-card {
    position: relative;
    display: block;
    background: linear-gradient(145deg, #111118, #0D0D0D);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
    animation: cyberGlow 5s ease-in-out infinite;
}

.neon-star-game-card:hover {
    transform: translateY(-8px);
    border-color: #FF1493;
    box-shadow: 0 0 25px rgba(255, 20, 147, 0.4), 0 0 50px rgba(0, 255, 255, 0.2);
}

.neon-star-game-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(255, 20, 147, 0.08) 0%, transparent 60%);
    pointer-events: none;
    animation: darkPulse145 4s ease-in-out infinite;
}

.neon-star-game-icon {
    font-size: 40px;
    color: #FF1493;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.neon-star-game-icon i {
    filter: drop-shadow(0 0 10px rgba(255, 20, 147, 0.6));
}

.neon-star-game-rating {
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.neon-star-game-rating i {
    color: #00FFFF;
    font-size: 12px;
    margin: 0 1px;
}

.neon-star-game-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.neon-star-game-card p {
    font-size: 13px;
    color: #9090A0;
    line-height: 1.6;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.neon-star-game-players {
    font-size: 12px;
    color: #00FFFF;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.neon-star-game-players i {
    margin-right: 5px;
}

/* === NEON GRID SECTION === */
.neon-grid-section {
    padding: 40px 0;
}

.neon-grid-map {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.neon-grid-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.neon-grid-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
    background: linear-gradient(145deg, #111118, #0D0D0D);
    border: 1px solid rgba(255, 20, 147, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.neon-grid-node:hover {
    border-color: #00FFFF;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3), 0 0 30px rgba(255, 20, 147, 0.15);
    transform: translateY(-5px);
}

.neon-node-icon {
    font-size: 28px;
    color: #00FFFF;
    margin-bottom: 8px;
}

.neon-node-icon i {
    filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.5));
}

.neon-node-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #E0E0E8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* === NEON FEATURES === */
.neon-features {
    padding: 40px 0;
}

.neon-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.neon-feature-card {
    background: linear-gradient(145deg, #111118, #0D0D0D);
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.neon-feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 30px;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.15), transparent);
    animation: lightTrail 6s ease-in-out infinite;
}

.neon-feature-card:hover {
    border-color: #FF1493;
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.3), 0 0 40px rgba(0, 255, 255, 0.15);
    transform: translateY(-5px);
}

.neon-feature-icon {
    font-size: 36px;
    color: #FF1493;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.neon-feature-icon i {
    filter: drop-shadow(0 0 12px rgba(255, 20, 147, 0.6));
    animation: neonFlicker 5s ease-in-out infinite;
}

.neon-feature-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.neon-feature-card p {
    font-size: 13px;
    color: #9090A0;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* === NEON STATS === */
.neon-stats {
    position: relative;
    padding: 50px 0;
    margin: 30px 0;
    overflow: hidden;
}

.neon-stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #0D0D0D, #111118);
    border-top: 1px solid rgba(255, 20, 147, 0.2);
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.neon-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 20, 147, 0.1) 0%, transparent 70%);
    animation: darkPulse145 5s ease-in-out infinite;
}

.neon-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

.neon-stat-card {
    background: rgba(13, 13, 13, 0.9);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    animation: cyberGlow 5s ease-in-out infinite;
}

.neon-stat-card:hover {
    transform: translateY(-5px);
    border-color: #FF1493;
    box-shadow: 0 0 25px rgba(255, 20, 147, 0.4);
}

.stat-neon-decoration {
    color: #FF1493;
    font-size: 18px;
    margin-bottom: 10px;
    opacity: 0.6;
}

.stat-neon-decoration.bottom {
    margin-bottom: 0;
    margin-top: 10px;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #00FFFF;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
    margin-bottom: 8px;
}

.stat-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    color: #9090A0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* === NEON PROMOS === */
.neon-promos {
    padding: 40px 0;
}

.neon-promos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.neon-promo-card {
    position: relative;
    background: linear-gradient(145deg, #111118, #0D0D0D);
    border: 1px solid rgba(255, 20, 147, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.neon-promo-card:hover {
    transform: translateY(-8px);
    border-color: #00FFFF;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.4), 0 0 50px rgba(255, 20, 147, 0.2);
}

.promo-neon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(255, 20, 147, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.neon-promo-inner {
    position: relative;
    z-index: 1;
    padding: 25px;
    text-align: center;
}

.promo-icon {
    font-size: 36px;
    color: #FF1493;
    margin-bottom: 15px;
}

.promo-icon i {
    filter: drop-shadow(0 0 10px rgba(255, 20, 147, 0.5));
}

.neon-promo-inner h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.neon-promo-inner p {
    font-size: 13px;
    color: #9090A0;
    line-height: 1.7;
    margin-bottom: 15px;
}

.promo-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 12px;
    color: #808090;
}

.promo-badge {
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

.promo-badge.hot {
    background: linear-gradient(135deg, #FF1493, #FF0066);
    color: #fff;
}

.promo-badge.new {
    background: linear-gradient(135deg, #00FFFF, #0088CC);
    color: #0D0D0D;
}

.promo-badge.vip {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #0D0D0D;
}

.btn-promo {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, #FF1493, #FF0066);
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-promo:hover {
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.5);
    transform: translateY(-2px);
    color: #fff;
}

/* === FOOTER CTA === */
.footer-cta-section {
    position: relative;
    padding: 60px 0;
    margin: 30px 0;
    text-align: center;
    overflow: hidden;
}

.footer-cta-neonfield {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #0D0D0D, #111118);
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: 12px;
}

.footer-cta-inner {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.cta-neon-decoration {
    margin-bottom: 20px;
}

.cta-neon-ring {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    border: 3px solid #FF1493;
    border-radius: 50%;
    animation: cyberGlow 3s ease-in-out infinite;
}

.footer-cta-inner h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(255, 20, 147, 0.4);
}

.footer-cta-inner > p {
    max-width: 600px;
    margin: 0 auto 25px;
    font-size: 15px;
    color: #9090A0;
    line-height: 1.7;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cta-feature {
    font-size: 14px;
    color: #00FFFF;
    font-weight: 600;
}

.cta-feature i {
    margin-right: 6px;
    color: #FF1493;
}

.cta-main-btn {
    margin-top: 10px;
}
/* === HOME NEWS SECTION === */
.home-news-section {
    padding: 40px 0;
}

.home-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.article-card {
    display: block;
    background: linear-gradient(145deg, #111118, #0D0D0D);
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: #FF1493;
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.3), 0 0 40px rgba(0, 255, 255, 0.15);
}

.article-card-thumb {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.article-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .article-card-thumb img {
    transform: scale(1.1);
}

.article-card-title {
    padding: 15px 15px 8px;
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #E0E0E8;
    line-height: 1.5;
    min-height: 55px;
}

.article-card-title span {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-title a {
    color: #E0E0E8;
}

.article-card-title a:hover {
    color: #00FFFF;
}

.article-card-meta {
    padding: 0 15px 8px;
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #707080;
}

.article-card-meta i {
    margin-right: 4px;
    color: #FF1493;
}

.article-card-excerpt {
    padding: 0 15px 15px;
    font-size: 13px;
    color: #9090A0;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-more {
    display: block;
    padding: 12px 15px;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
    color: #00FFFF;
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.article-card-more:hover {
    background: rgba(0, 255, 255, 0.05);
    color: #FF1493;
    letter-spacing: 2px;
}

.view-more-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #00FFFF;
    color: #00FFFF;
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-align: center;
}

.view-more-btn:hover {
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
    color: #fff;
}

.neon-view-more {
    display: block;
    margin: 0 auto;
    text-align: center;
    width: fit-content;
}

.home-news-placeholder {
    display: contents;
}

/* === CONTENT AREA === */
.content-area {
    display: flex;
    gap: 25px;
    padding: 20px 0;
}

.main-content {
    flex: 1;
    min-width: 0;
}

/* === ARTICLE GRID === */
.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #808090;
    font-size: 16px;
}

/* === BREADCRUMB === */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 0;
    font-size: 13px;
    color: #707080;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: #00FFFF;
    font-weight: 500;
}

.breadcrumb a:hover {
    color: #FF1493;
}

.breadcrumb span {
    color: #707080;
}

/* === CATEGORY HEADER === */
.category-header {
    text-align: center;
    padding: 20px 0 30px;
}

.category-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.category-desc {
    color: #9090A0;
    font-size: 14px;
    max-width: 600px;
    margin: 0 auto;
}

/* === PROVIDER TABS === */
.provider-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    padding: 15px 0;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.provider-tab {
    padding: 8px 18px;
    background: transparent;
    border: 1px solid rgba(0, 255, 255, 0.2);
    color: #9090A0;
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.provider-tab:hover,
.provider-tab.active {
    background: rgba(255, 20, 147, 0.15);
    border-color: #FF1493;
    color: #FF1493;
    box-shadow: 0 0 10px rgba(255, 20, 147, 0.2);
}

/* === SINGLE ARTICLE === */
.single-article {
    background: linear-gradient(145deg, #111118, #0D0D0D);
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

.article-header {
    margin-bottom: 25px;
}

.article-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.4;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 13px;
    color: #707080;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.article-meta i {
    margin-right: 5px;
    color: #FF1493;
}

.article-meta a {
    color: #00FFFF;
}

.article-featured-img {
    margin-bottom: 25px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.article-featured-img img {
    width: 100%;
    display: block;
}

.article-content {
    font-size: 15px;
    line-height: 1.9;
    color: #C0C0D0;
}

.article-content h2,
.article-content h3,
.article-content h4 {
    color: #fff;
    margin: 25px 0 12px;
}

.article-content h2 {
    font-size: 20px;
    color: #00FFFF;
    border-left: 3px solid #FF1493;
    padding-left: 12px;
}

.article-content h3 {
    font-size: 17px;
    color: #FF1493;
}

.article-content p {
    margin-bottom: 15px;
}

.article-content ul,
.article-content ol {
    margin: 15px 0;
    padding-left: 25px;
}

.article-content li {
    margin-bottom: 8px;
}

.article-content img {
    border-radius: 8px;
    margin: 15px 0;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.article-content a {
    color: #FF1493;
    text-decoration: underline;
}

.article-content blockquote {
    border-left: 3px solid #FF1493;
    padding: 15px 20px;
    margin: 20px 0;
    background: rgba(255, 20, 147, 0.05);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #B0B0C0;
}

/* === ARTICLE TAGS === */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 20px 0;
    margin-top: 20px;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
}

.article-tags i {
    color: #FF1493;
    margin-right: 5px;
}

.article-tags span {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 255, 255, 0.08);
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: 4px;
    font-size: 12px;
    color: #00FFFF;
    transition: all 0.3s ease;
}

.article-tags span:hover {
    background: rgba(255, 20, 147, 0.15);
    border-color: #FF1493;
    color: #FF1493;
}

/* === ARTICLE NAV === */
.article-nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    margin-top: 20px;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
}

.article-nav-prev a,
.article-nav-next a {
    color: #00FFFF;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.article-nav-prev a:hover,
.article-nav-next a:hover {
    color: #FF1493;
}

/* === RELATED POSTS === */
.related-posts {
    padding: 30px 0;
}

.related-posts-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 20, 147, 0.2);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.related-item {
    display: block;
    background: linear-gradient(145deg, #111118, #0D0D0D);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.related-item:hover {
    border-color: #FF1493;
    box-shadow: 0 0 10px rgba(255, 20, 147, 0.2);
    transform: translateY(-3px);
}

.related-item-thumb {
    height: 120px;
    overflow: hidden;
}

.related-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.related-item:hover .related-item-thumb img {
    transform: scale(1.1);
}

.related-item-title {
    padding: 10px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #E0E0E8;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* === PAGINATION === */
.pagination {
    display: flex;
    justify-content: center;
    padding: 25px 0;
}

.pagination .nav-links {
    display: flex;
    gap: 8px;
}

.pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 6px;
    color: #E0E0E8;
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    transition: all 0.3s ease;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: linear-gradient(135deg, #FF1493, #FF0066);
    border-color: #FF1493;
    color: #fff;
    box-shadow: 0 0 10px rgba(255, 20, 147, 0.4);
}

/* === FLOATING SIDEBAR === */
.floating-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 3px;
    z-index: 999;
}

.sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #111118, #0D0D0D);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-right: none;
    border-radius: 8px 0 0 8px;
    color: #00FFFF;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
}

.sidebar-btn:hover {
    width: 160px;
    background: rgba(0, 255, 255, 0.1);
    border-color: #00FFFF;
    color: #fff;
    justify-content: flex-start;
    padding-left: 12px;
    gap: 8px;
}

.sidebar-label {
    display: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.sidebar-btn:hover .sidebar-label {
    display: block;
}

.sidebar-btn-facebook:hover {
    background: rgba(24, 119, 242, 0.2);
    border-color: #1877F2;
}

.sidebar-btn-telegram:hover {
    background: rgba(0, 136, 204, 0.2);
    border-color: #0088CC;
}

/* === FOOTER === */
.site-footer {
    background: linear-gradient(180deg, #0D0D0D, #080810);
    border-top: 2px solid rgba(255, 20, 147, 0.3);
    padding: 50px 0 30px;
    margin-top: 40px;
}

.footer-columns-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 35px;
}

.footer-brand-logo {
    margin-bottom: 15px;
}

.footer-brand-logo img {
    height: 45px;
    filter: drop-shadow(0 0 8px rgba(255, 20, 147, 0.4));
}

.footer-brand-text {
    font-size: 13px;
    color: #808090;
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-18plus {
    display: inline-block;
    padding: 5px 12px;
    border: 2px solid #FF1493;
    border-radius: 5px;
    color: #FF1493;
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    animation: neonFlicker 4s ease-in-out infinite;
}

.footer-social-links {
    display: flex;
    gap: 10px;
}

.footer-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 50%;
    color: #00FFFF;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    background: rgba(255, 20, 147, 0.15);
    border-color: #FF1493;
    color: #FF1493;
    box-shadow: 0 0 10px rgba(255, 20, 147, 0.3);
}

.footer-col h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #FF1493;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #9090A0;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #00FFFF;
    padding-left: 5px;
}

/* === LICENSE BAR === */
.footer-license-bar {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    margin-bottom: 20px;
}

.footer-license-bar h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #FF1493;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.license-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.license-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.license-item i {
    font-size: 24px;
    color: #00FFFF;
    filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.3));
}

.license-item span {
    font-size: 11px;
    color: #808090;
    font-weight: 600;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.5px;
}

/* === FOOTER BOTTOM === */
.footer-bottom {
    text-align: center;
    padding: 15px 0;
}

.footer-copyright {
    font-size: 13px;
    color: #606070;
    font-weight: 500;
}

/* === ERROR PAGE === */
.error-page {
    text-align: center;
    padding: 80px 20px;
}

.error-neon {
    margin-bottom: 20px;
}

.error-neon-ring {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border: 3px solid #FF1493;
    border-radius: 50%;
    animation: cyberGlow 3s ease-in-out infinite;
}

.error-code {
    font-family: 'Orbitron', sans-serif;
    font-size: 80px;
    font-weight: 700;
    color: #FF1493;
    text-shadow: 0 0 20px rgba(255, 20, 147, 0.5), 0 0 40px rgba(255, 20, 147, 0.3);
    animation: neonFlicker 4s ease-in-out infinite;
    margin-bottom: 10px;
}

.error-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.error-desc {
    max-width: 500px;
    margin: 0 auto 30px;
    color: #9090A0;
    font-size: 15px;
    line-height: 1.7;
}

/* === PAGE ARTICLE === */
.page-article {
    background: linear-gradient(145deg, #111118, #0D0D0D);
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: 12px;
    padding: 30px;
}

.page-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.page-featured-img {
    margin-bottom: 25px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.page-featured-img img {
    width: 100%;
    display: block;
}

.page-content {
    font-size: 15px;
    line-height: 1.9;
    color: #C0C0D0;
}

.page-content h2 {
    color: #00FFFF;
    margin: 25px 0 12px;
}

.page-content h3 {
    color: #FF1493;
    margin: 20px 0 10px;
}

.page-content p {
    margin-bottom: 15px;
}

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

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

/* === UTILITY CLASSES === */
.text-neon-pink { color: #FF1493; }
.text-neon-cyan { color: #00FFFF; }
.bg-dark-neon { background: linear-gradient(145deg, #0D0D0D, #111118); }
.neon-border { border: 1px solid rgba(0, 255, 255, 0.2); }
.neon-glow-pink { box-shadow: 0 0 15px rgba(255, 20, 147, 0.3); }
.neon-glow-cyan { box-shadow: 0 0 15px rgba(0, 255, 255, 0.3); }
