/* FONTS */
@font-face {
    font-family: 'Interstate Condensed';
    src: url('assets/fonts/Interstate-BlackCondensed.woff') format('woff');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Interstate';
    src: url('assets/fonts/Interstate Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Interstate';
    src: url('assets/fonts/Interstate Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

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

body,
html {
    width: 100%;
    height: 100%;
    font-family: 'Interstate', sans-serif;
    overflow: hidden;
    /* Prevent scrolling on main body, screens handle it if needed */
    background-color: #000;
}

.screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.screen-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

/* TYPOGRAPHY UTILS */
.red-text {
    color: #A3282C;
    /* Estimated Levi's Red - verified from logo usually, tuning to screenshot later */
}

/* SCREEN BACKGROUNDS */
.screen-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: center;
    z-index: 0;
    /* Behind content */
}

/* CONTENT Z-INDEX */
.main-header,
.card-container,
.main-footer {
    position: relative;
    z-index: 1;
}

/* TYPOGRAPHY UTILS */
.red-text {
    color: #C41230;
    /* Adjusted to Levi's official red standard if needed, or stick to sampled */
}

.white-text {
    color: white;
}

/* SCREEN 1: LANDING */
#screen-landing {
    align-items: center;
    padding-bottom: 20px;
}

/* HEADER / TITLE */
.main-header {
    margin-top: 12%;
    /* Responsive top margin */
    text-align: center;
    width: 100%;
    padding: 0 10px;
}

.title-main {
    font-family: 'Interstate Condensed', sans-serif;
    font-weight: 900;
    font-size: 50px;
    line-height: 0.9;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.super-exclam {
    vertical-align: baseline;
}

.asterisk {
    font-size: 0.5em;
    /* Smaller asterisk */
    vertical-align: top;
    position: relative;
    top: -0.2em;
}

/* WHITE CARD */
.card-container {
    width: 100%;
    padding: 0 20px;
    margin-top: auto;
    margin-bottom: auto;
    display: flex;
    justify-content: center;
    padding-bottom: 20px;
}

.white-card {
    background: #FFFFFF;
    width: 100%;
    max-width: 320px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.card-title {
    font-family: 'Interstate Condensed', sans-serif;
    font-weight: 900;
    font-size: 24px;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #A3282C;
}

/* CHECKBOX */
.gdpr-check {
    margin-bottom: 20px;
    font-size: 10px;
    text-align: left;
    display: flex;
    justify-content: center;
}

.checkbox-container {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}

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

.checkmark {
    height: 14px;
    width: 14px;
    border: 1px solid #A3282C;
    display: inline-block;
    margin-right: 8px;
    flex-shrink: 0;
}

.checkbox-container input:checked~.checkmark {
    background: #A3282C;
}

.label-text {
    font-family: 'Interstate', sans-serif;
    font-weight: 400;
    font-size: 10px;
    color: #000;
}

.label-text a {
    color: #A3282C;
    text-decoration: underline;
    font-weight: 700;
}


/* BUTTON */
.btn-primary {
    display: block;
    width: 100%;
    background-color: #A3282C;
    color: white;
    border: none;
    padding: 15px 0;
    font-family: 'Interstate', sans-serif;
    font-weight: 700;
    /* Bold looks closer to screen 1 */
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
}

.btn-primary:active {
    background-color: #8a1f23;
}

.arrow {
    font-size: 10px;
}

/* FOOTER */
.main-footer {
    width: 100%;
    text-align: center;
    padding-bottom: 30px;
    color: white;
    font-family: 'Interstate', sans-serif;
}

.footer-logo img {
    height: 25px;
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: underline;
    font-size: 10px;
    display: block;
    margin-bottom: 5px;
}

.footer-mentions {
    font-size: 9px;
    opacity: 0.8;
}

/* SCREEN 2: FORM SPECIFIC */
.city-selector {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.city-pill {
    padding: 10px 25px;
    border: 1px solid #E0E0E0;
    border-radius: 5px;
    /* Rounded pill shape or rect? Screen says pills but looks rectangular with slight radius in some refs, check later. */
    background: #F9F9F9;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000;
}

.city-pill.selected {
    border: 1px solid #A3282C;
    /* Selected border? Or logic. */
    background: #F5F5F5;
    /* Check designs closely */
}

/* Radio inside pill style */
.radio-circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #ccc;
    display: inline-block;
    position: relative;
}

.city-pill.selected .radio-circle {
    border-color: #A3282C;
}

.city-pill.selected .radio-circle::after {
    content: '';
    width: 6px;
    height: 6px;
    background: #A3282C;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-label {
    display: block;
    font-size: 10px;
    color: #999;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
    text-align: center;
    /* Labels seem centered in screen 2 inputs */
}

.form-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #000;
    padding: 5px 0;
    font-family: 'Interstate', sans-serif;
    font-size: 14px;
    text-align: center;
    color: #000;
    outline: none;
    background: transparent;
    border-radius: 0;
    /* Remove iOS styles */
}

.form-input::placeholder {
    color: #ccc;
}

/* Button Disabled State */
.btn-primary.disabled,
.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #999;
}


/* SCREEN 3: CONFIRMATION */
#screen-confirmation {
    background-color: #A3282C;
    align-items: center;
    padding-top: 20px;
    /* Reduced from 40px */
}

.confirm-title {
    font-family: 'Interstate Condensed', sans-serif;
    font-weight: 900;
    font-size: 36px;
    /* Reduced from 42px */
    line-height: 0.95;
    color: #FFFFFF;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 10px;
    /* Reduced from 20px */
    width: 100%;
    padding: 0 20px;
}

.mask-container {
    width: 100%;
    max-width: 280px;
    /* Reduced max-width */
    height: auto;
    margin: 0 auto 15px;
    /* Reduced from 30px */
    position: relative;
    display: flex;
    justify-content: center;
}

.mask-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 200px;
}

.confirm-text-block {
    text-align: center;
    color: white;
    padding: 0 20px;
}

.confirm-subtitle {
    font-family: 'Interstate Condensed', sans-serif;
    font-weight: 900;
    font-size: 24px;
    /* Reduced from 28px */
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 10px;
    /* Reduced from 20px */
}

.confirm-desc {
    font-family: 'Interstate', sans-serif;
    font-weight: 700;
    font-size: 13px;
    /* Slightly smaller */
    line-height: 1.3;
    text-transform: uppercase;
    margin-bottom: 20px;
    /* Reduced from 40px */
}

.highlight-percent {
    font-size: 1.2em;
}

/* Custom scrollbar handling if needed, though hidden usually good */
::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}