:root {
    --primary-blue: #0071ce;
    --action-orange: #ffc220;
    --dark-text: #222;
    --light-bg: #f4f7f9;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    background: var(--light-bg);
    color: var(--dark-text);
}

header {
    background: white;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav{
    width:100%;
}

hr{
    margin:0 auto;
    width: 75%;
}

 .circle-spin {
            width: 60px !important;
            height: 60px !important;
            border-radius: 50% !important;
            color: transparent !important;
            background-color: transparent !important;
            border: 6px solid #e0e0e0 !important;
            border-top-color: #0d6efd !important;
            animation: spin-circle 1s linear infinite;
            padding: 0 !important;
            min-width: 0 !important;
            pointer-events: none;
            box-shadow: none !important;
            display: inline-block;
        }
        @keyframes spin-circle {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        #roulette-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            z-index: 10000;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
        }
        #roulette-overlay.show {
            opacity: 1;
            pointer-events: auto;
        }
        #roulette-overlay.hide {
            opacity: 0;
            pointer-events: none;
        }
        #roulette-title {
            color: #fff;
            font-size: 2rem;
            margin-bottom: 2rem;
            font-weight: bold;
            text-align: center;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        #roulette-wrapper {
            position: relative;
            width: 300px;
            height: 300px;
        }
        #roulette-wheel {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 8px solid #fff;
            box-shadow: 0 0 20px rgba(0,0,0,0.5);
            background: conic-gradient(#e53935 0deg 36deg, #212121 36deg 72deg, #e53935 72deg 108deg, #212121 108deg 144deg, #e53935 144deg 180deg, #212121 180deg 216deg, #e53935 216deg 252deg, #212121 252deg 288deg, #e53935 288deg 324deg, #212121 324deg 360deg);
            animation: spin-wheel 4s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
        }
        #roulette-pointer {
            position: absolute;
            top: -25px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 20px solid transparent;
            border-right: 20px solid transparent;
            border-top: 40px solid #ffc107;
            z-index: 10;
            filter: drop-shadow(0 2px 2px rgba(0,0,0,0.3));
        }
        @keyframes spin-wheel {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(1800deg); }
        }
.btn-secondary{
    padding:1em;
}
.menu-block{
    
}
.menu-block select{
    width:100%;
}
.menu-block input{
    height: auto;
}

.menu-block img{
    width: auto;
    max-height: 100px;
}

.menu-block .container{
    margin:0;  
    padding: 0;
}
.menu-block .col, .menu-block .col-auto{
    margin:5px;  
    padding:0;
}

.theme-text-menu{
    font-size: .85rem;
    font-weight: bold;
    color: grey;
    margin: 3px;
}

.login-link {
    /* background: var(--primary-blue); */
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.2s;
}

.login-link:hover {
    background: var(--dark-text);
}

.logo {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.logo span {
    color: var(--dark-text);
}

#hero {
    text-align: center;
    padding: 1rem 5%;
    /* background: linear-gradient(135deg, #0071ce 0%, #004c8c 100%); */
    /* color: white; */
}

.roulette-container {
    background: white;
    color: var(--dark-text);
    padding: 2rem;
    border-radius: 15px;
    max-width: 500px;
    margin: 2rem auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

#spin-button {
    background: var(--action-orange);
    border: none;
    padding: 1rem 2rem;
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 50px;
    transition: transform 0.2s;
    width: 100%;
}

#spin-button:active {
    transform: scale(0.95);
}

.plan-card {
    max-width: 60%;
    margin: 0 auto 4rem;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hidden {
    display: none;
}

.btn-primary {
    display: block;
    background: var(--primary-blue);
    color: white;
    text-decoration: none;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
}

.fit-menu-image{
    max-width: 100px;
    max-height: 75px;
}


.hero-on-blue{
    color: white;
}