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

body {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #4a001f, #800020, #b03060);
    font-family: Arial, Helvetica, sans-serif;
    padding: 20px;
}

.construction-message {
    width: 100%;
    max-width: 1000px;
    text-align: center;
}

.construction-message h1 {
    font-size: clamp(36px, 6vw, 60px);
    line-height: 1.15;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
}

.construction-message p {
    font-size: clamp(18px, 3vw, 24px);
    line-height: 1.4;
    font-weight: 400;
    color: #ffffff;
}

.construction-message a {
    display: inline-block;
    margin-top: 30px;
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    color: #ffd700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.construction-message a:hover {
    color: #ffffff;
    transform: scale(1.08);
    text-decoration: underline;
}

/* Smartphones */
@media (max-width: 600px) {
    body {
        padding: 25px 15px;
    }

    .construction-message h1 {
        margin-bottom: 12px;
    }

    .construction-message a {
        margin-top: 25px;
    }
}

/* Very small phones */
@media (max-width: 380px) {
    .construction-message h1 {
        font-size: 32px;
    }

    .construction-message p {
        font-size: 17px;
    }

    .construction-message a {
        font-size: 23px;
    }
}