/* ============================================
   CYBERKING THEME - main.css (moban-157)
   Cyberpunk Crown Theme with Neon Aesthetics
   Colors: Cyan #00BCD4, Purple #7B1FA2, Black #0D0D0D
   ============================================ */

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

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

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

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

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

a:hover {
    color: #E040FB;
    text-shadow: 0 0 10px rgba(0, 188, 212, 0.5);
}

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

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

.cyan-text {
    color: #00BCD4;
    background: linear-gradient(90deg, #00BCD4, #7B1FA2, #00BCD4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.purple-text {
    background: linear-gradient(90deg, #7B1FA2, #E040FB, #7B1FA2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === KEYFRAME ANIMATIONS === */
@keyframes cyberCrown {
    0%, 100% {
        opacity: 1;
        filter: brightness(1) saturate(1);
        transform: scale(1) rotate(0deg);
        box-shadow: 0 0 20px rgba(0, 188, 212, 0.3);
    }
    25% {
        opacity: 0.9;
        filter: brightness(1.4) saturate(1.3);
        transform: scale(1.03) rotate(1deg);
        box-shadow: 0 0 40px rgba(0, 188, 212, 0.5);
    }
    50% {
        opacity: 1;
        filter: brightness(1.8) saturate(1.5);
        transform: scale(1.06) rotate(0deg);
        box-shadow: 0 0 60px rgba(123, 31, 162, 0.6);
    }
    75% {
        opacity: 0.95;
        filter: brightness(1.2) saturate(1.1);
        transform: scale(1.02) rotate(-1deg);
        box-shadow: 0 0 30px rgba(0, 188, 212, 0.4);
    }
}

@keyframes kingPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 188, 212, 0.7),
                    0 0 0 0 rgba(123, 31, 162, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(0, 188, 212, 0),
                    0 0 0 30px rgba(123, 31, 162, 0);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 188, 212, 0),
                    0 0 0 0 rgba(123, 31, 162, 0);
        transform: scale(1);
    }
}

@keyframes neonThrone {
    0% {
        background-position: 0% 50%;
        border-color: #00BCD4;
        box-shadow: 0 0 10px rgba(0, 188, 212, 0.3);
    }
    25% {
        border-color: #7B1FA2;
        box-shadow: 0 0 20px rgba(123, 31, 162, 0.4);
    }
    50% {
        background-position: 100% 50%;
        border-color: #E040FB;
        box-shadow: 0 0 30px rgba(224, 64, 251, 0.5);
    }
    75% {
        border-color: #7B1FA2;
        box-shadow: 0 0 20px rgba(123, 31, 162, 0.4);
    }
    100% {
        background-position: 0% 50%;
        border-color: #00BCD4;
        box-shadow: 0 0 10px rgba(0, 188, 212, 0.3);
    }
}

@keyframes digitalReign {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.8;
        filter: hue-rotate(0deg);
    }
    25% {
        transform: translateY(-5px) scale(1.02);
        opacity: 1;
        filter: hue-rotate(30deg);
    }
    50% {
        transform: translateY(-10px) scale(1.04);
        opacity: 0.9;
        filter: hue-rotate(60deg);
    }
    75% {
        transform: translateY(-5px) scale(1.02);
        opacity: 1;
        filter: hue-rotate(30deg);
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.8;
        filter: hue-rotate(0deg);
    }
}

@keyframes neonFlicker {
    0%, 100% { opacity: 1; }
    5% { opacity: 0.8; }
    10% { opacity: 1; }
    15% { opacity: 0.6; }
    20% { opacity: 1; }
    50% { opacity: 1; }
    55% { opacity: 0.9; }
    60% { opacity: 1; }
}

@keyframes cyberScan {
    0% { transform: translateY(-100%); opacity: 0; }
    50% { opacity: 0.5; }
    100% { transform: translateY(100vh); opacity: 0; }
}

@keyframes crownFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(2deg); }
    50% { transform: translateY(-25px) rotate(0deg); }
    75% { transform: translateY(-15px) rotate(-2deg); }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(0, 188, 212, 0.3),
                    0 0 10px rgba(0, 188, 212, 0.2);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 188, 212, 0.6),
                    0 0 40px rgba(123, 31, 162, 0.4);
    }
}

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

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

@keyframes gridPulse {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.3; }
}

/* === HEADER === */
.site-header {
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.98) 0%, rgba(13, 13, 13, 0.95) 100%);
    border-bottom: 1px solid rgba(0, 188, 212, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(0, 188, 212, 0.4));
    transition: filter 0.3s ease;
}

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

