/* Fixed Bottom Left Verification Logo */
.fixed-verification {
    position: fixed;
    left: 30px;
    bottom: 30px;
    z-index: 3000;
}

.verification {
    display: block;
    border-radius: 16px;
    transition: filter 0.2s, transform 0.2s;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
}

.verification:hover {
    filter: drop-shadow(0 0 10px #00ff66) drop-shadow(0 0 4px #00ffff);
    background: none;
    border: none;
    transform: scale(1.08);
}

.verification img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    display: block;
}

/* Header bar for logo and login */
.header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(0, 20, 40, 0.3);
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 1.8em;
    font-weight: bold;
    color: white;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
    font-family: 'Segoe UI', Arial, sans-serif;
}

.login {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(0, 200, 255, 0.2) 100%);
    border: 2px solid rgba(0, 255, 255, 0.5);
    border-radius: 25px;
    padding: 8px 20px;
    font-size: 1rem;
    font-weight: bold;
    color: #00ffff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.login:hover {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2) 0%, rgba(0, 200, 255, 0.3) 100%);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.4);
    transform: translateY(-1px);
    border-color: #00ffff;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, rgba(0, 30, 60, 0.9) 0%, rgba(0, 20, 40, 0.95) 100%);
    margin: 15% auto;
    padding: 30px;
    border: 2px solid #00ffff;
    border-radius: 20px;
    width: 400px;
    max-width: 90%;
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.3);
    text-align: center;
}

.close {
    color: #00ffff;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover {
    color: #ffffff;
    text-shadow: 0 0 10px #00ffff;
}

.modal-title {
    color: #00ffff;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.modal-form-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.modal-input {
    background: rgba(0, 50, 100, 0.3);
    border: 2px solid rgba(0, 255, 255, 0.4);
    border-radius: 15px;
    padding: 15px 20px;
    font-size: 1rem;
    color: #00ffff;
    outline: none;
    transition: all 0.3s ease;
}

.modal-input::placeholder {
    color: rgba(0, 255, 255, 0.6);
}

.modal-input:focus {
    border-color: #00ffff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
    background: rgba(0, 50, 100, 0.4);
}

.modal-submit-btn {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(0, 200, 255, 0.2) 100%);
    border: 2px solid #00ffff;
    border-radius: 15px;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #00ffff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-submit-btn:hover {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2) 0%, rgba(0, 200, 255, 0.3) 100%);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.5);
    transform: translateY(-2px);
}

body {
    background-image: url('../images/CheckMyTherapy.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.main-text {
    margin-top: 0px;
    font-weight: bold;
    font-size: 5rem;
    color: transparent;
    text-align: center;
    background: linear-gradient(120deg,
            aqua 0%,
            aqua 46%,
            rgba(0, 255, 255, 0.5) 48%,
            #fff 50%,
            rgba(0, 255, 255, 0.5) 52%,
            aqua 54%,
            aqua 100%);
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    animation: shine-text 20s linear infinite;
    position: relative;
    overflow: hidden;
    text-shadow: none;
}

@keyframes shine-text {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Form grid layout*/
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto 30px auto;
}

.form-grid {
    width: 100%;
}

.form-grid input[type="text"],
.form-grid input[type="number"],
.form-grid input[type="tel"] {
    width: 100%;
    padding: 8px;
    font-size: 1em;
    box-sizing: border-box;
}

/* Form styling */
.form-section {
    text-align: center;
    margin-top: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 80px;
    /* Add space to prevent overlap with fixed privacy ribbon */
}

.upload-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.upload-btn {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(0, 200, 255, 0.2) 100%);
    border: 2px solid #00ffff;
    border-radius: 50px;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    color: #00ffff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    min-width: 250px;
    text-align: center;
}

.upload-btn:hover {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2) 0%, rgba(0, 200, 255, 0.3) 100%);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
    transform: translateY(-2px);
}

.selected-files {
    background: rgba(0, 50, 100, 0.2);
    border: 2px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    margin-top: 15px;
}

