/* ============================================
   POWERJACK THEME - main.css (moban-113)
   Powerball Lottery Theme with Energy Bolts
   Colors: #C62828 (Red), #1565C0 (Blue), #FFD700 (Gold)
   ============================================ */

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

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

body {
    font-family: 'Noto Sans', sans-serif;
    background: #0A0A0F;
    color: #E8E8F0;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

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

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

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

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

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

.gold-text {
    color: #FFD700;
    background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.energy-text {
    background: linear-gradient(90deg, #C62828, #1565C0, #C62828);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === KEYFRAME ANIMATIONS === */
@keyframes powerBolt {
    0%, 100% {
        opacity: 0;
        transform: translateY(-100%) scaleY(0.5) rotate(15deg);
        filter: blur(2px);
    }
    10% {
        opacity: 1;
        transform: translateY(-50%) scaleY(1.2) rotate(15deg);
        filter: blur(0px);
    }
    30% {
        opacity: 0.8;
        transform: translateY(0%) scaleY(1) rotate(12deg);
        filter: blur(1px);
    }
    50% {
        opacity: 1;
        transform: translateY(20%) scaleY(1.5) rotate(18deg);
        filter: blur(0px);
    }
    70% {
        opacity: 0.6;
        transform: translateY(50%) scaleY(0.8) rotate(10deg);
        filter: blur(2px);
    }
    90% {
        opacity: 0.3;
        transform: translateY(80%) scaleY(0.4) rotate(20deg);
        filter: blur(3px);
    }
}

@keyframes ballLaunch {
    0% {
        transform: translateY(0) scale(1);
        box-shadow: 0 0 20px rgba(198, 40, 40, 0.5);
    }
    15% {
        transform: translateY(-60px) scale(1.1);
        box-shadow: 0 0 40px rgba(198, 40, 40, 0.8);
    }
    30% {
        transform: translateY(-100px) scale(0.95);
        box-shadow: 0 0 60px rgba(21, 101, 192, 0.8);
    }
    50% {
        transform: translateY(-140px) scale(1.15);
        box-shadow: 0 0 80px rgba(255, 215, 0, 0.9);
    }
    70% {
        transform: translateY(-100px) scale(1.05);
        box-shadow: 0 0 60px rgba(198, 40, 40, 0.7);
    }
    85% {
        transform: translateY(-40px) scale(1);
        box-shadow: 0 0 40px rgba(21, 101, 192, 0.5);
    }
    100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 0 20px rgba(198, 40, 40, 0.5);
    }
}

@keyframes jackpotBurst {
    0% {
        transform: scale(0);
        opacity: 1;
        border-width: 8px;
    }
    20% {
        transform: scale(0.5);
        opacity: 0.9;
        border-width: 6px;
    }
    40% {
        transform: scale(1);
        opacity: 0.7;
        border-width: 4px;
    }
    60% {
        transform: scale(1.5);
        opacity: 0.5;
        border-width: 3px;
    }
    80% {
        transform: scale(2);
        opacity: 0.2;
        border-width: 2px;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
        border-width: 1px;
    }
}

@keyframes energyPulse {
    0%, 100% {
        box-shadow: 0 0 15px rgba(198, 40, 40, 0.3),
                    0 0 30px rgba(21, 101, 192, 0.1),
                    inset 0 0 15px rgba(255, 215, 0, 0.1);
    }
    25% {
        box-shadow: 0 0 25px rgba(198, 40, 40, 0.5),
                    0 0 50px rgba(21, 101, 192, 0.2),
                    inset 0 0 25px rgba(255, 215, 0, 0.15);
    }
    50% {
        box-shadow: 0 0 40px rgba(198, 40, 40, 0.7),
                    0 0 80px rgba(21, 101, 192, 0.3),
                    inset 0 0 40px rgba(255, 215, 0, 0.2);
    }
    75% {
        box-shadow: 0 0 25px rgba(198, 40, 40, 0.5),
                    0 0 50px rgba(21, 101, 192, 0.2),
                    inset 0 0 25px rgba(255, 215, 0, 0.15);
    }
}

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

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

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes orbRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

@keyframes glowPulse {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.5),
                     0 0 20px rgba(255, 215, 0, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.8),
                     0 0 40px rgba(255, 215, 0, 0.5),
                     0 0 60px rgba(198, 40, 40, 0.3);
    }
}

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

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

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

.announcement-content {
    position: relative;
    background: linear-gradient(135deg, #0A0A0F 0%, #1a1a2e 50%, #0A0A0F 100%);
    border: 2px solid #C62828;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    padding: 30px;
    z-index: 1;
    animation: energyPulse 3s ease-in-out infinite;
}

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

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

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

.announcement-header-icon i {
    font-size: 48px;
    color: #FFD700;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
    animation: floatUpDown 2s ease-in-out infinite;
}

.announcement-title {
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
    animation: glowPulse 2s ease-in-out infinite;
}

.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(198, 40, 40, 0.1);
    border: 1px solid rgba(198, 40, 40, 0.3);
    border-radius: 10px;
    transition: all 0.3s;
    color: #E8E8F0;
}

.announcement-item:hover {
    background: rgba(198, 40, 40, 0.2);
    border-color: #FFD700;
    transform: translateX(5px);
    color: #fff;
}

.announcement-badge {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

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

.announcement-badge.new {
    background: #1565C0;
    color: #fff;
}

.announcement-badge.info {
    background: #FFD700;
    color: #0A0A0F;
}

.announcement-text {
    flex: 1;
    font-size: 13px;
    line-height: 1.4;
}

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

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

.announcement-cta {
    display: inline-block;
    padding: 12px 40px;
    background: linear-gradient(135deg, #C62828, #1565C0);
    color: #fff;
    border-radius: 25px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.announcement-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(198, 40, 40, 0.5);
    color: #FFD700;
}

/* === HEADER === */
.site-header {
    background: linear-gradient(180deg, #0A0A0F 0%, #1a1a2e 100%);
    border-bottom: 2px solid #C62828;
    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;
    filter: drop-shadow(0 0 10px rgba(198, 40, 40, 0.3));
}

.header-time {
    color: #FFD700;
    font-size: 14px;
    font-weight: 500;
}

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

.btn-login {
    padding: 8px 20px;
    border: 1px solid #1565C0;
    color: #1565C0;
    border-radius: 25px;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.3s;
}

.btn-login:hover {
    background: #1565C0;
    color: #fff;
    box-shadow: 0 0 15px rgba(21, 101, 192, 0.4);
}

.btn-register {
    padding: 8px 20px;
    background: linear-gradient(135deg, #C62828, #e53935);
    color: #fff;
    border-radius: 25px;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.3s;
}

.btn-register:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(198, 40, 40, 0.5);
    color: #FFD700;
}

.btn-demo {
    padding: 8px 20px;
    border: 1px solid #FFD700;
    color: #FFD700;
    border-radius: 25px;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.3s;
}

.btn-demo:hover {
    background: #FFD700;
    color: #0A0A0F;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

/* === NAVIGATION === */
.main-navigation {
    background: linear-gradient(90deg, #C62828 0%, #1565C0 50%, #C62828 100%);
    padding: 0;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    padding: 12px 15px;
    cursor: pointer;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 12px 16px;
    color: #fff;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.nav-link:hover {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    text-shadow: none;
}

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

/* === NOTIFICATION BAR === */
.notification-bar {
    background: linear-gradient(90deg, #0A0A0F, #1a1a2e, #0A0A0F);
    padding: 8px 0;
    overflow: hidden;
    border-top: 1px solid rgba(198, 40, 40, 0.3);
}

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

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

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

/* === HERO SECTION === */
.powerjack-hero {
    position: relative;
    padding: 80px 30px;
    background: linear-gradient(135deg, #0A0A0F 0%, #1a0a0a 30%, #0a0a2e 70%, #0A0A0F 100%);
    border-radius: 16px;
    margin-bottom: 40px;
    overflow: hidden;
    border: 2px solid rgba(198, 40, 40, 0.4);
    animation: energyPulse 4s ease-in-out infinite;
}

.energy-bolts {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.energy-bolt {
    position: absolute;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #C62828, #FFD700, #1565C0, transparent);
    animation: powerBolt 3s ease-in-out infinite;
    opacity: 0.6;
}

.energy-bolt.bolt-1 {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 2.5s;
}

.energy-bolt.bolt-2 {
    left: 30%;
    animation-delay: 0.5s;
    animation-duration: 3s;
    background: linear-gradient(180deg, transparent, #1565C0, #FFD700, #C62828, transparent);
}

.energy-bolt.bolt-3 {
    left: 50%;
    animation-delay: 1s;
    animation-duration: 2.8s;
}

.energy-bolt.bolt-4 {
    left: 70%;
    animation-delay: 1.5s;
    animation-duration: 3.2s;
    background: linear-gradient(180deg, transparent, #1565C0, #FFD700, #C62828, transparent);
}

.energy-bolt.bolt-5 {
    left: 90%;
    animation-delay: 2s;
    animation-duration: 2.6s;
}

/* === POWERBALL ORB === */
.powerball-orb {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
}

.orb-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    animation: orbRotate linear infinite;
}

.orb-ring-1 {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-color: rgba(198, 40, 40, 0.5);
    animation-duration: 8s;
}

.orb-ring-2 {
    top: 15%;
    left: 15%;
    width: 70%;
    height: 70%;
    border-color: rgba(21, 101, 192, 0.5);
    animation-duration: 6s;
    animation-direction: reverse;
}

.orb-ring-3 {
    top: 30%;
    left: 30%;
    width: 40%;
    height: 40%;
    border-color: rgba(255, 215, 0, 0.5);
    animation-duration: 4s;
}

.orb-core {
    position: absolute;
    top: 35%;
    left: 35%;
    width: 30%;
    height: 30%;
    border-radius: 50%;
    background: radial-gradient(circle, #FFD700, #C62828, #1565C0);
    animation: ballLaunch 4s ease-in-out infinite;
}

.orb-glow {
    position: absolute;
    top: 20%;
    left: 20%;
    width: 60%;
    height: 60%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3), transparent);
    filter: blur(10px);
}

.energy-sweep-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(198, 40, 40, 0.05), rgba(21, 101, 192, 0.05), transparent);
    animation: shimmer 6s linear infinite;
}

/* === HERO CONTENT === */
.hero-inner-content {
    position: relative;
    z-index: 2;
    max-width: 65%;
}

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

.hero-brand {
    display: block;
    font-size: 48px;
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5),
                 0 0 40px rgba(198, 40, 40, 0.3);
    animation: glowPulse 3s ease-in-out infinite;
}

.hero-divider-line {
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #C62828, #FFD700, #1565C0);
    margin: 10px 0;
    border-radius: 2px;
}

.hero-tagline {
    display: block;
    font-size: 22px;
    color: #1565C0;
    letter-spacing: 3px;
}

.hero-description {
    font-size: 15px;
    color: #ccc;
    margin-bottom: 25px;
    line-height: 1.7;
    max-width: 600px;
}

.hero-stats-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

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

.hero-stat-number {
    display: block;
    font-family: 'Russo One', sans-serif;
    font-size: 28px;
    color: #FFD700;
}

.hero-stat-label {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
}

.hero-cta-group {
    display: flex;
    gap: 15px;
}

/* === BUTTONS === */
.btn-gold-primary {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, #C62828, #e53935);
    color: #fff;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.btn-gold-primary:hover {
    background: linear-gradient(135deg, #1565C0, #1976D2);
    color: #FFD700;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(198, 40, 40, 0.5);
}

.btn-outline-gold {
    display: inline-block;
    padding: 14px 35px;
    border: 2px solid #FFD700;
    color: #FFD700;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-outline-gold:hover {
    background: #FFD700;
    color: #0A0A0F;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

/* === SECTION STYLES === */
.section-title {
    font-size: 28px;
    text-align: center;
    margin-bottom: 10px;
}

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

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

/* === POWER STAR GAMES === */
.power-star-games {
    margin-bottom: 50px;
    padding: 40px 0;
}

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

.power-star-game-card {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border: 1px solid rgba(198, 40, 40, 0.3);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
    color: #E8E8F0;
}

.power-star-game-card:hover {
    border-color: #FFD700;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(198, 40, 40, 0.3);
    color: #fff;
}

.power-star-game-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(198, 40, 40, 0.05), transparent 60%);
    pointer-events: none;
}

.power-star-game-card:hover .power-star-game-glow {
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1), transparent 60%);
}

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

.power-star-game-icon i {
    font-size: 42px;
    color: #FFD700;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.4));
}

.power-star-game-rating {
    margin-bottom: 12px;
    color: #FFD700;
    font-size: 12px;
}

.power-star-game-rating i {
    margin: 0 1px;
}

.power-star-game-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #fff;
}

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

.power-star-game-players {
    font-size: 12px;
    color: #1565C0;
}

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

/* === POWER GRID === */
.power-grid-section {
    margin-bottom: 50px;
    padding: 40px 0;
}

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

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

.power-grid-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 10px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border: 1px solid rgba(21, 101, 192, 0.3);
    border-radius: 12px;
    transition: all 0.3s;
    color: #E8E8F0;
}

.power-grid-node:hover {
    border-color: #FFD700;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(21, 101, 192, 0.3);
    color: #fff;
}

.power-node-icon i {
    font-size: 28px;
    color: #C62828;
    filter: drop-shadow(0 0 8px rgba(198, 40, 40, 0.4));
}

.power-grid-node:hover .power-node-icon i {
    color: #FFD700;
}

.power-node-label {
    font-size: 13px;
    font-weight: 500;
}

/* === POWER FEATURES === */
.power-features {
    margin-bottom: 50px;
    padding: 40px 0;
}

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

.power-feature-card {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border: 1px solid rgba(198, 40, 40, 0.2);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s;
}

.power-feature-card:hover {
    border-color: #FFD700;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(198, 40, 40, 0.2);
}

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

.power-feature-icon i {
    font-size: 40px;
    color: #C62828;
    filter: drop-shadow(0 0 10px rgba(198, 40, 40, 0.4));
}

.power-feature-card h3 {
    font-size: 16px;
    color: #FFD700;
    margin-bottom: 10px;
}

.power-feature-card p {
    font-size: 13px;
    color: #aaa;
    line-height: 1.6;
}

/* === POWER STATS === */
.power-stats {
    position: relative;
    padding: 60px 0;
    margin-bottom: 50px;
    border-radius: 16px;
    overflow: hidden;
}

.power-stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0A0A0F, #1a0a0a, #0a0a2e);
    z-index: 0;
}

.energy-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(198, 40, 40, 0.1), rgba(21, 101, 192, 0.1));
}

