/* ============================================================
   VOIDPLAY Theme - Main Stylesheet
   Color Scheme: Void Black (#000/#050505) + Void Purple (#4A148C) + White (#fff)
   ============================================================ */

/* === CSS Variables === */
:root {
    --void-black: #000000;
    --void-dark: #050505;
    --void-darker: #0a0a0a;
    --void-purple: #4A148C;
    --void-purple-light: #7B1FA2;
    --void-purple-dark: #311B92;
    --void-purple-glow: rgba(74, 20, 140, 0.6);
    --void-purple-soft: rgba(74, 20, 140, 0.3);
    --white: #ffffff;
    --white-off: #f0f0f0;
    --gray: #888888;
    --gray-light: #cccccc;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-void: #CE93D8;
    --font-heading: 'Major Mono Display', monospace;
    --font-body: 'Roboto', sans-serif;
    --container-max: 1200px;
    --transition: all 0.3s ease;
    --shadow-card: 0 4px 20px rgba(0,0,0,0.6);
    --shadow-void: 0 0 30px rgba(74, 20, 140, 0.4);
    --border-void: 2px solid var(--void-purple);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--void-black);
    color: var(--text-primary);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--void-purple-light);
    transition: var(--transition);
}

a:hover {
    color: #CE93D8;
}

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

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-void);
}

.void-text {
    color: var(--text-void) !important;
}

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

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

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

.announcement-content {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a, #1a0a2e);
    border: 2px solid var(--void-purple);
    border-radius: 16px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    z-index: 1;
    box-shadow: 0 0 40px rgba(74, 20, 140, 0.5);
}

.announcement-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: var(--text-void);
    font-size: 28px;
    cursor: pointer;
    transition: var(--transition);
}

.announcement-close:hover {
    color: var(--white);
    transform: rotate(90deg);
}

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

.announcement-header-icon i {
    font-size: 48px;
    color: var(--void-purple-light);
    animation: voidPulse 2s infinite;
}

.announcement-title {
    text-align: center;
    font-size: 20px;
    color: var(--text-void);
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

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

.announcement-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: rgba(74, 20, 140, 0.1);
    border: 1px solid rgba(74, 20, 140, 0.3);
    border-radius: 8px;
    transition: var(--transition);
}

.announcement-item:hover {
    background: rgba(74, 20, 140, 0.25);
    transform: translateX(5px);
}

.announcement-badge {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.announcement-badge.hot {
    background: #E91E63;
    color: white;
}

.announcement-badge.new {
    background: var(--void-purple);
    color: white;
}

.announcement-badge.info {
    background: #1565C0;
    color: white;
}

.announcement-text {
    flex: 1;
    font-size: 13px;
    color: var(--text-secondary);
}

.announcement-item i {
    color: var(--void-purple-light);
    font-size: 12px;
}

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

.btn-void {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--void-purple), var(--void-purple-dark));
    color: white;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-void:hover {
    background: linear-gradient(135deg, var(--void-purple-light), var(--void-purple));
    box-shadow: 0 0 20px var(--void-purple-glow);
    color: white;
}

