/* Hero Title with Separate Static and Animated Parts */
.hero-title {
    font-size: 3.5rem;
    font-family: 'Press Start 2P', monospace;
    margin-bottom: 30px;
    letter-spacing: 4px;
    font-weight: 400;
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px; 
}

/* Static "WELCOME TO" text */
.welcome-text {
    font-size: 1.8rem;
    color: var(--mc-white);
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 10px rgba(245, 245, 220, 0.3);
    letter-spacing: 3px;
    opacity: 0.9;
    font-weight: 400;
}

/* Animated "ALLIANCEMC" text */
.brand-text {
    font-size: 3.5rem;
    color: var(--mc-accent);
    letter-spacing: 4px;
    font-weight: 400;
    position: relative;
    z-index: 2;
    
    /* Base text shadow */
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(218, 165, 32, 0.6);
    
    /* Add gradient text effect */
    background: linear-gradient(
        45deg,
        var(--mc-accent) 0%,
        #FFD700 25%,
        #FFA500 50%,
        #FFD700 75%,
        var(--mc-accent) 100%
    );
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
    /* Add all the spectacular animations */
    animation: 
        titleGlow 3s ease-in-out infinite alternate,
        titleFloat 4s ease-in-out infinite,
        titlePulse 2s ease-in-out infinite,
        gradientShift 4s ease-in-out infinite;
}

.brand-text::before {
    content: "ALLIANCEMC";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 45%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(255, 255, 255, 0.4) 55%,
        transparent 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shine 3s linear infinite;
    z-index: 1;
}

.brand-text::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(
        ellipse at center,
        rgba(218, 165, 32, 0.2) 0%,
        rgba(218, 165, 32, 0.1) 40%,
        transparent 70%
    );
    border-radius: 50%;
    z-index: -1;
    animation: aura 4s ease-in-out infinite;
}

/* Keyframe Animations */
@keyframes titleGlow {
    0% {
        text-shadow: 
            2px 2px 4px rgba(0, 0, 0, 0.8),
            0 0 20px rgba(218, 165, 32, 0.6),
            0 0 30px rgba(218, 165, 32, 0.4);
        filter: brightness(1);
    }
    50% {
        text-shadow: 
            2px 2px 4px rgba(0, 0, 0, 0.8),
            0 0 40px rgba(218, 165, 32, 0.8),
            0 0 60px rgba(218, 165, 32, 0.6),
            0 0 80px rgba(255, 215, 0, 0.4);
        filter: brightness(1.2);
    }
    100% {
        text-shadow: 
            2px 2px 4px rgba(0, 0, 0, 0.8),
            0 0 50px rgba(218, 165, 32, 1),
            0 0 70px rgba(218, 165, 32, 0.8),
            0 0 100px rgba(255, 215, 0, 0.6);
        filter: brightness(1.3);
    }
}

@keyframes titleFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    25% {
        transform: translateY(-8px) scale(1.02);
    }
    50% {
        transform: translateY(-12px) scale(1.03);
    }
    75% {
        transform: translateY(-8px) scale(1.02);
    }
}

@keyframes titlePulse {
    0%, 100% {
        text-shadow: 
            2px 2px 4px rgba(0, 0, 0, 0.8),
            0 0 20px rgba(218, 165, 32, 0.6);
    }
    50% {
        text-shadow: 
            2px 2px 4px rgba(0, 0, 0, 0.8),
            0 0 30px rgba(218, 165, 32, 0.8),
            0 0 40px rgba(218, 165, 32, 0.4);
    }
}

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

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

