* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #c41e3a;
    --secondary-color: #2c3e50;
    --dark-bg: #0a0e13;
    --dark-bg-2: #141b24;
    --dark-bg-3: #1a2332;
    --text-light: #ecf0f1;
    --text-gray: #95a5a6;
    --accent-red: #e74c3c;
    --accent-blood: #8b0000;
    --blood-dark: #5c0000;
    --success: #27ae60;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(139, 0, 0, 0.15) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(139, 0, 0, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 50% 50%, rgba(139, 0, 0, 0.08) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
    animation: bloodBackground 10s ease-in-out infinite;
}

@keyframes bloodBackground {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Blood drip effect */
.blood-drip {
    position: absolute;
    top: -50px;
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--accent-blood));
    animation: drip 3s ease-in-out infinite;
}

@keyframes drip {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

/* Vote Button Styles */
.btn-vote {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    border: 2px solid #f39c12;
    color: var(--dark-bg);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(243, 156, 18, 0.4);
    transition: all 0.3s ease;
}

.btn-vote:hover {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    box-shadow: 0 0 30px rgba(243, 156, 18, 0.6);
    transform: translateY(-2px);
}

.btn-vote .vote-icon {
    font-size: 1.2em;
    margin-right: 5px;
}

.nav-vote {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    padding: 8px 15px !important;
    border-radius: 5px;
    color: var(--dark-bg) !important;
    font-weight: 700;
}

.nav-vote:hover {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    box-shadow: 0 0 15px rgba(243, 156, 18, 0.5);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(10, 14, 19, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 3px solid var(--accent-blood);
    box-shadow: 0 4px 20px rgba(139, 0, 0, 0.6),
                inset 0 -1px 0 rgba(196, 30, 58, 0.5);
}

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

.logo img {
    height: 90px;
    filter: drop-shadow(0 0 20px rgba(196, 30, 58, 1))
            drop-shadow(0 0 10px rgba(139, 0, 0, 0.8))
            drop-shadow(0 5px 15px rgba(0, 0, 0, 0.9));
    transition: transform 0.3s ease, filter 0.3s ease;
    animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { 
        filter: drop-shadow(0 0 20px rgba(196, 30, 58, 1))
                drop-shadow(0 0 10px rgba(139, 0, 0, 0.8))
                drop-shadow(0 5px 15px rgba(0, 0, 0, 0.9));
    }
    50% { 
        filter: drop-shadow(0 0 35px rgba(196, 30, 58, 1))
                drop-shadow(0 0 20px rgba(139, 0, 0, 1))
                drop-shadow(0 5px 25px rgba(0, 0, 0, 1));
    }
}

.logo img:hover {
    transform: scale(1.1) rotate(-3deg);
    filter: drop-shadow(0 0 40px rgba(196, 30, 58, 1))
            drop-shadow(0 0 25px rgba(139, 0, 0, 1))
            drop-shadow(0 8px 30px rgba(0, 0, 0, 1));
    animation: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 8px 15px;
    position: relative;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blood), var(--primary-color));
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--accent-blood);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent-red);
    text-shadow: 0 0 15px rgba(196, 30, 58, 0.8);
}

/* Hero Section - ULTIMATE ZOMBIE APOCALYPSE */
.hero {
    height: 100vh;
    background: 
        linear-gradient(rgba(0,0,0,0.6), rgba(139, 0, 0, 0.4), rgba(10,14,19,0.9)), 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%230a0e13"/></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            rgba(139, 0, 0, 0.3) 0px,
            transparent 2px,
            transparent 4px,
            rgba(139, 0, 0, 0.3) 6px
        );
    pointer-events: none;
    animation: scan 8s linear infinite;
    opacity: 0.7;
}

.blood-splatter {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(ellipse at 15% 25%, rgba(139, 0, 0, 0.7) 0%, transparent 40%),
        radial-gradient(ellipse at 85% 65%, rgba(92, 0, 0, 0.6) 0%, transparent 35%),
        radial-gradient(ellipse at 50% 85%, rgba(139, 0, 0, 0.65) 0%, transparent 40%),
        radial-gradient(ellipse at 70% 30%, rgba(92, 0, 0, 0.5) 0%, transparent 30%),
        radial-gradient(ellipse at 30% 70%, rgba(139, 0, 0, 0.55) 0%, transparent 35%),
        radial-gradient(ellipse at 90% 10%, rgba(139, 0, 0, 0.6) 0%, transparent 30%),
        radial-gradient(ellipse at 10% 90%, rgba(92, 0, 0, 0.5) 0%, transparent 35%);
    pointer-events: none;
    opacity: 0.9;
    animation: bloodPulse 3s ease-in-out infinite;
    filter: blur(2px);
}

.zombie-silhouettes {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    background-image: 
        linear-gradient(90deg, transparent 47%, rgba(139, 0, 0, 0.9) 49%, rgba(139, 0, 0, 0.9) 51%, transparent 53%),
        linear-gradient(180deg, transparent 47%, rgba(92, 0, 0, 0.7) 49%, rgba(92, 0, 0, 0.7) 51%, transparent 53%);
    animation: zombieWalk 12s linear infinite;
    filter: blur(0.5px);
}

/* Blood splatters decorative */
.hero::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    top: 10%;
    right: 15%;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.5) 0%, transparent 60%);
    filter: blur(25px);
    animation: floatBlood 5s ease-in-out infinite;
}

@keyframes floatBlood {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 30px) scale(1.3); }
}

@keyframes zombieWalk {
    0% { transform: translateX(-100%) rotate(0deg); }
    100% { transform: translateX(100%) rotate(5deg); }
}

@keyframes bloodPulse {
    0%, 100% { 
        opacity: 0.8;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.08);
    }
}