.selected-files h4 {
    color: #00ffff;
    margin: 0 0 15px 0;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
}

.selected-files ul {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 200px;
    overflow-y: auto;
}

.selected-files li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    margin: 5px 0;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 8px;
    color: #00ffff;
    font-size: 0.9rem;
}

.remove-file {
    background: rgba(255, 100, 100, 0.2);
    border: 1px solid #ff6666;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    color: #ff6666;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.remove-file:hover {
    background: rgba(255, 100, 100, 0.4);
    box-shadow: 0 0 10px rgba(255, 102, 102, 0.5);
}

.clear-files-btn {
    background: linear-gradient(135deg, rgba(255, 100, 100, 0.1) 0%, rgba(255, 50, 50, 0.2) 100%);
    border: 2px solid #ff6666;
    border-radius: 25px;
    padding: 8px 20px;
    font-size: 0.9rem;
    color: #ff6666;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.clear-files-btn:hover {
    background: linear-gradient(135deg, rgba(255, 100, 100, 0.2) 0%, rgba(255, 50, 50, 0.3) 100%);
    box-shadow: 0 0 15px rgba(255, 102, 102, 0.4);
    transform: translateY(-1px);
}

.file-input {
    display: none !important;
    position: absolute;
    left: -9999px;
    opacity: 0;
    width: 0;
    height: 0;
}

.form-input {
    background: rgba(0, 50, 100, 0.2);
    width: 100%;
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 15px 20px;
    font-size: 1rem;
    color: #00ffff;
    box-sizing: border-box;
    transition: all 0.3s ease;
    outline: none;
}

.form-input::placeholder {
    color: rgba(0, 255, 255, 0.6);
}

.form-input:focus {
    border-color: #00ffff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
    background: rgba(0, 50, 100, 0.3);
}



/* Flatpickr Calendar Styling - Neon Theme with Higher Specificity */
.flatpickr-calendar.custom-neon-theme,
.flatpickr-calendar {
    background: linear-gradient(135deg, rgba(0, 30, 60, 0.95) 0%, rgba(0, 20, 40, 0.98) 100%) !important;
    border: 2px solid rgba(0, 255, 255, 0.5) !important;
    border-radius: 20px !important;
    box-shadow:
        0 0 30px rgba(0, 255, 255, 0.4),
        0 0 60px rgba(0, 255, 255, 0.2),
        inset 0 0 20px rgba(0, 255, 255, 0.1) !important;
    backdrop-filter: blur(15px) !important;
    font-family: 'Segoe UI', Arial, sans-serif !important;
    z-index: 9999 !important;
}

.flatpickr-calendar.custom-neon-theme:before,
.flatpickr-calendar:before,
.flatpickr-calendar.custom-neon-theme:after,
.flatpickr-calendar:after {
    border-bottom-color: rgba(0, 255, 255, 0.5) !important;
}

/* Calendar Header */
.flatpickr-calendar.custom-neon-theme .flatpickr-months,
.flatpickr-calendar .flatpickr-months {
    background: linear-gradient(135deg, rgba(0, 50, 100, 0.4) 0%, rgba(0, 30, 60, 0.6) 100%) !important;
    border-bottom: 1px solid rgba(0, 255, 255, 0.3) !important;
    border-radius: 18px 18px 0 0 !important;
    padding: 15px 10px !important;
}

.flatpickr-calendar.custom-neon-theme .flatpickr-month,
.flatpickr-calendar .flatpickr-month {
    color: #ffffff !important;
    fill: #00ffff !important;
}

.flatpickr-calendar.custom-neon-theme .flatpickr-current-month,
.flatpickr-calendar .flatpickr-current-month {
    color: #00ffff !important;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.6) !important;
}

