/* ==========================================================================
   DESIGN SYSTEM & CUSTOM VARIABLES
   ========================================================================== */
:root {
    --bg-primary: #050507;
    --bg-surface: rgba(15, 15, 20, 0.65);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-glow-focus: rgba(16, 185, 129, 0.25);
    
    /* Highlight Colors */
    --gold: #d4af37;
    --gold-rgb: 212, 175, 55;
    --emerald: #10b981;
    --emerald-rgb: 16, 185, 129;
    --purple: #8e44ad;
    --purple-rgb: 142, 68, 173;
    
    /* Text Colors */
    --text-main: #f1f2f6;
    --text-muted: #94a3b8;
    
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Effects */
    --glass-blur: blur(20px);
    --shadow-premium: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 1px rgba(255, 255, 255, 0.1) inset;
    --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: var(--font-body);
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

body::before {
    content: "";
    position: fixed;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background-image: linear-gradient(rgba(5, 5, 7, 0.82), rgba(5, 5, 7, 0.88)), url('bg-naturaltech.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(6px);
    z-index: -2;
}

/* ==========================================================================
   DYNAMIC BACKGROUND (MESH GRADIENT BLOBS)
   ========================================================================== */
.mesh-gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: transparent;
    filter: blur(90px);
}

.bg-blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.22;
    mix-blend-mode: screen;
    animation: floatBlob 20s infinite alternate ease-in-out;
}

.blob-green {
    top: -10%;
    left: 15%;
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.5) 0%, transparent 70%);
}

.blob-gold {
    bottom: -10%;
    right: 10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, transparent 70%);
    animation-delay: -5s;
}

.blob-purple {
    top: 30%;
    right: 25%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(142, 68, 173, 0.45) 0%, transparent 70%);
    animation-delay: -10s;
}

@keyframes floatBlob {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    100% {
        transform: translate(6%, 8%) scale(1.1) rotate(60deg);
    }
}

/* ==========================================================================
   APP CONTAINER & GLASS PANEL
   ========================================================================== */
.app-container {
    padding: 20px;
    width: 100%;
    max-width: 520px;
    max-height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    overflow: hidden;
}

.glass-panel {
    background: var(--bg-surface);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium);
    border-radius: 24px;
    padding: 24px;
    width: 100%;
    max-height: calc(100dvh - 20px);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-y: auto;
    scrollbar-width: none;
    transition: var(--transition-smooth);
}

.glass-panel::-webkit-scrollbar {
    display: none;
}

.glass-panel::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff3366, #ff9933, #33cc66, #3399ff, #9933ff, #ff3366);
    background-size: 200% 100%;
    animation: rainbow-flow 6s linear infinite;
    opacity: 0.85;
}

/* ==========================================================================
   TOP RAINBOW BAR & ANIMATIONS
   ========================================================================== */
.rainbow-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff3366, #ff9933, #33cc66, #3399ff, #9933ff, #ff3366);
    background-size: 200% 100%;
    animation: rainbow-flow 6s linear infinite;
    z-index: 9999;
}

@keyframes rainbow-flow {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 200% 0%;
    }
}


/* ==========================================================================
   HEADER SECTION
   ========================================================================== */
.form-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 24px;
    gap: 12px;
    width: 100%;
    padding: 0 12px;
}

.logos-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 8px;
    width: 100%;
}

.logo-divider {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 300;
    color: var(--gold);
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
    opacity: 0.8;
    user-select: none;
    flex-shrink: 0;
}

.brand-logo {
    height: 48px;
    max-width: 43%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.05));
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.brand-logo:hover {
    transform: scale(1.03);
}

.badge-naturaltech {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--emerald), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 2px 10px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    background-color: rgba(255, 255, 255, 0.02);
}

/* Prizes Summary */
.prizes-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 8px auto 16px auto;
    width: 100%;
}

.prize-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: rgba(212, 175, 55, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: var(--gold);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.prize-badge:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.35);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
}

.prize-icon {
    font-size: 13px;
}

/* ==========================================================================
   FORM & CAPTURE STATE
   ========================================================================== */
h1 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff 40%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.4;
    margin-bottom: 12px;
}

/* Float Labels Input Groups */
.input-group {
    position: relative;
    margin-bottom: 14px;
    width: 100%;
}

.input-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-main);
    outline: none;
    transition: var(--transition-smooth);
    appearance: none;
    -webkit-appearance: none;
}