@keyframes scan {
    0% { transform: translateY(0); }
    100% { transform: translateY(100%); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(139, 0, 0, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(92, 0, 0, 0.15) 0%, transparent 45%),
        radial-gradient(circle at center, transparent 0%, rgba(10,14,19,0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 9.5rem;
    color: var(--text-light);
    text-shadow: 
        0 0 40px rgba(139, 0, 0, 1),
        0 0 80px rgba(196, 30, 58, 1),
        5px 5px 20px rgba(0, 0, 0, 1),
        -3px -3px 8px rgba(139, 0, 0, 0.8);
    margin-bottom: 20px;
    letter-spacing: 12px;
    position: relative;
}

.hero h1::before {
    content: 'DEADLAND';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: rgba(139, 0, 0, 0.6);
    z-index: -1;
    animation: bloodDrip 4s ease-in-out infinite;
}

@keyframes bloodDrip {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50% { transform: translateY(4px); opacity: 0.9; }
}

.glitch {
    position: relative;
    animation: glitchIntense 1.5s infinite;
}

@keyframes glitchIntense {
    0%, 100% { 
        text-shadow: 
            0 0 40px rgba(139, 0, 0, 1),
            0 0 80px rgba(196, 30, 58, 1),
            5px 5px 20px rgba(0, 0, 0, 1);
    }
    15% {
        text-shadow: 
            -6px 0 0 rgba(139, 0, 0, 1),
            6px 0 0 rgba(196, 30, 58, 1),
            0 0 60px rgba(139, 0, 0, 0.9);
    }
    30% {
        text-shadow: 
            6px 0 0 rgba(139, 0, 0, 1),
            -6px 0 0 rgba(139, 0, 0, 0.95),
            0 0 80px rgba(196, 30, 58, 1);
    }
    45% {
        text-shadow: 
            -4px 4px 0 rgba(92, 0, 0, 1),
            4px -4px 0 rgba(231, 76, 60, 1);
    }
    60% {
        text-shadow: 
            4px -4px 0 rgba(139, 0, 0, 1),
            -4px 4px 0 rgba(196, 30, 58, 1);
    }
    75% {
        text-shadow: 
            -5px 2px 0 rgba(139, 0, 0, 0.9),
            5px -2px 0 rgba(196, 30, 58, 0.95),
            0 0 70px rgba(139, 0, 0, 1);
    }
}

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

.tagline {
    font-size: 2.3rem;
    color: #ff3333;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 8px;
    text-shadow: 
        0 0 25px rgba(139, 0, 0, 1),
        0 0 50px rgba(196, 30, 58, 0.8),
        3px 3px 10px rgba(0, 0, 0, 1);
    font-weight: 700;
    animation: taglinePulse 2s ease-in-out infinite;
}

@keyframes taglinePulse {
    0%, 100% { 
        text-shadow: 
            0 0 25px rgba(139, 0, 0, 1),
            0 0 50px rgba(196, 30, 58, 0.8),
            3px 3px 10px rgba(0, 0, 0, 1);
        transform: scale(1);
    }
    50% { 
        text-shadow: 
            0 0 35px rgba(139, 0, 0, 1),
            0 0 70px rgba(196, 30, 58, 1),
            3px 3px 15px rgba(0, 0, 0, 1);
        transform: scale(1.02);
    }
}

.hero-warning {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.4), rgba(92, 0, 0, 0.6));
    border: 3px solid var(--accent-blood);
    padding: 12px 30px;
    border-radius: 5px;
    margin-bottom: 35px;
    animation: warningBlinkIntense 1.5s ease-in-out infinite;
    box-shadow: 
        0 0 20px rgba(139, 0, 0, 0.8),
        inset 0 0 20px rgba(139, 0, 0, 0.3);
}

@keyframes warningBlinkIntense {
    0%, 100% { 
        border-color: var(--accent-blood);
        box-shadow: 
            0 0 20px rgba(139, 0, 0, 0.8),
            0 0 40px rgba(139, 0, 0, 0.6),
            inset 0 0 20px rgba(139, 0, 0, 0.3);
        background: linear-gradient(135deg, rgba(139, 0, 0, 0.4), rgba(92, 0, 0, 0.6));
    }
    50% { 
        border-color: var(--primary-color);
        box-shadow: 
            0 0 30px rgba(196, 30, 58, 1),
            0 0 60px rgba(139, 0, 0, 0.9),
            inset 0 0 30px rgba(139, 0, 0, 0.5);
        background: linear-gradient(135deg, rgba(196, 30, 58, 0.5), rgba(139, 0, 0, 0.7));
    }
}

.warning-icon {
    font-size: 1.8rem;
    animation: shakeIntense 0.4s infinite;
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.8));
}

@keyframes shakeIntense {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    20% { transform: translateX(-5px) rotate(-8deg); }
    40% { transform: translateX(5px) rotate(8deg); }
    60% { transform: translateX(-4px) rotate(-6deg); }
    80% { transform: translateX(4px) rotate(6deg); }
}

.warning-text {
    font-size: 1.3rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ff3333;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-blood), var(--blood-dark), var(--accent-blood));
    background-size: 200% 200%;
    color: var(--text-light);
    border: 3px solid var(--accent-blood);
    box-shadow: 
        0 5px 20px rgba(139, 0, 0, 0.7),
        0 0 30px rgba(139, 0, 0, 0.5),
        inset 0 0 20px rgba(139, 0, 0, 0.3);
    animation: bloodFlow 3s ease infinite;
}

