﻿
html, body {
    font-family: 'Amazon Ember', 'Segoe UI', Arial, sans-serif;
    background-color: var(--dark);
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

@font-face {
    font-family: 'Amazon Ember';
    src: url('fonts/EmberModernText-V1.1/EmberModernTextV1.1-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Amazon Ember';
    src: url('fonts/EmberModernText-V1.1/EmberModernTextV1.1-Italic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Amazon Ember';
    src: url('fonts/EmberModernText-V1.1/EmberModernTextV1.1-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Amazon Ember';
    src: url('fonts/EmberModernText-V1.1/EmberModernTextV1.1-BoldItalic.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Amazon Ember Display';
    src: url('fonts/EmberModernDisplay-V1.1/EmberModernDisplayV1.1-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Amazon Ember Display';
    src: url('fonts/EmberModernDisplay-V1.1/EmberModernDisplayV1.1-Italic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Amazon Ember Display';
    src: url('fonts/EmberModernDisplay-V1.1/EmberModernDisplayV1.1-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Amazon Ember Display';
    src: url('fonts/EmberModernDisplay-V1.1/EmberModernDisplayV1.1-BoldItalic.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --orange: #FF6D00;
    --orange-hover: #E55A00;
    --dark: #0F1923;
    --dark2: #131f2b;
    --white: #FFFFFF;
    --gray: #CBD5E1;
}

body {
    font-family: 'Amazon Ember', 'Segoe UI', Arial, sans-serif;
    background-color: var(--dark);
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ── BACKGROUND ── */
.bg-layer {
    position: fixed;
    inset: 0;
    z-index: 0;
    /* SVG background from resources folder */
    background-image: url('../resources/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Fallback: dark gradient with subtle pattern if SVG not found */
    background-color: var(--dark);
}

    .bg-layer::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 70% 50%, rgba(255,109,0,0.06) 0%, transparent 60%), radial-gradient(ellipse at 20% 80%, rgba(15,25,35,0.5) 0%, transparent 70%);
    }

/* ── NAV ── */
nav {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 72px;
    background: rgba(255,255,255,0.97);
    box-shadow: 0 1px 0 rgba(0,0,0,0.1);
}

.nav-logo img {
    height: 36px;
}

/* Combined Amazon Ads logo + Connected Worlds text for nav */
.nav-logo-text {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-logo-img {
    height: 20px;
    width: auto;
    display: block;
}

.nav-logo-divider {
    width: 1.5px;
    align-self: stretch;
    margin: 10px 0;
    margin-top: -2px;
    background: #232F3E;
    opacity: 0.3;
    flex-shrink: 0;
}

.nav-logo-title {
    font-family: 'Amazon Ember Display', 'Amazon Ember', Arial, sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #232F3E;
    letter-spacing: -0.3px;
    white-space: nowrap;
    line-height: 1;
    margin-top: -12px;
}

.hero-logo-img {
    height: 48px;
    width: auto;
    /* Invert black logo to white for dark background */
    filter: brightness(0) invert(1);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

    .nav-links a {
        text-decoration: none;
        color: #232F3E;
        font-size: 15px;
        font-weight: 500;
        transition: color 0.2s;
    }

        .nav-links a:hover {
            color: var(--orange);
        }

.nav-register {
    background: var(--orange);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 24px;
    font-weight: 700 !important;
    transition: background 0.2s !important;
}

    .nav-register:hover {
        background: var(--orange-hover) !important;
        color: var(--white) !important;
    }

/* ── HAMBURGER BUTTON ── */
.hamburger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 12;
}

    .hamburger-btn svg {
        width: 28px;
        height: 28px;
        stroke: #232F3E;
        stroke-width: 2;
        stroke-linecap: round;
        fill: none;
    }

/* ── MOBILE NAV OVERLAY ── */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 50;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(3px);
}

    .mobile-nav-overlay.active {
        display: block;
    }

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100%;
    background: var(--dark2);
    z-index: 51;
    padding: 24px;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0;
}

    .mobile-nav-drawer.active {
        right: 0;
    }

.mobile-nav-close {
    align-self: flex-end;
    background: none;
    border: none;
    color: var(--gray);
    font-size: 28px;
    cursor: pointer;
    margin-bottom: 24px;
    transition: color 0.2s;
}

    .mobile-nav-close:hover {
        color: var(--white);
    }

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

    .mobile-nav-links li {
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .mobile-nav-links a {
        display: block;
        text-decoration: none;
        color: var(--white);
        font-size: 16px;
        font-weight: 500;
        padding: 16px 0;
        transition: color 0.2s;
    }

        .mobile-nav-links a:hover {
            color: var(--orange);
        }

    .mobile-nav-links .nav-register-mobile {
        display: inline-block;
        background: var(--orange);
        color: var(--white) !important;
        padding: 12px 32px;
        border-radius: 30px;
        font-weight: 700;
        text-align: center;
        margin-top: 16px;
        transition: background 0.2s;
    }

        .mobile-nav-links .nav-register-mobile:hover {
            background: var(--orange-hover);
        }

/* ── HERO ── */
.hero {
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 72px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    width: 100%;
    height: 100% !important;
}

/* LEFT CONTENT */
.hero-left {
    max-width: 760px;
    animation: fadeUp 0.8s ease both;
    background-color: rgba(22,29,38,0.97);
    height: 100%;
    padding-top: 40px;
    padding-left: 90px;
    padding-bottom: 70px;
    padding-right: 40px;
}

.hero-title {
    font-family: 'Amazon Ember Display', 'Amazon Ember', Arial, sans-serif;
    font-size: clamp(32px, 3.8vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--orange);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.hero-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--white);
    margin-bottom: 0;
    max-width: 440px;
}

    .hero-desc + .hero-desc {
        margin-top: 10px;
        margin-bottom: 14px;
    }

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 17px;
    font-weight: 500;
    color: var(--white);
}

.meta-icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .meta-icon svg {
        width: 22px;
        height: 22px;
        stroke: var(--orange);
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

/* RIGHT GRAPHIC */
.hero-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    flex: 1;
    min-width: 500px;
}

/* Amazon Ads logo above GIF */
.hero-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.hero-brand-name {
    font-size: 38px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -1px;
    line-height: 1;
}

.hero-brand-smile {
    width: 140px;
    height: auto;
    display: block;
    margin-top: -4px;
}

/* Connected Worlds animated image */
.cw-animation {
    width: 680px;
    max-width: 100%;
    height: auto;
    display: block;
}

.hero-tagline {
    font-size: 15px;
    color: var(--white);
    margin-top: 18px;
    margin-bottom: 20px;
}

.hero-tagline-highlight {
    color: var(--orange);
    font-weight: 700;
}

.btn-register-hero {
    background: var(--orange);
    color: #262a30;
    font-family: 'Amazon Ember', 'Segoe UI', Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    border: none;
    border-radius: 40px;
    padding: 16px 48px;
    cursor: pointer;
    letter-spacing: 0.3px;
    transition: background 0.2s, transform 0.15s;
    animation: fadeUp 0.8s 0.4s ease both;
}

    .btn-register-hero:hover {
        background: var(--orange-hover);
        transform: translateY(-2px);
    }


.speakerSection {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
    z-index: 30;
}

.speakerArea {
    width: 100%;
    max-width: 90vw;
    margin: 0 auto;
    padding: 50px 20px;
    background-color: #131f2b;
    border-radius:10px;
}
.speakerArea div h1{text-align:center;}

.speakerGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 400px));
    justify-content: center; /* centers items */
    gap: 20px;
}
    .speakerGrid  div {
        text-align:center;
    }
.speakerPicContainer {
    padding: 100px 100px 10px 100px;
}


.speakerPic {
    width: 100%
}
/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    /* NAV */
    /* -- Header Adjustments -- */
    nav {
        padding: 0 16px;
        height: 75px;
        justify-content: center;
        padding-left: 50px;
    }

    .nav-logo-divider {
        display: block !important;
        width: 2px;
        height: 30px; /* Increased height for a larger divider */
        margin: 0 12px;
        background: #232F3E;
        opacity: 0.3;
        align-self: center;
        margin-top: -10px; /* Lifts the divider higher to match the text */
    }

    .nav-logo-title {
        font-size: 24px; /* Increased by 2px (from 22px) */
        font-weight: 700;
        margin-top: -10px; /* Aligns with the logo and lifted divider */
    }

    .nav-logo-text {
        gap: 0;
        align-items: center;
    }

    .hamburger-btn {
        display: block;
        position: absolute;
        left: 16px;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-links {
        display: none;
    }

    /* HERO */
    .hero {
        padding: 0 20px 32px;
        min-height: calc(100vh - 75px);
        justify-content: flex-start;
    }

    .hero-inner {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .hero-left {
        max-width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        order: 2;
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 120px;
    }

    .hero-right {
        min-width: unset;
        width: 100%;
        align-items: center;
        order: 1;
    }

    .cw-animation {
        width: 111vw;
        max-width: 97%;
    }

    .hero-title {
        font-size: clamp(22px, 6vw, 32px);
        margin-bottom: 10px;
    }

    .hero-desc {
        font-size: 13px;
        line-height: 1.6;
        max-width: 100%;
    }

        .hero-desc + .hero-desc {
            margin-top: 6px;
            margin-bottom: 8px;
        }

    .event-meta {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px 16px;
        margin-top: 36px;
    }

    .meta-item {
        font-size: 13px;
        gap: 6px;
    }

    .meta-icon {
        width: 18px;
        height: 18px;
    }

        .meta-icon svg,
        .meta-icon img {
            width: 16px !important;
            height: 16px !important;
        }

    .hero-tagline {
        margin-top: 12px;
        margin-bottom: 12px;
        font-size: 14px;
    }

    .btn-register-hero {
        padding: 14px 44px;
        font-size: 18px;
    }

    /* MODALS */
    .modal {
        padding: 28px 20px 28px;
        max-width: 95%;
        margin: 0 auto;
        overflow-y: auto;
        height: 100%;
    }

    .modal-title {
        font-size: 18px;
        margin-bottom: 18px;
    }

    .modal-fields {
        gap: 10px;
    }

    .modal-input {
        padding: 11px 14px;
        font-size: 13px;
    }

    .otp-modal {
        padding: 28px 20px;
        max-width: 95%;
    }

    .otp-box {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .otp-inputs {
        gap: 8px;
    }

    .success-card {
        padding: 36px 24px 32px;
        max-width: 95%;
    }

    .site-footer {
        flex-direction: column; /* Stacks elements vertically [cite: 122] */
        justify-content: center; /* Centers content vertically [cite: 123] */
        align-items: center; /* Centers items horizontally [cite: 123] */
        text-align: center; /* Centers text lines [cite: 124] */
        padding: 10px 5px !important; /* Matches the generous spacing in your image [cite: 125] */
        gap: 15px; /* Consistent vertical gap between elements [cite: 126] */
    }

    .footer-left {
        display: flex;
        flex-direction: row;
        /* Stacks the logo above the text [cite: 127] */
        gap: 5px; /* Tight spacing between logo and 'Connected Worlds' [cite: 128] */
    }

    .footer-divider {
        display: none; /* Hides the vertical bar for the stacked mobile view  */
    }

    .footer-title {
        font-size: 20px; /* Slightly larger to match the reference image [cite: 248] */
        margin-bottom: 5px;
    }

    .footer-center {
        margin: 5px 0; /* Adds breathing room for the Privacy link */
    }

    .footer-right {
        text-align: center; /* Ensures copyright notice is centered [cite: 130] */
        width: 100%; /* Takes full width to maintain centering [cite: 131] */
        line-height: 1.4;
        font-size: 12px; /* Slightly smaller font for the legal text [cite: 244] */
    }

    .speakerGrid {
        grid-template-columns: repeat(2, 1fr); /* 🔥 Mobile = 2 */
    }

        .speakerGrid div {
            text-align: center;
        }
        .speakerGrid div h2 {
           font-size:16px;
        }
            .speakerGrid div p {
                font-size: 14px;
            }

    .speakerPicContainer {
        padding: 20px 20px 5px 20px;
    }
}

/* ── RESPONSIVE UPDATES ── */
@media (max-width: 900px) {
    nav {
        padding: 0 16px;
        height: 75px;
        justify-content: center;
        padding-right: 80px;
    }

    .nav-logo-divider {
        display: block !important;
        height: 18px;
        margin: 0 12px;
        background: #232F3E;
        opacity: 0.3;
    }

    .nav-logo-text {
        gap: 0;
    }

    .site-footer {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 40px 20px;
        gap: 15px;
    }

    .footer-left {
        flex-direction: column;
        gap: 8px;
    }

    .footer-divider {
        display: none;
    }

    .footer-right {
        text-align: center;
        width: 100%;
        font-size: 11px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 0 16px;
        height: 70px;
        justify-content: center;
        padding-right: 50px;
    }

    .nav-logo-img {
        height: 20px;
    }

    .nav-logo-divider {
        margin: 14px 0;
    }

    .nav-logo-title {
        font-size: 18px;
    }

    .nav-logo-text {
        gap: 10px;
    }

    .hero {
        padding: 0 !important;
        min-height: calc(100vh - 70px);
    }

    .hero-inner {
        gap: 10px;
    }

    .cw-animation {
        width: 111vw;
        max-width: 90%;
        margin: 70px 0px;
    }

    .hero-title {
        font-size: clamp(20px, 5.5vw, 28px);
        margin-bottom: 8px;
    }

    .hero-desc {
        font-size: 12px;
    }

    .meta-item {
        font-size: 11px;
    }

    .btn-register-hero {
        padding: 12px 36px;
        font-size: 16px;
    }

    .modal {
        padding: 24px 16px 24px;
    }

    .otp-box {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}

/* ── SUCCESS MODAL ── */
.success-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0,0,0,0.80);
    backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
}

    .success-overlay.active {
        display: flex;
    }

.success-card {
    background: #131f2b;
    border: 2.5px solid var(--orange);
    border-radius: 20px;
    padding: 52px 44px 44px;
    max-width: 440px;
    width: 90%;
    text-align: center;
    animation: modalIn 0.35s ease both;
    position: relative;
}

.success-icon-wrap {
    width: 68px;
    height: 68px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    animation: popIn 0.4s 0.1s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes popIn {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.success-icon-wrap svg {
    width: 36px;
    height: 36px;
    stroke: #fff;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.success-heading {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.success-text {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.65;
    margin-bottom: 36px;
}

.btn-download-pass {
    background: none;
    border: 3px solid var(--orange);
    color: var(--orange);
    font-family: inherit;
    font-size: 15px;
    font-weight: 800;
    border-radius: 50px;
    padding: 16px 20px;
    width: 100%;
    cursor: pointer;
    letter-spacing: 0.4px;
    transition: background 0.2s, color 0.2s, transform 0.15s;
}

    .btn-download-pass:hover {
        background: var(--orange);
        color: var(--white);
        transform: translateY(-2px);
    }

/* ── MODAL OVERLAY ── */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(0,0,0,0.72);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
}

    .modal-overlay.active {
        display: flex;
    }

.modal {
    background: #131f2b;
    border: 2px solid var(--orange);
    border-radius: 16px;
    width: 100%;
    max-width: 680px;
    overflow: visible;
    padding: 15px 48px 15px;
    position: relative;
    animation: modalIn 0.3s ease both;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.94) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    color: var(--gray);
    font-size: 22px;
    cursor: pointer;
    transition: color 0.2s;
}

    .modal-close:hover {
        color: var(--white);
    }

.modal-title {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
}

.modal-fields {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.modal-input {
    width: 100%;
    background: #1e2d3d;
    border: 1.5px solid #2a3f55;
    border-radius: 10px;
    padding: 13px 16px;
    color: var(--white);
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}

    .modal-input::placeholder {
        color: #8096aa;
    }

    .modal-input:focus {
        border-color: var(--orange);
    }

.diet-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.diet-label {
    font-size: 14px;
    color: var(--gray);
    white-space: nowrap;
}

.diet-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.diet-btn {
    background: none;
    border: 1.5px solid #2a3f55;
    border-radius: 20px;
    color: var(--white);
    padding: 7px 18px;
    font-size: 13px;
    font-family: inherit;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

    .diet-btn:hover {
        border-color: var(--orange);
    }

    .diet-btn.selected {
        border-color: var(--orange);
        background: var(--orange);
    }

.access-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.access-top {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.access-label {
    font-size: 13px;
    color: var(--gray);
}

.access-note {
    font-size: 11px;
    color: #8096aa;
}

.toggle-btn {
    background: none;
    border: 1.5px solid #2a3f55;
    border-radius: 20px;
    color: var(--white);
    padding: 6px 20px;
    font-size: 13px;
    font-family: inherit;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

    .toggle-btn.active {
        border-color: var(--orange);
        background: var(--orange);
    }

    .toggle-btn:hover {
        border-color: var(--orange);
    }

.access-detail-wrap {
    width: 100%;
    display: none;
}

    .access-detail-wrap.visible {
        display: block;
    }

/* ── PRIVACY CONSENT ROW ── */
.privacy-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 2px;
}

.privacy-checkbox {
    width: 16px;
    height: 16px;
    min-width: 16px;
    margin-top: 2px;
    accent-color: var(--orange);
    cursor: pointer;
}

.privacy-text {
    font-size: 12px;
    color: #8096aa;
    line-height: 1.5;
}

    .privacy-text a {
        color: var(--orange);
        text-decoration: underline;
        transition: color 0.2s;
    }

        .privacy-text a:hover {
            color: var(--orange-hover);
        }

.btn-modal-submit {
    width: 100%;
    margin-top: 8px;
    background: var(--orange);
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 40px;
    padding: 15px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}

    .btn-modal-submit:hover {
        background: var(--orange-hover);
        transform: translateY(-1px);
    }

    .btn-modal-submit:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        transform: none;
    }

.modal-msg {
    text-align: center;
    font-size: 13px;
    margin-top: 2px;
    min-height: 10px;
}

    .modal-msg.error {
        color: #ff6b6b;
    }

    .modal-msg.success {
        color: #4ade80;
    }

/* ── OTP MODAL ── */
.otp-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0,0,0,0.72);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
}

    .otp-modal-overlay.active {
        display: flex;
    }

.otp-modal {
    background: #131f2b;
    border: 2px solid var(--orange);
    border-radius: 16px;
    width: 100%;
    max-width: 480px;
    padding: 40px 48px;
    position: relative;
    text-align: center;
    animation: modalIn 0.3s ease both;
}

.otp-logo {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 24px;
}

.otp-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 28px;
}

.otp-inputs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px;
}

.otp-box {
    width: 54px;
    height: 54px;
    background: transparent;
    border: 2px solid var(--orange);
    border-radius: 10px;
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: inherit;
}

    .otp-box:focus {
        border-color: #ff9a40;
        box-shadow: 0 0 0 3px rgba(255,109,0,0.25);
    }

.otp-resend {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 8px;
}

.otp-resend-link {
    color: var(--orange);
    cursor: pointer;
    text-decoration: underline;
    display: none;
}

.otp-timer {
    font-weight: 600;
    color: var(--orange);
}

.btn-otp-verify {
    width: 100%;
    margin-top: 20px;
    background: var(--orange);
    color: var(--white);
    font-size: 17px;
    font-weight: 700;
    border: none;
    border-radius: 40px;
    padding: 14px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}

    .btn-otp-verify:hover {
        background: var(--orange-hover);
        transform: translateY(-1px);
    }

    .btn-otp-verify:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        transform: none;
    }

.otp-msg {
    font-size: 13px;
    margin-top: 12px;
    min-height: 20px;
}

    .otp-msg.error {
        color: #ff6b6b;
    }

    .otp-msg.success {
        color: #4ade80;
    }

.otp-email-hint {
    font-size: 13px;
    color: #8096aa;
    margin-bottom: 20px;
    margin-top: -16px;
}

/* ── UPDATED SUCCESS ICON ── */
.success-icon-wrap svg {
    width: 42px; /* Increased from 36px for a more prominent icon */
    height: 42px; /* Increased from 36px */
    stroke: var(--white);
    stroke-width: 4; /* Thickened the checkmark to match the image */
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

/* ── UPDATED DOWNLOAD BUTTON (Solid Orange Style) ── */
.btn-download-pass {
    background: var(--orange); /* Changed from 'none' to solid orange */
    border: 2px solid var(--orange);
    color: var(--dark); /* Dark text for contrast against the orange */
    font-family: inherit;
    font-size: 16px;
    font-weight: 800;
    border-radius: 50px;
    padding: 16px 20px;
    width: 100%;
    cursor: pointer;
    letter-spacing: 0.4px;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

    .btn-download-pass:hover {
        background: var(--orange-hover); /* Slightly darker orange on hover */
        border-color: var(--orange-hover);
        color: var(--dark);
        transform: translateY(-2px); /* Keeps the nice lift effect */
    }

/* ── UPDATED SUCCESS ICON (Rotated, larger, and shifted up) ── */
.success-icon-wrap h3 {
    color: var(--white);
    font-size: 81px;
    font-weight: bold;
    margin: 0;
    line-height: 1;
    transform: translateY(-11px) rotate(14deg);
}

/* ── FOOTER ── */
.site-footer {
    position: relative;
    z-index: 10;
    background-color: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 24px 48px;
    font-size: 13px;
    color: var(--gray);
}

.footer-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3px;
}

.footer-logo {
    height: 20px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-divider {
    width: 1px;
    height: 18px;
    background: var(--white);
    opacity: 0.3;
    margin-bottom: 5px;
    display: block;
}

.footer-title {
    font-family: 'Amazon Ember Display', 'Amazon Ember', Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.3px;
    margin-bottom: 3px;
    flex-wrap: nowrap;
}

.footer-center a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.2s;
}

    .footer-center a:hover {
        color: var(--white);
    }

.footer-right {
    text-align: center;
}
