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

:root {
    --charcoal: #2C2C2C;
    --rust: #D35400;
    --cream: #F5F5DC;
    --steel: #4A4A4A;
}

body {
    font-family: 'Roboto', sans-serif;
    background: var(--charcoal);
    color: var(--cream);
    min-height: 100vh;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        linear-gradient(180deg, rgba(44,44,44,0.9) 0%, rgba(44,44,44,0.7) 50%, rgba(44,44,44,0.95) 100%),
        url('../assets/images/hero-banner.png') center/cover no-repeat;
    text-align: center;
    padding: 2rem;
}

.content {
    max-width: 600px;
}

.logo {
    width: 280px;
    max-width: 80%;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.6));
}

h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3rem, 10vw, 5rem);
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--cream);
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    font-weight: 400;
    letter-spacing: 0.4em;
    color: var(--rust);
    margin-bottom: 2rem;
}

.server-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0,0,0,0.4);
    border-radius: 8px;
    border-left: 3px solid var(--rust);
}

.platform {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--rust);
    font-weight: 500;
}

.server-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cream);
}

.track {
    font-size: 0.9rem;
    color: #999;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.btn-primary {
    background: #5865F2;
    color: white;
}

.btn-primary:hover {
    background: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.4);
}

.icon {
    width: 20px;
    height: 20px;
}

@media (max-width: 480px) {
    .server-info {
        padding: 1rem;
    }
    
    .server-name {
        font-size: 1.25rem;
    }
}