@keyframes bloodFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 8px 30px rgba(139, 0, 0, 1),
        0 0 50px rgba(196, 30, 58, 0.9);
    border-color: var(--primary-color);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 3px solid var(--accent-blood);
    box-shadow: 
        0 0 20px rgba(139, 0, 0, 0.5),
        inset 0 0 10px rgba(139, 0, 0, 0.2);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--accent-blood), var(--blood-dark));
    color: var(--text-light);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(139, 0, 0, 0.9);
}

.pulse {
    animation: pulseBlood 1.5s ease-in-out infinite;
}

@keyframes pulseBlood {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 
            0 5px 20px rgba(139, 0, 0, 0.7),
            0 0 30px rgba(139, 0, 0, 0.5);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 
            0 10px 40px rgba(139, 0, 0, 1),
            0 0 60px rgba(196, 30, 58, 1),
            0 0 80px rgba(139, 0, 0, 0.8);
    }
}

.server-status {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.7);
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(139, 0, 0, 0.5);
    box-shadow: 
        0 0 20px rgba(139, 0, 0, 0.6),
        inset 0 0 10px rgba(139, 0, 0, 0.2);
}

.status-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    animation: statusPulseBlood 2s ease-in-out infinite;
}

.status-dot.online {
    background: #27ae60;
    box-shadow: 
        0 0 15px #27ae60,
        0 0 30px rgba(39, 174, 96, 0.6);
}

.status-dot.offline {
    background: #e74c3c;
    box-shadow: 
        0 0 15px #e74c3c,
        0 0 30px rgba(231, 76, 60, 0.6);
    animation: statusPulseOffline 2s ease-in-out infinite;
}

@keyframes statusPulseBlood {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
        box-shadow: 0 0 15px #27ae60;
    }
    50% { 
        opacity: 0.6; 
        transform: scale(1.4);
        box-shadow: 0 0 25px #27ae60, 0 0 40px rgba(39, 174, 96, 0.8);
    }
}

@keyframes statusPulseOffline {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
        box-shadow: 0 0 15px #e74c3c;
    }
    50% { 
        opacity: 0.6; 
        transform: scale(1.4);
        box-shadow: 0 0 25px #e74c3c, 0 0 40px rgba(231, 76, 60, 0.8);
    }
}

.player-count {
    color: var(--primary-color);
    font-weight: bold;
    text-shadow: 0 0 10px rgba(196, 30, 58, 0.8);
}

.scroll-indicator {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #ff4444;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: bounceBlood 2s infinite;
    text-shadow: 0 0 15px rgba(139, 0, 0, 0.9);
}

.arrow-down {
    width: 35px;
    height: 35px;
    border-right: 4px solid var(--accent-blood);
    border-bottom: 4px solid var(--accent-blood);
    transform: rotate(45deg);
    box-shadow: 0 0 15px rgba(139, 0, 0, 0.8);
}

@keyframes bounceBlood {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-15px); }
}

/* Sections */
.section {
    padding: 100px 0;
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-blood), var(--primary-color), var(--accent-blood), transparent);
    box-shadow: 0 0 15px rgba(139, 0, 0, 0.8);
}

.section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 4.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-light);
    letter-spacing: 8px;
    text-shadow: 
        0 0 35px rgba(139, 0, 0, 1),
        0 0 60px rgba(196, 30, 58, 0.8),
        5px 5px 15px rgba(0, 0, 0, 1);
    position: relative;
    animation: titlePulse 3s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% {
        text-shadow: 
            0 0 35px rgba(139, 0, 0, 1),
            0 0 60px rgba(196, 30, 58, 0.8),
            5px 5px 15px rgba(0, 0, 0, 1);
    }
    50% {
        text-shadow: 
            0 0 45px rgba(139, 0, 0, 1),
            0 0 80px rgba(196, 30, 58, 1),
            5px 5px 20px rgba(0, 0, 0, 1);
    }
}

.section-title::after {
    content: '';
    display: block;
    width: 180px;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--accent-blood), var(--primary-color), var(--accent-blood), transparent);
    margin: 30px auto 0;
    box-shadow: 
        0 0 25px rgba(139, 0, 0, 1),
        0 0 40px rgba(196, 30, 58, 0.8);
    animation: lineGlow 2s ease-in-out infinite;
}

@keyframes lineGlow {
    0%, 100% {
        box-shadow: 
            0 0 25px rgba(139, 0, 0, 1),
            0 0 40px rgba(196, 30, 58, 0.8);
    }
    50% {
        box-shadow: 
            0 0 35px rgba(139, 0, 0, 1),
            0 0 60px rgba(196, 30, 58, 1);
    }
}

/* About Section */
.about-section {
    background: 
        linear-gradient(rgba(10, 14, 19, 0.9), rgba(20, 27, 36, 0.95)),
        radial-gradient(circle at 20% 50%, rgba(139, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(92, 0, 0, 0.08) 0%, transparent 50%);
}

.about-content {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 1.3rem;
    line-height: 1.9;
    color: var(--text-gray);
}

.about-content p {
    margin-bottom: 25px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.stat-card {
    background: linear-gradient(135deg, 
        rgba(26, 35, 50, 0.9), 
        rgba(10, 14, 19, 0.95));
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    border: 3px solid rgba(139, 0, 0, 0.4);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 20px rgba(139, 0, 0, 0.3),
        inset 0 0 30px rgba(139, 0, 0, 0.1);
}

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

.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 48%, rgba(139, 0, 0, 0.3) 50%, transparent 52%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover::before,
.stat-card:hover::after {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: var(--accent-blood);
    box-shadow: 
        0 15px 40px rgba(139, 0, 0, 0.7),
        0 0 50px rgba(196, 30, 58, 0.6),
        inset 0 0 30px rgba(139, 0, 0, 0.3);
}

.stat-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(196, 30, 58, 0.8));
    position: relative;
    z-index: 1;
}