@keyframes aura {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

/* Enhanced Navigation Title */
.nav-title {
    color: var(--mc-accent);
    font-family: 'Press Start 2P', monospace;
    font-size: 1.3rem;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(218, 165, 32, 0.5);
    letter-spacing: 2px;
    font-weight: 400;
    position: relative;
    
    /* Add subtle animation to nav title too */
    animation: navGlow 4s ease-in-out infinite alternate;
}

@keyframes navGlow {
    0% {
        text-shadow: 
            2px 2px 4px rgba(0, 0, 0, 0.8),
            0 0 15px rgba(218, 165, 32, 0.5);
    }
    100% {
        text-shadow: 
            2px 2px 4px rgba(0, 0, 0, 0.8),
            0 0 25px rgba(218, 165, 32, 0.7),
            0 0 35px rgba(218, 165, 32, 0.3);
    }
}

/* Add sparkle effects */
.hero-content::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 50px;
    width: 4px;
    height: 4px;
    background: var(--mc-accent);
    border-radius: 50%;
    box-shadow: 
        0 0 10px var(--mc-accent),
        200px 100px 0 var(--mc-bright),
        0 0 10px var(--mc-bright),
        400px 50px 0 var(--mc-accent),
        0 0 10px var(--mc-accent),
        600px 200px 0 rgba(255, 215, 0, 0.8),
        0 0 10px rgba(255, 215, 0, 0.8);
    animation: sparkle 6s linear infinite;
}

@keyframes sparkle {
    0%, 20%, 40%, 60%, 80%, 100% {
        opacity: 0;
    }
    10%, 30%, 50%, 70%, 90% {
        opacity: 1;
    }
}

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