.header-time {
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    color: #00BCD4;
    letter-spacing: 1px;
    text-shadow: 0 0 5px rgba(0, 188, 212, 0.5);
}

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

.btn-login {
    padding: 8px 20px;
    border: 1px solid rgba(0, 188, 212, 0.5);
    border-radius: 4px;
    color: #00BCD4;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-login:hover {
    background: rgba(0, 188, 212, 0.1);
    border-color: #00BCD4;
    box-shadow: 0 0 15px rgba(0, 188, 212, 0.3);
}

.btn-register {
    padding: 8px 20px;
    background: linear-gradient(135deg, #00BCD4, #7B1FA2);
    border: none;
    border-radius: 4px;
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-register:hover {
    background: linear-gradient(135deg, #00E5FF, #9C27B0);
    box-shadow: 0 0 20px rgba(0, 188, 212, 0.5);
    transform: translateY(-1px);
    color: #fff;
}

.btn-demo {
    padding: 8px 20px;
    border: 1px solid rgba(123, 31, 162, 0.5);
    border-radius: 4px;
    color: #E040FB;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-demo:hover {
    background: rgba(123, 31, 162, 0.1);
    border-color: #7B1FA2;
    box-shadow: 0 0 15px rgba(123, 31, 162, 0.3);
}

/* === NAVIGATION === */
.main-navigation {
    background: rgba(13, 13, 13, 0.9);
    border-top: 1px solid rgba(0, 188, 212, 0.1);
    border-bottom: 1px solid rgba(0, 188, 212, 0.1);
}

.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: #B0BEC5;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00BCD4, #7B1FA2);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: #00BCD4;
    text-shadow: 0 0 8px rgba(0, 188, 212, 0.5);
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: 1px solid rgba(0, 188, 212, 0.3);
    color: #00BCD4;
    font-size: 20px;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 4px;
    margin: 10px 0;
}

/* === NOTIFICATION BAR === */
.notification-bar {
    background: linear-gradient(90deg, rgba(0, 188, 212, 0.1), rgba(123, 31, 162, 0.1));
    overflow: hidden;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 188, 212, 0.1);
}

.notification-content {
    display: flex;
    gap: 50px;
    animation: marqueeScroll 30s linear infinite;
    white-space: nowrap;
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    color: #00BCD4;
    letter-spacing: 0.5px;
}

/* === ANNOUNCEMENT MODAL === */
.announcement-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    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(135deg, #0D0D0D, #1a1a2e);
    border: 1px solid rgba(0, 188, 212, 0.3);
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 0 40px rgba(0, 188, 212, 0.2),
                0 0 80px rgba(123, 31, 162, 0.1);
    animation: slideInUp 0.4s ease;
}

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

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

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

.announcement-header-icon i {
    font-size: 40px;
    background: linear-gradient(135deg, #00BCD4, #7B1FA2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: cyberCrown 3s ease infinite;
}

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

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

.announcement-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(0, 188, 212, 0.05);
    border: 1px solid rgba(0, 188, 212, 0.1);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.announcement-item:hover {
    background: rgba(0, 188, 212, 0.1);
    border-color: rgba(0, 188, 212, 0.3);
    transform: translateX(5px);
}

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

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

.announcement-badge.new {
    background: linear-gradient(135deg, #00BCD4, #0097A7);
    color: #fff;
}

.announcement-badge.info {
    background: linear-gradient(135deg, #7B1FA2, #9C27B0);
    color: #fff;
}

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

.announcement-item i.fa-chevron-right {
    color: rgba(0, 188, 212, 0.5);
    font-size: 12px;
}

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

.announcement-cta {
    display: inline-block;
    padding: 12px 40px;
    background: linear-gradient(135deg, #00BCD4, #7B1FA2);
    border-radius: 6px;
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.announcement-cta:hover {
    background: linear-gradient(135deg, #00E5FF, #9C27B0);
    box-shadow: 0 0 25px rgba(0, 188, 212, 0.5);
    transform: translateY(-2px);
    color: #fff;
}

/* === HERO SECTION === */
.cyberking-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0D0D0D 0%, #0a0a1a 30%, #1a0a2e 60%, #0D0D0D 100%);
    border-radius: 12px;
    margin: 20px 0;
    border: 1px solid rgba(0, 188, 212, 0.15);
}

.cyber-grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.grid-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(0, 188, 212, 0.08), transparent);
    height: 1px;
    width: 100%;
    animation: gridPulse 4s ease infinite;
}

.grid-line-1 { top: 20%; animation-delay: 0s; }
.grid-line-2 { top: 40%; animation-delay: 0.8s; }
.grid-line-3 { top: 60%; animation-delay: 1.6s; }
.grid-line-4 { top: 80%; animation-delay: 2.4s; }
.grid-line-5 { top: 95%; animation-delay: 3.2s; }

.cyber-crown {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    opacity: 0.7;
    animation: crownFloat 6s ease infinite;
}

.crown-point {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.crown-point-1 {
    border-width: 0 15px 40px 15px;
    border-color: transparent transparent #00BCD4 transparent;
    left: 30px;
    top: 30px;
    filter: drop-shadow(0 0 8px rgba(0, 188, 212, 0.6));
}

.crown-point-2 {
    border-width: 0 15px 50px 15px;
    border-color: transparent transparent #7B1FA2 transparent;
    left: 65px;
    top: 20px;
    filter: drop-shadow(0 0 8px rgba(123, 31, 162, 0.6));
}

.crown-point-3 {
    border-width: 0 15px 60px 15px;
    border-color: transparent transparent #00BCD4 transparent;
    left: 100px;
    top: 10px;
    filter: drop-shadow(0 0 10px rgba(0, 188, 212, 0.7));
}

.crown-point-4 {
    border-width: 0 15px 50px 15px;
    border-color: transparent transparent #7B1FA2 transparent;
    left: 135px;
    top: 20px;
    filter: drop-shadow(0 0 8px rgba(123, 31, 162, 0.6));
}

.crown-point-5 {
    border-width: 0 15px 40px 15px;
    border-color: transparent transparent #00BCD4 transparent;
    left: 170px;
    top: 30px;
    filter: drop-shadow(0 0 8px rgba(0, 188, 212, 0.6));
}

.crown-base {
    position: absolute;
    bottom: 60px;
    left: 20px;
    width: 180px;
    height: 30px;
    background: linear-gradient(90deg, #00BCD4, #7B1FA2, #00BCD4);
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 188, 212, 0.4);
}

.crown-inner-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.3), transparent);
    border-radius: 50%;
    animation: pulseGlow 3s ease infinite;
}

.neon-sweep-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 188, 212, 0.05), rgba(123, 31, 162, 0.05), transparent);
    animation: neonSweep 8s linear infinite;
    pointer-events: none;
}

