* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(20, 20, 20, 0.8), #0a0a0a);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.pexels.com/photos/3889839/pexels-photo-3889839.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.4;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, 
        rgba(10, 10, 10, 0.9), 
        rgba(30, 30, 30, 0.7), 
        rgba(10, 10, 10, 0.9)
    );
    animation: overlayPulse 8s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
    animation: heroFadeIn 2s ease forwards;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    animation: logoFloat 3s ease-in-out infinite;
}

.skull-icon {
    font-size: 64px;
    margin-right: 16px;
    animation: skullGlow 2s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 20px rgba(220, 38, 38, 0.8));
}

.main-title {
    font-size: clamp(3.5rem, 8vw, 9rem);
    font-weight: 900;
    background: linear-gradient(45deg, #ef4444, #dc2626, #991b1b, #7f1d1d);
    background-size: 300% 300%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(239, 68, 68, 0.5);
    line-height: 1;
    animation: gradientShift 4s ease-in-out infinite, titleGlow 3s ease-in-out infinite;
}

.subtitle {
    font-size: clamp(1.5rem, 4vw, 3rem);
    color: #d1d5db;
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: 0.1em;
    animation: subtitleSlide 2s ease forwards 0.5s;
    opacity: 0;
    transform: translateX(-50px);
}

.description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #9ca3af;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: descriptionFade 2s ease forwards 1s;
    opacity: 0;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin-bottom: 48px;
    animation: buttonsPop 1s ease forwards 1.5s;
    opacity: 0;
    transform: scale(0.8);
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    min-width: 200px;
    justify-content: center;
    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.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: white;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #b91c1c, #7f1d1d);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #1f1f1f, #2d2d2d);
    color: white;
    border: 2px solid #404040;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.btn-secondary:hover {
    border-color: #dc2626;
    background: linear-gradient(135deg, #2d2d2d, #404040);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.2);
}

.btn-large {
    padding: 24px 48px;
    font-size: 20px;
}

.btn-icon {
    font-size: 20px;
    animation: iconBounce 2s ease-in-out infinite;
}

.scroll-indicator {
    animation: scrollBounce 2s infinite;
}

.chevron-down {
    font-size: 32px;
    color: #9ca3af;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chevron-down:hover {
    color: #dc2626;
    transform: scale(1.2);
}

/* Server Info */
.server-info {
    padding: 64px 0;
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
    position: relative;
}

.server-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 100px,
        rgba(220, 38, 38, 0.03) 101px,
        rgba(220, 38, 38, 0.03) 102px
    );
    animation: scanlines 10s linear infinite;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-card {
    background: linear-gradient(135deg, #1f1f1f, #141414);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #333;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: cardSlideUp 1s ease forwards;
    opacity: 0;
    transform: translateY(50px);
}

.stat-card:nth-child(1) { animation-delay: 0.2s; }
.stat-card:nth-child(2) { animation-delay: 0.4s; }
.stat-card:nth-child(3) { animation-delay: 0.6s; }

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #dc2626, transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.stat-card:hover::before {
    transform: translateX(100%);
}

.stat-card:hover {
    border-color: rgba(220, 38, 38, 0.5);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.1);
}

.stat-icon {
    font-size: 48px;
    margin: 0 auto 16px;
    display: block;
    animation: iconFloat 3s ease-in-out infinite;
}

.server-icon { 
    color: #dc2626; 
    animation: serverPulse 2s ease-in-out infinite;
}
.players-icon { 
    color: #6b7280; 
    animation: playersGlow 3s ease-in-out infinite;
}
.uptime-icon { 
    color: #4b5563; 
    animation: uptimeSpin 4s linear infinite;
}

.stat-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #e5e7eb;
}

.server-ip {
    color: #d1d5db;
    font-size: 18px;
    font-family: 'Courier New', monospace;
    background: rgba(220, 38, 38, 0.1);
    padding: 8px 16px;
    border-radius: 6px;
    display: inline-block;
    animation: ipGlow 2s ease-in-out infinite alternate;
}

.player-count {
    font-size: 18px;
}

.current-players {
    color: #9ca3af;
    font-weight: 700;
    font-size: 32px;
    animation: playerCountPulse 1s ease-in-out infinite;
}

