body {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 25%, #3a4a5c 50%, #2c3e50 75%, #1a252f 100%);
    background-attachment: fixed;
    min-height: 100vh;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #ecf0f1;
    text-align: center;
    padding: 0px 20px;
    box-sizing: border-box;
}

.container {
    padding: 40px;
    margin: 50px auto;
    max-width: 600px;
}

h1 {
    font-size: 48px;
    margin-bottom: 20px;
    margin-top: 0px;
    background: linear-gradient(45deg, #3498db, #2ecc71, #f39c12);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

h2 {
    font-size: 24px;
    margin-bottom: 40px;
}

p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #bdc3c7;
}

.logo {
    max-width: 200px;
    margin: 30px auto 0;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.construction-message {
    font-size: 18px;
    margin-top: 20px;
}

.contact-info {
    margin-top: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info h2 {
    color: #ecf0f1;
    margin-bottom: 25px;
    font-size: 22px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    gap: 10px;
}

.contact-icon {
    font-size: 20px;
}

.contact-link {
    color: #3498db;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #2ecc71;
    text-shadow: 0 0 8px rgba(46, 204, 113, 0.4);
}

.footer {
    position: fixed;
    bottom: 10px;
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: #777;
}