.flatpickr-calendar.custom-neon-theme .flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-calendar .flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-calendar.custom-neon-theme .flatpickr-current-month input.cur-year,
.flatpickr-calendar .flatpickr-current-month input.cur-year {
    background: rgba(0, 50, 100, 0.3) !important;
    border: 1px solid rgba(0, 255, 255, 0.4) !important;
    border-radius: 8px !important;
    color: #00ffff !important;
    font-weight: bold !important;
    padding: 5px !important;
}

.flatpickr-calendar.custom-neon-theme .flatpickr-current-month input.cur-year:focus,
.flatpickr-calendar .flatpickr-current-month input.cur-year:focus,
.flatpickr-calendar.custom-neon-theme .flatpickr-current-month .flatpickr-monthDropdown-months:focus,
.flatpickr-calendar .flatpickr-current-month .flatpickr-monthDropdown-months:focus {
    border-color: #00ffff !important;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5) !important;
    outline: none !important;
}

/* Navigation Arrows */
.flatpickr-calendar.custom-neon-theme .flatpickr-prev-month,
.flatpickr-calendar .flatpickr-prev-month,
.flatpickr-calendar.custom-neon-theme .flatpickr-next-month,
.flatpickr-calendar .flatpickr-next-month {
    color: #00ffff !important;
    fill: #00ffff !important;
    transition: all 0.3s ease !important;
    padding: 5px !important;
    border-radius: 50% !important;
}

.flatpickr-calendar.custom-neon-theme .flatpickr-prev-month:hover,
.flatpickr-calendar .flatpickr-prev-month:hover,
.flatpickr-calendar.custom-neon-theme .flatpickr-next-month:hover,
.flatpickr-calendar .flatpickr-next-month:hover {
    color: #ffffff !important;
    fill: #ffffff !important;
    background: rgba(0, 255, 255, 0.2) !important;
    transform: scale(1.1) !important;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4) !important;
}

/* Weekdays Header */
.flatpickr-calendar.custom-neon-theme .flatpickr-weekdays,
.flatpickr-calendar .flatpickr-weekdays {
    background: linear-gradient(135deg, rgba(0, 40, 80, 0.6) 0%, rgba(0, 30, 60, 0.8) 100%) !important;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2) !important;
}

.flatpickr-calendar.custom-neon-theme .flatpickr-weekday,
.flatpickr-calendar .flatpickr-weekday {
    color: rgba(0, 255, 255, 0.9) !important;
    font-weight: bold !important;
    font-size: 0.9rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.3) !important;
}

/* Days Container */
.flatpickr-calendar.custom-neon-theme .flatpickr-days,
.flatpickr-calendar .flatpickr-days {
    background: rgba(0, 20, 40, 0.8) !important;
    border-radius: 0 0 18px 18px !important;
}

/* Individual Day Cells */
.flatpickr-calendar.custom-neon-theme .flatpickr-day,
.flatpickr-calendar .flatpickr-day {
    background: transparent !important;
    border: 1px solid transparent !important;
    border-radius: 8px !important;
    color: #ffffff !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    margin: 1px !important;
}

.flatpickr-calendar.custom-neon-theme .flatpickr-day:hover,
.flatpickr-calendar .flatpickr-day:hover {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.15) 0%, rgba(0, 200, 255, 0.25) 100%) !important;
    border-color: rgba(0, 255, 255, 0.5) !important;
    color: #00ffff !important;
    transform: scale(1.05) !important;
    box-shadow:
        0 0 15px rgba(0, 255, 255, 0.3),
        inset 0 0 10px rgba(0, 255, 255, 0.1) !important;
}

/* Selected Day */
.flatpickr-calendar.custom-neon-theme .flatpickr-day.selected,
.flatpickr-calendar .flatpickr-day.selected,
.flatpickr-calendar.custom-neon-theme .flatpickr-day.selected:hover,
.flatpickr-calendar .flatpickr-day.selected:hover {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.4) 0%, rgba(0, 200, 255, 0.6) 100%) !important;
    border-color: #00ffff !important;
    color: #ffffff !important;
    font-weight: bold !important;
    transform: scale(1.1) !important;
    box-shadow:
        0 0 20px rgba(0, 255, 255, 0.6),
        0 0 40px rgba(0, 255, 255, 0.3),
        inset 0 0 15px rgba(0, 255, 255, 0.2) !important;
}

