/* ============================================
   DARKCRIMSON THEME - main.css (moban-142)
   Dark Crimson Blood Texture Theme
   Colors: #4A0000 (DarkRed), #0D0D0D (Black), #FFD700 (Gold)
   Fonts: Spectral (headings), Fira Sans (body)
   ============================================ */

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

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

body {
    font-family: 'Fira Sans', sans-serif;
    background: #0D0D0D;
    color: #E0D8D8;
    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(74, 0, 0, 0.7);
}

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

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

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

.blood-text {
    background: linear-gradient(90deg, #4A0000, #8B0000, #4A0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* 1. crimsonDrip - Blood dripping effect */
@keyframes crimsonDrip {
    0% {
        transform: translateY(-100%) scaleY(0);
        opacity: 0;
    }
    15% {
        transform: translateY(-50%) scaleY(0.5);
        opacity: 0.6;
    }
    40% {
        transform: translateY(0%) scaleY(1);
        opacity: 1;
    }
    60% {
        transform: translateY(10%) scaleY(1.1);
        opacity: 0.9;
    }
    80% {
        transform: translateY(30%) scaleY(0.8);
        opacity: 0.5;
    }
    100% {
        transform: translateY(100%) scaleY(0);
        opacity: 0;
    }
}

/* 2. bloodPulse - Pulsating blood glow */
@keyframes bloodPulse {
    0%, 100% {
        box-shadow: 0 0 5px rgba(74, 0, 0, 0.3),
                    0 0 10px rgba(74, 0, 0, 0.2),
                    inset 0 0 5px rgba(139, 0, 0, 0.1);
        transform: scale(1);
    }
    25% {
        box-shadow: 0 0 15px rgba(74, 0, 0, 0.5),
                    0 0 30px rgba(139, 0, 0, 0.3),
                    inset 0 0 15px rgba(139, 0, 0, 0.2);
        transform: scale(1.02);
    }
    50% {
        box-shadow: 0 0 25px rgba(74, 0, 0, 0.7),
                    0 0 50px rgba(139, 0, 0, 0.4),
                    inset 0 0 25px rgba(139, 0, 0, 0.3);
        transform: scale(1.05);
    }
    75% {
        box-shadow: 0 0 15px rgba(74, 0, 0, 0.5),
                    0 0 30px rgba(139, 0, 0, 0.3),
                    inset 0 0 15px rgba(139, 0, 0, 0.2);
        transform: scale(1.02);
    }
}

/* 3. darkVein - Dark vein crawling animation */
@keyframes darkVein {
    0% {
        background-position: 0% 0%;
        opacity: 0.3;
    }
    25% {
        background-position: 25% 50%;
        opacity: 0.5;
    }
    50% {
        background-position: 50% 100%;
        opacity: 0.7;
    }
    75% {
        background-position: 75% 50%;
        opacity: 0.5;
    }
    100% {
        background-position: 100% 0%;
        opacity: 0.3;
    }
}

/* 4. redGlow - Red glowing effect */
@keyframes redGlow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(74, 0, 0, 0.5),
                     0 0 10px rgba(139, 0, 0, 0.3),
                     0 0 15px rgba(255, 0, 0, 0.2);
        filter: brightness(1);
    }
    33% {
        text-shadow: 0 0 10px rgba(74, 0, 0, 0.7),
                     0 0 20px rgba(139, 0, 0, 0.5),
                     0 0 30px rgba(255, 0, 0, 0.3);
        filter: brightness(1.2);
    }
    66% {
        text-shadow: 0 0 15px rgba(74, 0, 0, 0.9),
                     0 0 30px rgba(139, 0, 0, 0.7),
                     0 0 45px rgba(255, 0, 0, 0.4);
        filter: brightness(1.4);
    }
}

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

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

/* === HEADER === */
.site-header {
    background: linear-gradient(180deg, #0D0D0D 0%, #1a0000 50%, #0D0D0D 100%);
    border-bottom: 2px solid #4A0000;
    position: relative;
    z-index: 100;
}

.site-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4A0000, #8B0000, #4A0000, transparent);
    animation: darkVein 8s ease-in-out infinite;
}

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

.logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(74, 0, 0, 0.5));
}

.header-time {
    color: #FFD700;
    font-family: 'Fira Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    background: rgba(74, 0, 0, 0.2);
    padding: 8px 15px;
    border-radius: 5px;
    border: 1px solid rgba(74, 0, 0, 0.4);
}

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

.btn-login,
.btn-register,
.btn-demo {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-login {
    background: transparent;
    border: 2px solid #4A0000;
    color: #FFD700;
}

.btn-login:hover {
    background: #4A0000;
    color: #fff;
    box-shadow: 0 0 20px rgba(74, 0, 0, 0.5);
}

.btn-register {
    background: linear-gradient(135deg, #4A0000, #8B0000);
    color: #FFD700;
    border: 2px solid transparent;
}

.btn-register:hover {
    background: linear-gradient(135deg, #8B0000, #DC143C);
    box-shadow: 0 0 25px rgba(139, 0, 0, 0.6);
    transform: translateY(-2px);
}

.btn-demo {
    background: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
}

.btn-demo:hover {
    background: #FFD700;
    color: #0D0D0D;
}

/* === NAVIGATION === */
.main-navigation {
    background: linear-gradient(90deg, #0D0D0D, #1a0000, #0D0D0D);
    border-top: 1px solid rgba(74, 0, 0, 0.3);
    border-bottom: 1px solid rgba(74, 0, 0, 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 18px;
    color: #E0D8D8;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-link:hover {
    color: #FFD700;
    background: rgba(74, 0, 0, 0.2);
}

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

.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, #4A0000, #8B0000, #4A0000);
    padding: 8px 0;
    overflow: hidden;
}

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

.notification-content span {
    color: #FFD700;
    font-size: 13px;
    font-weight: 500;
}

/* === 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;
    animation: fadeInUp 0.4s ease;
}

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

.announcement-content {
    position: relative;
    background: linear-gradient(145deg, #1a0000, #0D0D0D);
    border: 2px solid #4A0000;
    border-radius: 15px;
    padding: 40px 30px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 0 50px rgba(74, 0, 0, 0.5),
                0 0 100px rgba(139, 0, 0, 0.3);
    animation: bloodPulse 3s ease-in-out infinite;
}

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

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

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

.announcement-header-icon i {
    font-size: 48px;
    color: #4A0000;
    animation: redGlow 2s ease-in-out infinite;
}

.announcement-title {
    text-align: center;
    font-size: 22px;
    margin-bottom: 20px;
    animation: redGlow 3s 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(74, 0, 0, 0.15);
    border: 1px solid rgba(74, 0, 0, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.announcement-item:hover {
    background: rgba(74, 0, 0, 0.3);
    border-color: #4A0000;
    transform: translateX(5px);
}

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

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

.announcement-badge.new {
    background: #4A0000;
    color: #FFD700;
}

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

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

.announcement-item i {
    color: #4A0000;
    font-size: 12px;
}

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

.btn-crimson {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #4A0000, #8B0000);
    color: #FFD700;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-crimson:hover {
    background: linear-gradient(135deg, #8B0000, #DC143C);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(74, 0, 0, 0.5);
    color: #FFD700;
}

/* === HERO SECTION === */
.darkcrimson-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: radial-gradient(ellipse at center, #1a0000 0%, #0D0D0D 70%);
    border-radius: 15px;
    margin: 30px 0;
    overflow: hidden;
    border: 1px solid rgba(74, 0, 0, 0.3);
}

.darkcrimson-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(74, 0, 0, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 0, 0, 0.2) 0%, transparent 50%);
    animation: darkVein 12s ease-in-out infinite;
}

/* Blood Veins */
.blood-veins {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.blood-vein {
    position: absolute;
    width: 2px;
    background: linear-gradient(180deg, transparent, #4A0000, #8B0000, transparent);
    animation: crimsonDrip 4s ease-in-out infinite;
}

.blood-vein.vein-1 { left: 10%; height: 100%; animation-delay: 0s; }
.blood-vein.vein-2 { left: 30%; height: 80%; animation-delay: 0.8s; }
.blood-vein.vein-3 { left: 50%; height: 90%; animation-delay: 1.6s; }
.blood-vein.vein-4 { left: 70%; height: 85%; animation-delay: 2.4s; }
.blood-vein.vein-5 { left: 90%; height: 95%; animation-delay: 3.2s; }

/* Crimson Orb */
.crimson-orb {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    animation: float 6s ease-in-out infinite;
}

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

.orb-layer-1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(74, 0, 0, 0.6), transparent);
    animation: bloodPulse 4s ease-in-out infinite;
}

.orb-layer-2 {
    width: 150px;
    height: 150px;
    top: 25px;
    left: 25px;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.5), transparent);
    animation: bloodPulse 4s ease-in-out infinite 0.5s;
}

