/* ============================================
   SPACEMIN THEME - main.css (moban-83)
   Classic Slots Space Theme with Planet Orbits
   Colors: #0F0C29→#302B63, #C0C0C0, #7F5AF0
   ============================================ */

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

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

body {
    font-family: 'Exo 2', sans-serif;
    background: linear-gradient(135deg, #0F0C29 0%, #302B63 50%, #0F0C29 100%);
    background-attachment: fixed;
    color: #C0C0C0;
    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;
    color: #E0E0E0;
}

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

a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(127, 90, 240, 0.5);
}

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

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

.accent-text {
    color: #7F5AF0;
}

.silver-text {
    color: #C0C0C0;
}

/* === KEYFRAME ANIMATIONS === */
@keyframes starWarp {
    0% {
        transform: translateZ(0) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translateZ(200px) scale(1.5);
        opacity: 1;
    }
    100% {
        transform: translateZ(400px) scale(2);
        opacity: 0;
    }
}

@keyframes planetOrbit {
    0% {
        transform: rotate(0deg) translateX(120px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(120px) rotate(-360deg);
    }
}

@keyframes planetOrbit2 {
    0% {
        transform: rotate(0deg) translateX(80px) rotate(0deg);
    }
    100% {
        transform: rotate(-360deg) translateX(80px) rotate(360deg);
    }
}

@keyframes nebulaPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

@keyframes rocketLaunch {
    0% {
        transform: translateY(100px) rotate(-45deg);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        transform: translateY(-500px) rotate(-45deg);
        opacity: 0;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(127, 90, 240, 0.3), 0 0 10px rgba(127, 90, 240, 0.2);
    }
    50% {
        box-shadow: 0 0 20px rgba(127, 90, 240, 0.6), 0 0 40px rgba(127, 90, 240, 0.3);
    }
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(127, 90, 240, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(127, 90, 240, 0.8), 0 0 40px rgba(127, 90, 240, 0.4);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes warpStar1 {
    0% { transform: translateY(0) scale(1); opacity: 1; }
    100% { transform: translateY(100vh) scale(0.3); opacity: 0; }
}

@keyframes warpStar2 {
    0% { transform: translateY(-100vh) scale(0.3); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(0) scale(1); opacity: 0; }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* === HEADER === */
.site-header {
    background: rgba(15, 12, 41, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(127, 90, 240, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 50px;
    width: auto;
}

.header-time {
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    color: #7F5AF0;
    letter-spacing: 1px;
}

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

.btn-login,
.btn-register,
.btn-demo {
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-login {
    background: transparent;
    border: 1px solid #7F5AF0;
    color: #7F5AF0;
}

.btn-login:hover {
    background: #7F5AF0;
    color: #fff;
}

.btn-register {
    background: linear-gradient(135deg, #7F5AF0, #5B3CC4);
    color: #fff;
    border: none;
}

.btn-register:hover {
    background: linear-gradient(135deg, #9B7AF8, #7F5AF0);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(127, 90, 240, 0.4);
}

.btn-demo {
    background: transparent;
    border: 1px solid #C0C0C0;
    color: #C0C0C0;
}

.btn-demo:hover {
    background: rgba(192, 192, 192, 0.1);
    color: #fff;
}

/* === NAVIGATION === */
.main-navigation {
    background: rgba(48, 43, 99, 0.8);
    border-top: 1px solid rgba(127, 90, 240, 0.2);
    border-bottom: 1px solid rgba(127, 90, 240, 0.2);
}

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

.nav-link {
    display: block;
    padding: 12px 16px;
    color: #C0C0C0;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #7F5AF0;
    background: rgba(127, 90, 240, 0.1);
    text-shadow: 0 0 10px rgba(127, 90, 240, 0.5);
}

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

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #7F5AF0;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

/* === NOTIFICATION BAR === */
.notification-bar {
    background: rgba(127, 90, 240, 0.1);
    padding: 8px 0;
    overflow: hidden;
}

.notification-content {
    display: flex;
    gap: 50px;
    animation: notificationScroll 30s linear infinite;
    white-space: nowrap;
    font-size: 13px;
    color: #C0C0C0;
}

/* === HERO SECTION === */
.spacemin-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0F0C29 0%, #302B63 40%, #24243e 100%);
    border-radius: 16px;
    margin-top: 20px;
}

/* Star Warp Layers */
.star-warp-field {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.star-warp-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.star-layer-1 {
    background-image:
        radial-gradient(2px 2px at 20px 30px, #fff, transparent),
        radial-gradient(2px 2px at 40px 70px, #C0C0C0, transparent),
        radial-gradient(1px 1px at 90px 40px, #7F5AF0, transparent),
        radial-gradient(2px 2px at 130px 80px, #fff, transparent),
        radial-gradient(1px 1px at 160px 30px, #C0C0C0, transparent);
    background-size: 200px 100px;
    animation: warpStar1 8s linear infinite;
}

.star-layer-2 {
    background-image:
        radial-gradient(1px 1px at 50px 50px, #7F5AF0, transparent),
        radial-gradient(2px 2px at 100px 20px, #fff, transparent),
        radial-gradient(1px 1px at 150px 60px, #C0C0C0, transparent),
        radial-gradient(2px 2px at 200px 90px, #7F5AF0, transparent);
    background-size: 250px 120px;
    animation: warpStar1 12s linear infinite;
    animation-delay: 2s;
}

.star-layer-3 {
    background-image:
        radial-gradient(1px 1px at 30px 20px, #fff, transparent),
        radial-gradient(1px 1px at 80px 70px, #7F5AF0, transparent),
        radial-gradient(2px 2px at 120px 40px, #C0C0C0, transparent);
    background-size: 180px 90px;
    animation: warpStar1 15s linear infinite;
    animation-delay: 4s;
}

/* Planet Orbits */
.planet-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(127, 90, 240, 0.2);
}

.planet-orbit-1 {
    width: 240px;
    height: 240px;
    top: 10%;
    right: 5%;
    animation: spin 20s linear infinite;
}

.planet-orbit-2 {
    width: 160px;
    height: 160px;
    bottom: 15%;
    left: 8%;
    animation: spin 15s linear infinite reverse;
}

.planet {
    position: absolute;
    border-radius: 50%;
}

.planet-1 {
    width: 40px;
    height: 40px;
    background: radial-gradient(circle at 30% 30%, #7F5AF0, #302B63);
    box-shadow: 0 0 20px rgba(127, 90, 240, 0.5);
    top: -20px;
    left: 50%;
    margin-left: -20px;
}

.planet-2 {
    width: 25px;
    height: 25px;
    background: radial-gradient(circle at 30% 30%, #C0C0C0, #666);
    box-shadow: 0 0 10px rgba(192, 192, 192, 0.4);
    top: -12px;
    left: 50%;
    margin-left: -12px;
}

/* Nebula Gradients */
.nebula-gradient {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
}

.nebula-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(127, 90, 240, 0.4), transparent);
    top: -100px;
    left: -100px;
    animation: nebulaPulse 8s ease-in-out infinite;
}

.nebula-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(48, 43, 99, 0.6), transparent);
    bottom: -50px;
    right: -50px;
    animation: nebulaPulse 10s ease-in-out infinite;
    animation-delay: 3s;
}

/* Astronaut Silhouette */
.astronaut-silhouette {
    position: absolute;
    bottom: 20px;
    right: 30px;
    width: 60px;
    height: 80px;
    opacity: 0.15;
    background: #C0C0C0;
    border-radius: 30px 30px 10px 10px;
    animation: float 6s ease-in-out infinite;
}

.astronaut-silhouette::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    margin-left: -15px;
    width: 30px;
    height: 30px;
    background: #C0C0C0;
    border-radius: 50%;
}

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

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

.hero-brand {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 56px;
    font-weight: 900;
    color: #7F5AF0;
    letter-spacing: 8px;
    animation: textGlow 3s ease-in-out infinite;
}

.hero-divider-line {
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #7F5AF0, transparent);
    margin: 15px auto;
}

.hero-tagline {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    color: #C0C0C0;
    letter-spacing: 4px;
    margin-top: 10px;
}

.hero-description {
    font-size: 16px;
    color: #C0C0C0;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.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-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #7F5AF0;
}

.hero-stat-label {
    font-size: 13px;
    color: #C0C0C0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.btn-accent-primary {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(135deg, #7F5AF0, #5B3CC4);
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accent-primary:hover {
    background: linear-gradient(135deg, #9B7AF8, #7F5AF0);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(127, 90, 240, 0.5);
    color: #fff;
}

.btn-outline-accent {
    display: inline-block;
    padding: 14px 36px;
    background: transparent;
    color: #7F5AF0;
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 8px;
    border: 2px solid #7F5AF0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline-accent:hover {
    background: rgba(127, 90, 240, 0.1);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(127, 90, 240, 0.3);
}

/* === SECTION TITLES === */
.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.section-subtitle {
    text-align: center;
    color: #C0C0C0;
    font-size: 15px;
    margin-bottom: 40px;
}

/* === STAR GAMES (6 Cards) === */
.star-games {
    padding: 60px 0;
}

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

.star-game-card {
    display: block;
    position: relative;
    background: rgba(48, 43, 99, 0.4);
    border: 1px solid rgba(127, 90, 240, 0.2);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
}

.star-game-card:hover {
    transform: translateY(-8px);
    border-color: #7F5AF0;
    box-shadow: 0 15px 40px rgba(127, 90, 240, 0.3);
    color: inherit;
}

.star-game-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(127, 90, 240, 0.05), transparent 50%);
    transition: all 0.5s ease;
    pointer-events: none;
}

.star-game-card:hover .star-game-glow {
    background: radial-gradient(circle, rgba(127, 90, 240, 0.15), transparent 50%);
}

.star-game-icon {
    font-size: 48px;
    color: #7F5AF0;
    margin-bottom: 15px;
    animation: float 4s ease-in-out infinite;
}

.star-game-rating {
    margin-bottom: 10px;
    color: #7F5AF0;
    font-size: 12px;
}

.star-game-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    color: #E0E0E0;
    margin-bottom: 8px;
}

.star-game-card p {
    font-size: 13px;
    color: #C0C0C0;
    margin-bottom: 12px;
    line-height: 1.6;
}

.star-game-players {
    font-size: 12px;
    color: #7F5AF0;
}

/* === GAME GRID (3x4) === */
.game-grid-section {
    padding: 60px 0;
}

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

.game-grid-item {
    display: block;
    background: rgba(48, 43, 99, 0.3);
    border: 1px solid rgba(127, 90, 240, 0.15);
    border-radius: 10px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.game-grid-item:hover {
    transform: translateY(-5px);
    border-color: #7F5AF0;
    box-shadow: 0 10px 30px rgba(127, 90, 240, 0.25);
    color: inherit;
}

.game-grid-icon {
    font-size: 32px;
    color: #7F5AF0;
    margin-bottom: 10px;
}

.game-grid-item h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    color: #E0E0E0;
    margin-bottom: 5px;
}

.game-grid-item p {
    font-size: 12px;
    color: #C0C0C0;
    margin-bottom: 8px;
}

.game-grid-players {
    font-size: 11px;
    color: #7F5AF0;
}

/* === FEATURES SECTION === */
.features-section {
    padding: 60px 0;
}

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

.feature-card {
    background: rgba(48, 43, 99, 0.4);
    border: 1px solid rgba(127, 90, 240, 0.2);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #7F5AF0;
    box-shadow: 0 10px 30px rgba(127, 90, 240, 0.2);
}

.feature-icon {
    font-size: 40px;
    color: #7F5AF0;
    margin-bottom: 15px;
    animation: glow 3s ease-in-out infinite;
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    background: rgba(127, 90, 240, 0.1);
}

.feature-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    color: #E0E0E0;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.feature-card p {
    font-size: 13px;
    color: #C0C0C0;
    line-height: 1.7;
}

/* === STATS SECTION === */
.stats-section {
    padding: 60px 0;
    background: rgba(48, 43, 99, 0.2);
    border-radius: 16px;
}

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

.stat-card {
    text-align: center;
    padding: 30px 15px;
    background: rgba(15, 12, 41, 0.5);
    border: 1px solid rgba(127, 90, 240, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: #7F5AF0;
    box-shadow: 0 5px 20px rgba(127, 90, 240, 0.2);
}

.stat-icon {
    font-size: 32px;
    color: #7F5AF0;
    margin-bottom: 15px;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #7F5AF0;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: #C0C0C0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === PROMOTIONS SECTION === */
.promotions-section {
    padding: 60px 0;
}

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

.promo-card {
    display: block;
    position: relative;
    background: rgba(48, 43, 99, 0.4);
    border: 1px solid rgba(127, 90, 240, 0.2);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.promo-card:hover {
    transform: translateY(-5px);
    border-color: #7F5AF0;
    box-shadow: 0 10px 30px rgba(127, 90, 240, 0.3);
    color: inherit;
}

.promo-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
}

.promo-badge.hot {
    background: #e74c3c;
    color: #fff;
}

.promo-badge.new {
    background: #7F5AF0;
    color: #fff;
}

.promo-icon {
    font-size: 40px;
    color: #7F5AF0;
    margin-bottom: 15px;
}

.promo-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 15px;
    color: #E0E0E0;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.promo-card p {
    font-size: 13px;
    color: #C0C0C0;
    margin-bottom: 15px;
    line-height: 1.7;
}

.promo-cta {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #7F5AF0, #5B3CC4);
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.promo-cta:hover {
    background: linear-gradient(135deg, #9B7AF8, #7F5AF0);
    color: #fff;
}

/* === FOOTER CTA === */
.footer-cta-section {
    padding: 60px 20px;
    margin: 40px 0;
    background: linear-gradient(135deg, rgba(127, 90, 240, 0.15), rgba(48, 43, 99, 0.4));
    border: 1px solid rgba(127, 90, 240, 0.3);
    border-radius: 16px;
    text-align: center;
}

.footer-cta-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    color: #7F5AF0;
    margin-bottom: 15px;
    letter-spacing: 2px;
    animation: textGlow 3s ease-in-out infinite;
}

.footer-cta-desc {
    font-size: 16px;
    color: #C0C0C0;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

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

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

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

.news-card {
    background: rgba(48, 43, 99, 0.3);
    border: 1px solid rgba(127, 90, 240, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: #7F5AF0;
    box-shadow: 0 10px 30px rgba(127, 90, 240, 0.2);
}

.news-card-thumb {
    height: 180px;
    overflow: hidden;
}

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

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

.news-card-title {
    padding: 15px 15px 5px;
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
}

.news-card-title a {
    color: #E0E0E0;
}

.news-card-title a:hover {
    color: #7F5AF0;
}

.news-card-meta {
    padding: 0 15px;
    font-size: 12px;
    color: #888;
    margin-bottom: 8px;
}

.news-card-meta i {
    margin-right: 5px;
}

.news-card-excerpt {
    padding: 0 15px;
    font-size: 13px;
    color: #C0C0C0;
    line-height: 1.6;
    margin-bottom: 10px;
}

.news-card-more {
    display: inline-block;
    padding: 0 15px 15px;
    color: #7F5AF0;
    font-size: 13px;
    font-weight: 600;
}

.news-card-more:hover {
    color: #9B7AF8;
}

/* === ANNOUNCEMENT MODAL === */
.announcement-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    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(15, 12, 41, 0.85);
    backdrop-filter: blur(5px);
}

.announcement-content {
    position: relative;
    background: linear-gradient(135deg, #0F0C29, #302B63);
    border: 1px solid #7F5AF0;
    border-radius: 16px;
    padding: 40px 30px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 10;
    animation: slideInUp 0.4s ease;
}

.announcement-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #C0C0C0;
    font-size: 28px;
    cursor: pointer;
    transition: color 0.3s;
}

.announcement-close:hover {
    color: #7F5AF0;
}

.announcement-header-icon {
    text-align: center;
    font-size: 40px;
    color: #7F5AF0;
    margin-bottom: 15px;
}

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

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

.announcement-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: rgba(48, 43, 99, 0.5);
    border: 1px solid rgba(127, 90, 240, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.announcement-item:hover {
    border-color: #7F5AF0;
    background: rgba(127, 90, 240, 0.1);
    color: inherit;
}

.announcement-badge {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    white-space: nowrap;
}

.announcement-badge.hot {
    background: #e74c3c;
    color: #fff;
}

.announcement-badge.new {
    background: #7F5AF0;
    color: #fff;
}

.announcement-badge.info {
    background: #3498db;
    color: #fff;
}

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

.announcement-item i {
    color: #7F5AF0;
    font-size: 12px;
}

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

.announcement-cta {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #7F5AF0, #5B3CC4);
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.announcement-cta:hover {
    background: linear-gradient(135deg, #9B7AF8, #7F5AF0);
    color: #fff;
    transform: translateY(-2px);
}

/* === FOOTER === */
.site-footer {
    background: rgba(15, 12, 41, 0.95);
    border-top: 1px solid rgba(127, 90, 240, 0.3);
    padding: 50px 0 30px;
    margin-top: 60px;
}

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

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

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

.footer-18plus {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 2px solid #e74c3c;
    border-radius: 50%;
    color: #e74c3c;
    font-weight: 700;
    font-size: 14px;
    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(127, 90, 240, 0.15);
    border: 1px solid rgba(127, 90, 240, 0.3);
    border-radius: 50%;
    color: #7F5AF0;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    background: #7F5AF0;
    color: #fff;
}

.footer-col h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    color: #7F5AF0;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

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

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

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

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

.footer-license-bar {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(127, 90, 240, 0.2);
    border-bottom: 1px solid rgba(127, 90, 240, 0.2);
    margin-bottom: 20px;
}

.footer-license-bar h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    color: #7F5AF0;
    margin-bottom: 15px;
}

.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: #7F5AF0;
}

.license-item span {
    font-size: 11px;
    color: #C0C0C0;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

.footer-copyright {
    font-size: 13px;
    color: #888;
}

/* === BREADCRUMB === */
.breadcrumb {
    padding: 15px 0;
    font-size: 13px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: #7F5AF0;
}

.breadcrumb a:hover {
    color: #9B7AF8;
}

.breadcrumb span {
    color: #888;
}

/* === CONTENT AREA === */
.content-area {
    display: flex;
    gap: 30px;
    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;
}

.article-card {
    background: rgba(48, 43, 99, 0.3);
    border: 1px solid rgba(127, 90, 240, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: #7F5AF0;
    box-shadow: 0 10px 30px rgba(127, 90, 240, 0.2);
}

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

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

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

.article-card-title {
    padding: 15px 15px 5px;
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
}

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

.article-card-title a:hover {
    color: #7F5AF0;
}

.article-card-meta {
    padding: 0 15px;
    font-size: 12px;
    color: #888;
    margin-bottom: 8px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

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

.article-card-excerpt {
    padding: 0 15px;
    font-size: 13px;
    color: #C0C0C0;
    line-height: 1.6;
    margin-bottom: 10px;
}

.article-card-more {
    display: inline-block;
    padding: 0 15px 15px;
    color: #7F5AF0;
    font-size: 13px;
    font-weight: 600;
}

.article-card-more:hover {
    color: #9B7AF8;
}

/* === NO POSTS === */
.no-posts,
.no-news {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #C0C0C0;
}

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

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

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    background: rgba(48, 43, 99, 0.4);
    border: 1px solid rgba(127, 90, 240, 0.2);
    border-radius: 8px;
    color: #C0C0C0;
    font-size: 14px;
    transition: all 0.3s ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: #7F5AF0;
    color: #fff;
    border-color: #7F5AF0;
}

/* === SINGLE ARTICLE === */
.single-article {
    background: rgba(48, 43, 99, 0.2);
    border: 1px solid rgba(127, 90, 240, 0.15);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

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

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

.article-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #888;
}

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

.article-meta a {
    color: #7F5AF0;
}

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

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

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

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

.article-content a {
    color: #7F5AF0;
}

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

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

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

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

.article-content blockquote {
    border-left: 3px solid #7F5AF0;
    padding: 15px 20px;
    margin: 20px 0;
    background: rgba(127, 90, 240, 0.05);
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

.article-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 20px 0;
    border-top: 1px solid rgba(127, 90, 240, 0.15);
    margin-top: 20px;
}

.article-tags i {
    color: #7F5AF0;
}

.article-tags span {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(127, 90, 240, 0.1);
    border: 1px solid rgba(127, 90, 240, 0.2);
    border-radius: 20px;
    font-size: 12px;
    color: #7F5AF0;
}

.article-nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid rgba(127, 90, 240, 0.15);
}

.article-nav-prev a,
.article-nav-next a {
    color: #7F5AF0;
    font-size: 14px;
}

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

/* === RELATED POSTS === */
.related-posts {
    margin-bottom: 30px;
}

.related-posts-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

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

.related-item {
    display: block;
    background: rgba(48, 43, 99, 0.3);
    border: 1px solid rgba(127, 90, 240, 0.15);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.related-item:hover {
    transform: translateY(-3px);
    border-color: #7F5AF0;
    color: inherit;
}

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

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

.related-item-title {
    padding: 10px;
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    color: #E0E0E0;
}

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

.category-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    letter-spacing: 2px;
}

.category-desc {
    color: #C0C0C0;
    margin-top: 10px;
    font-size: 15px;
}

/* === PROVIDER TABS === */
.provider-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 15px 0;
    margin-bottom: 20px;
}

.provider-tab {
    padding: 8px 18px;
    background: rgba(48, 43, 99, 0.4);
    border: 1px solid rgba(127, 90, 240, 0.2);
    border-radius: 20px;
    color: #C0C0C0;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Exo 2', sans-serif;
}

.provider-tab:hover,
.provider-tab.active {
    background: #7F5AF0;
    color: #fff;
    border-color: #7F5AF0;
}

/* === PAGE ARTICLE === */
.page-article {
    background: rgba(48, 43, 99, 0.2);
    border: 1px solid rgba(127, 90, 240, 0.15);
    border-radius: 12px;
    padding: 30px;
}

.page-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    color: #E0E0E0;
    margin-bottom: 20px;
}

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

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

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

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

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

.error-planet {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
}

.error-planet-body {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at 30% 30%, #7F5AF0, #302B63);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(127, 90, 240, 0.5);
    position: absolute;
    top: 10px;
    left: 10px;
}

.error-planet-ring {
    position: absolute;
    width: 120px;
    height: 30px;
    border: 2px solid rgba(127, 90, 240, 0.4);
    border-radius: 50%;
    top: 35px;
    left: -10px;
    animation: spin 8s linear infinite;
}

.error-code {
    font-family: 'Orbitron', sans-serif;
    font-size: 80px;
    color: #7F5AF0;
    animation: textGlow 3s ease-in-out infinite;
}

.error-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    color: #E0E0E0;
    margin: 15px 0;
}

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

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

.sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(48, 43, 99, 0.9);
    border: 1px solid rgba(127, 90, 240, 0.3);
    border-radius: 50%;
    color: #7F5AF0;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
}

.sidebar-btn:hover {
    background: #7F5AF0;
    color: #fff;
    transform: scale(1.1);
}

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

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

.sidebar-label {
    display: none;
}

.sidebar-btn[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 55px;
    background: rgba(15, 12, 41, 0.95);
    color: #C0C0C0;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    border: 1px solid rgba(127, 90, 240, 0.3);
}

/* === SCROLL ANIMATIONS === */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
