/* ============================================
   BASIC88 THEME - main.css (moban-138)
   Basic High Contrast Theme
   Colors: #212121 (Black), #FFFFFF (White), #D32F2F (Red)
   Fonts: Poppins + Lato
   ============================================ */

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

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

body {
    font-family: 'Lato', sans-serif;
    background: #212121;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

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

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

a:hover {
    color: #FFFFFF;
    text-shadow: 0 0 10px rgba(211, 47, 47, 0.5);
}

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

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

.red-text {
    color: #D32F2F;
    background: linear-gradient(90deg, #D32F2F, #FF5252, #D32F2F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.white-text {
    color: #FFFFFF;
}

.bold-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

/* === KEYFRAME ANIMATIONS === */

/* 1. basicFade - Smooth opacity fade for elements */
@keyframes basicFade {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    50% {
        opacity: 0.5;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 2. contrastSlide - Sliding entrance with contrast effect */
@keyframes contrastSlide {
    0% {
        opacity: 0;
        transform: translateX(-50px);
        filter: contrast(0.5);
    }
    40% {
        opacity: 0.6;
        transform: translateX(-20px);
        filter: contrast(0.8);
    }
    70% {
        opacity: 0.9;
        transform: translateX(-5px);
        filter: contrast(1.1);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
        filter: contrast(1);
    }
}

/* 3. sharpPop - Sharp pop-in effect with scale bounce */
@keyframes sharpPop {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    40% {
        opacity: 0.7;
        transform: scale(1.15);
    }
    60% {
        opacity: 0.9;
        transform: scale(0.95);
    }
    80% {
        opacity: 1;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* 4. boldEntry - Bold dramatic entrance from below */
@keyframes boldEntry {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.9);
        filter: blur(4px);
    }
    30% {
        opacity: 0.4;
        transform: translateY(30px) scale(0.95);
        filter: blur(2px);
    }
    60% {
        opacity: 0.8;
        transform: translateY(10px) scale(1.02);
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

/* Additional utility animations */
@keyframes pulseRed {
    0%, 100% { box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(211, 47, 47, 0); }
}

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

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

/* === HEADER === */
.site-header {
    background: #212121;
    border-bottom: 3px solid #D32F2F;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.header-time {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.btn-login {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 13px;
    padding: 10px 20px;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
    background: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-login:hover {
    background: #FFFFFF;
    color: #212121;
    text-shadow: none;
}

.btn-register {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 13px;
    padding: 10px 20px;
    border: 2px solid #D32F2F;
    color: #FFFFFF;
    background: #D32F2F;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    animation: pulseRed 2s infinite;
}

.btn-register:hover {
    background: #B71C1C;
    border-color: #B71C1C;
    color: #FFFFFF;
    text-shadow: none;
    transform: translateY(-2px);
}

.btn-demo {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 13px;
    padding: 10px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
    background: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-demo:hover {
    border-color: #D32F2F;
    color: #D32F2F;
    text-shadow: none;
}

/* === NAVIGATION === */
.main-navigation {
    background: rgba(0, 0, 0, 0.3);
    padding: 0;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 14px 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.nav-link:hover {
    color: #D32F2F;
    background: rgba(211, 47, 47, 0.1);
    border-bottom-color: #D32F2F;
    text-shadow: none;
}

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

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: 2px solid #D32F2F;
    color: #FFFFFF;
    font-size: 20px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: #D32F2F;
}

/* === NOTIFICATION BAR === */
.notification-bar {
    background: #D32F2F;
    overflow: hidden;
    height: 36px;
    display: flex;
    align-items: center;
}

.notification-content {
    display: flex;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
    gap: 80px;
}

.notification-content span {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

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

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

.announcement-content {
    position: relative;
    background: #212121;
    border: 2px solid #D32F2F;
    max-width: 500px;
    width: 90%;
    padding: 30px;
    z-index: 10000;
    animation: sharpPop 0.5s ease forwards;
}

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

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

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

.announcement-header-icon i {
    font-size: 48px;
    color: #D32F2F;
}

.announcement-title {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    font-size: 20px;
    color: #FFFFFF;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

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

.announcement-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #D32F2F;
    transition: all 0.3s ease;
}

.announcement-item:hover {
    background: rgba(211, 47, 47, 0.1);
    transform: translateX(5px);
}

.announcement-badge {
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.announcement-badge.hot {
    background: #D32F2F;
    color: #FFFFFF;
}

.announcement-badge.new {
    background: #FFFFFF;
    color: #212121;
}

.announcement-badge.info {
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
}

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

.announcement-item i.fa-chevron-right {
    color: #D32F2F;
    flex-shrink: 0;
}

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

.announcement-cta {
    display: inline-block;
    padding: 12px 40px;
    background: #D32F2F;
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.announcement-cta:hover {
    background: #FFFFFF;
    color: #212121;
    text-shadow: none;
}

/* === HERO SECTION === */
.basic88-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #212121 0%, #000000 50%, #212121 100%);
    overflow: hidden;
    padding: 60px 0;
}

.hero-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.hero-red-accent {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(211, 47, 47, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-red-accent-2 {
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(211, 47, 47, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner-content {
    position: relative;
    z-index: 5;
    max-width: 700px;
    animation: boldEntry 1s ease forwards;
}

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

.hero-brand {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 72px;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 10px;
    line-height: 1;
}

.hero-divider-line {
    display: block;
    width: 80px;
    height: 4px;
    background: #D32F2F;
    margin: 20px 0;
}

.hero-tagline {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #D32F2F;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.hero-description {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 550px;
}

.hero-stats-row {
    display: flex;
    gap: 40px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

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

.hero-stat-number {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #D32F2F;
    line-height: 1;
}

.hero-stat-label {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    display: block;
}

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

.btn-red-primary {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 14px 35px;
    background: #D32F2F;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid #D32F2F;
    transition: all 0.3s ease;
    animation: pulseRed 2s infinite;
}

.btn-red-primary:hover {
    background: #B71C1C;
    border-color: #B71C1C;
    color: #FFFFFF;
    text-shadow: none;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(211, 47, 47, 0.3);
}

.btn-outline-white {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 14px 35px;
    background: transparent;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid #FFFFFF;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: #FFFFFF;
    color: #212121;
    text-shadow: none;
    transform: translateY(-3px);
}

/* === SECTION COMMON === */
.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #D32F2F;
}

.section-title i {
    color: #D32F2F;
    margin-right: 10px;
}

.section-subtitle {
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
    margin-top: 15px;
}

/* === GAME STAR CARDS === */
.basic88-star-games {
    padding: 60px 0;
    background: #212121;
}

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

.basic88-star-game-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 25px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
    display: block;
    color: #FFFFFF;
}

.basic88-star-game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #D32F2F;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.basic88-star-game-card:hover::before {
    transform: scaleX(1);
}

.basic88-star-game-card:hover {
    background: rgba(211, 47, 47, 0.05);
    border-color: #D32F2F;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    color: #FFFFFF;
    text-shadow: none;
}

.basic88-star-game-icon {
    font-size: 48px;
    color: #D32F2F;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.basic88-star-game-card:hover .basic88-star-game-icon {
    transform: scale(1.2);
    animation: sharpPop 0.5s ease;
}

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

.basic88-star-game-rating i {
    color: #D32F2F;
    font-size: 12px;
}

.basic88-star-game-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.basic88-star-game-card p {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 15px;
}

.basic88-star-game-players {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.basic88-star-game-players i {
    color: #D32F2F;
    margin-right: 5px;
}

/* === GRID SECTION === */
.basic88-grid-section {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.3);
}

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

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

.basic88-grid-node {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    color: #FFFFFF;
}

.basic88-grid-node:hover {
    background: rgba(211, 47, 47, 0.1);
    border-color: #D32F2F;
    transform: translateX(5px);
    color: #FFFFFF;
    text-shadow: none;
}

.basic88-node-icon {
    font-size: 24px;
    color: #D32F2F;
    flex-shrink: 0;
}

.basic88-node-label {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* === FEATURES SECTION === */
.basic88-features {
    padding: 60px 0;
    background: #212121;
}

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

.basic88-feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.basic88-feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #D32F2F;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.basic88-feature-card:hover::after {
    transform: scaleX(1);
}

.basic88-feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(211, 47, 47, 0.3);
    transform: translateY(-5px);
}

.basic88-feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: rgba(211, 47, 47, 0.1);
    border: 2px solid rgba(211, 47, 47, 0.3);
    font-size: 28px;
    color: #D32F2F;
    transition: all 0.3s ease;
}

.basic88-feature-card:hover .basic88-feature-icon {
    background: #D32F2F;
    color: #FFFFFF;
    border-color: #D32F2F;
    animation: sharpPop 0.5s ease;
}

.basic88-feature-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.basic88-feature-card p {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

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

.basic88-stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #212121 100%);
    z-index: 0;
}

.basic88-stats .container {
    position: relative;
    z-index: 2;
}

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

.basic88-stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 35px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

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

.stat-icon-decoration {
    font-size: 24px;
    color: #D32F2F;
    margin-bottom: 15px;
}

.basic88-stat-card .stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.basic88-stat-card .stat-label {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-icon-decoration.bottom {
    margin-top: 15px;
    margin-bottom: 0;
    opacity: 0.3;
}

/* === PROMOTIONS SECTION === */
.basic88-promos {
    padding: 60px 0;
    background: #212121;
}

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

.basic88-promo-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
}

.basic88-promo-card:hover {
    border-color: #D32F2F;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.basic88-promo-inner {
    padding: 30px 25px;
    position: relative;
    z-index: 2;
}

.basic88-promo-card .promo-icon {
    font-size: 36px;
    color: #D32F2F;
    margin-bottom: 15px;
}

.basic88-promo-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.basic88-promo-card p {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 15px;
}

.promo-timer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.promo-badge {
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-badge.hot {
    background: #D32F2F;
    color: #FFFFFF;
}

.promo-badge.new {
    background: #FFFFFF;
    color: #212121;
}

.promo-badge.vip {
    background: rgba(211, 47, 47, 0.2);
    color: #D32F2F;
    border: 1px solid #D32F2F;
}

.btn-promo {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 12px;
    padding: 10px 25px;
    background: #D32F2F;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #D32F2F;
    transition: all 0.3s ease;
}

.btn-promo:hover {
    background: transparent;
    color: #D32F2F;
    text-shadow: none;
}

/* === FOOTER CTA SECTION === */
.footer-cta-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #212121 50%, #000000 100%);
    text-align: center;
    overflow: hidden;
}

.footer-cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(211, 47, 47, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(211, 47, 47, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

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

.cta-decoration {
    margin-bottom: 25px;
}

.cta-diamond-shape {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #D32F2F;
    transform: rotate(45deg);
    margin: 0 10px;
}

.footer-cta-inner h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 20px;
}

.footer-cta-inner p {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 30px;
}

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

.cta-feature {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.cta-main-btn {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 50px;
    background: #D32F2F;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: 2px solid #D32F2F;
    transition: all 0.3s ease;
    animation: pulseRed 2s infinite;
}

.cta-main-btn:hover {
    background: #FFFFFF;
    color: #212121;
    border-color: #FFFFFF;
    text-shadow: none;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(211, 47, 47, 0.3);
}

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

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

.article-card {
    display: block;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: all 0.4s ease;
    color: #FFFFFF;
}

.article-card:hover {
    border-color: #D32F2F;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    color: #FFFFFF;
    text-shadow: none;
}

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

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

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

.article-card-title {
    padding: 15px 20px 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.4;
}

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

.article-card-meta {
    padding: 0 20px;
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    gap: 15px;
    margin-bottom: 8px;
}

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

.article-card-excerpt {
    padding: 0 20px 15px;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-more {
    display: block;
    padding: 12px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #D32F2F;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.article-card-more:hover {
    background: rgba(211, 47, 47, 0.1);
    color: #FFFFFF;
    text-shadow: none;
}

.article-card-more i {
    margin-left: 5px;
}

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

.view-more-btn {
    display: inline-block;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 13px;
    padding: 12px 35px;
    border: 2px solid #D32F2F;
    color: #D32F2F;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.view-more-btn:hover {
    background: #D32F2F;
    color: #FFFFFF;
    text-shadow: none;
    transform: translateY(-2px);
}

.view-more-btn i {
    margin-left: 8px;
}

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

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

/* === BREADCRUMB === */
.breadcrumb {
    padding: 15px 0;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: #D32F2F;
}

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

.breadcrumb span {
    color: rgba(255, 255, 255, 0.3);
}

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

/* === SINGLE ARTICLE === */
.single-article {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px;
    margin-bottom: 30px;
}

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

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

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

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

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

.article-featured-img {
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

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

.article-content {
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

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

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

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

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

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

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

.article-content blockquote {
    border-left: 3px solid #D32F2F;
    padding: 15px 20px;
    margin: 20px 0;
    background: rgba(211, 47, 47, 0.05);
    font-style: italic;
}

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

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

.article-tags span {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    padding: 4px 12px;
    background: rgba(211, 47, 47, 0.1);
    color: #D32F2F;
    border: 1px solid rgba(211, 47, 47, 0.3);
}

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

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

.article-nav a {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #D32F2F;
}

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

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

.related-posts-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #D32F2F;
}

.related-posts-title i {
    color: #D32F2F;
    margin-right: 8px;
}

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

.related-item {
    display: block;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    color: #FFFFFF;
}

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

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

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

.related-item-title {
    padding: 10px 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.category-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.category-title i {
    color: #D32F2F;
    margin-right: 8px;
}

.category-desc {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 10px;
}

.provider-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.provider-tab {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 500;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.provider-tab:hover {
    border-color: #D32F2F;
    color: #D32F2F;
}

.provider-tab.active {
    background: #D32F2F;
    border-color: #D32F2F;
    color: #FFFFFF;
}

/* === PAGE === */
.page-article {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px;
}

.page-title {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #D32F2F;
}

.page-featured-img {
    margin-bottom: 25px;
    overflow: hidden;
}

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

.page-content {
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

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

.page-content h2,
.page-content h3 {
    color: #FFFFFF;
    margin: 25px 0 15px;
}

.page-content a {
    color: #D32F2F;
    text-decoration: underline;
}

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

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

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    transition: all 0.3s ease;
}

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

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

.sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #D32F2F;
    color: #FFFFFF;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    border: none;
}

.sidebar-btn:hover {
    background: #FFFFFF;
    color: #212121;
    transform: scale(1.1);
    text-shadow: none;
}

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

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

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

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

.sidebar-label {
    display: none;
}

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

.error-icon-decoration {
    font-size: 60px;
    color: #D32F2F;
    margin-bottom: 20px;
    animation: sharpPop 1s ease infinite;
}

.error-code {
    font-family: 'Poppins', sans-serif;
    font-size: 120px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 4px 4px 0 #D32F2F;
}

.error-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.error-desc {
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    max-width: 500px;
    margin: 0 auto 30px;
}

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

.no-posts i {
    margin-bottom: 15px;
}

.no-posts p {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
}

/* === FOOTER === */
.site-footer {
    background: #000000;
    padding: 50px 0 30px;
    border-top: 3px solid #D32F2F;
}

.footer-columns-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #D32F2F;
}

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

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

.footer-col ul li a {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-col ul li a::before {
    content: '\203A';
    color: #D32F2F;
    font-weight: 700;
}

.footer-col ul li a:hover {
    color: #D32F2F;
    transform: translateX(5px);
    text-shadow: none;
}

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

.footer-brand-logo img {
    height: 45px;
    width: auto;
}

.footer-brand-text {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-18plus {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 18px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 2px solid #D32F2F;
    color: #D32F2F;
    margin-bottom: 15px;
}

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

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

.footer-social-links a:hover {
    background: #D32F2F;
    border-color: #D32F2F;
    color: #FFFFFF;
    text-shadow: none;
}

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

.footer-license-bar h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

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

.license-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.license-item i {
    color: #D32F2F;
    font-size: 18px;
}

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

.footer-copyright {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-disclaimer {
    text-align: center;
    padding: 20px 15px;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.8;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

.footer-disclaimer p {
    margin: 0 0 8px 0;
}

/* === DYNAMIC PARTICLES === */
.dynamic-contrast-particle {
    position: absolute;
    border-radius: 0;
    pointer-events: none;
    z-index: 5;
}

.basic88-particle {
    position: absolute;
    pointer-events: none;
    z-index: 10;
}

/* === JS SWEEP EFFECT === */
.js-contrast-sweep {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

/* === UTILITY CLASSES === */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.p-20 { padding: 20px; }
.p-30 { padding: 30px; }

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

::-webkit-scrollbar-track {
    background: #212121;
}

::-webkit-scrollbar-thumb {
    background: #D32F2F;
    border: 1px solid #212121;
}

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

/* === SELECTION COLOR === */
::selection {
    background: #D32F2F;
    color: #FFFFFF;
}

::-moz-selection {
    background: #D32F2F;
    color: #FFFFFF;
}
