* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #f5f5dc;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
}

.logo {
    max-width: 280px;
    max-height: 280px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: #f5f5dc;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

h2 {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    font-style: italic;
    color: #ede8d0;
}

.coming-soon {
    font-size: 2rem;
    margin: 2.5rem 0;
    font-weight: bold;
    padding: 1rem 2rem;
    border-top: 2px solid #f5f5dc;
    border-bottom: 2px solid #f5f5dc;
    display: inline-block;
    color: #f5f5dc;
}

.contact {
    margin-top: 3rem;
}

.contact p {
    font-size: 1.2rem;
    margin: 1rem 0;
    color: #f5f5dc;
}

.contact a {
    color: #f5f5dc;
    text-decoration: none;
    border-bottom: 2px solid #f5f5dc;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact a:hover {
    opacity: 0.8;
    border-bottom-color: #ffffff;
}

/* Mobile responsive */
@media (max-width: 600px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.1rem;
    }
    
    .logo {
        max-width: 200px;
        max-height: 200px;
    }
    
    .coming-soon {
        font-size: 1.5rem;
        padding: 0.75rem 1.5rem;
    }
    
    .contact p {
        font-size: 1rem;
    }
}