.stat-number {
    font-family: 'Bebas Neue', cursive;
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    text-shadow: 0 0 20px rgba(139, 0, 0, 0.8);
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 1.3rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

/* Continue with survival guide section... */
.survival-guide {
    background: linear-gradient(180deg, 
        rgba(20, 27, 36, 0.95) 0%, 
        rgba(26, 35, 50, 0.9) 100%);
    position: relative;
}

.survival-guide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-blood), var(--primary-color), var(--accent-blood), transparent);
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.9);
}

.survival-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.tip-card {
    background: linear-gradient(135deg, 
        rgba(10, 14, 19, 0.95), 
        rgba(139, 0, 0, 0.08));
    padding: 40px;
    border-radius: 15px;
    border: 3px solid rgba(139, 0, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 20px rgba(139, 0, 0, 0.3),
        inset 0 0 20px rgba(139, 0, 0, 0.1);
}

.tip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-blood), var(--primary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    box-shadow: 0 0 15px rgba(139, 0, 0, 0.9);
}

.tip-card::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tip-card:hover::before {
    transform: scaleX(1);
}

.tip-card:hover::after {
    opacity: 1;
}

.tip-card:hover {
    transform: translateY(-12px);
    border-color: var(--accent-blood);
    box-shadow: 
        0 20px 50px rgba(139, 0, 0, 0.6),
        0 0 40px rgba(196, 30, 58, 0.5),
        inset 0 0 30px rgba(139, 0, 0, 0.2);
}

.tip-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    text-align: center;
    filter: drop-shadow(0 0 15px rgba(196, 30, 58, 0.8));
}

.tip-card h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.2rem;
    color: var(--text-light);
    margin-bottom: 18px;
    letter-spacing: 3px;
    text-align: center;
    text-shadow: 0 0 15px rgba(139, 0, 0, 0.6);
}

.tip-card p {
    color: var(--text-gray);
    line-height: 1.8;
    text-align: center;
}

/* Rules Section with blood theme */
.rules-section {
    background: 
        linear-gradient(rgba(10, 14, 19, 0.95), rgba(10, 14, 19, 0.98)),
        radial-gradient(circle at 30% 40%, rgba(139, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(92, 0, 0, 0.08) 0%, transparent 50%);
}

.rules-intro {
    max-width: 850px;
    margin: 0 auto 60px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.15), rgba(92, 0, 0, 0.1));
    border-radius: 15px;
    border: 2px solid rgba(139, 0, 0, 0.3);
    box-shadow: 0 0 30px rgba(139, 0, 0, 0.4);
}

.rules-intro h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(139, 0, 0, 0.8);
    text-align: center;
}

.rules-intro p {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: left;
}

.rules-intro p:last-child {
    margin-bottom: 0;
}

.rules-container {
    display: grid;
    gap: 45px;
}

.rule-category {
    background: linear-gradient(135deg, 
        rgba(20, 27, 36, 0.9), 
        rgba(26, 35, 50, 0.95));
    padding: 45px;
    border-radius: 15px;
    border-left: 6px solid var(--accent-blood);
    box-shadow: 
        0 5px 25px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(139, 0, 0, 0.3),
        inset 0 0 30px rgba(139, 0, 0, 0.05);
}

.rule-category h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(139, 0, 0, 0.8);
}

.rule-list {
    list-style: none;
}

.rule-list li {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(139, 0, 0, 0.2);
}

.rule-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.rule-number {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--accent-blood), var(--blood-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.4rem;
    box-shadow: 
        0 0 20px rgba(139, 0, 0, 0.7),
        inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.rule-content strong {
    display: block;
    color: var(--text-light);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.rule-content p {
    color: var(--text-gray);
    line-height: 1.7;
}

.rules-footer {
    margin-top: 60px;
    padding: 35px;
    background: linear-gradient(135deg, 
        rgba(139, 0, 0, 0.3), 
        rgba(92, 0, 0, 0.4));
    border-radius: 15px;
    border: 3px solid var(--accent-blood);
    box-shadow: 
        0 0 30px rgba(139, 0, 0, 0.6),
        inset 0 0 30px rgba(139, 0, 0, 0.2);
}

.rules-footer p {
    color: var(--text-light);
    font-size: 1.2rem;
    line-height: 1.9;
}

/* Features Section with intense blood effects */
.features-section {
    background: 
        linear-gradient(rgba(20, 27, 36, 0.9), rgba(20, 27, 36, 0.95)),
        radial-gradient(circle at 50% 50%, rgba(139, 0, 0, 0.1) 0%, transparent 60%);
}

.featured-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 35px;
    margin-bottom: 70px;
}

.highlight-card {
    background: linear-gradient(135deg, 
        rgba(26, 35, 50, 0.95), 
        rgba(10, 14, 19, 0.98));
    padding: 45px;
    border-radius: 20px;
    border: 3px solid var(--accent-blood);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 
        0 0 30px rgba(139, 0, 0, 0.4),
        inset 0 0 30px rgba(139, 0, 0, 0.1);
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.3) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.highlight-card:hover::before {
    opacity: 1;
    animation: bloodSpread 2s ease-in-out infinite;
}

@keyframes bloodSpread {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

.highlight-card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 25px 60px rgba(139, 0, 0, 0.7),
        0 0 50px rgba(196, 30, 58, 0.8),
        inset 0 0 40px rgba(139, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.highlight-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: linear-gradient(135deg, var(--accent-blood), var(--blood-dark));
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 
        0 5px 20px rgba(139, 0, 0, 0.8),
        0 0 30px rgba(139, 0, 0, 0.6);
    animation: badgePulseBlood 2s ease-in-out infinite;
    z-index: 10;
}

@keyframes badgePulseBlood {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(139, 0, 0, 0.8);
    }
    50% { 
        transform: scale(1.08);
        box-shadow: 0 8px 30px rgba(139, 0, 0, 1), 0 0 40px rgba(196, 30, 58, 0.9);
    }
}

.highlight-card h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 25px;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(139, 0, 0, 0.7);
    position: relative;
    z-index: 1;
}

