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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.container {
    max-width: 800px;
    width: 100%;
    text-align: center;
    animation: fadeIn 1s ease-in;
}

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

.logo-container {
    margin-bottom: 3rem;
}

.main-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(255, 255, 255, 0.1));
}

.content {
    margin-bottom: 4rem;
}

.tagline {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.contact {
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-label {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.contact-info {
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-info a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.contact-info a:hover {
    color: #a0a0ff;
}

.email-link {
    color: #4da6ff !important;
    font-size: 1rem;
    display: inline-block;
    margin: 0.5rem 0;
}

.email-link:hover {
    color: #6bb8ff !important;
    text-decoration: underline;
}

.role {
    color: #999;
    font-size: 0.95rem;
    font-weight: 300;
}

@media (max-width: 768px) {
    .tagline {
        font-size: 1.5rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .main-logo {
        max-width: 300px;
    }
}