.max-players {
    color: #6b7280;
}

.uptime {
    color: #9ca3af;
    font-size: 18px;
    font-weight: 700;
    animation: uptimeFlicker 3s ease-in-out infinite;
}

/* Features */
.features {
    padding: 80px 0;
    background: linear-gradient(180deg, #0f0f0f, #1a1a1a, #0f0f0f);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25% 25%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 75% 75%, rgba(220, 38, 38, 0.05) 0%, transparent 50%);
    animation: backgroundShift 15s ease-in-out infinite;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    background: linear-gradient(45deg, #ef4444, #dc2626, #991b1b);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleWave 3s ease-in-out infinite, gradientShift 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    color: #9ca3af;
    text-align: center;
    margin-bottom: 64px;
    font-size: 20px;
    position: relative;
    z-index: 2;
    animation: subtitleFade 2s ease forwards;
    opacity: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    background: linear-gradient(135deg, #1f1f1f, #141414);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #333;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: featureSlideIn 1s ease forwards;
    opacity: 0;
    transform: translateX(-50px);
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; transform: translateX(50px); }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; transform: translateX(50px); }

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card:hover {
    border-color: rgba(220, 38, 38, 0.5);
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 25px 50px rgba(220, 38, 38, 0.15);
}

.feature-icon {
    font-size: 32px;
    color: #dc2626;
    margin-bottom: 24px;
    transition: all 0.4s ease;
    animation: featureIconFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(220, 38, 38, 0.5));
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(10deg);
    animation-play-state: paused;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    transition: color 0.3s ease;
    color: #e5e7eb;
}

.feature-card:hover h3 {
    color: #f87171;
}

.feature-card p {
    color: #9ca3af;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.feature-card:hover p {
    color: #d1d5db;
}

/* Rules Section */
.rules {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
    position: relative;
}

.rules::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23dc2626" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23dc2626" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: grainMove 20s linear infinite;
}

.rules-header {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
    z-index: 2;
}

.shield-icon {
    font-size: 64px;
    color: #dc2626;
    margin-bottom: 24px;
    animation: shieldSpin 8s linear infinite, shieldGlow 2s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 20px rgba(220, 38, 38, 0.6));
}

.rules-header h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #e5e7eb;
    animation: rulesTitle 2s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.rules-header p {
    color: #9ca3af;
    font-size: 18px;
    animation: rulesSubtitle 2s ease forwards 0.3s;
    opacity: 0;
}

.rules-container {
    background: linear-gradient(135deg, rgba(31, 31, 31, 0.8), rgba(20, 20, 20, 0.8));
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #333;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    animation: containerSlideUp 1s ease forwards 0.5s;
    opacity: 0;
    transform: translateY(50px);
}

.rule-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: rgba(40, 40, 40, 0.3);
    border-radius: 8px;
    margin-bottom: 16px;
    transition: all 0.4s ease;
    animation: ruleItemSlide 0.6s ease forwards;
    opacity: 0;
    transform: translateX(-30px);
}

.rule-item:nth-child(1) { animation-delay: 0.8s; }
.rule-item:nth-child(2) { animation-delay: 0.9s; }
.rule-item:nth-child(3) { animation-delay: 1.0s; }
.rule-item:nth-child(4) { animation-delay: 1.1s; }
.rule-item:nth-child(5) { animation-delay: 1.2s; }
.rule-item:nth-child(6) { animation-delay: 1.3s; }

.rule-item:hover {
    background: rgba(55, 55, 55, 0.5);
    transform: translateX(10px);
    border-left: 3px solid #dc2626;
}

.rule-item:last-child {
    margin-bottom: 0;
}

.rule-number {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
    animation: numberPulse 2s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.4);
}