.orb-layer-3 {
    width: 100px;
    height: 100px;
    top: 50px;
    left: 50px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.4), transparent);
    animation: bloodPulse 4s ease-in-out infinite 1s;
}

.orb-inner-glow {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 70px;
    left: 70px;
    border-radius: 50%;
    background: radial-gradient(circle, #FFD700, transparent);
    animation: bloodPulse 3s ease-in-out infinite 1.5s;
    opacity: 0.5;
}

.blood-drip-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, transparent, #4A0000, #8B0000, #4A0000, transparent);
    animation: darkVein 6s ease-in-out infinite;
}

.hero-inner-content {
    position: relative;
    z-index: 2;
    padding: 60px;
    max-width: 650px;
}

.hero-main-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.hero-brand {
    font-family: 'Spectral', serif;
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 8px;
    color: #FFD700;
    text-shadow: 0 0 20px rgba(74, 0, 0, 0.8),
                 0 0 40px rgba(139, 0, 0, 0.5);
    animation: redGlow 4s ease-in-out infinite;
}

.hero-divider-line {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #4A0000, #FFD700, #4A0000);
    margin: 5px 0;
}

.hero-tagline {
    font-family: 'Spectral', serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 4px;
    color: #E0D8D8;
}

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

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

.hero-stat {
    display: flex;
    flex-direction: column;
}

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

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

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

.btn-crimson-primary {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, #4A0000, #8B0000, #DC143C);
    color: #FFD700;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-crimson-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-crimson-primary:hover::before {
    left: 100%;
}

.btn-crimson-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(74, 0, 0, 0.6);
    color: #FFD700;
}

.btn-outline-crimson {
    display: inline-block;
    padding: 14px 35px;
    background: transparent;
    color: #FFD700;
    border: 2px solid #4A0000;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-outline-crimson:hover {
    background: rgba(74, 0, 0, 0.3);
    border-color: #8B0000;
    transform: translateY(-3px);
    color: #FFD700;
}

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

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

/* === CRIMSON STAR GAMES === */
.crimson-star-games {
    padding: 60px 0;
}

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