/* === Header === */
.site-header {
    background: linear-gradient(180deg, #0a0010 0%, #050505 100%);
    border-bottom: 2px solid var(--void-purple);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    max-height: 50px;
    filter: drop-shadow(0 0 10px var(--void-purple-glow));
}

.header-time {
    color: var(--text-void);
    font-size: 13px;
    font-family: var(--font-body);
}

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

.btn-login,
.btn-register,
.btn-demo {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn-login {
    background: transparent;
    border: 1px solid var(--void-purple);
    color: var(--text-void);
}

.btn-login:hover {
    background: var(--void-purple);
    color: white;
}

.btn-register {
    background: linear-gradient(135deg, var(--void-purple), var(--void-purple-dark));
    color: white;
    border: none;
}

.btn-register:hover {
    box-shadow: 0 0 15px var(--void-purple-glow);
}

.btn-demo {
    background: transparent;
    border: 1px solid var(--text-void);
    color: var(--text-void);
}

.btn-demo:hover {
    background: rgba(206, 147, 216, 0.1);
    color: white;
}

/* === Navigation === */
.main-navigation {
    background: rgba(5, 5, 5, 0.95);
    border-top: 1px solid rgba(74, 20, 140, 0.3);
    border-bottom: 1px solid rgba(74, 20, 140, 0.3);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-void);
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

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

.nav-link {
    display: block;
    padding: 12px 15px;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--text-void);
    background: rgba(74, 20, 140, 0.15);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--void-purple);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-item.has-dropdown .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #0a0a0a;
    border: 1px solid var(--void-purple);
    border-radius: 0 0 8px 8px;
    min-width: 200px;
    box-shadow: var(--shadow-void);
    z-index: 100;
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
}

.nav-item.has-dropdown:hover .sub-menu {
    display: block;
}

/* === Notification Bar === */
.notification-bar {
    background: rgba(74, 20, 140, 0.2);
    overflow: hidden;
    padding: 8px 0;
    border-top: 1px solid rgba(74, 20, 140, 0.3);
}

.notification-content {
    display: flex;
    gap: 50px;
    white-space: nowrap;
    animation: scrollNotification 30s linear infinite;
    font-size: 12px;
    color: var(--text-void);
}

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

/* === Buttons === */
.btn-void-primary {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, var(--void-purple), var(--void-purple-dark));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-void-primary::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 ease;
}

.btn-void-primary:hover::before {
    left: 100%;
}

.btn-void-primary:hover {
    box-shadow: 0 0 30px var(--void-purple-glow);
    transform: translateY(-2px);
    color: white;
}

.btn-outline-void {
    display: inline-block;
    padding: 14px 35px;
    background: transparent;
    color: var(--text-void);
    border: 2px solid var(--void-purple);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
}

.btn-outline-void:hover {
    background: var(--void-purple);
    color: white;
    box-shadow: 0 0 20px var(--void-purple-glow);
}

/* === Section Titles === */
.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
    font-family: var(--font-heading);
    letter-spacing: 3px;
}

.section-title i {
    margin-right: 10px;
    font-size: 28px;
    color: var(--void-purple-light);
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 40px;
}

/* === Content Area Layout === */
.content-area {
    display: flex;
    gap: 25px;
    padding: 25px 0;
}

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

/* ============================================================
   HERO SECTION - BLACK HOLE VORTEX
   ============================================================ */
.voidplay-hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(ellipse at center, #1a0a2e 0%, #0a0515 30%, #050505 60%, #000 100%);
    border-radius: 0 0 16px 16px;
    padding: 60px 30px;
}

.deep-space-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 80% 20%, rgba(255,255,255,0.2), transparent),
        radial-gradient(1px 1px at 50% 80%, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 10% 60%, rgba(206,147,216,0.3), transparent),
        radial-gradient(2px 2px at 90% 70%, rgba(206,147,216,0.2), transparent),
        radial-gradient(1px 1px at 40% 10%, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 70% 50%, rgba(255,255,255,0.2), transparent);
    background-size: 250px 250px;
    animation: starsTwinkle 8s ease-in-out infinite alternate;
}

@keyframes starsTwinkle {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* === Black Hole Vortex === */
.black-hole-vortex {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    z-index: 1;
}

.vortex-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.vortex-ring-1 {
    width: 400px;
    height: 400px;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        var(--void-purple) 30deg,
        transparent 60deg,
        var(--void-purple-light) 120deg,
        transparent 150deg,
        var(--void-purple) 210deg,
        transparent 240deg,
        var(--void-purple-light) 300deg,
        transparent 330deg,
        var(--void-purple) 360deg
    );
    animation: vortexSpin 12s linear infinite;
    opacity: 0.6;
    filter: blur(3px);
}