.power-stats .section-title,
.power-stats .section-subtitle {
    position: relative;
    z-index: 1;
}

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

.power-stat-card {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(198, 40, 40, 0.3);
    border-radius: 16px;
    padding: 30px 15px;
    text-align: center;
    transition: all 0.3s;
    animation: energyPulse 4s ease-in-out infinite;
}

.power-stat-card:nth-child(2) {
    animation-delay: 1s;
}

.power-stat-card:nth-child(3) {
    animation-delay: 2s;
}

.power-stat-card:nth-child(4) {
    animation-delay: 3s;
}

.power-stat-card:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
}

.stat-power-decoration {
    margin-bottom: 10px;
}

.stat-power-decoration i {
    font-size: 24px;
    color: #C62828;
}

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

.stat-number {
    font-family: 'Russo One', sans-serif;
    font-size: 36px;
    color: #FFD700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 13px;
    color: #aaa;
    text-transform: uppercase;
}

/* === POWER PROMOS === */
.power-promos {
    margin-bottom: 50px;
    padding: 40px 0;
}

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

.power-promo-card {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border: 1px solid rgba(198, 40, 40, 0.3);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.power-promo-card:hover {
    border-color: #FFD700;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(198, 40, 40, 0.3);
}

.promo-power-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(198, 40, 40, 0.1), transparent 60%);
    pointer-events: none;
}