/* Today's Date */
.flatpickr-calendar.custom-neon-theme .flatpickr-day.today,
.flatpickr-calendar .flatpickr-day.today {
    border-color: rgba(255, 255, 0, 0.6) !important;
    color: #ffff00 !important;
    font-weight: bold !important;
    text-shadow: 0 0 8px rgba(255, 255, 0, 0.5) !important;
}

.flatpickr-calendar.custom-neon-theme .flatpickr-day.today:hover,
.flatpickr-calendar .flatpickr-day.today:hover {
    background: linear-gradient(135deg, rgba(255, 255, 0, 0.1) 0%, rgba(255, 200, 0, 0.2) 100%) !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 0, 0.8) !important;
}

.flatpickr-calendar.custom-neon-theme .flatpickr-day.today.selected,
.flatpickr-calendar .flatpickr-day.today.selected {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.4) 0%, rgba(255, 255, 0, 0.3) 100%) !important;
    border-color: #00ffff !important;
    color: #ffffff !important;
    box-shadow:
        0 0 25px rgba(0, 255, 255, 0.6),
        0 0 15px rgba(255, 255, 0, 0.4) !important;
}

/* Disabled/Future Dates */
.flatpickr-calendar.custom-neon-theme .flatpickr-day.disabled,
.flatpickr-calendar .flatpickr-day.disabled,
.flatpickr-calendar.custom-neon-theme .flatpickr-day.disabled:hover,
.flatpickr-calendar .flatpickr-day.disabled:hover {
    color: rgba(255, 255, 255, 0.2) !important;
    background: transparent !important;
    border-color: transparent !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
}

.gender-select {
    background: rgba(0, 50, 100, 0.2);
    width: 100%;
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 8px;
    font-size: 1em;
    color: rgba(0, 255, 255, 0.6);
    box-sizing: border-box;
    transition: all 0.3s ease;
    outline: none;
}

.country-select {
    background: rgba(0, 50, 100, 0.2);
    width: 100%;
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 8px;
    font-size: 1em;
    color: #00ffff;
    box-sizing: border-box;
    transition: all 0.3s ease;
    outline: none;
}

.gender-select:focus,
.country-select:focus {
    border-color: #00ffff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
    background: rgba(0, 50, 100, 0.3);
}

.gender-select option,
.country-select option {
    background: #001122;
    color: #00ffff;
}

/* Searchable dropdown styles */
.searchable-select {
    position: relative;
    width: 100%;
}

.country-search {
    background: rgba(0, 50, 100, 0.2);
    width: 100%;
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 8px;
    font-size: 1em;
    color: #00ffff;
    box-sizing: border-box;
    transition: all 0.3s ease;
    outline: none;
}

.country-search.has-flag {
    padding-left: 40px !important;
    background-repeat: no-repeat !important;
    background-position: 10px center !important;
    background-size: 20px 15px !important;
}

.country-search.has-flag:focus {
    border-color: #00ffff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
    background-color: rgba(0, 50, 100, 0.3) !important;
    background-repeat: no-repeat !important;
    background-position: 10px center !important;
    background-size: 20px 15px !important;
}

.country-search:focus {
    border-color: #00ffff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
    background: rgba(0, 50, 100, 0.3);
}

.country-search::placeholder {
    color: rgba(0, 255, 255, 0.6);
}

.dropdown-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 30, 60, 0.95);
    border: 2px solid rgba(0, 255, 255, 0.4);
    border-top: none;
    border-radius: 0 0 15px 15px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
}

.dropdown-option {
    padding: 12px 15px;
    color: #00ffff;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    text-align: left;
}

.dropdown-option .flag-icon {
    width: 20px;
    height: 15px;
    margin-right: 8px;
    border-radius: 2px;
    flex-shrink: 0;
}