.input-group label {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: var(--text-muted);
    pointer-events: none;
    transition: var(--transition-smooth);
}

/* Input active state label translation */
.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label {
    top: 0;
    left: 10px;
    transform: translateY(-50%) scale(0.8);
    background-color: #050507;
    padding: 0 4px;
    color: var(--emerald);
}

.input-group input:focus {
    border-color: var(--emerald);
    background: rgba(16, 185, 129, 0.02);
    box-shadow: 0 0 12px var(--border-glow-focus);
}

.input-group.invalid input {
    border-color: #ef4444;
    box-shadow: 0 0 12px rgba(239, 68, 68, 0.15);
}

.input-group.invalid input:focus ~ label,
.input-group.invalid input:not(:placeholder-shown) ~ label {
    color: #ef4444;
}

/* Radio Group Segmented Control Styling */
.profile-toggle-container {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
    width: 100%;
    text-align: left;
}

.toggle-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.segmented-control {
    position: relative;
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 3px;
    width: 100%;
    margin-top: 4px;
    overflow: hidden;
    z-index: 1;
}

.segmented-control input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.segmented-item {
    flex: 1;
    text-align: center;
    padding: 10px 4px;
    font-size: 12px;
    line-height: 1.25;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    z-index: 2;
    transition: var(--transition-smooth);
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.segmented-control input[type="radio"]:checked + .segmented-item {
    color: #050507;
}

.segmented-glider {
    position: absolute;
    top: 3px;
    left: 3px;
    height: calc(100% - 6px);
    width: calc(33.333% - 2px);
    background: linear-gradient(135deg, var(--emerald), #059669);
    border-radius: 9px;
    z-index: 1;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

#profile-b2b:checked ~ .segmented-glider {
    transform: translateX(0);
}

#profile-b2c:checked ~ .segmented-glider {
    transform: translateX(100%);
}

#profile-influencer:checked ~ .segmented-glider {
    transform: translateX(200%);
}

.profile-toggle-container.invalid .segmented-control {
    border-color: #ef4444;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.15);
}

.profile-toggle-container.invalid .toggle-label {
    color: #ef4444;
}

/* Checkbox Custom Styling */
.checkbox-group {
    margin-bottom: 22px;
    text-align: left;
    width: 100%;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-muted);
    user-select: none;
    transition: var(--transition-smooth);
}

.checkbox-container:hover {
    color: var(--text-main);
}

.checkbox-container a {
    color: var(--gold);
    text-decoration: underline;
    transition: var(--transition-smooth);
}

.checkbox-container a:hover {
    color: #fff;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.checkbox-container:hover input ~ .checkmark {
    border-color: var(--emerald);
    background-color: rgba(255, 255, 255, 0.05);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--emerald);
    border-color: var(--emerald);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-group.invalid .checkmark {
    border-color: #ef4444;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.25);
}

.error-msg {
    color: #ef4444;
    font-size: 12px;
    margin-top: 6px;
    margin-left: 4px;
    display: none;
}

.input-group.invalid .error-msg,
.checkbox-group.invalid .error-msg {
    display: block;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--emerald), #059669);
    border: none;
    border-radius: 12px;
    padding: 12px 14px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.25);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.4);
    filter: brightness(1.08);
}

.submit-btn:active {
    transform: translateY(0);
}

.btn-loader {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s infinite linear;
    display: none;
}

.submit-btn.loading .btn-text {
    opacity: 0;
}

.submit-btn.loading .btn-loader {
    display: block;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ==========================================================================
   THANK YOU STATE & SUCCESS ICON
   ========================================================================== */
#state-thanks {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fadeIn 0.5s ease-out forwards;
}

.hidden {
    display: none !important;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Success Checkmark Circle SVG Animation */
.success-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
}

.success-icon circle {
    stroke-width: 2;
    stroke: var(--emerald);
    stroke-dasharray: 157;
    stroke-dashoffset: 157;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.success-icon path {
    stroke-width: 2;
    stroke: var(--emerald);
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.4s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}

@keyframes stroke {
    to { stroke-dashoffset: 0; }
}

#state-thanks h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 8px;
    background: linear-gradient(to right, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    background-clip: text;
}

.thanks-msg {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 30px;
}

/* ==========================================================================
   COUNTDOWN TIMER SECTION
   ========================================================================== */
.countdown-section {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-title {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--gold);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 68px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 10px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: var(--transition-smooth);
}

.time-block:hover {
    border-color: rgba(212, 175, 55, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.15);
}

.time-number {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.5px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.time-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-top: 6px;
}

.time-divider {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.15);
    margin-bottom: 16px;
    user-select: none;
}