@keyframes neonSweep {
    0% { left: -50%; }
    100% { left: 150%; }
}

.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: 'Rajdhani', sans-serif;
    font-size: 64px;
    font-weight: 700;
    letter-spacing: 10px;
    background: linear-gradient(90deg, #00BCD4, #7B1FA2, #E040FB, #00BCD4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 300% auto;
    animation: neonThrone 5s linear infinite;
    text-shadow: none;
}

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

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

.hero-description {
    font-size: 16px;
    color: #8899AA;
    line-height: 1.8;
    margin-bottom: 25px;
    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-family: 'Rajdhani', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #00BCD4;
    text-shadow: 0 0 10px rgba(0, 188, 212, 0.5);
}

.hero-stat-label {
    display: block;
    font-size: 12px;
    color: #78909C;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.btn-cyan-primary {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, #00BCD4, #7B1FA2);
    border: none;
    border-radius: 6px;
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
}

.btn-cyan-primary:hover {
    background: linear-gradient(135deg, #00E5FF, #9C27B0);
    box-shadow: 0 0 30px rgba(0, 188, 212, 0.5);
    transform: translateY(-3px);
    color: #fff;
}

.btn-outline-cyan {
    display: inline-block;
    padding: 14px 35px;
    background: transparent;
    border: 2px solid rgba(0, 188, 212, 0.5);
    border-radius: 6px;
    color: #00BCD4;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
}

.btn-outline-cyan:hover {
    background: rgba(0, 188, 212, 0.1);
    border-color: #00BCD4;
    box-shadow: 0 0 20px rgba(0, 188, 212, 0.3);
    color: #fff;
}

/* === SECTION TITLES === */
.section-title {
    text-align: center;
    font-family: 'Rajdhani', sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 10px;
    padding-top: 40px;
}

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

.section-subtitle {
    text-align: center;
    color: #78909C;
    font-size: 15px;
    margin-bottom: 30px;
}

/* === CROWN STAR GAMES === */
.crown-star-games {
    padding: 20px 0;
}

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

.crown-star-game-card {
    position: relative;
    display: block;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.05), rgba(123, 31, 162, 0.05));
    border: 1px solid rgba(0, 188, 212, 0.15);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
}