.power-promo-inner {
    position: relative;
    padding: 30px 20px;
    text-align: center;
}

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

.promo-icon i {
    font-size: 40px;
    color: #FFD700;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.4));
}

.power-promo-inner h3 {
    font-size: 18px;
    color: #FFD700;
    margin-bottom: 10px;
}

.power-promo-inner p {
    font-size: 13px;
    color: #aaa;
    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: #999;
}

.promo-badge {
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
}

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

.promo-badge.new {
    background: #1565C0;
    color: #fff;
}

.promo-badge.vip {
    background: #FFD700;
    color: #0A0A0F;
}

.btn-promo {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, #C62828, #e53935);
    color: #fff;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s;
}

.btn-promo:hover {
    background: linear-gradient(135deg, #1565C0, #1976D2);
    color: #FFD700;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(198, 40, 40, 0.4);
}

/* === FOOTER CTA SECTION === */
.footer-cta-section {
    position: relative;
    padding: 60px 30px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 50px;
    text-align: center;
    border: 2px solid rgba(198, 40, 40, 0.4);
}

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

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

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

.cta-power-ball {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle, #FFD700, #C62828, #1565C0);
    margin: 0 auto;
    animation: ballLaunch 3s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}

.footer-cta-inner h2 {
    font-size: 32px;
    color: #FFD700;
    margin-bottom: 15px;
    animation: glowPulse 3s ease-in-out infinite;
}

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

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

.cta-feature {
    color: #E8E8F0;
    font-size: 14px;
}

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

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

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

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

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

.article-card {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border: 1px solid rgba(198, 40, 40, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    color: #E8E8F0;
    display: block;
}

.article-card:hover {
    border-color: #FFD700;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(198, 40, 40, 0.2);
    color: #fff;
}

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

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

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

.article-card-title {
    padding: 15px 15px 8px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    min-height: 50px;
}

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

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

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

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

.article-card-excerpt {
    padding: 10px 15px 15px;
    font-size: 13px;
    color: #aaa;
    line-height: 1.5;
}

.article-card-more {
    display: inline-block;
    padding: 8px 15px;
    margin: 0 15px 15px;
    color: #FFD700;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    transition: all 0.3s;
}

.article-card-more:hover {
    background: #FFD700;
    color: #0A0A0F;
}

.view-more-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #C62828;
    color: #FFD700;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    text-align: center;
}

.view-more-btn:hover {
    background: #C62828;
    color: #fff;
    box-shadow: 0 0 20px rgba(198, 40, 40, 0.4);
}

.gold-view-more {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* === BREADCRUMB === */
.breadcrumb {
    padding: 15px 0;
    font-size: 13px;
    color: #999;
    border-bottom: 1px solid rgba(198, 40, 40, 0.2);
    margin-bottom: 20px;
}

.breadcrumb a {
    color: #FFD700;
}

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

.breadcrumb span {
    margin: 0 8px;
}

/* === CATEGORY HEADER === */
.category-header {
    margin-bottom: 30px;
    padding: 20px 0;
}

.category-title {
    font-size: 28px;
    margin-bottom: 10px;
}

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

/* === PROVIDER TABS === */
.provider-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
}

.provider-tab {
    padding: 8px 18px;
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(198, 40, 40, 0.3);
    color: #aaa;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

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

.pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(198, 40, 40, 0.3);
    color: #aaa;
    font-size: 14px;
    transition: all 0.3s;
}

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

/* === SINGLE ARTICLE === */
.single-article {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border: 1px solid rgba(198, 40, 40, 0.2);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
}

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

.article-title {
    font-size: 28px;
    color: #FFD700;
    margin-bottom: 15px;
    line-height: 1.3;
}

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

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

.article-meta a {
    color: #1565C0;
}

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

.article-featured-img img {
    width: 100%;
    border-radius: 12px;
}

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

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

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

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

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

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

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

.article-content blockquote {
    border-left: 4px solid #C62828;
    padding: 15px 20px;
    margin: 20px 0;
    background: rgba(198, 40, 40, 0.05);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #ccc;
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.article-content th,
.article-content td {
    padding: 12px 15px;
    border: 1px solid rgba(198, 40, 40, 0.2);
    text-align: left;
}

.article-content th {
    background: rgba(198, 40, 40, 0.1);
    color: #FFD700;
}

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

.article-tags i {
    color: #C62828;
}

.article-tags span {
    padding: 4px 12px;
    background: rgba(198, 40, 40, 0.1);
    border: 1px solid rgba(198, 40, 40, 0.3);
    border-radius: 15px;
    font-size: 12px;
    color: #aaa;
}

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

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

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

/* === 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 {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border: 1px solid rgba(198, 40, 40, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    color: #E8E8F0;
}

.related-item:hover {
    border-color: #FFD700;
    transform: translateY(-3px);
    color: #fff;
}

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

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

.related-item-title {
    padding: 10px;
    font-size: 13px;
    line-height: 1.4;
}

/* === PAGE ARTICLE === */
.page-article {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border: 1px solid rgba(198, 40, 40, 0.2);
    border-radius: 16px;
    padding: 30px;
}

.page-title {
    font-size: 28px;
    color: #FFD700;
    margin-bottom: 20px;
}

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

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

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

/* === NO POSTS === */
.no-posts {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 16px;
}

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

.error-powerball {
    margin-bottom: 30px;
}

.error-powerball-orb {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, #FFD700, #C62828, #1565C0);
    margin: 0 auto;
    animation: ballLaunch 3s ease-in-out infinite;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
}

.error-code {
    font-size: 80px;
    color: #C62828;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(198, 40, 40, 0.5);
}

.error-title {
    font-size: 24px;
    color: #FFD700;
    margin-bottom: 15px;
}

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

/* === 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: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C62828, #e53935);
    color: #fff;
    font-size: 18px;
    transition: all 0.3s;
    position: relative;
    box-shadow: 0 3px 10px rgba(198, 40, 40, 0.3);
}

.sidebar-btn:hover {
    transform: scale(1.1);
    color: #FFD700;
    box-shadow: 0 5px 20px rgba(198, 40, 40, 0.5);
}

.sidebar-btn-facebook {
    background: linear-gradient(135deg, #1565C0, #1976D2);
    box-shadow: 0 3px 10px rgba(21, 101, 192, 0.3);
}

.sidebar-btn-telegram {
    background: linear-gradient(135deg, #1565C0, #42A5F5);
    box-shadow: 0 3px 10px rgba(21, 101, 192, 0.3);
}

.sidebar-label {
    display: none;
}

.sidebar-btn:hover .sidebar-label {
    display: block;
    position: absolute;
    right: 55px;
    background: #0A0A0F;
    color: #FFD700;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    border: 1px solid rgba(198, 40, 40, 0.3);
}

/* === FOOTER === */
.site-footer {
    background: linear-gradient(180deg, #0A0A0F 0%, #1a1a2e 100%);
    border-top: 3px solid #C62828;
    padding: 50px 0 30px;
    margin-top: 40px;
}

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

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

.footer-brand-logo img {
    height: 45px;
    filter: drop-shadow(0 0 8px rgba(198, 40, 40, 0.3));
}

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

.footer-18plus {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 2px solid #C62828;
    border-radius: 50%;
    color: #C62828;
    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;
    border-radius: 50%;
    background: rgba(198, 40, 40, 0.15);
    color: #FFD700;
    font-size: 14px;
    transition: all 0.3s;
}

.footer-social-links a:hover {
    background: #C62828;
    color: #fff;
    transform: scale(1.1);
}

.footer-col h4 {
    color: #FFD700;
    font-size: 15px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(198, 40, 40, 0.3);
}

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

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

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

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

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

.footer-license-bar h4 {
    color: #FFD700;
    font-size: 16px;
    margin-bottom: 15px;
}

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

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

.license-item i {
    font-size: 28px;
    color: #C62828;
}

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

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

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

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

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #C62828, #1565C0);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FFD700;
}

/* === SELECTION === */
::selection {
    background: rgba(198, 40, 40, 0.4);
    color: #FFD700;
}

/* === JACKPOT BURST DECORATION === */
.jackpot-burst-ring {
    position: absolute;
    border-radius: 50%;
    border: 4px solid rgba(255, 215, 0, 0.6);
    animation: jackpotBurst 2s ease-out infinite;
    pointer-events: none;
}

.jackpot-burst-ring:nth-child(1) {
    width: 100px;
    height: 100px;
    animation-delay: 0s;
}

.jackpot-burst-ring:nth-child(2) {
    width: 100px;
    height: 100px;
    animation-delay: 0.5s;
    border-color: rgba(198, 40, 40, 0.6);
}

.jackpot-burst-ring:nth-child(3) {
    width: 100px;
    height: 100px;
    animation-delay: 1s;
    border-color: rgba(21, 101, 192, 0.6);
}
