@font-face {
    font-family: BDSans;
    src: url('fonts/BDSans-Regular.otf') format('opentype');
    font-display: swap
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: BDSans, Arial, sans-serif;
    background: #171312;
    color: #f8f4ee
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, .55), rgba(0, 0, 0, .65)), radial-gradient(circle, #4d3b29, #171312)
}

@media (max-width: 520px) {
    .card {
        padding: 30px !important;
    }
}


/* .card {
    padding: 50px 80px;
    border: 1px solid #c8a96a;
    border-radius: 20px;
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(12px);
    text-align: center
} */

.card {
    padding: 50px;
    border: 1px solid #c8a96a;
    border-radius: 20px;
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(12px);
    text-align: center;
    opacity: 0;
    transform: translateY(80px) scale(.92);
    animation: cardReveal 1.4s cubic-bezier(.22, 1, .36, 1) forwards;
    animation-delay: .3s;
    box-shadow: 0 40px 80px rgba(0, 0, 0, .45);
}

.logo {
    color: #c8a96a;
    font-size: 48px;
    letter-spacing: 8px
}

.logo {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp .8s ease forwards;
    animation-delay: .8s;
}

h1 {
    opacity: 0;
    transform: translateY(25px);
    animation: fadeUp .8s ease forwards;
    animation-delay: 1s;
}

p {
    opacity: 0;
    transform: translateY(25px);
    animation: fadeUp .8s ease forwards;
    animation-delay: 1.2s;
}

.countdown {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp .8s ease forwards;
    animation-delay: 1.4s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

small {
    font-size: 14px;
    color: #fff
}

h1 {
    margin: 20px 0
}

input {
    padding: 12px;
    width: 260px
}

button {
    padding: 12px 20px;
    margin-left: 10px;
    background: #c8a96a;
    border: 0
}

.countdown {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.item {
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: .4s;
}

.item:hover {
    transform: translateY(-8px);
    border-color: #c7a96a;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
}

.item span {
    font-size: 64px;
    color: #c7a96a;
}

.item small {
    margin-top: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ddd;
}

@keyframes cardReveal {
    0% {
        opacity: 0;
        transform: translateY(80px) scale(.92);
        filter: blur(8px);
    }
    60% {
        opacity: 1;
        transform: translateY(-8px) scale(1.02);
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}