.dropdown-option:hover,
.dropdown-option.selected {
    background: rgba(0, 255, 255, 0.1);
}

.dropdown-option.selected {
    border-left: 3px solid #00ffff;
    background: rgba(0, 255, 255, 0.15);
}

.dropdown-option.no-results {
    color: rgba(0, 255, 255, 0.6);
    cursor: default;
    font-style: italic;
}

.dropdown-option.no-results:hover {
    background: none;
}

.privacy-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    padding: 0 20px;
}

.privacy-item {
    display: flex;
    align-items: center;
    color: #00ffff;
    font-size: 1rem;
}

.shield-icon {
    width: 30px;
    height: 30px;
    border: 2px solid #00ffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-weight: bold;
    font-size: 0.8rem;
}

.security-icon {
    font-size: 1.5rem;
    color: #00ffff;
}

.submit-btn {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(0, 200, 255, 0.2) 100%);
    border: 2px solid #00ffff;
    border-radius: 15px;
    width: 60px;
    height: 50px;
    font-size: 1.5rem;
    color: #00ffff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.submit-btn:hover {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2) 0%, rgba(0, 200, 255, 0.3) 100%);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.5);
    transform: translateX(5px);
}

/* Success Modal Styles */
.success-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.success-modal-content {
    background: linear-gradient(135deg, rgba(0, 40, 20, 0.95) 0%, rgba(0, 60, 30, 0.95) 100%);
    margin: 10% auto;
    padding: 40px;
    border: 2px solid #00ff66;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 255, 102, 0.4);
    animation: slideIn 0.4s ease-out;
    font-family: 'Segoe UI', Arial, sans-serif;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

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

.success-icon {
    font-size: 4rem;
    color: #00ff66;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 255, 102, 0.6);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.success-title {
    color: #00ff66;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(0, 255, 102, 0.4);
}

.success-message {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.success-close-btn {
    background: linear-gradient(135deg, rgba(0, 255, 102, 0.2) 0%, rgba(0, 200, 80, 0.3) 100%);
    border: 2px solid #00ff66;
    border-radius: 25px;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    color: #00ff66;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(0, 255, 102, 0.3);
}

.success-close-btn:hover {
    background: linear-gradient(135deg, rgba(0, 255, 102, 0.3) 0%, rgba(0, 200, 80, 0.4) 100%);
    box-shadow: 0 0 25px rgba(0, 255, 102, 0.5);
    transform: translateY(-2px);
}

/* Terms and Conditions Section */
.terms-section {
    margin: 20px 0;
    padding: 15px;
    background: linear-gradient(135deg, rgba(0, 50, 100, 0.1) 0%, rgba(0, 30, 60, 0.2) 100%);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.1);
}

.terms-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.terms-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #00ffff;
    cursor: pointer;
}

.terms-checkbox label {
    color: white;
    font-size: 0.95rem;
    cursor: pointer;
    line-height: 1.4;
}

.terms-link {
    color: #00ffff;
    text-decoration: underline;
    cursor: pointer;
    font-weight: bold;
    transition: color 0.3s ease;
}

.terms-link:hover {
    color: #66ffff;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

/* Terms Modal Styles */
#termsModal .modal-content {
    background: linear-gradient(135deg, rgba(0, 30, 60, 0.95) 0%, rgba(0, 20, 40, 0.98) 100%);
    margin: 2% auto;
    padding: 0;
    border: 2px solid rgba(0, 255, 255, 0.4);
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.3);
    animation: modalSlideIn 0.4s ease;
    display: flex;
    flex-direction: column;
}

.modal-header {
    padding: 20px 30px;
    border-bottom: 2px solid rgba(0, 255, 255, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 50, 100, 0.3) 0%, rgba(0, 30, 60, 0.5) 100%);
    border-radius: 13px 13px 0 0;
}