.crown-star-game-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 188, 212, 0.5);
    box-shadow: 0 10px 40px rgba(0, 188, 212, 0.2),
                0 0 60px rgba(123, 31, 162, 0.1);
}

.crown-star-game-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 188, 212, 0.1), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.crown-star-game-card:hover .crown-star-game-glow {
    opacity: 1;
}

.crown-star-game-icon {
    margin-bottom: 15px;
}

.crown-star-game-icon i {
    font-size: 40px;
    background: linear-gradient(135deg, #00BCD4, #7B1FA2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.crown-star-game-rating {
    margin-bottom: 12px;
}

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

.crown-star-game-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #E0E8F0;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

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

.crown-star-game-players {
    display: inline-block;
    font-size: 12px;
    color: #00BCD4;
    padding: 4px 12px;
    background: rgba(0, 188, 212, 0.1);
    border-radius: 20px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
}

/* === CYBER GRID SECTION === */
.cyber-grid-section {
    padding: 20px 0;
}

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

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

.cyber-grid-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 10px;
    background: rgba(0, 188, 212, 0.03);
    border: 1px solid rgba(0, 188, 212, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cyber-grid-node::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00BCD4, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cyber-grid-node:hover::before {
    opacity: 1;
}

.cyber-grid-node:hover {
    background: rgba(0, 188, 212, 0.08);
    border-color: rgba(0, 188, 212, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 188, 212, 0.15);
}

.cyber-node-icon i {
    font-size: 24px;
    color: #00BCD4;
    filter: drop-shadow(0 0 5px rgba(0, 188, 212, 0.4));
}

.cyber-node-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #B0BEC5;
    letter-spacing: 0.5px;
}

/* === THRONE FEATURES === */
.throne-features {
    padding: 20px 0;
}

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

.throne-feature-card {
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.9), rgba(26, 10, 46, 0.5));
    border: 1px solid rgba(0, 188, 212, 0.1);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    animation: neonThrone 8s ease infinite;
    animation-play-state: paused;
}

.throne-feature-card:hover {
    animation-play-state: running;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 188, 212, 0.15);
}

.throne-feature-icon {
    margin-bottom: 15px;
}

.throne-feature-icon i {
    font-size: 36px;
    background: linear-gradient(135deg, #00BCD4, #7B1FA2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.throne-feature-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #E0E8F0;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

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

/* === KING STATS === */
.king-stats {
    position: relative;
    padding: 40px 0;
    margin: 20px 0;
}

.king-stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a1a, #1a0a2e);
    border-radius: 12px;
    overflow: hidden;
}

.neon-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.05), rgba(123, 31, 162, 0.05));
}

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

.king-stat-card {
    text-align: center;
    padding: 25px 15px;
    background: rgba(0, 188, 212, 0.05);
    border: 1px solid rgba(0, 188, 212, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
    animation: kingPulse 4s ease infinite;
    animation-play-state: paused;
}

.king-stat-card:hover {
    animation-play-state: running;
    border-color: rgba(0, 188, 212, 0.4);
}

.stat-crown-decoration {
    color: rgba(0, 188, 212, 0.3);
    font-size: 16px;
    margin-bottom: 10px;
}

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

.stat-number {
    font-family: 'Rajdhani', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #00BCD4;
    text-shadow: 0 0 15px rgba(0, 188, 212, 0.5);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 13px;
    color: #78909C;
    letter-spacing: 1px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
}

/* === CROWN PROMOS === */
.crown-promos {
    padding: 20px 0;
}

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

.crown-promo-card {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.05), rgba(123, 31, 162, 0.05));
    border: 1px solid rgba(0, 188, 212, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.crown-promo-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 188, 212, 0.4);
    box-shadow: 0 10px 40px rgba(0, 188, 212, 0.15),
                0 0 60px rgba(123, 31, 162, 0.08);
}

.promo-crown-bg {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.05), transparent 50%);
    pointer-events: none;
}

.crown-promo-inner {
    position: relative;
    padding: 25px;
    text-align: center;
}

.crown-promo-inner .promo-icon {
    margin-bottom: 15px;
}

