* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.logo-wrapper {
    margin-bottom: 40px;
}

.logo {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.icon {
    font-size: 80px;
    margin-bottom: 30px;
    display: block;
}

h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.subtitle {
    font-size: 18px;
    color: #b0b0b0;
    margin-bottom: 40px;
    line-height: 1.6;
}

.divider {
    width: 60px;
    height: 2px;
    background-color: #4a9fff;
    margin: 30px auto 30px;
}

.description {
    font-size: 16px;
    color: #d0d0d0;
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(74, 159, 255, 0.2);
    border-radius: 8px;
    padding: 25px;
    margin-top: 40px;
}

.contact-label {
    font-size: 14px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: block;
}

.contact-link {
    color: #4a9fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    color: #6bb3ff;
    text-decoration: underline;
}

.timer {
    font-size: 14px;
    color: #999;
    margin-top: 20px;
    font-weight: 500;
}

.timer-value {
    color: #4a9fff;
    font-weight: 700;
    display: inline-block;
}

@media (max-width: 600px) {
    h1 {
        font-size: 36px;
    }

    .icon {
        font-size: 60px;
        margin-bottom: 20px;
    }

    .subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .description {
        font-size: 15px;
    }

    .contact {
        padding: 20px;
    }

    .logo {
        max-width: 150px;
    }
}