.crimson-star-game-card {
    position: relative;
    background: linear-gradient(145deg, #1a0000, #0D0D0D);
    border: 1px solid rgba(74, 0, 0, 0.4);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
}

.crimson-star-game-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(74, 0, 0, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.crimson-star-game-card:hover::before {
    opacity: 1;
}

.crimson-star-game-card:hover {
    transform: translateY(-10px);
    border-color: #4A0000;
    box-shadow: 0 20px 50px rgba(74, 0, 0, 0.4);
}

.crimson-star-game-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #4A0000, #8B0000, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.crimson-star-game-icon {
    font-size: 48px;
    color: #4A0000;
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.crimson-star-game-card:hover .crimson-star-game-icon {
    color: #8B0000;
    transform: scale(1.1);
    animation: bloodPulse 2s ease-in-out infinite;
}

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

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

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

.crimson-star-game-players {
    font-size: 12px;
    color: #999;
}

.crimson-star-game-players i {
    color: #4A0000;
}

/* === CRIMSON GRID === */
.crimson-grid-section {
    padding: 60px 0;
    background: linear-gradient(180deg, transparent, rgba(74, 0, 0, 0.05), transparent);
}

.crimson-grid-map {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.crimson-grid-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 25px 15px;
    background: rgba(74, 0, 0, 0.1);
    border: 1px solid rgba(74, 0, 0, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.crimson-grid-node:hover {
    background: rgba(74, 0, 0, 0.25);
    border-color: #4A0000;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 0, 0, 0.3);
}

.crimson-node-icon {
    font-size: 32px;
    color: #4A0000;
    transition: all 0.3s ease;
}

.crimson-grid-node:hover .crimson-node-icon {
    color: #8B0000;
    transform: scale(1.2);
}

.crimson-node-label {
    font-size: 13px;
    font-weight: 600;
    color: #E0D8D8;
    text-align: center;
}

/* === DARK FEATURES === */
.dark-features {
    padding: 60px 0;
}

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

.dark-feature-card {
    background: linear-gradient(145deg, #1a0000, #0D0D0D);
    border: 1px solid rgba(74, 0, 0, 0.3);
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.dark-feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4A0000, #FFD700, #4A0000);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.dark-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(74, 0, 0, 0.3);
    border-color: #4A0000;
}

.dark-feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #4A0000, #8B0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #FFD700;
    transition: all 0.4s ease;
}

.dark-feature-card:hover .dark-feature-icon {
    animation: bloodPulse 2s ease-in-out infinite;
}

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

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

/* === CRIMSON STATS === */
.crimson-stats {
    position: relative;
    padding: 60px 0;
    margin: 40px 0;
}

.crimson-stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a0000, #0D0D0D);
    border-radius: 15px;
    overflow: hidden;
}

.blood-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(74, 0, 0, 0.3), transparent 60%),
        radial-gradient(circle at 70% 50%, rgba(139, 0, 0, 0.2), transparent 60%);
    animation: darkVein 10s ease-in-out infinite;
}

.crimson-stats .section-title,
.crimson-stats .section-subtitle {
    position: relative;
    z-index: 2;
}

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

.crimson-stat-card {
    background: rgba(13, 13, 13, 0.8);
    border: 1px solid rgba(74, 0, 0, 0.4);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.crimson-stat-card:hover {
    border-color: #4A0000;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 0, 0, 0.3);
}

.stat-crimson-decoration {
    color: #4A0000;
    font-size: 20px;
    margin-bottom: 10px;
    opacity: 0.6;
}

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

.stat-number {
    font-family: 'Spectral', serif;
    font-size: 36px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 5px;
    animation: redGlow 4s ease-in-out infinite;
}

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

/* === CRIMSON PROMOS === */
.crimson-promos {
    padding: 60px 0;
}

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

.crimson-promo-card {
    position: relative;
    background: linear-gradient(145deg, #1a0000, #0D0D0D);
    border: 1px solid rgba(74, 0, 0, 0.4);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.crimson-promo-card:hover {
    transform: translateY(-8px);
    border-color: #4A0000;
    box-shadow: 0 20px 50px rgba(74, 0, 0, 0.4);
}

.promo-crimson-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4A0000, #FFD700, #4A0000);
}

.crimson-promo-inner {
    padding: 30px 25px;
    text-align: center;
}

.promo-icon {
    font-size: 36px;
    color: #4A0000;
    margin-bottom: 15px;
}

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

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

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

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

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

.promo-badge.new {
    background: #4A0000;
    color: #FFD700;
}

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

.btn-promo {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, #4A0000, #8B0000);
    color: #FFD700;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-promo:hover {
    background: linear-gradient(135deg, #8B0000, #DC143C);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 0, 0, 0.4);
    color: #FFD700;
}

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

.footer-cta-bloodfield {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a0000, #0D0D0D, #1a0000);
}

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

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

.cta-crimson-orb {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 0, 0, 0.6), transparent);
    animation: bloodPulse 3s ease-in-out infinite;
}

.footer-cta-inner h2 {
    font-family: 'Spectral', serif;
    font-size: 32px;
    color: #FFD700;
    margin-bottom: 15px;
    letter-spacing: 3px;
    animation: redGlow 4s ease-in-out infinite;
}

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

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

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

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

.cta-main-btn {
    margin-top: 10px;
}

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

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

/* === ARTICLE CARDS === */
.article-card {
    background: linear-gradient(145deg, #1a0000, #0D0D0D);
    border: 1px solid rgba(74, 0, 0, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: block;
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: #4A0000;
    box-shadow: 0 15px 40px rgba(74, 0, 0, 0.3);
}

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

.article-card-title {
    padding: 15px 15px 10px;
    font-family: 'Spectral', serif;
    font-size: 15px;
    font-weight: 600;
    color: #E0D8D8;
    line-height: 1.5;
    min-height: 55px;
}

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

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

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

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

.article-card-more {
    display: block;
    padding: 12px 15px;
    border-top: 1px solid rgba(74, 0, 0, 0.2);
    font-size: 13px;
    font-weight: 600;
    color: #FFD700;
    text-align: right;
    transition: all 0.3s ease;
}

.article-card-more:hover {
    background: rgba(74, 0, 0, 0.2);
    color: #fff;
}

.view-more-btn {
    display: block;
    text-align: center;
    padding: 12px 30px;
    border: 2px solid #4A0000;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    max-width: 200px;
    margin: 0 auto;
}

.crimson-view-more {
    color: #FFD700;
}

.view-more-btn:hover {
    background: #4A0000;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 0, 0, 0.4);
}

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

/* === CONTENT AREA === */
.content-area {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 20px 0;
}

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

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

.breadcrumb a {
    color: #FFD700;
    transition: color 0.3s ease;
}

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

.breadcrumb span {
    color: #666;
}

/* === CATEGORY HEADER === */
.category-header {
    text-align: center;
    padding: 30px 0;
    margin-bottom: 20px;
    background: linear-gradient(145deg, rgba(74, 0, 0, 0.1), transparent);
    border-radius: 10px;
    border: 1px solid rgba(74, 0, 0, 0.2);
}

.category-title {
    font-family: 'Spectral', serif;
    font-size: 28px;
    margin-bottom: 10px;
}

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

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

.provider-tab {
    padding: 8px 18px;
    background: rgba(74, 0, 0, 0.15);
    border: 1px solid rgba(74, 0, 0, 0.3);
    border-radius: 20px;
    color: #E0D8D8;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.provider-tab:hover,
.provider-tab.active {
    background: linear-gradient(135deg, #4A0000, #8B0000);
    border-color: #4A0000;
    color: #FFD700;
}

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

/* === PAGINATION === */
.pagination {
    margin-top: 40px;
    text-align: center;
}

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

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(74, 0, 0, 0.15);
    border: 1px solid rgba(74, 0, 0, 0.3);
    border-radius: 8px;
    color: #E0D8D8;
    font-size: 14px;
    transition: all 0.3s ease;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: linear-gradient(135deg, #4A0000, #8B0000);
    border-color: #4A0000;
    color: #FFD700;
}

/* === SINGLE ARTICLE === */
.single-article {
    background: linear-gradient(145deg, #1a0000, #0D0D0D);
    border: 1px solid rgba(74, 0, 0, 0.3);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
}

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

.article-title {
    font-family: 'Spectral', serif;
    font-size: 32px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 15px;
    line-height: 1.4;
}

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

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

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

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

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

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

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

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

.article-content a {
    color: #FFD700;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

.article-content a:hover {
    border-bottom-color: #FFD700;
}

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

.article-content blockquote {
    border-left: 4px solid #4A0000;
    padding: 15px 20px;
    margin: 20px 0;
    background: rgba(74, 0, 0, 0.1);
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

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

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

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

.article-tags i {
    color: #4A0000;
}

.article-tags span {
    padding: 5px 12px;
    background: rgba(74, 0, 0, 0.2);
    border: 1px solid rgba(74, 0, 0, 0.3);
    border-radius: 15px;
    font-size: 12px;
    color: #E0D8D8;
}

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

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

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

/* === RELATED POSTS === */
.related-posts {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(74, 0, 0, 0.2);
}

.related-posts-title {
    font-family: 'Spectral', serif;
    font-size: 20px;
    margin-bottom: 20px;
}

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

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

.related-item:hover {
    transform: translateY(-5px);
    border-color: #4A0000;
    box-shadow: 0 10px 25px rgba(74, 0, 0, 0.3);
}

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

.related-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.related-item:hover .related-item-thumb img {
    transform: scale(1.1);
}

.related-item-title {
    padding: 12px;
    font-size: 13px;
    color: #E0D8D8;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* === PAGE ARTICLE === */
.page-article {
    background: linear-gradient(145deg, #1a0000, #0D0D0D);
    border: 1px solid rgba(74, 0, 0, 0.3);
    border-radius: 15px;
    padding: 40px;
}

.page-title {
    font-family: 'Spectral', serif;
    font-size: 32px;
    color: #FFD700;
    margin-bottom: 25px;
}

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

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

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

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

/* === FOOTER === */
.site-footer {
    background: linear-gradient(180deg, #0D0D0D, #1a0000, #0D0D0D);
    border-top: 2px solid #4A0000;
    padding: 60px 0 30px;
    margin-top: 60px;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4A0000, #8B0000, #4A0000, transparent);
    animation: darkVein 8s ease-in-out infinite;
}

.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: 40px;
    filter: drop-shadow(0 0 10px rgba(74, 0, 0, 0.5));
}

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

.footer-18plus {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    background: linear-gradient(135deg, #4A0000, #8B0000);
    color: #FFD700;
    font-weight: 700;
    font-size: 16px;
    border-radius: 50%;
    margin-bottom: 15px;
}

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

.footer-social-links a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(74, 0, 0, 0.2);
    border: 1px solid rgba(74, 0, 0, 0.4);
    border-radius: 50%;
    color: #FFD700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    background: #4A0000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(74, 0, 0, 0.4);
}

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

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

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

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

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

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

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

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

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

.license-item i {
    font-size: 24px;
    color: #4A0000;
}

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

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

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

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

.sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #4A0000, #8B0000);
    border-radius: 50%;
    color: #FFD700;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid rgba(74, 0, 0, 0.5);
}

.sidebar-btn:hover {
    background: linear-gradient(135deg, #8B0000, #DC143C);
    transform: scale(1.15);
    box-shadow: 0 5px 20px rgba(74, 0, 0, 0.5);
    color: #FFD700;
}

.sidebar-label {
    display: none;
    position: absolute;
    right: 55px;
    background: #0D0D0D;
    border: 1px solid #4A0000;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
    color: #FFD700;
    white-space: nowrap;
}

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

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

.sidebar-btn-telegram {
    background: linear-gradient(135deg, #0088CC, #005C99) !important;
    color: #fff !important;
}

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

.error-crimson {
    margin-bottom: 25px;
}

.error-crimson-orb {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 0, 0, 0.6), transparent);
    animation: bloodPulse 3s ease-in-out infinite;
}

.error-code {
    font-family: 'Spectral', serif;
    font-size: 100px;
    font-weight: 700;
    color: #4A0000;
    line-height: 1;
    margin-bottom: 10px;
    animation: redGlow 3s ease-in-out infinite;
}

.error-title {
    font-family: 'Spectral', serif;
    font-size: 24px;
    color: #FFD700;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

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

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

.no-posts p {
    font-size: 16px;
    color: #999;
}

/* === DYNAMIC PARTICLES === */
.dynamic-blood-particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, #4A0000, transparent);
    pointer-events: none;
    opacity: 0.4;
}

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

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

/* === RESPONSIVE PLACEHOLDER === */
/* See responsive.css for media queries */