.rule-item p {
    color: #d1d5db;
    font-size: 18px;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.rule-item:hover p {
    color: #f3f4f6;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(45deg, rgba(20, 20, 20, 0.9), #0a0a0a, rgba(20, 20, 20, 0.9));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
    animation: ctaRotate 20s linear infinite;
}

.cta-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(45deg, #ef4444, #dc2626, #991b1b);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease-in-out infinite, ctaTitleBounce 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.cta-description {
    color: #d1d5db;
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    animation: ctaDescriptionFade 2s ease forwards 0.5s;
    opacity: 0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    padding: 48px 0;
    border-top: 1px solid #333;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #dc2626, transparent);
    animation: footerLine 3s ease-in-out infinite;
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    gap: 24px;
    animation: footerSlideUp 1s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        gap: 0;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    animation: logoHover 4s ease-in-out infinite;
}

.footer-skull {
    font-size: 32px;
    color: #dc2626;
    margin-right: 12px;
    animation: footerSkullRotate 6s linear infinite;
}

.footer-title {
    font-size: 24px;
    font-weight: 700;
    color: #e5e7eb;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-link {
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #dc2626;
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

.footer-link:hover {
    color: #dc2626;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 32px;
    text-align: center;
    animation: footerBottomFade 1s ease forwards 0.5s;
    opacity: 0;
}

.footer-bottom p {
    color: #6b7280;
}

/* Animations */
@keyframes heroFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes skullGlow {
    0% { filter: drop-shadow(0 0 20px rgba(220, 38, 38, 0.8)); }
    100% { filter: drop-shadow(0 0 30px rgba(220, 38, 38, 1)); }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes titleGlow {
    0%, 100% { text-shadow: 0 0 40px rgba(239, 68, 68, 0.5); }
    50% { text-shadow: 0 0 60px rgba(239, 68, 68, 0.8); }
}

@keyframes subtitleSlide {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes descriptionFade {
    to { opacity: 1; }
}

@keyframes buttonsPop {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes iconBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

@keyframes scrollBounce {
    0%, 20%, 53%, 80%, 100% { transform: translate3d(0,0,0); }
    40%, 43% { transform: translate3d(0,-30px,0); }
    70% { transform: translate3d(0,-15px,0); }
    90% { transform: translate3d(0,-4px,0); }
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

@keyframes overlayPulse {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 0.7; }
}

@keyframes scanlines {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes cardSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes serverPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes playersGlow {
    0%, 100% { filter: drop-shadow(0 0 5px rgba(107, 114, 128, 0.5)); }
    50% { filter: drop-shadow(0 0 15px rgba(107, 114, 128, 0.8)); }
}

@keyframes uptimeSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes ipGlow {
    0% { box-shadow: 0 0 5px rgba(220, 38, 38, 0.3); }
    100% { box-shadow: 0 0 15px rgba(220, 38, 38, 0.6); }
}

@keyframes playerCountPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes uptimeFlicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@keyframes backgroundShift {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
}

@keyframes titleWave {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes subtitleFade {
    to { opacity: 1; }
}

@keyframes featureSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes featureIconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-5px) rotate(2deg); }
    75% { transform: translateY(-3px) rotate(-2deg); }
}

@keyframes grainMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100px, -100px); }
}

@keyframes shieldSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes shieldGlow {
    0% { filter: drop-shadow(0 0 20px rgba(220, 38, 38, 0.6)); }
    100% { filter: drop-shadow(0 0 30px rgba(220, 38, 38, 0.9)); }
}

@keyframes rulesTitle {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rulesSubtitle {
    to { opacity: 1; }
}

@keyframes containerSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ruleItemSlide {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes numberPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 15px rgba(220, 38, 38, 0.4); }
    50% { transform: scale(1.1); box-shadow: 0 0 25px rgba(220, 38, 38, 0.6); }
}

@keyframes ctaRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes ctaTitleBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes ctaDescriptionFade {
    to { opacity: 1; }
}

@keyframes footerLine {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes footerSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoHover {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes footerSkullRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes footerBottomFade {
    to { opacity: 1; }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #dc2626, #991b1b);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #b91c1c, #7f1d1d);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-content {
        padding: 0 16px;
    }
    
    .rules-container {
        padding: 24px;
    }
    
    .rule-item {
        flex-direction: column;
        text-align: center;
    }
    
    .rule-number {
        align-self: center;
    }
}

/* Performance optimizations */
.hero-bg,
.hero-overlay,
.features::before,
.rules::before,
.cta::before {
    will-change: transform;
}

.btn,
.stat-card,
.feature-card,
.rule-item {
    will-change: transform;
}