.countdown-finished {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--gold);
    border-radius: 12px;
    padding: 16px;
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
    margin-top: 10px;
    width: 100%;
    animation: pulseGlow 2s infinite alternate;
}

@keyframes pulseGlow {
    from {
        box-shadow: 0 0 5px rgba(212, 175, 55, 0.1);
    }
    to {
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    }
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 480px) {
    .glass-panel {
        padding: 24px;
        border-radius: 20px;
    }
    
    h1 {
        font-size: 22px;
    }
    
    .time-block {
        min-width: 58px;
        padding: 8px 0;
    }
    
    .time-number {
        font-size: 22px;
    }
    
    .time-label {
        font-size: 9px;
    }
}

/* Vertical responsiveness to ensure 100% screen fit without scroll */
@media (max-height: 720px) {
    .glass-panel {
        padding: 24px;
        border-radius: 20px;
    }
    .form-header {
        margin-bottom: 18px;
        gap: 8px;
    }
    .brand-logo {
        height: 38px;
    }
    h1 {
        font-size: 22px;
    }
    .subtitle {
        margin-bottom: 16px;
        font-size: 13px;
    }
    .input-group {
        margin-bottom: 14px;
    }
    .input-group input {
        padding: 12px 14px;
        font-size: 14px;
    }
    .input-group label {
        font-size: 14px;
    }
    .submit-btn {
        padding: 12px;
        font-size: 15px;
    }
    .countdown-section {
        padding-bottom: 8px;
        margin-bottom: 8px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .countdown-title {
        margin-bottom: 6px;
    }
    .time-block {
        min-width: 50px;
        padding: 4px 0;
    }
    .time-number {
        font-size: 18px;
    }
    .prizes-container {
        margin-bottom: 10px;
    }
    .prize-badge {
        padding: 4px 10px;
        font-size: 10px;
    }
    .profile-toggle-container {
        margin-bottom: 10px;
    }
}

@media (max-height: 600px) {
    .glass-panel {
        padding: 16px;
    }
    .form-header {
        margin-bottom: 8px;
        gap: 4px;
    }
    .brand-logo {
        height: 28px;
    }
    h1 {
        font-size: 18px;
    }
    .subtitle {
        margin-bottom: 8px;
        font-size: 11px;
    }
    .input-group {
        margin-bottom: 8px;
    }
    .input-group input {
        padding: 8px 10px;
        font-size: 13px;
    }
    .input-group label {
        font-size: 12px;
    }
    .submit-btn {
        padding: 10px;
        font-size: 14px;
    }
    .countdown-section {
        padding-bottom: 6px;
        margin-bottom: 6px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .countdown-title {
        margin-bottom: 4px;
    }
    .time-block {
        min-width: 44px;
        padding: 3px 0;
    }
    .time-number {
        font-size: 14px;
    }
    .time-divider {
        font-size: 14px;
        margin-bottom: 6px;
    }
    .prizes-container {
        margin-bottom: 6px;
        gap: 6px;
    }
    .prize-badge {
        padding: 3px 8px;
        font-size: 9px;
    }
    .profile-toggle-container {
        margin-bottom: 6px;
    }
    .segmented-item {
        padding: 6px 0;
        font-size: 11px;
    }
}

/* ==========================================================================
   MODAL POPUP STYLING (REGULATION)
   ========================================================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 7, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000; /* Ensure it is on top of everything, including countdown */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 30px 24px 24px 24px;
    animation: modalSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(30px) scale(0.96);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 28px;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-smooth);
}

.modal-close-btn:hover {
    color: #fff;
    transform: rotate(90deg);
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 16px;
    text-align: left;
    background: linear-gradient(135deg, #ffffff 40%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 10px;
}

.modal-body {
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
    padding-right: 8px;
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-muted);
    text-align: left;
}

.modal-body::-webkit-scrollbar {
    width: 6px;
}

.modal-body::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.modal-body h3 {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 14px;
    line-height: 1.4;
}

.modal-body p {
    margin-bottom: 12px;
}

.modal-body strong {
    color: var(--text-main);
}


