/* ============================================
   STUDWIN THEME - main.css (moban-101)
   Stud Poker Theme with Card Reveal Effects
   Colors: #C62828, #1A1A1A, #FFD700, #BDBDBD
   ============================================ */

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

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

body {
    font-family: 'Manrope', sans-serif;
    background: #1A1A1A;
    color: #E8E8E8;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Spectral', serif;
    font-weight: 600;
    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;
}

.content-area {
    display: flex;
    gap: 30px;
    padding: 30px 0;
}

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

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

/* === @KEYFRAMES === */

/* cardReveal - Card flip face-up animation */
@keyframes cardReveal {
    0% {
        transform: rotateY(180deg) scale(0.8);
        opacity: 0;
    }
    50% {
        transform: rotateY(90deg) scale(0.9);
        opacity: 0.5;
    }
    100% {
        transform: rotateY(0deg) scale(1);
        opacity: 1;
    }
}

/* studFlip - Stud card flip with bounce */
@keyframes studFlip {
    0% {
        transform: perspective(600px) rotateX(-90deg);
        opacity: 0;
    }
    40% {
        transform: perspective(600px) rotateX(20deg);
        opacity: 1;
    }
    70% {
        transform: perspective(600px) rotateX(-10deg);
    }
    100% {
        transform: perspective(600px) rotateX(0deg);
        opacity: 1;
    }
}

/* anteGlow - Pulsing glow for ante/bet chips */
@keyframes anteGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.3), 0 0 20px rgba(198, 40, 40, 0.2);
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.7), 0 0 50px rgba(198, 40, 40, 0.5), 0 0 75px rgba(255, 215, 0, 0.3);
    }
}

/* winStack - Chip stack win celebration */
@keyframes winStack {
    0% {
        transform: translateY(100%) scale(0.5) rotateZ(-10deg);
        opacity: 0;
    }
    60% {
        transform: translateY(-10%) scale(1.1) rotateZ(3deg);
        opacity: 1;
    }
    80% {
        transform: translateY(5%) scale(0.95) rotateZ(-1deg);
    }
    100% {
        transform: translateY(0) scale(1) rotateZ(0deg);
        opacity: 1;
    }
}

/* Additional animations */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

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

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

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

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

@keyframes cardFall {
    0% {
        transform: translateY(-120%) rotateZ(-20deg);
        opacity: 0;
    }
    60% {
        opacity: 1;
    }
    100% {
        transform: translateY(0) rotateZ(0deg);
        opacity: 1;
    }
}

