/* Extracted from resources/views/layouts/main.blade.php */
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500&family=Jost:wght@300;400;500&family=Monsieur+La+Doulaise&display=swap");

.circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
}

.bronze {
    background-color: #cd7f32;
}

.silver {
    background-color: #c0c0c0;
}

.gold {
    background-color: #ffd700;
}

.active {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.progress-line {
    position: absolute;
    top: 20px;
    left: 15%;
    width: 70%;
    height: 4px;
    background: linear-gradient(to right, #cd7f32 50%, #ddd 50%);
    z-index: -1;
}

.hero-modal-content {
    background-image: url('your-image.jpg');
    background-size: cover;
    background-position: center;
    height: 65vh;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    text-align: center;
}

.hero-overlay .btn {
    width: 100%;
    font-size: 1.4rem;
    padding: 12px;
    border-radius: 22px;
    background-color: #ffffff;
    color: #151515;
    font-weight: 650;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.modal-content {
    border-radius: 16px;
    padding: 1.5rem;
}

.question label {
    font-size: 1.1rem;
    font-weight: 600;
}

.selectable-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 1rem;
}

.selectable-option {
    background: #f1f1f1;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.selectable-option:hover {
    background: #e0e0e0;
}

.selectable-option.selected {
    background: #3a3a3a;
    border-color: #978661;
    color: #fff;
}

.btn {
    border-radius: 50px;
    padding: 12px 24px;
    color: #978661;
}

@media (max-width: 576px) {
    .modal-dialog {
        margin: 1rem;
    }

    .hero-modal-content {
        height: 55vh;
    }

    .hero-overlay {
        width: 90%;
    }
}

.btn-secondary {
    color: white !important;
}

@media (max-width: 992px) {
    :root {
        --color-gold: #cbb494;
        --color-gold-muted: #a39075;
        --color-text-main: #ffffff;
        --color-bg-dark: #0a0c0a;
        --font-serif: "Cinzel", serif;
        --font-sans: "Jost", sans-serif;
        --font-script: "Monsieur La Doulaise", cursive;
    }

    #header_navbar {
        display:none !important;
        opacity: 0 !important;
    }
    #wrapper{
        padding-top:100px;
    }

    .mobile-header-shell {
        display: block;
    }

    .mobile-header-shell .top-bar-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 5;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.85) 45%, rgba(0, 0, 0, 0) 100%);
        pointer-events: none;
    }

    .mobile-header-shell .news-ticker {
        color: var(--color-gold-muted);
        font-size: 11px;
        letter-spacing: 1px;
        padding: 8px 0 4px;
        width: 100%;
        overflow: hidden;
        white-space: nowrap;
        pointer-events: auto;
    }

    .mobile-header-shell .ticker-text {
        display: inline-block;
        padding-left: 100%;
        animation: ticker-scroll 18s linear infinite;
    }

    .mobile-header-shell .mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 24px 35px;
    }

    .mobile-header-shell .logo,
    .mobile-header-shell .menu-toggle-btn {
        pointer-events: auto;
    }

    .mobile-header-shell .logo {
        display: inline-flex;
        align-items: center;
        color: var(--color-gold);
        text-decoration: none;
    }

    .mobile-header-shell .mobile-logo-svg {
        display: block;
        height: auto;
        filter: brightness(0) saturate(100%) invert(73%) sepia(19%) saturate(323%) hue-rotate(352deg) brightness(93%) contrast(88%);
    }

    .mobile-header-shell .menu-toggle-btn {
        background: none;
        border: none;
        color: var(--color-gold);
        cursor: pointer;
        position: relative;
        width: 34px;
        height: 34px;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1070;
    }

    .mobile-header-shell .menu-toggle-btn svg {
        position: absolute;
        width: 32px;
        height: 32px;
        transition: opacity 0.3s ease, transform 0.3s ease;
        pointer-events: none;
    }

    .mobile-header-shell .icon-close {
        opacity: 0;
        transform: scale(0.5) rotate(-90deg);
    }

    .mobile-header-shell .icon-burger {
        opacity: 1;
        transform: scale(1) rotate(0);
    }

    body.mobile-menu-open .mobile-header-shell .icon-burger {
        opacity: 0;
        transform: scale(0.5) rotate(90deg);
    }
    .mobile-menu-open{
        overflow: hidden;
        height: 100vh;
        overscroll-behavior: none;
    }

    body.mobile-menu-open .mobile-header-shell .icon-close {
        opacity: 1;
        transform: scale(1) rotate(0);
        color: var(--color-gold-muted);
    }

    .mobile-header-shell .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.75);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        z-index: 4;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
    }

    body.mobile-menu-open .mobile-header-shell .nav-overlay {
        opacity: 1;
        pointer-events: all;
        visibility: visible;
    }

    .mobile-header-shell .nav-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0 40px;
        transform: translateY(-40px);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    body.mobile-menu-open .mobile-header-shell .nav-content {
        transform: translateY(-100px) !important;
    }

    .mobile-header-shell .nav-links {
        list-style: none;
        text-align: center;
        margin-bottom: 20px;
    }

    .mobile-header-shell .nav-links li {
        margin-bottom: 25px;
    }

    .mobile-header-shell .nav-links a {
        text-decoration: none;
        color: var(--color-gold);
        font-family: var(--font-sans);
        font-size: 18px;
        font-weight: 400;
        letter-spacing: 1.5px;
        transition: opacity 0.2s ease;
    }

    .mobile-header-shell .nav-links a:hover {
        opacity: 0.7;
    }

    .mobile-header-shell .nav-user-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 300px;
    }

    .mobile-header-shell .user-points {
        color: var(--color-text-main);
        font-size: 16px;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }

    .mobile-header-shell .btn-profile {
        width: 100%;
        background-color: #ffffff;
        border: none;
        border-radius: 50px;
        padding: 14px 24px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        cursor: pointer;
        transition: transform 0.2s ease;
        text-decoration: none;
    }

    .mobile-header-shell .btn-profile:active {
        transform: scale(0.96);
    }

    .mobile-header-shell .profile-text {
        font-family: var(--font-sans);
        font-size: 16px;
        color: var(--color-gold-muted);
        letter-spacing: 1px;
    }

    .mobile-header-shell .profile-icon {
        position: absolute;
        right: 20px;
        width: 22px;
        height: 22px;
        color: var(--color-gold-muted);
    }

    .mobile-header-shell .nav-bottom-home {
        position: absolute;
        bottom: 15%;
        background: none;
        border: none;
        color: var(--primary-color-used);
        cursor: pointer;
        transition: color 0.2s ease;
        z-index: 1060;
        padding: 10px;
        pointer-events: auto;
    }

    .mobile-header-shell .nav-bottom-home:hover {
        color: var(--primary-color-used);
    }

    .mobile-header-shell .nav-bottom-home svg {
        width: 34px;
        height: 34px;
        pointer-events: none;
    }
}

@media (min-width: 992px) {
    .mobile-header-shell {
        display: none;
    }
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