.vortex-ring-2 {
    width: 300px;
    height: 300px;
    background: conic-gradient(
        from 45deg,
        transparent 0deg,
        rgba(74, 20, 140, 0.8) 40deg,
        transparent 80deg,
        rgba(123, 31, 162, 0.6) 160deg,
        transparent 200deg,
        rgba(74, 20, 140, 0.7) 280deg,
        transparent 320deg,
        rgba(123, 31, 162, 0.5) 360deg
    );
    animation: vortexSpin 8s linear infinite reverse;
    opacity: 0.7;
    filter: blur(2px);
}

.vortex-ring-3 {
    width: 200px;
    height: 200px;
    background: conic-gradient(
        from 90deg,
        transparent 0deg,
        rgba(206, 147, 216, 0.4) 60deg,
        transparent 120deg,
        rgba(74, 20, 140, 0.6) 180deg,
        transparent 240deg,
        rgba(206, 147, 216, 0.3) 300deg,
        transparent 360deg
    );
    animation: vortexSpin 5s linear infinite;
    opacity: 0.8;
    filter: blur(1px);
}

.vortex-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, #000 40%, rgba(74, 20, 140, 0.8) 70%, transparent 100%);
    box-shadow: 0 0 60px 20px rgba(74, 20, 140, 0.5);
    z-index: 2;
}

@keyframes vortexSpin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* === Hero Particles === */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--void-purple-light);
    border-radius: 50%;
    animation: particleDrift 6s ease-in-out infinite;
    box-shadow: 0 0 6px var(--void-purple-glow);
}

.p-1 { top: 15%; left: 20%; animation-delay: 0s; }
.p-2 { top: 25%; left: 75%; animation-delay: 1s; }
.p-3 { top: 60%; left: 10%; animation-delay: 2s; }
.p-4 { top: 70%; left: 85%; animation-delay: 0.5s; }
.p-5 { top: 40%; left: 5%; animation-delay: 1.5s; }
.p-6 { top: 80%; left: 60%; animation-delay: 3s; }
.p-7 { top: 10%; left: 50%; animation-delay: 2.5s; }
.p-8 { top: 50%; left: 90%; animation-delay: 4s; }

@keyframes particleDrift {
    0%, 100% { opacity: 0; transform: translate(0, 0) scale(0.5); }
    50% { opacity: 1; transform: translate(20px, -30px) scale(1.5); }
}

/* === Hero Content === */
.hero-inner-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
}

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

.hero-brand {
    display: block;
    font-size: 64px;
    font-family: var(--font-heading);
    color: white;
    letter-spacing: 8px;
    text-shadow: 0 0 30px var(--void-purple-glow), 0 0 60px rgba(74, 20, 140, 0.3);
    animation: voidEmerge 2s ease-out forwards;
}

.hero-divider {
    display: block;
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--void-purple), transparent);
    margin: 15px auto;
}

.hero-tagline {
    display: block;
    font-size: 24px;
    font-family: var(--font-heading);
    color: var(--text-void);
    letter-spacing: 6px;
    animation: voidEmerge 2s ease-out 0.3s forwards;
    opacity: 0;
}

.void-emerge {
    animation: voidEmerge 1.5s ease-out forwards;
}