/* === HEADER === */
.site-header {
    background: linear-gradient(180deg, #0d0d0d 0%, #1A1A1A 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: 48px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
}

.header-time {
    color: #BDBDBD;
    font-size: 13px;
    font-family: 'Manrope', sans-serif;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(198, 40, 40, 0.3);
}

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

.btn-login {
    background: transparent;
    color: #FFD700;
    border: 1px solid #FFD700;
    padding: 8px 18px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    font-family: 'Manrope', sans-serif;
}

.btn-login:hover {
    background: #FFD700;
    color: #1A1A1A;
}

.btn-register {
    background: linear-gradient(135deg, #C62828, #a01e1e);
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    font-family: 'Manrope', sans-serif;
}

.btn-register:hover {
    background: linear-gradient(135deg, #e53935, #C62828);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(198, 40, 40, 0.4);
}

.btn-demo {
    background: transparent;
    color: #BDBDBD;
    border: 1px solid #BDBDBD;
    padding: 8px 18px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    font-family: 'Manrope', sans-serif;
}

.btn-demo:hover {
    background: #BDBDBD;
    color: #1A1A1A;
}

/* === NAVIGATION === */
.main-navigation {
    background: #0d0d0d;
    border-top: 1px solid rgba(198, 40, 40, 0.3);
    border-bottom: 1px solid rgba(198, 40, 40, 0.3);
}

.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: #E8E8E8;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    font-family: 'Manrope', sans-serif;
}

.nav-link:hover {
    color: #FFD700;
    background: rgba(198, 40, 40, 0.15);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

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

/* === NOTIFICATION BAR === */
.notification-bar {
    background: linear-gradient(90deg, #C62828, #a01e1e, #C62828);
    overflow: hidden;
    padding: 8px 0;
}

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

/* === 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;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.announcement-content {
    position: relative;
    background: linear-gradient(135deg, #1A1A1A, #2a1a1a);
    border: 2px solid #C62828;
    border-radius: 16px;
    padding: 35px 30px;
    max-width: 500px;
    width: 90%;
    animation: studFlip 0.6s ease;
    box-shadow: 0 0 40px rgba(198, 40, 40, 0.3), 0 0 80px rgba(255, 215, 0, 0.1);
}

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

.announcement-close:hover {
    color: #FFD700;
}

.announcement-header-icon {
    text-align: center;
    font-size: 42px;
    color: #C62828;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(198, 40, 40, 0.5);
}

.announcement-title {
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.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(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(198, 40, 40, 0.2);
    transition: all 0.3s ease;
    color: #E8E8E8;
}

.announcement-item:hover {
    background: rgba(198, 40, 40, 0.15);
    border-color: #C62828;
    color: #FFD700;
    text-shadow: none;
}

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

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

.announcement-badge.new {
    background: #FFD700;
    color: #1A1A1A;
}

.announcement-badge.info {
    background: #BDBDBD;
    color: #1A1A1A;
}

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

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

.announcement-cta {
    display: inline-block;
    background: linear-gradient(135deg, #C62828, #e53935);
    color: #fff;
    padding: 12px 40px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.announcement-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(198, 40, 40, 0.5);
    color: #fff;
    text-shadow: none;
}

/* === HERO SECTION === */
.studwin-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a0a0a 30%, #1A1A1A 70%, #0d0d0d 100%);
    overflow: hidden;
    border-radius: 12px;
    margin-top: 20px;
    border: 1px solid rgba(198, 40, 40, 0.3);
}

.card-rain-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.falling-card {
    position: absolute;
    width: 40px;
    height: 60px;
    background: linear-gradient(135deg, #C62828, #a01e1e);
    border-radius: 4px;
    border: 1px solid rgba(255, 215, 0, 0.4);
    animation: cardFall 3s ease-in-out infinite;
}

.falling-card.card-1 { left: 10%; animation-delay: 0s; animation-duration: 3.5s; }
.falling-card.card-2 { left: 30%; animation-delay: 0.5s; animation-duration: 4s; }
.falling-card.card-3 { left: 50%; animation-delay: 1s; animation-duration: 3s; }
.falling-card.card-4 { left: 70%; animation-delay: 1.5s; animation-duration: 3.8s; }
.falling-card.card-5 { left: 90%; animation-delay: 2s; animation-duration: 4.2s; }

.poker-table-glow {
    position: absolute;
    width: 80%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(198, 40, 40, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

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

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

.hero-brand {
    display: block;
    font-size: 64px;
    font-weight: 700;
    letter-spacing: 8px;
    background: linear-gradient(135deg, #FFD700, #FFA000, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    animation: anteGlow 3s ease infinite;
    padding: 10px;
}

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

.hero-tagline {
    display: block;
    font-size: 22px;
    letter-spacing: 4px;
    color: #BDBDBD;
    font-weight: 500;
}

.hero-description {
    font-size: 15px;
    color: #BDBDBD;
    line-height: 1.8;
    margin-bottom: 25px;
}

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

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

.hero-stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #FFD700;
    font-family: 'Spectral', serif;
}

.hero-stat-label {
    display: block;
    font-size: 12px;
    color: #BDBDBD;
    margin-top: 4px;
}

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

.btn-gold-primary {
    display: inline-block;
    background: linear-gradient(135deg, #C62828, #e53935);
    color: #fff;
    padding: 14px 36px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Manrope', sans-serif;
}

.btn-gold-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(198, 40, 40, 0.5);
    color: #fff;
    text-shadow: none;
}

.btn-outline-gold {
    display: inline-block;
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    padding: 12px 34px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-family: 'Manrope', sans-serif;
}

.btn-outline-gold:hover {
    background: #FFD700;
    color: #1A1A1A;
    text-shadow: none;
}

/* === SECTION TITLES === */
.section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

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

/* === FEATURED GAMES SECTION === */
.stud-featured-games {
    padding: 50px 0;
    position: relative;
}

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

.stud-game-card {
    position: relative;
    background: linear-gradient(135deg, #1e1e1e, #2a1a1a);
    border: 1px solid rgba(198, 40, 40, 0.3);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
    display: block;
    color: #E8E8E8;
}

.stud-game-card:hover {
    transform: translateY(-8px);
    border-color: #C62828;
    box-shadow: 0 10px 40px rgba(198, 40, 40, 0.3), 0 0 20px rgba(255, 215, 0, 0.1);
    color: #E8E8E8;
    text-shadow: none;
}

.stud-game-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(198, 40, 40, 0.1) 0%, transparent 50%);
    pointer-events: none;
    transition: all 0.5s ease;
}

.stud-game-card:hover .stud-game-card-glow {
    background: radial-gradient(circle, rgba(198, 40, 40, 0.2) 0%, transparent 50%);
}

.stud-game-card-icon {
    font-size: 42px;
    color: #C62828;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(198, 40, 40, 0.5);
}

.stud-game-card-rating {
    margin-bottom: 12px;
    color: #FFD700;
    font-size: 13px;
}

.stud-game-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #FFD700;
}

.stud-game-card p {
    font-size: 13px;
    color: #BDBDBD;
    line-height: 1.6;
    margin-bottom: 15px;
}

.stud-game-card-players {
    font-size: 12px;
    color: #BDBDBD;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* === CARD GRID SECTION === */
.stud-card-grid-section {
    padding: 50px 0;
    position: relative;
}

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

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

.stud-card-node {
    position: relative;
    background: linear-gradient(135deg, #1e1e1e, #2a1a1a);
    border: 1px solid rgba(198, 40, 40, 0.3);
    border-radius: 10px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.4s ease;
    display: block;
    color: #E8E8E8;
    overflow: hidden;
}

.stud-card-node:hover {
    border-color: #C62828;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(198, 40, 40, 0.3);
    animation: cardReveal 0.5s ease;
    color: #E8E8E8;
    text-shadow: none;
}

.stud-card-face {
    font-size: 32px;
    color: #C62828;
    margin-bottom: 10px;
    text-shadow: 0 0 12px rgba(198, 40, 40, 0.5);
}

.stud-card-label {
    font-size: 13px;
    font-weight: 600;
    color: #BDBDBD;
    font-family: 'Manrope', sans-serif;
}

.stud-card-node:hover .stud-card-label {
    color: #FFD700;
}

/* === FEATURES SECTION === */
.stud-features {
    padding: 50px 0;
    position: relative;
}

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

.stud-feature-card {
    background: linear-gradient(135deg, #1e1e1e, #2a1a1a);
    border: 1px solid rgba(198, 40, 40, 0.2);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

.stud-feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C62828, #a01e1e);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: #fff;
    box-shadow: 0 4px 15px rgba(198, 40, 40, 0.3);
}

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

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

/* === STATS SECTION === */
.stud-stats {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

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

.stud-gradient-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(198, 40, 40, 0.1) 0%, transparent 60%);
}

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

.stud-stat-card {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8), rgba(42, 26, 26, 0.8));
    border: 1px solid rgba(198, 40, 40, 0.3);
    border-radius: 12px;
    padding: 35px 20px;
    text-align: center;
    animation: anteGlow 4s ease infinite;
    transition: all 0.3s ease;
}

.stud-stat-card:hover {
    transform: translateY(-5px);
}

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

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

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #FFD700;
    font-family: 'Spectral', serif;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 13px;
    color: #BDBDBD;
}

/* === PROMOTIONS SECTION === */
.stud-promos {
    padding: 50px 0;
    position: relative;
}

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

.stud-promo-card {
    position: relative;
    background: linear-gradient(135deg, #1e1e1e, #2a1a1a);
    border: 1px solid rgba(198, 40, 40, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
}

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

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

.stud-promo-inner {
    position: relative;
    z-index: 2;
    padding: 30px 20px;
    text-align: center;
}

.promo-icon {
    font-size: 36px;
    color: #C62828;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(198, 40, 40, 0.5);
}

.stud-promo-inner h3 {
    font-size: 17px;
    color: #FFD700;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

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

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

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

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

.promo-badge.new {
    background: #FFD700;
    color: #1A1A1A;
}

.promo-badge.vip {
    background: linear-gradient(135deg, #FFD700, #FFA000);
    color: #1A1A1A;
}

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

.btn-promo:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(198, 40, 40, 0.4);
    color: #fff;
    text-shadow: none;
}

/* === FOOTER CTA === */
.footer-cta-section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    margin-top: 20px;
}

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

.footer-cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.cta-playing-card {
    display: inline-block;
    width: 50px;
    height: 70px;
    background: linear-gradient(135deg, #C62828, #a01e1e);
    border-radius: 6px;
    border: 2px solid rgba(255, 215, 0, 0.5);
    animation: floatUp 3s ease infinite;
    box-shadow: 0 0 20px rgba(198, 40, 40, 0.4);
}

.footer-cta-inner h2 {
    font-size: 32px;
    color: #FFD700;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.footer-cta-inner > p {
    font-size: 15px;
    color: #BDBDBD;
    line-height: 1.8;
    margin-bottom: 25px;
}

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

.cta-feature {
    color: #E8E8E8;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-feature i {
    color: #FFD700;
}

.cta-main-btn {
    animation: anteGlow 3s ease infinite;
}

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

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

.article-card {
    background: linear-gradient(135deg, #1e1e1e, #2a1a1a);
    border: 1px solid rgba(198, 40, 40, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: block;
    color: #E8E8E8;
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: #C62828;
    box-shadow: 0 8px 25px rgba(198, 40, 40, 0.25);
    color: #E8E8E8;
    text-shadow: none;
}

.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-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: #FFD700;
    font-family: 'Spectral', serif;
}

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

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

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

.article-card-more:hover {
    color: #FFD700;
    text-shadow: none;
}

.view-more-btn {
    display: inline-block;
    text-align: center;
    padding: 12px 30px;
    border: 1px solid #C62828;
    border-radius: 6px;
    color: #FFD700;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    margin: 0 auto;
    display: block;
    width: fit-content;
}

.view-more-btn:hover {
    background: #C62828;
    color: #fff;
    text-shadow: none;
}

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

.breadcrumb a {
    color: #BDBDBD;
}

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

.breadcrumb span {
    color: #BDBDBD;
}

/* === CATEGORY HEADER === */
.category-header {
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #1e1e1e, #2a1a1a);
    border-radius: 10px;
    border: 1px solid rgba(198, 40, 40, 0.3);
}

.category-title {
    font-size: 24px;
    margin-bottom: 8px;
}

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

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

.provider-tab {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(198, 40, 40, 0.3);
    color: #BDBDBD;
    padding: 8px 18px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s ease;
    font-family: 'Manrope', sans-serif;
}

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

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

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

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

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

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(198, 40, 40, 0.3);
    color: #BDBDBD;
    font-size: 14px;
    transition: all 0.3s ease;
}

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

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

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

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

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

.article-meta a {
    color: #C62828;
}

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

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

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

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

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

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

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

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

.article-content blockquote {
    border-left: 3px solid #C62828;
    padding: 15px 20px;
    margin: 20px 0;
    background: rgba(198, 40, 40, 0.1);
    border-radius: 0 8px 8px 0;
    color: #BDBDBD;
}

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

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

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

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

.article-tags span {
    background: rgba(198, 40, 40, 0.15);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: #BDBDBD;
}

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

.article-nav a {
    color: #BDBDBD;
    font-size: 14px;
}

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

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

.related-posts-title {
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

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

.related-item {
    background: linear-gradient(135deg, #1e1e1e, #2a1a1a);
    border: 1px solid rgba(198, 40, 40, 0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: block;
    color: #E8E8E8;
}

.related-item:hover {
    transform: translateY(-3px);
    border-color: #C62828;
    color: #E8E8E8;
    text-shadow: none;
}

.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;
    color: #FFD700;
    line-height: 1.4;
}

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

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

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

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

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

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

.error-card {
    display: inline-block;
    width: 80px;
    height: 120px;
    background: linear-gradient(135deg, #C62828, #a01e1e);
    border-radius: 8px;
    border: 2px solid rgba(255, 215, 0, 0.5);
    margin-bottom: 25px;
    animation: studFlip 2s ease infinite;
    box-shadow: 0 0 30px rgba(198, 40, 40, 0.4);
}

.error-code {
    font-size: 72px;
    color: #FFD700;
    margin-bottom: 10px;
}

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

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

/* === FLOATING SIDEBAR === */
.floating-sidebar {
    position: fixed;
    right: 10px;
    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: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C62828, #a01e1e);
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 10px rgba(198, 40, 40, 0.4);
}

.sidebar-btn:hover {
    transform: scale(1.15);
    color: #fff;
    text-shadow: none;
    box-shadow: 0 4px 20px rgba(198, 40, 40, 0.6);
}

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

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

.sidebar-label {
    display: none;
}

/* === FOOTER === */
.site-footer {
    background: linear-gradient(180deg, #0d0d0d 0%, #000 100%);
    border-top: 2px 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: 35px;
}

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

.footer-brand-logo img {
    height: 42px;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.3));
}

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

.footer-18plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #C62828;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 15px;
}

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

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

.footer-social-links a:hover {
    background: #C62828;
    color: #fff;
    border-color: #C62828;
}

.footer-col h4 {
    color: #FFD700;
    font-size: 15px;
    margin-bottom: 18px;
    font-family: 'Spectral', serif;
    letter-spacing: 1px;
}

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

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

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

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

/* === FOOTER 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: 15px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.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: 24px;
    color: #C62828;
}

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

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

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

/* === HOME NEWS PLACEHOLDER === */
.home-news-placeholder {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.home-news-placeholder .article-card {
    display: block;
}

/* === UTILITY === */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }

/* === SWIPER CUSTOM === */
.swiper-button-next, .swiper-button-prev {
    color: #FFD700;
}

.swiper-pagination-bullet-active {
    background: #C62828;
}

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

::-webkit-scrollbar-track {
    background: #1A1A1A;
}

::-webkit-scrollbar-thumb {
    background: #C62828;
    border-radius: 4px;
}

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