.highlight-card > p {
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 30px;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.feature-list {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 1;
}

.feature-list li {
    color: var(--text-gray);
    padding: 15px 0;
    padding-left: 35px;
    position: relative;
    border-bottom: 1px solid rgba(139, 0, 0, 0.2);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
    text-shadow: 0 0 15px rgba(139, 0, 0, 0.9);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.feature-card {
    background: linear-gradient(135deg, 
        rgba(26, 35, 50, 0.9), 
        rgba(10, 14, 19, 0.95));
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    border: 3px solid rgba(139, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 20px rgba(139, 0, 0, 0.3),
        inset 0 0 20px rgba(139, 0, 0, 0.05);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 0, 0, 0.3), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: var(--primary-color);
    box-shadow: 
        0 20px 60px rgba(139, 0, 0, 0.7),
        0 0 50px rgba(196, 30, 58, 0.6),
        inset 0 -8px 35px rgba(139, 0, 0, 0.3);
}

.feature-icon {
    font-size: 4.5rem;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 15px rgba(196, 30, 58, 0.8));
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 18px;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(139, 0, 0, 0.6);
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Gallery Section with blood effects */
.gallery-section {
    background: linear-gradient(180deg, 
        rgba(20, 27, 36, 0.95), 
        rgba(10, 14, 19, 0.98));
    padding: 100px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.4s ease;
}

.gallery-placeholder {
    background: linear-gradient(135deg, 
        rgba(26, 35, 50, 0.9), 
        rgba(10, 14, 19, 0.95));
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(139, 0, 0, 0.4);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.gallery-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-placeholder {
    border-color: var(--accent-blood);
    transform: scale(1.08);
    box-shadow: 
        0 15px 40px rgba(139, 0, 0, 0.7),
        0 0 40px rgba(196, 30, 58, 0.6);
}

.gallery-item:hover .gallery-placeholder::before {
    opacity: 1;
}

.gallery-icon {
    font-size: 4.5rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(196, 30, 58, 0.8));
    position: relative;
    z-index: 1;
}

.gallery-placeholder p {
    color: var(--text-gray);
    font-size: 1.3rem;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.gallery-caption {
    padding: 18px;
    background: linear-gradient(135deg, 
        rgba(26, 35, 50, 0.95), 
        rgba(139, 0, 0, 0.1));
    color: var(--text-light);
    text-align: center;
    font-weight: 600;
    border-top: 2px solid rgba(139, 0, 0, 0.5);
}

/* Team Section */
.team-section {
    background: 
        linear-gradient(rgba(20, 27, 36, 0.9), rgba(20, 27, 36, 0.95)),
        radial-gradient(circle at 40% 50%, rgba(139, 0, 0, 0.1) 0%, transparent 50%);
    padding: 100px 0;
}

.team-intro {
    max-width: 750px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-gray);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 35px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-card {
    background: linear-gradient(135deg, 
        rgba(26, 35, 50, 0.9), 
        rgba(10, 14, 19, 0.95));
    padding: 45px 35px;
    border-radius: 15px;
    text-align: center;
    border: 3px solid rgba(139, 0, 0, 0.4);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 20px rgba(139, 0, 0, 0.3),
        inset 0 0 20px rgba(139, 0, 0, 0.05);
}

.team-card::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover::before {
    opacity: 1;
}

.team-card:hover {
    transform: translateY(-12px);
    border-color: var(--accent-blood);
    box-shadow: 
        0 20px 50px rgba(139, 0, 0, 0.6),
        0 0 40px rgba(196, 30, 58, 0.5),
        inset 0 0 30px rgba(139, 0, 0, 0.2);
}

.team-icon {
    font-size: 4.5rem;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 15px rgba(196, 30, 58, 0.8));
    position: relative;
    z-index: 1;
}

.team-card h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(139, 0, 0, 0.8);
    position: relative;
    z-index: 1;
}

.team-card p {
    color: var(--text-gray);
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

/* Connect Section with blood theme */
.connect-section {
    background: 
        linear-gradient(rgba(10, 14, 19, 0.95), rgba(10, 14, 19, 0.98)),
        radial-gradient(circle at 50% 50%, rgba(139, 0, 0, 0.1) 0%, transparent 60%);
}

.connect-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
    gap: 45px;
    margin-bottom: 60px;
}

.connect-info h3,
.server-info-box h3,
.social-links h3,
.requirements-box h3,
.faq-section h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(139, 0, 0, 0.8);
}

.connect-steps {
    list-style: none;
    counter-reset: step-counter;
}

.connect-steps li {
    counter-increment: step-counter;
    margin-bottom: 25px;
    padding-left: 65px;
    position: relative;
    font-size: 1.2rem;
    color: var(--text-gray);
}

.connect-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: -8px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--accent-blood), var(--blood-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.4rem;
    box-shadow: 
        0 0 20px rgba(139, 0, 0, 0.8),
        inset 0 0 10px rgba(0, 0, 0, 0.5);
}

code {
    background-color: rgba(26, 35, 50, 0.9);
    padding: 6px 12px;
    border-radius: 6px;
    color: var(--primary-color);
    font-family: 'Courier New', monospace;
    border: 2px solid rgba(139, 0, 0, 0.4);
    box-shadow: inset 0 0 10px rgba(139, 0, 0, 0.2);
}