@keyframes voidEmerge {
    0% {
        opacity: 0;
        transform: scale(0.5);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}

.hero-description {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.hero-stat-number {
    display: block;
    font-size: 30px;
    font-family: var(--font-heading);
    color: var(--text-void);
    text-shadow: 0 0 15px var(--void-purple-glow);
}

.hero-stat-label {
    font-size: 12px;
    color: var(--gray);
    text-transform: uppercase;
}

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

/* ============================================================
   VOID GAMES SECTION
   ============================================================ */
.void-games {
    padding: 60px 0;
    background: linear-gradient(180deg, #050505, #0a0515, #050505);
}

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

.void-game-card {
    display: block;
    background: linear-gradient(135deg, #0a0a0a, #1a0a2e);
    border: 1px solid rgba(74, 20, 140, 0.3);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.void-game-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--void-purple-soft) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.void-game-card:hover::before {
    opacity: 1;
}

.void-game-card:hover {
    border-color: var(--void-purple);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 0 30px var(--void-purple-glow);
}

.gravity-card:nth-child(1) { transform: rotate(-1deg); }
.gravity-card:nth-child(2) { transform: rotate(0.5deg); }
.gravity-card:nth-child(3) { transform: rotate(1deg); }
.gravity-card:nth-child(4) { transform: rotate(0.5deg); }
.gravity-card:nth-child(5) { transform: rotate(-0.5deg); }
.gravity-card:nth-child(6) { transform: rotate(-1deg); }

.gravity-card:hover {
    transform: translateY(-5px) rotate(0deg) scale(1.02) !important;
}

.vg-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, var(--void-purple) 0%, transparent 70%);
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.vg-icon i {
    font-size: 30px;
    color: white;
}

.void-game-card h3 {
    font-size: 18px;
    color: var(--text-void);
    margin-bottom: 10px;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.void-game-card p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.vg-count {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(74, 20, 140, 0.2);
    border: 1px solid rgba(74, 20, 140, 0.4);
    border-radius: 20px;
    font-size: 11px;
    color: var(--text-void);
    position: relative;
    z-index: 1;
}

/* ============================================================
   ABYSS FEATURES SECTION
   ============================================================ */
.abyss-features {
    padding: 60px 0;
    background: var(--void-black);
}

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

.abyss-feature-card {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(180deg, rgba(74, 20, 140, 0.08), transparent);
    border-radius: 12px;
    transition: var(--transition);
    position: relative;
}

.abyss-feature-card:hover {
    background: linear-gradient(180deg, rgba(74, 20, 140, 0.15), transparent);
    transform: translateY(-3px);
}

.af-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.af-icon i {
    font-size: 36px;
    color: var(--void-purple-light);
    position: relative;
    z-index: 1;
}

.af-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--void-purple-glow) 0%, transparent 70%);
    border-radius: 50%;
    animation: abyssFade 3s ease-in-out infinite alternate;
}

@keyframes abyssFade {
    0% { opacity: 0.3; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1.2); }
}

.abyss-feature-card h3 {
    font-size: 16px;
    color: var(--text-void);
    margin-bottom: 12px;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.abyss-feature-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    background: linear-gradient(180deg, var(--text-secondary) 50%, transparent 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ============================================================
   EVENT HORIZON SECTION
   ============================================================ */
.event-horizon {
    padding: 80px 0;
    display: flex;
    justify-content: center;
    background: linear-gradient(180deg, #050505, #0a0515, #050505);
}

.horizon-ring-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.horizon-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
}

.horizon-ring-outer {
    width: 500px;
    height: 500px;
    border-color: rgba(74, 20, 140, 0.3);
    animation: horizonPulse 6s ease-in-out infinite;
}

.horizon-ring-inner {
    width: 380px;
    height: 380px;
    border-color: rgba(74, 20, 140, 0.5);
    animation: horizonPulse 4s ease-in-out infinite reverse;
}

@keyframes horizonPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.05); opacity: 1; }
}

.horizon-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    padding: 30px;
}

.horizon-desc {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.7;
}

.horizon-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.hf-item {
    background: rgba(74, 20, 140, 0.1);
    border: 1px solid rgba(74, 20, 140, 0.3);
    border-radius: 10px;
    padding: 20px 15px;
    transition: var(--transition);
}

.hf-item:hover {
    background: rgba(74, 20, 140, 0.2);
    border-color: var(--void-purple);
}

.hf-item i {
    font-size: 24px;
    color: var(--void-purple-light);
    margin-bottom: 8px;
    display: block;
}

.hf-item span {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-void);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hf-item p {
    font-size: 12px;
    color: var(--gray);
    margin: 0;
}

