    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body,
    html {
        width: 100%;
        height: 100%;
        font-family: 'Montserrat', sans-serif;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
        overflow: hidden;
        filter: brightness(0.9);
        background: url('../img/page/hero.jpg') no-repeat center center/cover;
    }

    .overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1;
    }

    .container {
        position: relative;
        z-index: 2;
        text-align: center;
        padding: 50px 20px;
    }

    .logo {
        max-width: 500px;
        margin-bottom: 30px;
    }

    h1 {
        font-size: 3rem;
        margin-bottom: 20px;
        letter-spacing: 1px;
    }

    h3 {
        width: 400px;
        margin: 0 auto;
        margin-top: 21px;
        margin-bottom: 21px;
    }

    p {
        width: 500px;
        font-size: 1.2rem;
        margin-bottom: 14px;
        margin: 0 auto;
        line-height: 1.6;
    }

    .countdown {
        display: flex;
        justify-content: center;
        gap: 25px;
        margin-top: 30px;
    }

    .countdown div {
        background: rgba(255, 255, 255, 0.2);
        padding: 15px 20px;
        border-radius: 12px;
        min-width: 70px;
        font-weight: bold;
    }

    .countdown div span {
        display: block;
        font-size: 1.8rem;
    }

    .countdown div small {
        display: block;
        font-size: 0.8rem;
        margin-top: 5px;
    }

    @keyframes fadeIn {
        0% {
            opacity: 0;
            transform: translateY(-20px);
        }

        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .container {
        animation: fadeIn 1.5s ease;
    }

    @media (max-width: 480px) {
        h1 {
            font-size: 1.7rem;
        }

        p {
            width: 350px;
            font-size: 1.1rem;
            margin-bottom: 11px;
        }

        .countdown div {
            min-width: 60px;
            padding: 10px 15px;
        }

        .countdown div span {
            font-size: 1.4rem;
        }

        .countdown div small {
            font-size: 0.7rem;
        }
    }