 /* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    text-align: center;
    padding: 3rem 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    max-width: 600px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Main content */
.main-content {
    text-align: center;
    padding: 2rem 0;
}

.contact-info {
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(138, 43, 226, 0.3);
    border: 1px solid rgba(138, 43, 226, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(138, 43, 226, 0.1) 50%, transparent 70%);
    pointer-events: none;
}

.contact-info h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #e6e6fa;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
}

.contact-info p {
    margin-bottom: 1.5rem;
    color: #b8b8b8;
}

.email-link {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #8a2be2 0%, #9370db 100%);
    border: 1px solid rgba(138, 43, 226, 0.5);
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
    position: relative;
    overflow: hidden;
}

.email-link::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;
}

.email-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.5);
    border-color: rgba(138, 43, 226, 0.8);
}

.email-link:hover::before {
    left: 100%;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(138, 43, 226, 0.2);
    margin-top: auto;
}

.footer p {
    color: #808080;
    font-size: 0.9rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .header {
        padding: 2rem 0;
    }
    
    .logo {
        max-width: 400px;
    }
    
    .contact-info {
        padding: 1.5rem;
        margin: 0 1rem;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 300px;
    }
    
    .contact-info {
        padding: 1rem;
    }
    
    .email-link {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
}