@font-face {
    font-family: "DIN LT";
    src: url(fonts/din-next-lt-pro-condensed-heavy.otf);
    font-style: normal;
}

@font-face {
    font-family: "DIN Bold";
    src: url(../../fonts/din-next-lt-pro-bold-condensed.ttf);
    font-style: normal;
}

@font-face {
    font-family: "DIN Medium";
    src: url(../../fonts/din-next-lt-pro-medium.ttf);
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.container {
    min-height: 100vh;
    max-width: 600px;
    background: url(../images/asdw-10\ 1.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center center;
    width: 100%;
}


#loaderGif {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  /* Ensure it's above other content */
}


/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
}

/* Event Logo */
.event-logo {
    display: flex;
    align-items: center;
    margin-top: 2rem;
}

.mcdowells-logo {
    display: block;
    margin: auto;
}

.logo-img{
    max-width: 350px;
    height: 120px;
    width: 100%;
    margin-top: -2rem;
    margin-bottom: -0.5rem;
}

/* Form Container */
.form-container {
    /* background: rgba(0, 0, 0, 0.3); */
    background: url(../images/Rectangle\ 1.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    /* backdrop-filter: blur(10px); */
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    margin-bottom: 5rem;
}

/* Form Styles */
.registration-form, .questions-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select {
    width: 100%;
    font-family: "DIN Medium", sans-serif;
    padding: 8px 12px;
    border: 3px solid rgb(255, 255, 255);
    border-radius: 50px;
    background: transparent;
    color: white;
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 200;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: rgba(255,255,255,0.9);
    font-weight: 200 !important;
    font-size: 12px;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #FFD700;
    box-shadow: 0 0 10px rgba(255,215,0,0.3);
}

.phone-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.country-code {
    background: transparent;
    font-family: "DIN Medium", sans-serif;
    letter-spacing: 1px;
    border: 3px solid rgba(255,255,255);
    border-radius: 50px;
    padding: 8px 12px;
    color: white;
    font-weight: 200;
    width: 25%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}

.phone-group input {
    border-radius: 50px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3e%3cpath d='M8 13.1l4.7-4.7-1.4-1.4L8 10.3 4.7 7l-1.4 1.4z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 12px;
    font-family: "DIN Medium", sans-serif;
    font-weight: 200;
}

.form-group select option {
    background: #2c3e50;
    color: white;
}

.mandatory-text {
    font-family: "DIN Lt", sans-serif;
    font-size: 9px;
    letter-spacing: 0.5px;
    font-weight: 400;
    color: #f9b757;
    margin-top: 0px;
    margin-left: 15px;
}

.tnc{
    color: #f9b757;
    text-decoration: none;
}

/* Checkbox Styles */
.checkbox-group {
    margin: 10px 0;
}

.checkbox-label {
    display: flex;
    font-family: "DIN Bold", sans-serif;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
    font-size: 10px;
    line-height: 1.4;
    color: rgba(255,255,255,0.9);
    margin-bottom: -0.5rem;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 4px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0px;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #FFD700;
    border-color: #FFD700;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: black;
    font-weight: bold;
    font-size: 14px;
    margin-top: 3px;
}

/* Radio Button Styles */
.voucher-code{
    max-width: 380px;
    width: 100%;
    font-family: "DIN Medium", sans-serif;
    padding: 8px 12px;
    border: 3px solid rgb(255, 255, 255);
    border-radius: 50px;
    background: transparent;
    color: white;
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 200;
    outline: none;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.voucher-code::placeholder{
    color: #FFFFFF;
}

.voucher-code:focus{
    border-color: #FFD700;
    box-shadow: 0 0 10px rgba(255,215,0,0.3);
}

.question-container {
    text-align: center;
    margin-bottom: 0px;
}

.question-title {
    font-size: 14px;
    font-family: "DIN Medium", sans-serif;
    font-weight: 400;
    margin-bottom: 15px;
    text-align: start;
    line-height: 1.3;
    margin-top: 1rem;
    color: #F9B758;
    text-align: center;
}

.radio-group {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    font-family: "DIN Medium", sans-serif;
    font-weight: 100;
    letter-spacing: 1px;
    font-size: 20px;
    margin-top: -0.5rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
}

.radio-label input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255,255,255,0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.radio-label input[type="radio"]:checked + .radio-custom {
    border-color: white;
    background: white;
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
    content: '';
    width: 12px;
    height: 12px;
    background: #FFD700;
    border-radius: 50%;
}

/* Thank You Styles */
.thank-you-container {
    text-align: start;
    padding: 0px 00px;
}

.thank-you-title {
    font-size: 52px;
    font-weight: bold;
    font-family: "DIN Medium", sans-serif;
    margin-bottom: 20px;
    color: white;
}

.thank-you-message {
    font-size: 18px;
    font-family: "DIN Medium", sans-serif;
    line-height: 1.5;
    color: rgba(255,255,255,0.9);
}

/* Submit Button */
.submitBtn{
    display: flex;
    justify-content: center;
    align-items: center;
}

.submit-btn {
    background: url(../images/Group\ 11.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center center;
    color: white;
    border: none;
    padding: 15px 15px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    max-width: 180px;
    width: 100%;
}

.divider{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem;
}

.divider-img{
    text-align: center;
    width: 100%;
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
}

.play-text{
    color: #FFFFFF;
    font-family: "DIN Bold", sans-serif;
    padding-left: 2rem;
    padding-right: 2rem;
    text-align: center;
    font-size: 14px;
    margin-bottom: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    /* box-shadow: 0 5px 15px rgba(255,107,53,0.4); */
}

.submit-btn:active {
    transform: translateY(0);
}

/* Error Messages */
.error-message {
    color: #FF6B6B;
    font-size: 12px;
    margin-top: 5px;
    margin-left: 15px;
    margin-bottom: -5px;
    display: block;
}

.date-badge{
    width: 100%;
    display: block;
    margin: auto;
    margin-top: 5rem;
}

.cap-cont{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    font-family: "DIN Medium", sans-serif;
    gap: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .event-logo {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .mcdowells-logo {
        margin-right: 0;
        align-items: center;
    }
    
    .mcdowells-brand {
        font-size: 28px;
    }
    
    .yaari, .jam {
        font-size: 20px;
        padding: 6px 12px;
    }
    
    .form-container {
        padding: 25px;
    }
    
    .question-title {
        font-size: 14px;
    }
    
    .thank-you-title {
        font-size: 36px;
    }
    
    .thank-you-message {
        font-size: 16px;
    }
    
    .footer-logos {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .form-container {
        padding: 10px;
    }

    .question-form-cont{
        margin-bottom: 10rem;
    }
    
    .phone-group {
        gap: 10px;
    }
    
    .checkbox-label {
        font-size: 10px;
    }
    
    .radio-label {
        font-size: 14px;
    }

    .sponco-logo, .bms-logo {
        max-width: 100px;
    }

    .play-text{
        padding: 1rem;
        padding-top: 0;
        padding-bottom: 0.5rem;
    }

    .click-play-btn{
        margin-top: -0.5rem;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 363px) {
    .thank-you-message{
        font-size: 15px;
    }
}