.modal-header h2 {
    color: white;
    margin: 0;
    font-size: 1.8rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.modal-body {
    padding: 30px;
    overflow-y: auto;
    flex-grow: 1;
}

.terms-content {
    color: white;
    line-height: 1.6;
}

.terms-content h3 {
    color: #00ffff;
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.3rem;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.4);
}

.terms-content h3:first-child {
    margin-top: 0;
}

.terms-content p {
    margin-bottom: 15px;
    text-align: justify;
    color: rgba(255, 255, 255, 0.9);
}

.modal-footer {
    padding: 20px 30px;
    border-top: 2px solid rgba(0, 255, 255, 0.3);
    display: flex;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 50, 100, 0.2) 0%, rgba(0, 30, 60, 0.3) 100%);
    border-radius: 0 0 13px 13px;
}

.modal-btn {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(0, 200, 255, 0.2) 100%);
    border: 2px solid #00ffff;
    border-radius: 25px;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    color: #00ffff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.modal-btn:hover {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2) 0%, rgba(0, 200, 255, 0.3) 100%);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* Scrollbar for modal body */
.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: rgba(0, 30, 60, 0.3);
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.3) 0%, rgba(0, 200, 255, 0.5) 100%);
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.5) 0%, rgba(0, 200, 255, 0.7) 100%);
}

/* Fixed Bottom Right Logos */
.fixed-logos {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: row;
    gap: 18px;
    z-index: 3000;
}

.logo-link {
    display: block;
    background: rgba(0, 30, 60, 0.7);
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.25);
    transition: box-shadow 0.2s, transform 0.2s;
}

.logo-link:hover {
    box-shadow: 0 0 24px #00ffff, 0 0 8px #fff;
    transform: scale(1.08) translateY(-2px);
}

.logo-link img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    display: block;
}

/* Privacy Consent Banner */
.privacy-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: linear-gradient(135deg, rgba(0, 30, 60, 0.98) 0%, rgba(0, 20, 40, 0.98) 100%);
    border-top: 3px solid #00ffff;
    box-shadow: 0 -5px 30px rgba(0, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    display: none;
}

.privacy-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.privacy-icon {
    font-size: 2.5rem;
    color: #00ffff;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
    flex-shrink: 0;
}

.privacy-text {
    flex-grow: 1;
    color: white;
}

.privacy-text h3 {
    color: #00ffff;
    font-size: 1.4rem;
    margin: 0 0 15px 0;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
}

.privacy-text p {
    margin: 0 0 12px 0;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.privacy-text ul {
    margin: 12px 0;
    padding-left: 25px;
    color: rgba(255, 255, 255, 0.85);
}

.privacy-text li {
    margin: 8px 0;
    line-height: 1.4;
}

.privacy-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}

.privacy-accept-btn {
    background: linear-gradient(135deg, rgba(0, 255, 102, 0.2) 0%, rgba(0, 200, 80, 0.3) 100%);
    border: 2px solid #00ff66;
    border-radius: 25px;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: bold;
    color: #00ff66;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(0, 255, 102, 0.3);
    white-space: nowrap;
}

.privacy-accept-btn:hover {
    background: linear-gradient(135deg, rgba(0, 255, 102, 0.3) 0%, rgba(0, 200, 80, 0.4) 100%);
    box-shadow: 0 0 25px rgba(0, 255, 102, 0.5);
    transform: translateY(-2px);
}

.privacy-decline-btn {
    background: linear-gradient(135deg, rgba(255, 100, 100, 0.1) 0%, rgba(255, 50, 50, 0.2) 100%);
    border: 2px solid #ff6666;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 0.9rem;
    color: #ff6666;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.privacy-decline-btn:hover {
    background: linear-gradient(135deg, rgba(255, 100, 100, 0.2) 0%, rgba(255, 50, 50, 0.3) 100%);
    box-shadow: 0 0 15px rgba(255, 102, 102, 0.4);
    transform: translateY(-1px);
}

/* Blur effect when privacy banner is shown */
body.privacy-blur>*:not(.privacy-banner) {
    filter: blur(3px);
    pointer-events: none;
}