.crown-promo-inner .promo-icon i {
    font-size: 32px;
    background: linear-gradient(135deg, #00BCD4, #7B1FA2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.crown-promo-inner h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #E0E8F0;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.crown-promo-inner p {
    font-size: 13px;
    color: #78909C;
    line-height: 1.6;
    margin-bottom: 15px;
}

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

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

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

.promo-badge.new {
    background: linear-gradient(135deg, #00BCD4, #0097A7);
    color: #fff;
}

.promo-badge.vip {
    background: linear-gradient(135deg, #7B1FA2, #9C27B0);
    color: #fff;
}

.btn-promo {
    display: inline-block;
    padding: 10px 30px;
    background: linear-gradient(135deg, #00BCD4, #7B1FA2);
    border: none;
    border-radius: 6px;
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-promo:hover {
    background: linear-gradient(135deg, #00E5FF, #9C27B0);
    box-shadow: 0 0 20px rgba(0, 188, 212, 0.4);
    transform: translateY(-2px);
    color: #fff;
}

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

.footer-cta-cyberfield {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a1a, #1a0a2e, #0a0a1a);
}

.footer-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

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

.cta-crown-icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00BCD4, #7B1FA2);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: cyberCrown 3s ease infinite;
}

.footer-cta-inner h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #E0E8F0;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.footer-cta-inner p {
    font-size: 15px;
    color: #78909C;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.cta-feature {
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    color: #00BCD4;
    font-weight: 500;
}

.cta-feature i {
    margin-right: 5px;
}

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

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

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

.article-card {
    display: block;
    background: rgba(0, 188, 212, 0.03);
    border: 1px solid rgba(0, 188, 212, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 188, 212, 0.3);
    box-shadow: 0 10px 30px rgba(0, 188, 212, 0.15);
}

.article-card-thumb {
    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: 15px 15px 8px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #E0E8F0;
    line-height: 1.4;
}

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

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

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

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

.article-card-meta i {
    margin-right: 4px;
    color: rgba(0, 188, 212, 0.5);
}

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

.article-card-more {
    display: inline-block;
    padding: 0 15px 15px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #00BCD4;
    letter-spacing: 1px;
}

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

.view-more-btn {
    display: block;
    text-align: center;
    padding: 14px 30px;
    margin: 25px auto 0;
    max-width: 250px;
    border-radius: 6px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.cyan-view-more {
    border: 1px solid rgba(0, 188, 212, 0.3);
    color: #00BCD4;
}

.cyan-view-more:hover {
    background: rgba(0, 188, 212, 0.1);
    border-color: #00BCD4;
    box-shadow: 0 0 15px rgba(0, 188, 212, 0.2);
    color: #fff;
}

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

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

/* === BREADCRUMB === */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 0;
    font-size: 13px;
    font-family: 'Rajdhani', sans-serif;
    color: #607D8B;
}

.breadcrumb a {
    color: #00BCD4;
}

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

.breadcrumb span {
    color: #607D8B;
}

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

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

/* === PAGINATION === */
.pagination {
    padding: 30px 0;
    text-align: center;
}

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

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 188, 212, 0.2);
    border-radius: 6px;
    color: #B0BEC5;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: linear-gradient(135deg, #00BCD4, #7B1FA2);
    border-color: transparent;
    color: #fff;
}

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

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

.category-desc {
    color: #78909C;
    font-size: 14px;
}

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

.provider-tab {
    padding: 8px 18px;
    border: 1px solid rgba(0, 188, 212, 0.2);
    border-radius: 20px;
    background: transparent;
    color: #78909C;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.provider-tab:hover {
    border-color: rgba(0, 188, 212, 0.5);
    color: #00BCD4;
}

.provider-tab.active {
    background: linear-gradient(135deg, #00BCD4, #7B1FA2);
    border-color: transparent;
    color: #fff;
}

/* === SINGLE ARTICLE === */
.single-article {
    background: rgba(0, 188, 212, 0.02);
    border: 1px solid rgba(0, 188, 212, 0.1);
    border-radius: 12px;
    padding: 30px;
}

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

.article-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #E0E8F0;
    line-height: 1.3;
    margin-bottom: 12px;
}

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

.article-meta i {
    color: rgba(0, 188, 212, 0.5);
    margin-right: 4px;
}

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

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

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

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

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

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

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

.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;
}

.article-content blockquote {
    border-left: 3px solid #00BCD4;
    padding: 15px 20px;
    margin: 20px 0;
    background: rgba(0, 188, 212, 0.05);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #78909C;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 20px 0;
    border-top: 1px solid rgba(0, 188, 212, 0.1);
    margin-top: 25px;
}

.article-tags i {
    color: #00BCD4;
}

.article-tags span {
    padding: 4px 12px;
    background: rgba(0, 188, 212, 0.08);
    border: 1px solid rgba(0, 188, 212, 0.15);
    border-radius: 20px;
    font-size: 12px;
    color: #00BCD4;
    font-family: 'Rajdhani', sans-serif;
}

.article-tags a {
    color: #00BCD4;
}

.article-nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid rgba(0, 188, 212, 0.1);
}