.server-info-box {
    background: linear-gradient(135deg, 
        rgba(20, 27, 36, 0.9), 
        rgba(26, 35, 50, 0.95));
    padding: 35px;
    border-radius: 15px;
    border-left: 6px solid var(--accent-blood);
    box-shadow: 
        0 0 30px rgba(139, 0, 0, 0.3),
        inset 0 0 30px rgba(139, 0, 0, 0.05);
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 2px solid rgba(139, 0, 0, 0.2);
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: bold;
    color: var(--text-light);
    font-size: 1.1rem;
}

.info-value {
    color: var(--primary-color);
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(139, 0, 0, 0.6);
}

.requirements-box {
    background: linear-gradient(135deg, 
        rgba(20, 27, 36, 0.9), 
        rgba(26, 35, 50, 0.95));
    padding: 40px;
    border-radius: 15px;
    border-left: 6px solid var(--accent-blood);
    margin-bottom: 50px;
    box-shadow: 
        0 0 30px rgba(139, 0, 0, 0.3),
        inset 0 0 30px rgba(139, 0, 0, 0.05);
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 35px;
}

.requirement-item strong {
    display: block;
    color: var(--text-light);
    font-size: 1.3rem;
    margin-bottom: 18px;
    text-shadow: 0 0 10px rgba(139, 0, 0, 0.5);
}

.requirement-item ul {
    list-style: none;
    padding: 0;
}

.requirement-item li {
    color: var(--text-gray);
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.requirement-item li::before {
    content: '●';
    position: absolute;
    left: 8px;
    color: var(--primary-color);
    font-size: 1.8rem;
    text-shadow: 0 0 10px rgba(139, 0, 0, 0.8);
}

.copyable {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.copyable:hover {
    color: var(--accent-red) !important;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.9);
}

.social-links {
    margin-top: 50px;
}

.social-links p {
    color: var(--text-gray);
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.2rem;
}

.social-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid transparent;
}

.social-icon {
    font-size: 1.8rem;
}

.social-btn.discord {
    background: linear-gradient(135deg, #5865F2, #4752C4);
    color: white;
    border: 2px solid #5865F2;
}

.social-btn.teamspeak {
    background: linear-gradient(135deg, #2580C3, #1A5F8B);
    color: white;
    border: 2px solid #2580C3;
}

.social-btn.forum {
    background: linear-gradient(135deg, var(--secondary-color), #1a2632);
    color: white;
    border: 2px solid var(--secondary-color);
}

.social-btn.youtube {
    background: linear-gradient(135deg, #FF0000, #CC0000);
    color: white;
    border: 2px solid #FF0000;
}

.social-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

/* FAQ Section */
.faq-section {
    margin-top: 60px;
}

.faq-list {
    display: grid;
    gap: 25px;
}

.faq-item {
    background: linear-gradient(135deg, 
        rgba(20, 27, 36, 0.9), 
        rgba(26, 35, 50, 0.95));
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid rgba(139, 0, 0, 0.3);
    transition: all 0.3s ease;
    box-shadow: 
        0 0 20px rgba(139, 0, 0, 0.2),
        inset 0 0 20px rgba(139, 0, 0, 0.05);
}

.faq-item:hover {
    border-color: var(--accent-blood);
    box-shadow: 
        0 0 30px rgba(139, 0, 0, 0.5),
        inset 0 0 30px rgba(139, 0, 0, 0.1);
}

.faq-question {
    background: linear-gradient(135deg, 
        rgba(139, 0, 0, 0.15), 
        rgba(92, 0, 0, 0.2));
    padding: 25px 30px;
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--text-light);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 30px;
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    text-shadow: 0 0 15px rgba(139, 0, 0, 0.8);
}

.faq-question.open::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-question:hover {
    background: linear-gradient(135deg, 
        rgba(139, 0, 0, 0.25), 
        rgba(92, 0, 0, 0.3));
}

.faq-answer {
    padding: 25px 30px;
    color: var(--text-gray);
    line-height: 1.8;
    display: none;
    font-size: 1.1rem;
}

/* Footer with blood theme */
.footer {
    background: linear-gradient(rgba(20, 27, 36, 0.95), rgba(10, 14, 19, 1));
    border-top: 3px solid var(--accent-blood);
    padding: 50px 0;
    margin-top: 100px;
    box-shadow: 0 -5px 30px rgba(139, 0, 0, 0.4);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.footer-logo img {
    height: 90px;
    filter: drop-shadow(0 0 15px rgba(196, 30, 58, 0.8));
}

.footer-text {
    text-align: center;
    color: var(--text-gray);
}

.footer-text p {
    margin: 8px 0;
    font-size: 1.05rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 15px;
        display: none;
    }

    .hero h1 {
        font-size: 4.5rem;
    }

    .tagline {
        font-size: 1.4rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .section-title {
        font-size: 3rem;
    }

    .features-grid, .featured-highlights {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rule-list li {
        flex-direction: column;
        gap: 15px;
    }

    .survival-tips {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .connect-main {
        grid-template-columns: 1fr;
    }

    .requirements-grid, .social-buttons {
        grid-template-columns: 1fr;
    }

    .scroll-indicator {
        font-size: 0.9rem;
    }
}

/* Custom Scrollbar with blood theme */
::-webkit-scrollbar {
    width: 14px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
    box-shadow: inset 0 0 10px rgba(139, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-blood), var(--blood-dark));
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(139, 0, 0, 0.8);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-color), var(--accent-blood));
    box-shadow: 0 0 15px rgba(196, 30, 58, 1);
}

/* Rules Accordion Style */
.rules-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.rule-accordion-item {
    background: linear-gradient(135deg, 
        rgba(26, 35, 50, 0.95), 
        rgba(20, 27, 36, 0.98));
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(139, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.rule-accordion-item:hover {
    border-color: var(--accent-blood);
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.4);
}

.rule-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background: rgba(10, 14, 19, 0.6);
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.rule-accordion-header:hover {
    background: rgba(139, 0, 0, 0.15);
}

.rule-accordion-item.active .rule-accordion-header {
    background: rgba(139, 0, 0, 0.2);
    border-bottom-color: var(--accent-blood);
}

.rule-section-number {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.4rem;
    color: var(--text-light);
    letter-spacing: 1px;
    font-weight: 600;
}

.rule-toggle {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(196, 30, 58, 0.6));
}

.rule-toggle svg {
    transition: transform 0.3s ease;
}

.rule-accordion-item.active .rule-toggle svg {
    transform: rotate(180deg);
}

.rule-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 25px;
}

.rule-accordion-item.active .rule-accordion-content {
    max-height: 2000px;
    padding: 25px;
}

.rule-accordion-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.rule-accordion-content strong {
    color: var(--text-light);
    font-size: 1.15rem;
    display: block;
    margin-bottom: 12px;
    text-shadow: 0 0 10px rgba(139, 0, 0, 0.5);
}

.rule-accordion-content ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.rule-accordion-content ul li {
    color: var(--text-gray);
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid rgba(139, 0, 0, 0.15);
    line-height: 1.7;
}

.rule-accordion-content ul li:last-child {
    border-bottom: none;
}

.rule-accordion-content ul li::before {
    content: '▸';
    position: absolute;
    left: 5px;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(139, 0, 0, 0.8);
}

/* Update rules intro */
.rules-intro {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    padding: 20px 30px;
    background: linear-gradient(135deg, 
        rgba(139, 0, 0, 0.15), 
        rgba(92, 0, 0, 0.2));
    border-radius: 10px;
    border: 2px solid rgba(139, 0, 0, 0.3);
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.3);
}

/* Rules footer update */
.rules-footer {
    max-width: 900px;
    margin: 50px auto 0;
    padding: 25px 30px;
    background: linear-gradient(135deg, 
        rgba(139, 0, 0, 0.25), 
        rgba(92, 0, 0, 0.3));
    border-radius: 10px;
    border: 2px solid var(--accent-blood);
    box-shadow: 
        0 0 25px rgba(139, 0, 0, 0.5),
        inset 0 0 20px rgba(139, 0, 0, 0.2);
}

.rules-footer p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
}