.horizon-cta {
    margin-top: 10px;
}

/* ============================================================
   VOID STATS SECTION
   ============================================================ */
.void-stats {
    padding: 60px 0;
    background: var(--void-black);
    position: relative;
}

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

.vs-card {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(180deg, rgba(74, 20, 140, 0.1), rgba(0,0,0,0.5));
    border: 1px solid rgba(74, 20, 140, 0.2);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.vs-card:hover {
    border-color: var(--void-purple);
    transform: translateY(-3px);
    box-shadow: 0 0 25px var(--void-purple-glow);
}

.vs-number {
    font-size: 36px;
    font-family: var(--font-heading);
    color: var(--text-void);
    text-shadow: 0 0 20px var(--void-purple-glow);
    margin-bottom: 8px;
}

.vs-label {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vs-bar {
    height: 4px;
    background: rgba(74, 20, 140, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.vs-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--void-purple), var(--void-purple-light));
    border-radius: 2px;
    transition: width 1.5s ease-out;
}

/* ============================================================
   FOOTER CTA SECTION
   ============================================================ */
.footer-cta-section {
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #0a0515, var(--void-black));
}

.vortex-echo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(74, 20, 140, 0.2);
    animation: vortexEcho 4s ease-in-out infinite;
}

@keyframes vortexEcho {
    0%, 100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

.footer-cta-inner {
    position: relative;
    z-index: 2;
}

.cta-particle-decorations {
    margin-bottom: 20px;
}

.cta-particle {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--void-purple-light);
    border-radius: 50%;
    margin: 0 15px;
    animation: ctaParticle 3s ease-in-out infinite;
    box-shadow: 0 0 8px var(--void-purple-glow);
}

.cp-1 { animation-delay: 0s; }
.cp-2 { animation-delay: 0.5s; }
.cp-3 { animation-delay: 1s; }
.cp-4 { animation-delay: 1.5s; }

@keyframes ctaParticle {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-10px); }
}

.footer-cta-section h2 {
    font-size: 36px;
    color: var(--text-void);
    margin-bottom: 15px;
    font-family: var(--font-heading);
    letter-spacing: 4px;
}

.footer-cta-section p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-feature {
    font-size: 14px;
    color: var(--text-secondary);
}

.cta-feature i {
    color: var(--void-purple-light);
    margin-right: 5px;
}

.cta-main-btn {
    font-size: 16px;
    padding: 16px 40px;
}

/* ============================================================
   NEWS SECTION
   ============================================================ */
.home-news-section {
    padding: 60px 0;
}

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