.article-nav-prev,
.article-nav-next {
    max-width: 45%;
}

.article-nav a {
    color: #00BCD4;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
}

.article-nav a:hover {
    color: #E040FB;
}

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

.related-posts-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

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

.related-item {
    display: block;
    background: rgba(0, 188, 212, 0.03);
    border: 1px solid rgba(0, 188, 212, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.related-item:hover {
    border-color: rgba(0, 188, 212, 0.3);
    transform: translateY(-3px);
}

.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: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #B0BEC5;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* === PAGE === */
.page-article {
    background: rgba(0, 188, 212, 0.02);
    border: 1px solid rgba(0, 188, 212, 0.1);
    border-radius: 12px;
    padding: 30px;
}

.page-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #E0E8F0;
    margin-bottom: 20px;
}

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

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

.page-content p { margin-bottom: 15px; }
.page-content h2, .page-content h3 { color: #00BCD4; margin: 20px 0 10px; }

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

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

.error-crown-icon {
    display: inline-block;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00BCD4, #7B1FA2);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: cyberCrown 3s ease infinite;
}

.error-code {
    font-family: 'Rajdhani', sans-serif;
    font-size: 100px;
    font-weight: 700;
    background: linear-gradient(90deg, #00BCD4, #7B1FA2, #E040FB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 10px;
}

.error-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #E0E8F0;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.error-desc {
    font-size: 15px;
    color: #78909C;
    max-width: 500px;
    margin: 0 auto 25px;
    line-height: 1.7;
}

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

.sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.9), rgba(123, 31, 162, 0.9));
    border-radius: 8px;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
}

.sidebar-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 188, 212, 0.5);
    color: #fff;
}

.sidebar-btn-facebook {
    background: linear-gradient(135deg, #1877F2, #0D47A1);
}

.sidebar-btn-telegram {
    background: linear-gradient(135deg, #0088cc, #005f8c);
}

.sidebar-label {
    display: none;
    position: absolute;
    right: 55px;
    background: rgba(13, 13, 13, 0.95);
    border: 1px solid rgba(0, 188, 212, 0.3);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    color: #00BCD4;
    white-space: nowrap;
    font-family: 'Rajdhani', sans-serif;
}

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

/* === FOOTER === */
.site-footer {
    background: linear-gradient(180deg, #0D0D0D, #0a0a12);
    border-top: 1px solid rgba(0, 188, 212, 0.15);
    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-col h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #00BCD4;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

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

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

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

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

.footer-brand-logo img {
    height: 40px;
    margin-bottom: 12px;
    filter: drop-shadow(0 0 5px rgba(0, 188, 212, 0.3));
}

.footer-brand-text {
    font-size: 13px;
    color: #607D8B;
    line-height: 1.7;
    margin-bottom: 12px;
}

.footer-18plus {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border: 2px solid #ff4444;
    border-radius: 50%;
    color: #ff4444;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 12px;
}

.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, 188, 212, 0.2);
    border-radius: 6px;
    color: #78909C;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    background: rgba(0, 188, 212, 0.1);
    border-color: #00BCD4;
    color: #00BCD4;
}

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

.footer-license-bar h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #607D8B;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

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

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

.license-item i {
    display: block;
    font-size: 20px;
    color: #00BCD4;
    margin-bottom: 5px;
}

.license-item span {
    font-size: 11px;
    color: #607D8B;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
}

/* === FOOTER BOTTOM === */
.footer-bottom {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 188, 212, 0.08);
}

.footer-copyright {
    font-size: 12px;
    color: #607D8B;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 1px;
}

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

/* === SCROLLBAR === */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0D0D0D;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #00BCD4, #7B1FA2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #00E5FF, #9C27B0);
}

/* === SELECTION === */
::selection {
    background: rgba(0, 188, 212, 0.3);
    color: #fff;
}