/* Remove old rules styles */
.rules-container {
    display: none;
}

.rule-category {
    display: none;
}

/* Additional rule content styling */
.rule-accordion-content h4 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 30px 0 20px 0;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(139, 0, 0, 0.6);
}

.rule-accordion-content em {
    color: var(--text-gray);
    font-style: italic;
    opacity: 0.9;
}

.rule-note {
    background: rgba(139, 0, 0, 0.1);
    border-left: 4px solid var(--accent-blood);
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 5px;
    font-style: italic;
    color: var(--text-gray);
    box-shadow: 0 0 10px rgba(139, 0, 0, 0.2);
}

.forbidden-words {
    margin-top: 20px;
}

.forbidden-words ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 20px;
}

.forbidden-words ul li {
    background: rgba(139, 0, 0, 0.2);
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid rgba(139, 0, 0, 0.3);
    text-align: center;
    font-family: 'Courier New', monospace;
    color: var(--text-light);
    border-bottom: none !important;
}

.forbidden-words ul li::before {
    content: '🚫';
    position: static;
    margin-right: 8px;
    font-size: 1rem;
}

.rules-intro h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(139, 0, 0, 0.8);
}

.rules-intro p {
    text-align: left;
    margin-bottom: 15px;
    line-height: 1.8;
}

.rules-intro p:last-child {
    margin-bottom: 0;
}

/* Blood Drips Animation */
.blood-drips-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.blood-drip-element {
    position: absolute;
    width: 3px;
    height: 0;
    background: linear-gradient(to bottom, rgba(139, 0, 0, 0.8), rgba(92, 0, 0, 0.9));
    border-radius: 50%;
    animation: bloodDripFall linear forwards;
    box-shadow: 0 0 8px rgba(139, 0, 0, 0.8);
}

@keyframes bloodDripFall {
    0% {
        height: 0;
        opacity: 0;
    }
    10% {
        height: 80px;
        opacity: 1;
    }
    100% {
        height: 80px;
        transform: translateY(calc(100vh + 80px));
        opacity: 0;
    }
}

/* Zombie Hands */
.zombie-hands-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.zombie-hand {
    position: absolute;
    font-size: 4rem;
    opacity: 0.15;
    filter: grayscale(100%) brightness(0.3);
    animation: zombieHandFloat 15s ease-in-out infinite;
}

@keyframes zombieHandFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.15;
    }
    90% {
        opacity: 0.15;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Scrollbar Blood Enhancement */
::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, var(--primary-color), var(--accent-blood));
    box-shadow: 
        0 0 20px rgba(196, 30, 58, 1),
        inset 0 0 10px rgba(139, 0, 0, 0.8);
}

/* Cursor Blood Trail Effect */
body.blood-cursor {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10" fill="%238b0000" opacity="0.6"/></svg>'), auto;
}

/* Screen Vignette Enhancement */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 30%, rgba(139, 0, 0, 0.15) 100%);
    pointer-events: none;
    z-index: 9998;
    animation: vignettePulse 8s ease-in-out infinite;
}

@keyframes vignettePulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

/* ===== VOTE SECTION STYLES ===== */
.vote-section {
    background: linear-gradient(135deg, var(--dark-bg-2) 0%, var(--dark-bg-3) 100%);
    border-top: 3px solid #f39c12;
    border-bottom: 3px solid #f39c12;
    position: relative;
    overflow: hidden;
}

