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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: radial-gradient(ellipse at top, #1a1025 0%, #0a0a0a 50%, #0a0a0a 100%);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 600px;
    width: 100%;
    padding: 24px 24px;
    text-align: center;
}

header {
    margin-bottom: 20px;
}

.logo {
    max-width: 200px;
    width: 100%;
    height: auto;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 0 40px rgba(255, 100, 50, 0.15);
}

.tagline {
    font-size: 1rem;
    font-weight: 300;
    color: #b0b0b0;
    line-height: 1.5;
    margin-bottom: 24px;
}

.hosts {
    margin-bottom: 24px;
}

.hosts h2 {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #666;
    margin-bottom: 8px;
}

.hosts p {
    font-size: 1.25rem;
    font-weight: 400;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.link-button:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
    transform: translateY(-2px);
}

.link-button svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.contact {
    margin-bottom: 24px;
}

.contact h2 {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #666;
    margin-bottom: 12px;
}

.email-link {
    color: #ff6b35;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.email-link:hover {
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

footer {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer p {
    font-size: 0.75rem;
    color: #444;
}

@media (max-width: 480px) {
    .container {
        padding: 20px 16px;
    }

    .logo {
        max-width: 160px;
        padding: 10px;
        border-radius: 16px;
    }

    .tagline {
        font-size: 0.9rem;
    }

    .link-button {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}
