* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    overflow-x: hidden;
}

.container {
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    width: 100%;
}

.logo-container {
    margin-bottom: 3rem;
    animation: fadeInDown 1s ease-out;
}

.logo {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

.content {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.description {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: #ffffff;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.email-link {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    border: 2px solid transparent;
    letter-spacing: 0.5px;
}

.email-link:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.6);
    border-color: #ffffff;
}

.email-link:active {
    transform: translateY(0);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .description {
        font-size: 1.2rem;
    }
    
    .email-link {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
    
    .logo {
        max-height: 250px;
    }
}

@media (max-width: 480px) {
    .description {
        font-size: 1rem;
    }
    
    .email-link {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .logo {
        max-height: 200px;
    }
    
    .container {
        padding: 1rem;
    }
}