.article-card {
    display: block;
    background: linear-gradient(135deg, #0a0a0a, #0f0515);
    border: 1px solid rgba(74, 20, 140, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.article-card:hover {
    border-color: var(--void-purple);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(74, 20, 140, 0.3);
}

.article-card-thumb {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

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

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

.article-card-title {
    padding: 12px 15px 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
}

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

.article-card-meta {
    padding: 0 15px;
    font-size: 12px;
    color: var(--gray);
    display: flex;
    gap: 10px;
}

.article-card-meta i {
    margin-right: 4px;
    color: var(--void-purple-light);
}

.article-card-excerpt {
    padding: 8px 15px 15px;
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.view-more-btn {
    display: inline-block;
    padding: 12px 25px;
    border: 2px solid var(--void-purple);
    border-radius: 8px;
    color: var(--text-void);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    text-align: center;
    margin: 0 auto;
    display: block;
    width: fit-content;
}

.view-more-btn:hover {
    background: var(--void-purple);
    color: white;
    box-shadow: 0 0 15px var(--void-purple-glow);
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
    padding: 15px 0;
    font-size: 13px;
    color: var(--gray);
    border-bottom: 1px solid rgba(74, 20, 140, 0.2);
    margin-bottom: 20px;
}

.breadcrumb a {
    color: var(--text-void);
}

.breadcrumb a:hover {
    color: var(--void-purple-light);
}

.breadcrumb span {
    margin: 0 8px;
}

/* ============================================================
   CATEGORY PAGE
   ============================================================ */
.category-header {
    padding: 25px 0;
    border-bottom: 1px solid rgba(74, 20, 140, 0.2);
    margin-bottom: 20px;
}

.category-title {
    font-size: 32px;
    margin: 0;
}

.category-desc {
    color: var(--text-secondary);
    margin-top: 8px;
    font-size: 14px;
}

.provider-tabs {
    display: flex;
    gap: 8px;
    padding: 15px 0;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.provider-tab {
    padding: 8px 16px;
    background: rgba(74, 20, 140, 0.1);
    border: 1px solid rgba(74, 20, 140, 0.3);
    border-radius: 20px;
    color: var(--text-secondary);
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
}

.provider-tab:hover,
.provider-tab.active {
    background: var(--void-purple);
    border-color: var(--void-purple);
    color: white;
}

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

.article-card-more {
    display: block;
    padding: 10px 15px;
    font-size: 13px;
    color: var(--text-void);
    border-top: 1px solid rgba(74, 20, 140, 0.2);
    text-align: right;
    transition: var(--transition);
}

.article-card-more:hover {
    color: white;
    background: rgba(74, 20, 140, 0.15);
}

.no-posts {
    text-align: center;
    padding: 50px 20px;
    color: var(--gray);
    grid-column: 1 / -1;
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
    padding: 20px 0;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    background: rgba(74, 20, 140, 0.1);
    border: 1px solid rgba(74, 20, 140, 0.3);
    color: var(--text-secondary);
    transition: var(--transition);
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: var(--void-purple);
    border-color: var(--void-purple);
    color: white;
}

/* ============================================================
   SINGLE ARTICLE
   ============================================================ */
.single-article {
    background: linear-gradient(135deg, #0a0a0a, #0f0515);
    border: 1px solid rgba(74, 20, 140, 0.2);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

.article-title {
    font-size: 32px;
    color: var(--text-void);
    margin-bottom: 15px;
    font-family: var(--font-heading);
    line-height: 1.3;
}

.article-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--gray);
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(74, 20, 140, 0.2);
    margin-bottom: 20px;
}

.article-meta i {
    margin-right: 5px;
    color: var(--void-purple-light);
}

.article-featured-img {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.article-featured-img img {
    width: 100%;
    height: auto;
}

.article-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
}

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

.article-content h2, .article-content h3 {
    color: var(--text-void);
    margin: 25px 0 15px;
}

.article-content img {
    border-radius: 8px;
    margin: 15px 0;
}

.article-content blockquote {
    border-left: 4px solid var(--void-purple);
    padding: 15px 20px;
    background: rgba(74, 20, 140, 0.1);
    border-radius: 0 8px 8px 0;
    margin: 20px 0;
}

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

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

.article-tags {
    padding: 15px 0;
    border-top: 1px solid rgba(74, 20, 140, 0.2);
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.article-tags i {
    color: var(--void-purple-light);
    margin-right: 5px;
}

.article-tags span {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(74, 20, 140, 0.15);
    border: 1px solid rgba(74, 20, 140, 0.3);
    border-radius: 15px;
    font-size: 12px;
    color: var(--text-void);
}

.article-nav {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(74, 20, 140, 0.2);
    margin-top: 20px;
}

.article-nav a {
    color: var(--text-void);
    font-size: 14px;
}

.article-nav a:hover {
    color: white;
}

/* === Related Posts === */
.related-posts {
    margin-bottom: 30px;
}

.related-posts-title {
    font-size: 22px;
    margin-bottom: 20px;
}

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

.related-item {
    display: block;
    background: linear-gradient(135deg, #0a0a0a, #0f0515);
    border: 1px solid rgba(74, 20, 140, 0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.related-item:hover {
    border-color: var(--void-purple);
    transform: translateY(-2px);
}

.related-item-thumb {
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.related-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-item-title {
    padding: 10px;
    font-size: 13px;
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================================
   PAGE TEMPLATE
   ============================================================ */
.page-article {
    background: linear-gradient(135deg, #0a0a0a, #0f0515);
    border: 1px solid rgba(74, 20, 140, 0.2);
    border-radius: 12px;
    padding: 30px;
}

.page-title {
    font-size: 32px;
    color: var(--text-void);
    margin-bottom: 20px;
}

.page-featured-img {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.page-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
}

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

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: linear-gradient(180deg, #0a0515, var(--void-black));
    border-top: 2px solid var(--void-purple);
    padding: 40px 0 20px;
    margin-top: 40px;
}

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

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

.footer-brand-logo img {
    max-height: 45px;
    filter: drop-shadow(0 0 8px var(--void-purple-glow));
}

.footer-brand-text {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-18plus {
    display: inline-block;
    padding: 4px 12px;
    border: 2px solid var(--void-purple);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    color: var(--void-purple-light);
    margin-bottom: 15px;
}

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

.footer-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(74, 20, 140, 0.2);
    border: 1px solid rgba(74, 20, 140, 0.4);
    border-radius: 50%;
    color: var(--text-void);
    transition: var(--transition);
}

.footer-social-links a:hover {
    background: var(--void-purple);
    color: white;
    box-shadow: 0 0 10px var(--void-purple-glow);
}

.footer-col h4 {
    font-size: 15px;
    color: var(--text-void);
    margin-bottom: 15px;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

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

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

.footer-col ul li a {
    font-size: 13px;
    color: var(--gray);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--text-void);
    padding-left: 5px;
}

/* License Bar */
.footer-license-bar {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(74, 20, 140, 0.2);
    border-bottom: 1px solid rgba(74, 20, 140, 0.2);
    margin-bottom: 20px;
}

.footer-license-bar h4 {
    font-size: 14px;
    color: var(--text-void);
    margin-bottom: 15px;
}

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

.license-item {
    text-align: center;
}

.license-item i {
    display: block;
    font-size: 28px;
    color: var(--void-purple-light);
    margin-bottom: 5px;
}

.license-item span {
    font-size: 11px;
    color: var(--gray);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(74, 20, 140, 0.2);
    font-size: 12px;
    color: var(--gray);
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.floating-sidebar {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 999;
    padding: 10px 5px;
    background: rgba(10, 5, 20, 0.9);
    border: 1px solid var(--void-purple);
    border-right: none;
    border-radius: 8px 0 0 8px;
}

.sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(74, 20, 140, 0.2);
    border: 1px solid rgba(74, 20, 140, 0.4);
    border-radius: 8px;
    color: var(--text-void);
    font-size: 18px;
    transition: var(--transition);
    position: relative;
}

.sidebar-btn:hover {
    background: var(--void-purple);
    color: white;
}

.sidebar-label {
    display: none;
    position: absolute;
    right: 50px;
    background: var(--void-purple);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
}

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

.sidebar-btn-facebook:hover {
    background: #1877F2;
}

.sidebar-btn-telegram:hover {
    background: #0088CC;
}

/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes voidPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

@keyframes gravityPull {
    0%, 100% {
        transform: scale(1) skew(0deg);
    }
    25% {
        transform: scale(1.02) skew(0.5deg);
    }
    50% {
        transform: scale(0.98) skew(-0.5deg);
    }
    75% {
        transform: scale(1.01) skew(0.3deg);
    }
}

/* === Fade In Up Animation === */
.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);
}

/* ============================================================
   HOME NEWS PLACEHOLDER
   ============================================================ */
.home-news-placeholder {
    display: contents;
}

/* ============================================================
   MISC / UTILITY
   ============================================================ */
::selection {
    background: var(--void-purple);
    color: white;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--void-black);
}

::-webkit-scrollbar-thumb {
    background: var(--void-purple);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--void-purple-light);
}
