@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;600;700;800&display=swap');

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

body {
    background-color: #000;
    background-image: radial-gradient(circle at center, #111 0%, #000 70%);
    color: #fff;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-x: hidden;
}

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

.options-title {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    padding-bottom: 40px;
    animation: fadeInDown 0.8s ease-out;
}

.options-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    perspective: 1000px;
}

.option-card {
    background-color: transparent;
    padding: 0;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 280px;
    max-width: 530px;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    position: relative;
}

.option-card:nth-child(2) {
    animation-delay: 0.15s;
}

.option-card:nth-child(3) {
    animation-delay: 0.3s;
}

.option-card:nth-child(4) {
    animation-delay: 0.45s;
}

.option-card:hover img {
    box-shadow: 0 25px 60px rgba(159, 159, 159, 0.5);
    transform: translateY(-15px) scale(1.02);
}

.option-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 40px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.options-footer {
    margin-top: 60px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    padding: 0 20px;
}

.footer-note {
    font-size: 0.85rem;
    color: #888;
    margin: 0 auto;
    line-height: 1.5;
    font-weight: 400;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .options-title {
        font-size: 1.7rem;
        margin-bottom: 5px;
    }

    .option-card {
        min-width: 280px;
        max-width: 400px;
    }
}