.vote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(243, 156, 18, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(230, 126, 34, 0.08) 0%, transparent 25%);
    pointer-events: none;
}

.vote-content {
    position: relative;
    z-index: 1;
}

.vote-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.vote-info h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: #f39c12;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(243, 156, 18, 0.5);
}

.vote-info > p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.vote-ic-number-warning {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.15), rgba(139, 0, 0, 0.1));
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 0 30px rgba(196, 30, 58, 0.3);
    animation: warningPulse 3s ease-in-out infinite;
}

@keyframes warningPulse {
    0%, 100% {
        box-shadow: 0 0 30px rgba(196, 30, 58, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(196, 30, 58, 0.5);
    }
}

.vote-ic-number-warning .warning-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.vote-ic-number-warning .warning-content {
    flex: 1;
}

.vote-ic-number-warning .warning-content strong {
    display: block;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 1px;
}

.vote-ic-number-warning .warning-content p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

.vote-rewards {
    background: rgba(243, 156, 18, 0.05);
    border: 2px solid rgba(243, 156, 18, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 0 30px rgba(243, 156, 18, 0.2);
}

.vote-rewards h4 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    color: #f39c12;
    margin-bottom: 20px;
}

.rewards-list {
    list-style: none;
    padding: 0;
}

.rewards-list li {
    font-size: 1.1rem;
    padding: 12px 0;
    border-bottom: 1px solid rgba(243, 156, 18, 0.2);
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 15px;
}

.rewards-list li:last-child {
    border-bottom: none;
}

.rewards-list li strong {
    color: #f39c12;
}

.vote-cta {
    margin: 40px 0;
    text-align: center;
}

.btn-vote-large {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 25px 50px;
    font-size: 1.3rem;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    border: 3px solid #f39c12;
    border-radius: 10px;
    color: var(--dark-bg);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 10px 40px rgba(243, 156, 18, 0.5);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

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

.btn-vote-large:hover::before {
    left: 100%;
}

.btn-vote-large:hover {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    box-shadow: 0 15px 50px rgba(243, 156, 18, 0.7);
    transform: translateY(-5px) scale(1.05);
}

.btn-vote-large .vote-icon {
    font-size: 2rem;
}

.btn-vote-large .vote-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.btn-vote-large .vote-text small {
    font-size: 0.7rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    opacity: 0.9;
}

.vote-note {
    background: rgba(46, 204, 113, 0.1);
    border-left: 4px solid var(--success);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.vote-note .note-icon {
    font-size: 1.5rem;
}

.vote-note p {
    margin: 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.vote-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.benefit-card {
    background: rgba(243, 156, 18, 0.05);
    border: 2px solid rgba(243, 156, 18, 0.2);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: rgba(243, 156, 18, 0.1);
    border-color: rgba(243, 156, 18, 0.4);
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.3);
    transform: translateY(-5px);
}

.benefit-card .benefit-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.benefit-card h4 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    color: #f39c12;
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

.vote-stats {
    text-align: center;
    background: rgba(10, 14, 19, 0.5);
    border: 2px solid rgba(243, 156, 18, 0.3);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 0 30px rgba(243, 156, 18, 0.2);
}

.vote-stats h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: #f39c12;
    margin-bottom: 30px;
}

.vote-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vote-stat-card {
    background: rgba(243, 156, 18, 0.05);
    border: 2px solid rgba(243, 156, 18, 0.3);
    border-radius: 10px;
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.vote-stat-card:hover {
    background: rgba(243, 156, 18, 0.1);
    border-color: rgba(243, 156, 18, 0.5);
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.3);
    transform: translateY(-5px);
}

.vote-stat-number {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    color: #f39c12;
    margin-bottom: 10px;
    text-shadow: 2px 2px 10px rgba(243, 156, 18, 0.5);
}

.vote-stat-label {
    font-size: 1rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-btn.vote-btn-special {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    border: 2px solid #f39c12;
    color: var(--dark-bg);
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(243, 156, 18, 0.4);
}

.social-btn.vote-btn-special:hover {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    box-shadow: 0 8px 30px rgba(243, 156, 18, 0.6);
    transform: translateY(-3px);
}

/* Responsive Vote Section */
@media (max-width: 968px) {
    .vote-hero {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .vote-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .btn-vote-large {
        padding: 20px 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .vote-info h3 {
        font-size: 2rem;
    }
    
    .vote-rewards {
        padding: 20px;
    }
    
    .btn-vote-large {
        padding: 18px 30px;
        font-size: 1rem;
    }
    
    .btn-vote-large .vote-icon {
        font-size: 1.5rem;
    }
}


/* ==========================================
   DROPDOWN MENU FÜR REGELWERK
   ========================================== */

.nav-links .dropdown {
    position: relative;
}

.nav-links .dropdown-toggle {
    cursor: pointer;
}

.nav-links .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(196, 30, 58, 0.3);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-top: 10px;
}

.nav-links .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-links .dropdown-menu li {
    list-style: none;
    margin: 0;
}

.nav-links .dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    border-left: 3px solid transparent;
}

.nav-links .dropdown-menu li a:hover {
    background: rgba(196, 30, 58, 0.1);
    border-left-color: var(--primary-color);
    color: #fff;
    padding-left: 25px;
}

/* Mobile Dropdown */
@media (max-width: 768px) {
    .nav-links .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(30, 30, 30, 0.95);
        border: none;
        border-radius: 0;
        margin-top: 5px;
        box-shadow: none;
        display: none;
    }
    
    .nav-links .dropdown:hover .dropdown-menu {
        display: block;
    }
    
    .nav-links .dropdown-menu li a {
        padding-left: 30px;
        font-size: 0.9rem;
    }
    
    .nav-links .dropdown-menu li a:hover {
        padding-left: 35px;
    }
}