:root {
    /* Minecraft-inspired Professional Color Palette */
    --mc-primary: #2D5A27;        /* Forest Green */
    --mc-secondary: #8B4513;      /* Saddle Brown */
    --mc-accent: #DAA520;         /* Goldenrod */
    --mc-bright: #32CD32;         /* Lime Green */
    --mc-dark: #1a1a1a;          /* Almost Black */
    --mc-gray: #404040;           /* Dark Gray */
    --mc-light-gray: #808080;     /* Gray */
    --mc-blue: #4169E1;           /* Royal Blue */
    --mc-white: #F5F5DC;          /* Beige White */
    --mc-red: #DC143C;            /* Crimson */
    
    /* Professional gradients */
    --gradient-bg: linear-gradient(135deg, #87CEEB 0%, #6BB6FF 50%, #4682B4 100%);
    --gradient-grass: linear-gradient(to bottom, #7BC142 0%, #5A9216 50%, #4A7C59 100%);
    --gradient-stone: linear-gradient(135deg, #696969 0%, #505050 50%, #2F2F2F 100%);
    
    /* Shadows and effects */
    --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.25);
    --shadow-strong: 0 8px 32px rgba(0, 0, 0, 0.4);
    --glow-green: 0 0 20px rgba(50, 205, 50, 0.3);
    --glow-gold: 0 0 20px rgba(218, 165, 32, 0.3);
}

body {
    font-family: 'Inter', 'Press Start 2P', monospace;
    background: var(--gradient-bg);
    overflow-x: hidden;
    position: relative;
    color: var(--mc-white);
    line-height: 1.6;
}

/* Modern Minecraft-style background */
.minecraft-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(135, 206, 235, 0.8) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(107, 182, 255, 0.6) 0%, transparent 50%),
        linear-gradient(135deg, #87CEEB 0%, #6BB6FF 50%, #4682B4 100%);
    z-index: -2;
}

.grass-pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: var(--gradient-grass);
    opacity: 0.7;
    
    /* Add subtle texture overlay */
    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            repeating-linear-gradient(
                90deg,
                rgba(255,255,255,0.1) 0px,
                rgba(255,255,255,0.1) 2px,
                transparent 2px,
                transparent 32px
            ),
            repeating-linear-gradient(
                0deg,
                rgba(255,255,255,0.05) 0px,
                rgba(255,255,255,0.05) 2px,
                transparent 2px,
                transparent 16px
            );
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

/* Professional Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 3px solid var(--mc-accent);
    z-index: 1000;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: translateY(-2px);
}

.nav-logo-img {
    width: 48px;
    height: 48px;
    image-rendering: pixelated;
    border: 3px solid var(--mc-accent);
    background: var(--gradient-stone);
    padding: 6px;
    border-radius: 4px;
    box-shadow: var(--shadow-soft), var(--glow-gold);
    transition: all 0.3s ease;
}

.nav-title {
    color: var(--mc-accent);
    font-family: 'Press Start 2P', monospace;
    font-size: 1.3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
    font-weight: 400;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: var(--mc-white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    border-radius: 6px;
    position: relative;
}

.nav-link:hover {
    color: var(--mc-accent);
    background: rgba(218, 165, 32, 0.1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.discord-nav {
    background: linear-gradient(135deg, #5865F2, #4752C4);
    padding: 12px 20px;
    border: 2px solid #4752C4;
    color: #FFFFFF !important;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: var(--shadow-soft);
    font-family: 'Press Start 2P', monospace;
    font-size: 0.7rem;
}

.discord-nav:hover {
    background: linear-gradient(135deg, #7289DA, #5865F2);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    color: #FFFFFF !important;
}

/* Professional Hero Section */
.hero {
    padding: 140px 0 100px;
    text-align: center;
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    background: rgba(26, 26, 26, 0.92);
    backdrop-filter: blur(16px);
    border: 4px solid var(--mc-accent);
    border-radius: 16px;
    padding: 80px 60px;
    box-shadow: 
        var(--shadow-strong),
        var(--glow-gold),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    margin: 0 auto;
    max-width: 900px;
    position: relative;
    overflow: hidden;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(218, 165, 32, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(50, 205, 50, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-logo {
    width: 140px;
    height: 140px;
    image-rendering: pixelated;
    margin-bottom: 40px;
    border: 4px solid var(--mc-accent);
    background: var(--gradient-stone);
    padding: 12px;
    border-radius: 12px;
    box-shadow: 
        var(--shadow-medium),
        var(--glow-gold),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.hero-logo:hover {
    transform: scale(1.05) rotateY(10deg);
    box-shadow: 
        var(--shadow-strong),
        var(--glow-gold),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}


.hero-subtitle {
    font-size: 1.4rem;
    font-family: 'Press Start 2P', monospace;
    color: var(--mc-bright);
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(50, 205, 50, 0.4);
    margin-bottom: 30px;
    letter-spacing: 1px;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--mc-white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    margin-bottom: 50px;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.stat-block {
    text-align: center;
    background: rgba(64, 64, 64, 0.9);
    backdrop-filter: blur(8px);
    border: 2px solid var(--mc-accent);
    border-radius: 12px;
    padding: 24px 20px;
    min-width: 140px;
    box-shadow: 
        var(--shadow-medium),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-block:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        var(--shadow-strong),
        var(--glow-gold),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.stat-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(218, 165, 32, 0.2), transparent);
    transition: left 0.5s;
}

.stat-block:hover::before {
    left: 100%;
}

.stat-number {
    font-size: 2.2rem;
    font-family: 'Press Start 2P', monospace;
    color: var(--mc-accent);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 12px;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--mc-white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.play-button, .discord-button {
    padding: 18px 36px;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    border-radius: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    min-width: 180px;
}

.play-button::before, .discord-button::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;
}

.play-button:hover::before, .discord-button:hover::before {
    left: 100%;
}

.play-button {
    background: linear-gradient(135deg, var(--mc-primary), #228B22);
    color: #FFFFFF;
    border: 3px solid var(--mc-primary);
    box-shadow: 
        var(--shadow-medium),
        var(--glow-green),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.play-button:hover {
    transform: translateY(-4px) scale(1.05);
    background: linear-gradient(135deg, var(--mc-bright), var(--mc-primary));
    box-shadow: 
        var(--shadow-strong),
        var(--glow-green),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.discord-button {
    background: linear-gradient(135deg, #5865F2, #4752C4);
    color: #FFFFFF;
    border: 3px solid #4752C4;
    box-shadow: 
        var(--shadow-medium),
        0 0 20px rgba(88, 101, 242, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.discord-button:hover {
    transform: translateY(-4px) scale(1.05);
    background: linear-gradient(135deg, #7289DA, #5865F2);
    box-shadow: 
        var(--shadow-strong),
        0 0 30px rgba(88, 101, 242, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-decoration: none;
    color: #FFFFFF;
}

/* Professional Servers Section */
.servers {
    padding: 120px 0;
    background: rgba(0, 0, 0, 0.15);
    position: relative;
}

.servers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(218, 165, 32, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(50, 205, 50, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    font-size: 2.5rem;
    font-family: 'Press Start 2P', monospace;
    color: var(--mc-accent);
    text-align: center;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(218, 165, 32, 0.4);
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--mc-white);
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    margin-bottom: 80px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.server-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.server-card {
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(12px);
    border: 3px solid var(--mc-light-gray);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 
        var(--shadow-medium),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--mc-accent);
}

.server-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at center, rgba(218, 165, 32, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.server-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--mc-accent);
    box-shadow: 
        var(--shadow-strong),
        var(--glow-gold),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

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

.server-icon {
    font-size: 4rem;
    margin-bottom: 24px;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.8));
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.server-card:hover .server-icon {
    transform: scale(1.1);
    filter: 
        drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.8))
        drop-shadow(0 0 20px rgba(218, 165, 32, 0.5));
}

.server-name {
    font-size: 1.4rem;
    font-family: 'Press Start 2P', monospace;
    color: var(--mc-accent);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 16px;
    letter-spacing: 1px;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

.server-description {
    font-size: 0.95rem;
    color: var(--mc-white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    line-height: 1.6;
    margin-bottom: 24px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.server-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.feature {
    background: rgba(64, 64, 64, 0.8);
    backdrop-filter: blur(4px);
    border: 2px solid var(--mc-bright);
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 0.7rem;
    color: var(--mc-bright);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(50, 205, 50, 0.2);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft), var(--glow-green);
}

.server-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.85rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.status-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.server-status.online .status-dot {
    background: var(--mc-bright);
    box-shadow: 
        0 0 12px rgba(50, 205, 50, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 
            0 0 12px rgba(50, 205, 50, 0.6),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 
            0 0 20px rgba(50, 205, 50, 0.8),
            0 0 30px rgba(50, 205, 50, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

.server-status.online .status-text {
    color: var(--mc-bright);
}

.server-status.offline .status-dot {
    background: var(--mc-red);
    box-shadow: 
        0 0 12px rgba(220, 20, 60, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.server-status.offline .status-text {
    color: var(--mc-red);
}

/* About Section */
.about {
    padding: 80px 0;
    background: rgba(0,0,0,0.2);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text {
    background: #2C2C2C;
    border: 6px solid #555;
    padding: 40px;
    box-shadow: 
        inset -3px -3px 0px #1A1A1A,
        inset 3px 3px 0px #444,
        6px 6px 0px #000;
}

.about-subtitle {
    font-size: 1rem;
    color: #FFD700;
    text-shadow: 2px 2px 0px #000;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.about-text p {
    font-size: 0.7rem;
    color: #FFFFFF;
    text-shadow: 1px 1px 0px #000;
    line-height: 1.6;
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
    margin-left: 0;
}

.feature-list li {
    font-size: 0.7rem;
    color: #FFFFFF;
    text-shadow: 1px 1px 0px #000;
    margin-bottom: 15px;
    padding-left: 0;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.big-stat {
    background: #2C2C2C;
    border: 6px solid #555;
    padding: 30px;
    text-align: center;
    box-shadow: 
        inset -3px -3px 0px #1A1A1A,
        inset 3px 3px 0px #444,
        6px 6px 0px #000;
}

.big-stat-number {
    font-size: 2rem;
    color: #00FF00;
    text-shadow: 2px 2px 0px #000;
    margin-bottom: 15px;
}

.big-stat-label {
    font-size: 0.7rem;
    color: #FFFFFF;
    text-shadow: 1px 1px 0px #000;
    letter-spacing: 1px;
}

/* Footer */
.footer {
    background: #1A1A1A;
    border-top: 4px solid #555;
    padding: 60px 0 30px;
    color: #FFFFFF;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    image-rendering: pixelated;
    border: 3px solid #555;
    background: #444;
    padding: 5px;
}

.footer-title {
    font-size: 1.8rem;
    font-family: 'Press Start 2P', monospace;
    color: var(--mc-accent);
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(218, 165, 32, 0.6);
    letter-spacing: 2px;
    font-weight: 400;
    position: relative;
    
    /* Subtle glow animation for footer */
    animation: footerGlow 5s ease-in-out infinite alternate;
}

@keyframes footerGlow {
    0% {
        text-shadow: 
            2px 2px 4px rgba(0, 0, 0, 0.8),
            0 0 15px rgba(218, 165, 32, 0.6);
    }
    100% {
        text-shadow: 
            2px 2px 4px rgba(0, 0, 0, 0.8),
            0 0 25px rgba(218, 165, 32, 0.8),
            0 0 35px rgba(218, 165, 32, 0.4);
    }
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-heading {
    font-size: 0.8rem;
    color: #FFD700;
    text-shadow: 1px 1px 0px #000;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-link {
    display: block;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.6rem;
    text-shadow: 1px 1px 0px #000;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #FFD700;
}

.server-ip {
    font-size: 0.8rem;
    color: #00FF00;
    text-shadow: 1px 1px 0px #000;
    margin-bottom: 10px;
    cursor: pointer;
}

.server-version {
    font-size: 0.6rem;
    color: #FFFFFF;
    text-shadow: 1px 1px 0px #000;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid #555;
}

.footer-bottom p {
    font-size: 0.5rem;
    color: #888;
    text-shadow: 1px 1px 0px #000;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
}

.modal-content {
    background: #2C2C2C;
    border: 8px solid #555;
    margin: 15% auto;
    padding: 0;
    width: 400px;
    box-shadow: 
        inset -4px -4px 0px #1A1A1A,
        inset 4px 4px 0px #444,
        12px 12px 0px #000;
}

.modal-header {
    background: #444;
    border-bottom: 4px solid #555;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    color: #FFD700;
    text-shadow: 2px 2px 0px #000;
    font-size: 1rem;
}

.close {
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    text-shadow: 1px 1px 0px #000;
}

.close:hover {
    color: #FF0000;
}

.modal-body {
    padding: 30px;
}

.modal-body p {
    color: #FFFFFF;
    text-shadow: 1px 1px 0px #000;
    font-size: 0.7rem;
    margin-bottom: 20px;
}

.ip-display {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.ip-display input {
    flex: 1;
    padding: 15px;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.7rem;
    background: #444;
    border: 3px solid #666;
    color: #00FF00;
    text-shadow: 1px 1px 0px #000;
}

.copy-btn {
    padding: 15px 20px;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.6rem;
    background: #00AA00;
    color: #FFFFFF;
    border: 3px solid #008800;
    cursor: pointer;
    text-shadow: 1px 1px 0px #000;
}

.copy-btn:hover {
    background: #00CC00;
}

.ip-info {
    font-size: 0.6rem;
    color: #888;
    text-align: center;
}

/* Pixelated image rendering */
img {
    image-rendering: -moz-crisp-edges;
    image-rendering: -webkit-crisp-edges;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}

/* Logo fallback */
.nav-logo-img, .hero-logo, .footer-logo-img {
    background: #654321;
    border-color: #8B4513;
    position: relative;
}

.nav-logo-img[src="alliancemc_logo.png"]:not([src*="http"])::after,
.hero-logo[src="alliancemc_logo.png"]:not([src*="http"])::after,
.footer-logo-img[src="alliancemc_logo.png"]:not([src*="http"])::after {
    content: '⛏️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFFFFF;
    text-shadow: 2px 2px 0px #000;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .hero {
        padding: 140px 0 60px;
    }
    
    .hero-content {
        padding: 40px 20px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-block {
        min-width: 100px;
        padding: 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .play-button, .discord-button {
        padding: 15px 25px;
        font-size: 0.8rem;
    }
    
    .server-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text {
        padding: 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .modal-content {
        width: 90%;
        margin: 10% auto;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .server-features {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 15px;
    }
}
