/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Main page styling - Dark elegant theme */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    line-height: 1.6;
}

/* Container for the main content */
.container {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    max-width: 480px;
    width: 100%;
    backdrop-filter: blur(10px);
    text-align: center;
}

/* Header */
.header {
    margin-bottom: 32px;
}

/* Page title */
h1 {
    color: #ffffff;
    font-size: 2.2em;
    font-weight: 300;
    letter-spacing: -0.5px;
}

/* Contact message styling */
.contact-message {
    padding: 40px 20px;
}

.contact-message .icon {
    font-size: 4em;
    margin-bottom: 20px;
    opacity: 0.8;
}

.contact-message h2 {
    color: #ffffff;
    font-size: 1.5em;
    font-weight: 400;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.contact-message p {
    color: #cccccc;
    font-size: 1em;
    margin-bottom: 12px;
    line-height: 1.5;
}

.contact-message .subtitle {
    color: #888;
    font-size: 0.9em;
    font-style: italic;
}

/* Subtle animation */
.container {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Responsive design */
@media (max-width: 480px) {
    .container {
        padding: 30px 20px;
        margin: 10px;
    }
    
    h1 {
        font-size: 1.8em;
    }
    
    .contact-message h2 {
        font-size: 1.3em;
    }
    
    .contact-message .icon {
        font-size: 3em;
    }
}