 :root {
            --bg: #f3b232;
            --panel: #b9801c;
            --accent: #9b1204;
            --input-bg: #fbe8c2;
            --gold: #fdc556;
            --gold-dark: #fdc556;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--bg);
            color: #000;
        }

        .hero-section {
            background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dark) 60%);
            min-height: 300px;
            position: relative;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../images/bg-header.png');
            opacity: 0.7;
            filter: saturate(1.02);
            background-repeat: repeat-x;
        }
        
        .header_main{ 
            display: flex; 
            align-items: center;
            justify-content: space-between;
            padding: 10px 0;
        }
        
        .header_left, .header_mid, .header_right {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .header_mid{margin-top: 160px;}
        
        .header_left img, .header_mid img, .header_right img { 
            max-width: 100%;
            height: auto;
        }
        
        .header_right {
            position: relative;
            bottom: -101px;
            z-index: 9;
        }
        
        .logo_sec{ 
            height: 92px; 
            background: url(../images/logo-bg.png); 
            background-repeat: repeat-x; 
            position: relative; 
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .saprater{ 
            width: 100%; 
            height: 4px; 
            background-color: #9f1a06; 
            position: absolute; 
            z-index: 9; 
            top: 50%;
        }
        
        .logo_sec img{
            max-height: 60px;
            width: auto;
            position: relative;
            z-index: 10;
        }
        
        .logo_sec span{
            height: 100%; 
            display: inline-flex; 
            align-items: center;
           background: linear-gradient(to bottom, rgb(254 188 58), rgb(247 181 48));
            position: relative;  
            z-index: 9; 
            padding: 0 20px;
        }

        .brand-section {
            position: relative;
            z-index: 2;
        }

        .brand-name {
            font-family: 'Playfair Display', serif;
            font-weight: 900;
            color: var(--accent);
            font-size: 2.5rem;
        }

        .brand-subtitle {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .form-container {
            background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(0,0,0,0.03));
            border-radius: 28px;
            border:solid 3px #9b1204;
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
        }

        .form-title {
            font-family: 'Playfair Display', serif;
            color: var(--accent);
            font-weight: 900;
            font-size: 3rem;
        }

        .fill-now-btn {
            background-color: white;
            color: #1a1a1a;
            border-radius: 22px;
            font-weight: 700;
            box-shadow: 0 3px 0 rgba(0,0,0,0.06) inset;
            width: 160px;
            border: solid 2px #9b1204;
                display: inline-block;
    padding: 8px
        }

        .form-control {
            background-color: var(--input-bg);
            border: none;
            border-radius: 28px;
            padding: 14px 20px;
            box-shadow: 0 2px 0 rgba(0,0,0,0.02) inset;
        }

        .form-control:focus {
            background-color: var(--input-bg);
            box-shadow: 0 0 0 0.25rem rgba(143, 29, 18, 0.25);
        }

        .submit-btn {
            background-color: var(--accent);
            color: white;
            border: none;
            border-radius: 28px;
            padding: 14px 48px;
            font-weight: 800;
            letter-spacing: 1px;
            box-shadow: 0 6px 0 rgba(0,0,0,0.12);
            transition: all 0.2s ease;
        }

        .submit-btn:hover {
            background-color: #a81a10;
            transform: translateY(-2px);
        }

        .submit-btn:active {
            transform: translateY(2px);
            box-shadow: 0 2px 0 rgba(0,0,0,0.12);
        }

        .wheel-container {
            display: none;
        }

        .wheel {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            position: relative;
            overflow: hidden;
            border: 8px solid var(--accent);
            box-shadow: 0 0 20px rgba(0,0,0,0.3);
            transition: transform 4s cubic-bezier(0.17, 0.67, 0.83, 0.67);
        }

        .wheel-section {
            position: absolute;
            width: 50%;
            height: 50%;
            transform-origin: bottom right;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        .wheel-center {
            position: absolute;
            width: 60px;
            height: 60px;
            background: var(--accent);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            box-shadow: 0 0 10px rgba(0,0,0,0.5);
        }

        .spin-btn {
            background: var(--gold);
            color: #2b130f;
            border: none;
            border-radius: 24px;
            font-weight: 800;
            padding: 12px 40px;
            box-shadow: 0 4px 0 rgba(0,0,0,0.1);
            transition: all 0.2s ease;
        }

        .spin-btn:hover {
            background: #f8c35a;
            transform: translateY(-2px);
        }

        .result {
            display: none;
            background: rgba(255,255,255,0.9);
            border-radius: 16px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .congrats {
            font-size: 2rem;
            color: var(--accent);
            font-weight: 900;
        }

        .thin-band {
            height: 0px;
            background: rgba(0,0,0,0.04);
        }
        .invalid-feedback{color: #fe1800;}

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .header_main {
                flex-wrap: wrap;
            }
            
            .header_left, .header_mid, .header_right {
                flex: 0 0 33.333%;
                max-width: 33.333%;
            }
        }
        
        @media (max-width: 992px) {
            .form-title {
                font-size: 2.5rem;
            }
            
            .wheel {
                width: 280px;
                height: 280px;
            }
        }

        @media (max-width: 768px) {
            .brand-name {
                font-size: 1.8rem;
            }
            
            .form-title {
                font-size: 2.2rem;
            }
            
            .wheel {
                width: 250px;
                height: 250px;
            }
            
            .header_main {
                flex-direction: column;
            }
            
            .header_left, .header_mid, .header_right {
                flex: 0 0 100%;
                max-width: 100%;
                margin-bottom: 15px;
            }
            
            .header_left img, .header_mid img, .header_right img {
                max-width: 80%;
            }
            
            .logo_sec {
                height: 80px;
            }
            
            .logo_sec img {
                max-height: 50px;
            }
        }

        @media (max-width: 576px) {
            .brand-name {
                font-size: 1.5rem;
            }
            
            .form-title {
                font-size: 1.8rem;
            }
            
            .wheel {
                width: 200px;
                height: 200px;
            }
            
            .submit-btn {
                padding: 12px 28px;
                font-size: 1rem;
                width: 100%;
            }
            
            .fill-now-btn {
                width: 140px;
            }
            
            .form-container {
                padding: 20px !important;
            }
            
            .logo_sec {
                height: 70px;
            }
            
            .logo_sec img {
                max-height: 40px;
            }
            
            .logo_sec span {
                padding: 0 15px;
            }
            
            .hero-section {
                min-height: 250px;
            }
        }
          @media (max-width: 480px) {
              .header_right {
    position: relative;
    bottom: auto;
    z-index: 9;
}
.header_mid {
    margin-top: 10px;
}
          }
        
        @media (max-width: 400px) {
            .form-title {
                font-size: 1.5rem;
            }
            
            .wheel {
                width: 180px;
                height: 180px;
            }
            
            .spin-btn {
                padding: 10px 30px;
                font-size: 0.9rem;
            }
            
            .congrats {
                font-size: 1.5rem;
            }
        }