/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Custom Fonts */
@font-face {
    font-family: 'Formular';
    src: url('fonts/Formular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Spoof';
    src: url('fonts/Spoof-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Spoof';
    src: url('fonts/Spoof-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

:root {
    /* Colors */
    --primary-orange: #fa9b2e;
    --orange-dark: #f97316;
    --orange-light: #fbbf24;
    --beige-primary: #DACFC6;
    --purple: #a855f7;
    --dark-bg: #101318;
    --text-white: #fafafa;
    --text-gray: #8f96a3;
    
    /* Spacing */
    --container-max: 1512px;
    --section-padding: 128px;
}

body {
    font-family: 'Spoof', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(90deg, #101318 0%, #101318 100%);
    color: var(--text-white);
    line-height: 1.5;
    overflow-x: hidden;
    width: 100%;
    max-width: 1512px;
    margin: 0 auto;
}

/* Header */
.header {
    position: relative;
    width: 100%;
    max-width: 1512px;
    height: 117px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 30px;
}

.logo-icon {
    width: 30px;
    height: 30px;
}

.logo-text {
    width: 101px;
    height: 17px;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 1321.96px;
    padding-top: 0;
    padding-bottom: 80px;
    overflow: hidden;
    margin-top: 0;
}

.gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16, 19, 24, 0.6) 0%, rgba(16, 19, 24, 0.8) 50%, rgba(16, 19, 24, 0.95) 100%);
    z-index: 2;
    pointer-events: none;
}

.blur-orange {
    position: absolute;
    left: 15%;
    top: 35%;
    width: 500px;
    height: 500px;
    background: rgba(250, 155, 46, 0.4);
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
}

.blur-purple {
    position: absolute;
    right: 15%;
    top: 55%;
    width: 500px;
    height: 500px;
    background: rgba(168, 85, 247, 0.25);
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
}

.hero-container {
    position: relative;
    width: 1024px;
    margin: 0 auto;
    padding: 0 0 60px 0;
    z-index: 2;
}

.hero-badge {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
    margin-top: 0;
}

.hero-badge p {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    padding: 11px 13px;
    font-size: 14px;
    color: var(--text-gray);
    box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.37);
    white-space: nowrap;
}

.hero-title {
    font-family: 'Formular', sans-serif;
    text-align: center;
    font-size: 85px;
    font-weight: 700;
    line-height: 96px;
    letter-spacing: -2.4px;
    margin-bottom: 70px;
    max-width: 1239px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.title-line {
    display: inline;
}

.title-gradient {
    display: inline;
    background: linear-gradient(90deg, #fa9b2e 0%, #fbbf24 50%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    text-align: center;
    font-size: 23.3px;
    line-height: 32px;
    color: var(--text-gray);
    margin-bottom: 52px;
    width: 712px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle .highlight {
    color: var(--text-white);
    font-weight: 500;
    font-family: 'Spoof', sans-serif;
}

.app-preview-container {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.app-preview-blur {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    height: 580px;
    background: rgba(250, 155, 46, 0.3);
    filter: blur(30px);
    z-index: -1;
}

.app-preview {
    width: 320px;
    height: 659.96px;
    border-radius: 24px;
    box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.cta-button {
    display: block;
    margin: 0 auto;
    background: var(--primary-orange);
    border: none;
    border-radius: 9999px;
    padding: 14px 20px;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Spoof', sans-serif;
    color: var(--dark-bg);
    cursor: pointer;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    min-width: 267.85px;
    position: relative;
    z-index: 10;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0px 15px 20px -3px rgba(0, 0, 0, 0.2), 0px 6px 8px -4px rgba(0, 0, 0, 0.2);
}

/* Problems Section */
.problems-section {
    position: relative;
    height: 678px;
    overflow: hidden;
}

.section-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 125.44%;
    top: -12.72%;
    object-fit: cover;
    opacity: 0.8;
}

.section-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #101318 0%, rgba(16, 19, 24, 0.8) 50%, #101318 100%);
    z-index: 1;
}

.problems-container {
    position: relative;
    width: 896px;
    margin: 0 auto;
    padding: 128px 0;
    z-index: 2;
}

.section-title {
    font-family: 'Formular', sans-serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 60px;
    text-align: center;
    margin-bottom: 94px;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 13.33px;
}

.problem-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 32px 20px;
    box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.5);
    text-align: center;
    height: 298px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.problem-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 26px;
    margin-top: 0;
}

.problem-card h3 {
    font-family: 'Formular', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 26px;
    color: var(--text-white);
}

.problem-card p {
    font-size: 16px;
    line-height: 24px;
    color: var(--text-gray);
}

/* Features Section */
.features-section {
    padding: 128px 0;
    position: relative;
    min-height: 632px;
    margin-top: 128px;
}

.features-container {
    width: 1024px;
    margin: 0 auto;
}

.section-description {
    text-align: center;
    font-size: 19.8px;
    line-height: 28px;
    color: var(--text-gray);
    margin-bottom: 57px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.features-heading {
    font-family: 'Formular', sans-serif;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    margin-bottom: 64px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px 32px 36px 32px;
    box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.37);
    min-height: 126px;
    position: relative;
}

.feature-icon {
    position: absolute;
    left: 32px;
    top: 40px;
    width: 24px;
    height: 24px;
}

.feature-card h4 {
    font-family: 'Formular', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 8px;
    padding-left: 52px;
    margin-top: 8px;
}

.feature-card p {
    font-size: 16px;
    line-height: 24px;
    color: var(--text-gray);
    padding-left: 52px;
    margin-top: 2px;
}

/* Steps Section */
.steps-section {
    position: relative;
    height: 1100px;
    overflow: hidden;
    margin-top: 128px;
}

.steps-section .section-bg {
    width: 129.34%;
    left: -14.67%;
    height: 100%;
    top: 0;
}

.steps-section .section-gradient {
    background: linear-gradient(0deg, #101318 0%, rgba(16, 19, 24, 0.9) 50%, rgba(16, 19, 24, 0.8) 100%);
}

.steps-container {
    position: relative;
    width: 896px;
    margin: 0 auto;
    padding: 128px 0;
    z-index: 2;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 64px;
}

.step-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 32px 32px 38px 32px;
    box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.5);
    min-height: 134px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 9999px;
    background: rgba(250, 155, 46, 0.2);
    border: 1px solid var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 500;
    font-family: 'Spoof', sans-serif;
    color: var(--primary-orange);
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    padding-top: 12px;
}

.step-content h4 {
    font-family: 'Formular', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
    margin-bottom: 6px;
}

.step-time {
    font-size: 14px;
    font-weight: 500;
    font-family: 'Spoof', sans-serif;
    color: var(--primary-orange);
    line-height: 20px;
}

.step-content p {
    font-size: 16px;
    line-height: 28px;
    color: var(--text-gray);
    margin-top: 4px;
}

/* Safety Section */
.safety-section {
    position: relative;
    height: 702px;
    overflow: hidden;
    margin-top: 0;
}

.safety-section .section-bg {
    width: 100%;
    height: 121.15%;
    top: -10.58%;
    left: 0;
}

.safety-section .section-gradient {
    background: linear-gradient(180deg, #101318 0%, rgba(16, 19, 24, 0.85) 50%, #101318 100%);
}

.safety-container {
    position: relative;
    width: 896px;
    margin: 0 auto;
    padding: 128px 0;
    z-index: 2;
}

.safety-section .section-title {
    font-size: 48px;
    line-height: 48px;
    margin-bottom: 73px;
}

.safety-section .section-description {
    font-size: 19.7px;
    margin-bottom: 51px;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 13.33px;
}

.safety-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px 20px;
    box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.37);
    text-align: center;
    height: 222px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.safety-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 30px;
    margin-top: 9px;
}

.safety-card h4 {
    font-family: 'Formular', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 18px;
}

.safety-card p {
    font-size: 16px;
    line-height: 24px;
    color: var(--text-gray);
}

/* CTA Section */
.cta-section {
    position: relative;
    height: 556px;
    overflow: hidden;
    margin-top: 0;
}

.cta-blur {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: rgba(250, 155, 46, 0.1);
    border-radius: 9999px;
    filter: blur(75px);
}

.cta-container {
    position: relative;
    width: 768px;
    margin: 0 auto;
    padding: 128px 0;
    z-index: 2;
    text-align: center;
}

.cta-title {
    font-family: 'Formular', sans-serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 43px;
    max-width: 756px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-large {
    display: block;
    margin: 0 auto 64px;
    background: var(--primary-orange);
    border: none;
    border-radius: 9999px;
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Spoof', sans-serif;
    color: var(--dark-bg);
    cursor: pointer;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    min-width: 299.85px;
}

.cta-button-large:hover {
    transform: translateY(-2px);
    box-shadow: 0px 15px 20px -3px rgba(0, 0, 0, 0.2), 0px 6px 8px -4px rgba(0, 0, 0, 0.2);
}

.cta-note {
    font-size: 14px;
    line-height: 20px;
    color: var(--text-gray);
    margin-bottom: 71px;
}

.cta-section .logo {
    justify-content: center;
    margin: 0 auto;
}

/* Responsive Styles */
/* Large tablets and small desktops */
@media (max-width: 1512px) {
    .hero-container {
        max-width: 1024px;
        padding: 0 32px 60px 32px;
    }
    
    .problems-container,
    .features-container,
    .steps-container,
    .safety-container,
    .cta-container {
        max-width: 896px;
        padding-left: 32px;
        padding-right: 32px;
    }
    
    .features-container {
        max-width: 1024px;
    }
}

/* Tablet styles */
@media (max-width: 1024px) {
    .header {
        padding: 0 32px;
    }
    
    .hero-section {
        min-height: auto;
        padding-bottom: 60px;
    }
    
    .hero-container {
        width: 100%;
        padding: 0 32px 40px 32px;
    }
    
    .hero-title {
        font-size: 60px;
        line-height: 68px;
        max-width: 100%;
        padding: 0;
    }
    
    .hero-subtitle {
        font-size: 20px;
        line-height: 28px;
        width: 100%;
        max-width: 600px;
    }
    
    .app-preview {
        width: 280px;
        height: auto;
    }
    
    .problems-section,
    .steps-section,
    .safety-section,
    .cta-section {
        height: auto;
        min-height: auto;
    }
    
    .problems-container,
    .steps-container,
    .safety-container {
        width: 100%;
        padding: 80px 32px;
    }
    
    .features-container {
        width: 100%;
        padding: 0 32px;
    }
    
    .cta-container {
        width: 100%;
        padding: 80px 32px;
    }
    
    .section-title {
        font-size: 48px;
        line-height: 52px;
        margin-bottom: 60px;
    }
    
    .problems-grid,
    .safety-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .problem-card,
    .safety-card {
        width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        width: 100%;
    }
    
    .step-card {
        width: 100%;
    }
    
    .steps-section .section-bg {
        width: 100%;
        left: 0;
    }
    
    .safety-section .section-bg {
        width: 100%;
        left: 0;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .header {
        height: 80px;
        padding: 0 20px;
    }
    
    .logo-icon {
        width: 24px;
        height: 24px;
    }
    
    .logo-text {
        width: 80px;
        height: 14px;
    }
    
    .hero-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    
    .hero-container {
        padding: 0 20px 30px 20px;
    }
    
    .hero-badge p {
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .hero-title {
        font-size: 42px;
        line-height: 48px;
        letter-spacing: -1.2px;
        margin-bottom: 48px;
    }
    
    .hero-subtitle {
        font-size: 17px;
        line-height: 26px;
        margin-bottom: 36px;
    }
    
    .app-preview {
        width: 240px;
        height: auto;
    }
    
    .app-preview-container {
        margin-bottom: 36px;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        font-size: 16px;
        padding: 12px 18px;
    }
    
    .problems-section,
    .steps-section,
    .safety-section {
        height: auto;
        min-height: auto;
    }
    
    .problems-section {
        margin-top: 0;
    }
    
    .problems-container,
    .steps-container,
    .safety-container {
        padding: 60px 20px;
    }
    
    .features-section {
        padding: 0px 0;
        min-height: auto;
        margin-top: 30px;
    }
    
    .features-container {
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 36px;
        line-height: 40px;
        margin-bottom: 40px;
        white-space: normal;
    }
    
    .section-description {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 40px;
        white-space: normal;
    }
    
    .features-heading {
        font-size: 20px;
        margin-bottom: 32px;
    }
    
    .problems-grid,
    .safety-grid,
    .features-grid {
        gap: 16px;
    }
    
    .problem-card {
        padding: 28px 20px;
        min-height: 240px;
        height: auto;
    }
    
    .problem-card h3 {
        font-size: 18px;
        margin-bottom: 16px;
    }
    
    .problem-card p {
        font-size: 15px;
        line-height: 22px;
    }
    
    .feature-card {
        padding: 24px;
        min-height: auto;
        height: auto;
    }
    
    .feature-icon {
        position: static;
        margin-bottom: 12px;
    }
    
    .feature-card h4 {
        font-size: 18px;
        padding-left: 0;
        margin-top: 0;
    }
    
    .feature-card p {
        font-size: 15px;
        line-height: 22px;
        padding-left: 0;
    }
    
    .steps-section {
        margin-top: 60px;
    }
    
    .steps-list {
        margin-top: 40px;
        gap: 20px;
    }
    
    .step-card {
        flex-direction: column;
        padding: 24px;
        min-height: auto;
        gap: 16px;
    }
    
    .step-number {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .step-content {
        padding-top: 0;
    }
    
    .step-content h4 {
        font-size: 18px;
        line-height: 28px;
    }
    
    .step-time {
        font-size: 12px;
    }
    
    .step-content p {
        font-size: 15px;
        line-height: 24px;
    }
    
    .safety-section .section-title {
        font-size: 32px;
        line-height: 38px;
    }
    
    .safety-section .section-description {
        font-size: 15px;
        margin-bottom: 32px;
    }
    
    .safety-card {
        padding: 24px 16px;
        min-height: auto;
        height: auto;
    }
    
    .safety-icon {
        width: 28px;
        height: 28px;
        margin-bottom: 20px;
    }
    
    .safety-card h4 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .safety-card p {
        font-size: 14px;
        line-height: 20px;
    }
    
    .cta-section {
        height: auto;
        padding: 60px 0;
    }
    
    .cta-container {
        padding: 0 20px;
    }
    
    .cta-title {
        font-size: 36px;
        line-height: 42px;
        margin-bottom: 32px;
        max-width: 100%;
    }
    
    .cta-button-large {
        width: 100%;
        max-width: 320px;
        font-size: 16px;
        padding: 16px 32px;
        margin-bottom: 40px;
    }
    
    .cta-note {
        font-size: 12px;
        line-height: 18px;
        margin-bottom: 40px;
        white-space: normal;
    }
    
    .section-bg {
        object-position: center;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
        line-height: 42px;
        margin-bottom: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        line-height: 24px;
    }
    
    .app-preview {
        width: 200px;
    }
    
    .section-title {
        font-size: 30px;
        line-height: 36px;
    }
    
    .cta-title {
        font-size: 30px;
        line-height: 36px;
    }
}

/* Quiz Modal Styles */
.quiz-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.quiz-modal.active {
    display: flex;
}

.quiz-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.quiz-container {
    position: relative;
    background: #0f0f0f;
    border-radius: 16px;
    width: 90%;
    max-width: 448px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 24px;
    box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.5);
    z-index: 10000;
}

.quiz-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    color: #999999;
    font-size: 32px;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
    z-index: 10001;
}

.quiz-close:hover {
    color: #f59f0a;
}

.quiz-screen {
    display: none;
}

.quiz-screen.active {
    display: block;
}

.quiz-progress-bar {
    background: #1f1f1f;
    height: 4px;
    border-radius: 9999px;
    overflow: hidden;
    margin-bottom: 16px;
}

.quiz-progress-fill {
    background: #f59f0a;
    height: 100%;
    transition: width 0.3s ease;
}

.quiz-progress-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    font-size: 12px;
}

.quiz-section-label {
    color: #f59f0a;
    font-weight: 500;
}

.quiz-step-count {
    color: #999999;
}

.quiz-header {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid #2e2e2e;
}

.quiz-title {
    font-family: 'Inter', 'Spoof', sans-serif;
    font-size: 19.1px;
    font-weight: 700;
    color: #f59f0a;
    margin-bottom: 8px;
    text-align: center;
}

.quiz-subtitle {
    font-family: 'Inter', 'Spoof', sans-serif;
    font-size: 13.6px;
    color: #999999;
    text-align: center;
}

.quiz-question {
    margin-bottom: 24px;
}

.quiz-label {
    display: block;
    font-size: 15.5px;
    color: #fafafa;
    font-weight: 500;
    margin-bottom: 12px;
}

.quiz-helper {
    font-size: 13px;
    color: #999999;
    margin-bottom: 16px;
    line-height: 1.5;
}

.quiz-input {
    width: 100%;
    background: #1f1f1f;
    border: 1px solid #2e2e2e;
    border-radius: 10px;
    padding: 10px 12px;
    color: #fafafa;
    font-size: 13.6px;
    font-family: 'Inter', 'Spoof', sans-serif;
    transition: border-color 0.2s;
}

.quiz-input::placeholder {
    color: #999999;
}

.quiz-input:focus {
    outline: none;
    border-color: #f59f0a;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quiz-option-card {
    position: relative;
    display: block;
    cursor: pointer;
}

.quiz-option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.quiz-option-content {
    background: #1f1f1f;
    border: 2px solid #2e2e2e;
    border-radius: 12px;
    padding: 16px;
    transition: all 0.2s;
}

.quiz-option-card:hover .quiz-option-content {
    border-color: #f59f0a;
    background: rgba(245, 159, 10, 0.05);
}

.quiz-option-card input[type="radio"]:checked ~ .quiz-option-content {
    border-color: #f59f0a;
    background: rgba(245, 159, 10, 0.1);
}

.quiz-emoji {
    font-size: 24px;
    margin-bottom: 8px;
    display: block;
}

.quiz-option-content h4 {
    font-size: 15px;
    color: #fafafa;
    margin-bottom: 4px;
    font-weight: 600;
}

.quiz-option-content p {
    font-size: 13px;
    color: #999999;
    line-height: 1.4;
}

.quiz-options-simple {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quiz-option-simple {
    display: flex;
    align-items: center;
    background: #1f1f1f;
    border: 2px solid #2e2e2e;
    border-radius: 10px;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.2s;
}

.quiz-option-simple:hover {
    border-color: #f59f0a;
    background: rgba(245, 159, 10, 0.05);
}

.quiz-option-simple input[type="radio"] {
    margin-right: 12px;
    accent-color: #f59f0a;
}

.quiz-option-simple input[type="radio"]:checked {
    background: #f59f0a;
}

.quiz-option-simple input[type="radio"]:checked ~ span,
.quiz-option-simple:has(input[type="radio"]:checked) {
    border-color: #f59f0a;
    background: rgba(245, 159, 10, 0.1);
}

.quiz-option-simple span {
    color: #fafafa;
    font-size: 14px;
}

.quiz-scale {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.quiz-scale-label {
    font-size: 12px;
    color: #999999;
    min-width: 100px;
    text-align: center;
}

.quiz-scale-inputs {
    display: flex;
    gap: 8px;
    flex: 1;
    justify-content: center;
    flex-wrap: wrap;
}

.quiz-scale-inputs input[type="radio"] {
    display: none;
}

.quiz-scale-inputs label {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1f1f1f;
    border: 2px solid #2e2e2e;
    border-radius: 6px;
    color: #999999;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.quiz-scale-inputs label:hover {
    border-color: #f59f0a;
    background: rgba(245, 159, 10, 0.05);
}

.quiz-scale-inputs input[type="radio"]:checked + label {
    background: #f59f0a;
    border-color: #f59f0a;
    color: #0f0f0f;
    font-weight: 600;
}

.quiz-button {
    width: 100%;
    background: linear-gradient(90deg, #f59f0a 0%, #fbbf24 100%);
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    color: #0f0f0f;
    font-size: 13.9px;
    font-weight: 600;
    font-family: 'Inter', 'Spoof', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0px 0px 30px 0px rgba(245, 159, 10, 0.15);
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 32px;
    position: relative;
}

.quiz-button:hover {
    transform: translateY(-2px);
    box-shadow: 0px 0px 40px 0px rgba(245, 159, 10, 0.25);
}

.quiz-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.quiz-button.loading {
    color: transparent;
}

.quiz-button.loading svg {
    opacity: 0;
}

.quiz-button.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid transparent;
    border-top-color: #0f0f0f;
    border-radius: 50%;
    animation: spinner 0.6s linear infinite;
}

.quiz-button svg {
    width: 16px;
    height: 16px;
}

/* Success Screen */
.quiz-success {
    text-align: center;
    padding: 40px 0;
}

.quiz-success-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.quiz-success-title {
    font-family: 'Formular', 'Inter', 'Spoof', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #f59f0a;
    margin-bottom: 16px;
    line-height: 1.3;
}

.quiz-success-subtitle {
    font-size: 15px;
    color: #999999;
    margin-bottom: 32px;
    line-height: 1.5;
}

.quiz-payment-box {
    background: #1f1f1f;
    border: 1px solid #2e2e2e;
    border-radius: 12px;
    padding: 24px;
    margin-top: 32px;
}

.quiz-payment-text {
    font-size: 14px;
    color: #fafafa;
    margin-bottom: 24px;
    line-height: 1.6;
    text-align: left;
}

.quiz-payment-options {
    display: flex;
    gap: 12px;
}

.quiz-payment-button {
    flex: 1;
    padding: 12px 24px;
    border: 2px solid #2e2e2e;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', 'Spoof', sans-serif;
}

.quiz-payment-button.yes {
    background: #f59f0a;
    border-color: #f59f0a;
    color: #0f0f0f;
}

.quiz-payment-button.yes:hover {
    background: #fbbf24;
    border-color: #fbbf24;
    transform: translateY(-2px);
}

.quiz-payment-button.no {
    background: transparent;
    border-color: #2e2e2e;
    color: #fafafa;
}

.quiz-payment-button.no:hover {
    border-color: #999999;
    background: rgba(255, 255, 255, 0.05);
}

.quiz-payment-button.claim-spot {
    background: linear-gradient(135deg, #f59f0a 0%, #fbbf24 100%);
    border-color: #f59f0a;
    color: #0f0f0f;
    flex: 1;
    box-shadow: 0 0 20px rgba(245, 159, 10, 0.6);
    animation: glow-pulse 2s ease-in-out infinite;
}

.quiz-payment-button.claim-spot:hover {
    box-shadow: 0 0 30px rgba(245, 159, 10, 0.8), 0 0 50px rgba(245, 159, 10, 0.6);
    transform: translateY(-2px);
    background: linear-gradient(135deg, #fbbf24 0%, #fcd34d 100%);
}

.quiz-payment-button.claim-spot:active {
    transform: translateY(0);
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(245, 159, 10, 0.6);
    }
    50% {
        box-shadow: 0 0 35px rgba(245, 159, 10, 0.9);
    }
}

.quiz-payment-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.quiz-payment-button.loading {
    position: relative;
    color: transparent;
}

.quiz-payment-button.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid transparent;
    border-top-color: #0f0f0f;
    border-radius: 50%;
    animation: spinner 0.6s linear infinite;
}

.quiz-payment-button.no.loading::after {
    border-top-color: #fafafa;
}

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

.quiz-final-message {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.quiz-final-message.active {
    display: block;
}

.quiz-final-message-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.quiz-final-message-title {
    font-family: 'Formular', 'Inter', 'Spoof', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #f59f0a;
    margin-bottom: 16px;
    line-height: 1.3;
}

.quiz-final-message-text {
    font-size: 15px;
    color: #999999;
    margin-bottom: 32px;
    line-height: 1.5;
}

.quiz-final-message-button {
    background: #f59f0a;
    border: none;
    border-radius: 10px;
    padding: 12px 32px;
    color: #0f0f0f;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', 'Spoof', sans-serif;
}

.quiz-final-message-button:hover {
    background: #fbbf24;
    transform: translateY(-2px);
}

/* Responsive Quiz */
@media (max-width: 768px) {
    .quiz-container {
        max-width: 95%;
        padding: 20px;
    }
    
    .quiz-scale {
        flex-direction: column;
        align-items: stretch;
    }
    
    .quiz-scale-label {
        text-align: left;
        min-width: auto;
    }
    
    .quiz-scale-inputs {
        justify-content: flex-start;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    max-width: 900px;
    width: calc(100% - 48px);
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.cookie-content {
    background: rgba(16, 19, 24, 0.55);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border: 1px solid rgba(250, 155, 46, 0.3);
    border-radius: 20px;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                0 0 1px rgba(250, 155, 46, 0.1) inset;
}

.cookie-text {
    font-family: 'Spoof', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-white);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.cookie-dismiss {
    font-family: 'Spoof', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-bg);
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--orange-light) 100%);
    border: none;
    border-radius: 12px;
    padding: 10px 24px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(250, 155, 46, 0.25);
}

.cookie-dismiss:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(250, 155, 46, 0.35);
}

.cookie-dismiss:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 16px;
        width: calc(100% - 32px);
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 16px;
    }
    
    .cookie-text {
        font-size: 13px;
    }
    
    .cookie-dismiss {
        width: 100%;
        padding: 12px 24px;
    }
}

/* ============================================
   EVENT BOOKING SCREEN (SCREEN 5)
   ============================================ */

.event-booking-container {
    padding: 40px 32px;
    max-width: 100%;
}

.booking-header {
    margin-bottom: 40px;
}

.booking-greeting {
    font-family: 'Spoof', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--text-white);
    margin: 0 0 8px 0;
}

.booking-title {
    font-family: 'Formular', sans-serif;
    font-size: 42px;
    font-weight: 400;
    color: var(--text-white);
    margin: 0;
    line-height: 1.1;
}

.booking-location {
    color: var(--text-gray);
}

.booking-section {
    margin-top: 40px;
}

.booking-section-title {
    font-family: 'Formular', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-white);
    margin: 0 0 24px 0;
}

.event-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.event-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.event-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    border-color: var(--primary-orange);
    box-shadow: 0 8px 32px rgba(250, 155, 46, 0.15);
}

.event-card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(250, 155, 46, 0.2), rgba(168, 85, 247, 0.2));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(250, 155, 46, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.event-card-content {
    flex: 1;
}

.event-card-title {
    font-family: 'Formular', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    margin: 0 0 4px 0;
}

.event-card-time {
    font-family: 'Spoof', sans-serif;
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

.event-card-arrow {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-orange), var(--purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
}

.event-card:hover .event-card-arrow {
    transform: translateX(4px);
    box-shadow: 0 8px 20px rgba(250, 155, 46, 0.4);
}

/* ============================================
   DISCOUNT POPUP
   ============================================ */

.discount-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10001;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.discount-popup.active {
    display: flex;
}

.discount-popup-content {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 32px;
    padding: 48px 40px;
    max-width: 480px;
    width: calc(100% - 32px);
    position: relative;
    text-align: center;
    animation: slideUp 0.4s ease;
    box-shadow: 0 8px 32px rgba(250, 155, 46, 0.1);
}

.discount-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    color: var(--text-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.discount-popup-close:hover {
    background: rgba(250, 155, 46, 0.2);
    color: var(--primary-orange);
}

.discount-popup-icon {
    font-size: 80px;
    margin-bottom: 16px;
    animation: bounce 1s ease infinite;
}

.discount-popup-title {
    font-family: 'Formular', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--text-white);
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.discount-popup-subtitle {
    font-family: 'Spoof', sans-serif;
    font-size: 16px;
    color: var(--text-gray);
    margin: 0 0 16px 0;
}

.discount-popup-code {
    background: linear-gradient(135deg, var(--primary-orange), var(--purple));
    color: white;
    font-family: 'Formular', sans-serif;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 16px 32px;
    border-radius: 16px;
    margin: 0 auto 24px;
    display: inline-block;
    box-shadow: 0 8px 24px rgba(250, 155, 46, 0.3);
}

.discount-popup-expiry {
    font-family: 'Spoof', sans-serif;
    font-size: 14px;
    color: var(--text-gray);
    background: rgba(250, 155, 46, 0.1);
    border: 1px solid rgba(250, 155, 46, 0.2);
    padding: 12px 20px;
    border-radius: 12px;
    margin: 0 0 32px 0;
}

.discount-popup-button {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary-orange), var(--orange-dark));
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Formular', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 16px;
    box-shadow: 0 8px 20px rgba(250, 155, 46, 0.3);
}

.discount-popup-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(250, 155, 46, 0.4);
}

.discount-popup-skip {
    width: 100%;
    padding: 16px 32px;
    background: transparent;
    color: var(--text-gray);
    border: none;
    font-family: 'Spoof', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.discount-popup-skip:hover {
    color: var(--text-white);
}

/* ============================================
   EVENT DETAIL MODAL
   ============================================ */

.event-detail-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 10002;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.event-detail-modal.active {
    display: flex;
}

.event-detail-content {
    background: rgba(16, 19, 24, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 0;
    max-width: 560px;
    width: calc(100% - 32px);
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s ease;
    box-shadow: 0 8px 32px rgba(250, 155, 46, 0.1);
}

.event-detail-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    color: var(--text-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.event-detail-close:hover {
    background: rgba(250, 155, 46, 0.2);
    color: var(--primary-orange);
}

.event-detail-images {
    width: 100%;
    height: 280px;
    border-radius: 32px 32px 0 0;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    background: linear-gradient(135deg, rgba(250, 155, 46, 0.1), rgba(168, 85, 247, 0.1));
}

.event-detail-image {
    width: 200px;
    height: 240px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    position: absolute;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.event-detail-image:nth-child(1) {
    transform: translateX(-80px) translateY(-20px) rotate(-8deg);
    z-index: 3;
}

.event-detail-image:nth-child(2) {
    transform: translateX(0) translateY(0) rotate(0deg);
    z-index: 2;
}

.event-detail-image:nth-child(3) {
    transform: translateX(80px) translateY(-20px) rotate(8deg);
    z-index: 1;
}

.event-detail-title {
    font-family: 'Formular', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--text-white);
    margin: 32px 32px 16px;
    line-height: 1.2;
}

.event-detail-description {
    font-family: 'Spoof', sans-serif;
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0 32px 32px;
}

.event-detail-button {
    width: calc(100% - 64px);
    margin: 0 32px 32px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary-orange), var(--orange-dark));
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Formular', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(250, 155, 46, 0.3);
}

.event-detail-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(250, 155, 46, 0.4);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* ============================================
   SUBSCRIPTION PLANS (SCREEN 6)
   ============================================ */

.plans-container {
    padding: 40px 32px;
    max-width: 100%;
}

.plans-title {
    font-family: 'Formular', sans-serif;
    font-size: 42px;
    font-weight: 400;
    color: var(--text-white);
    margin: 0 0 32px 0;
    text-align: center;
}

.plan-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.plan-option {
    position: relative;
    cursor: pointer;
}

.plan-option input[type="radio"] {
    position: static;
    opacity: 1;
    pointer-events: auto;
}

.plan-content {
    background: transparent;
    backdrop-filter: none;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    transition: all 0.3s ease;
}

.plan-option input[type="radio"]:checked + .plan-content {
    background: transparent;
    border: none;
    box-shadow: none;
}

.plan-option:hover .plan-content {
    background: transparent;
    border: none;
}

.plan-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.plan-duration {
    font-family: 'Formular', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
}

.plan-type {
    font-family: 'Spoof', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: var(--text-gray);
    white-space: nowrap;
}

.plan-badge {
    background: rgba(168, 85, 247, 0.2);
    color: var(--purple);
    font-family: 'Spoof', sans-serif;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 4px;
    border-radius: 20px;
    border: 1px solid rgba(168, 85, 247, 0.3);
    margin-left: auto;
}

.plan-description {
    font-family: 'Spoof', sans-serif;
    font-size: 14px;
    color: var(--text-gray);
    margin: 8px 0;
}

.plan-prices {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.plan-price {
    font-family: 'Formular', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-orange);
}

.plan-price-old {
    font-family: 'Spoof', sans-serif;
    font-size: 14px;
    color: var(--text-gray);
    text-decoration: line-through;
}

.plan-frequency {
    font-family: 'Spoof', sans-serif;
    font-size: 14px;
    color: var(--text-gray);
    margin-left: 4px;
}

/* Promo Code Box */
.promo-code-box {
    background: linear-gradient(135deg, rgba(250, 155, 46, 0.15), rgba(168, 85, 247, 0.15));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(250, 155, 46, 0.3);
    border-radius: 20px;
    padding: 16px 24px;
    margin-bottom: 32px;
    animation: slideUp 0.4s ease;
}

.promo-code-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.promo-code-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-orange), var(--purple));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.promo-code-info {
    flex: 1;
    text-align: left;
}

.promo-code-label {
    font-family: 'Spoof', sans-serif;
    font-size: 12px;
    color: var(--text-gray);
    margin: 0 0 4px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promo-code-value {
    font-family: 'Formular', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-orange);
    margin: 0;
}

.promo-code-discount {
    font-family: 'Formular', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-orange);
}

.plans-continue-btn {
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--primary-orange), var(--orange-dark));
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Formular', sans-serif;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(250, 155, 46, 0.3);
}

.plans-continue-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(250, 155, 46, 0.4);
}

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .booking-title {
        font-size: 32px;
    }
    
    .booking-greeting {
        font-size: 20px;
    }
    
    .event-booking-container {
        padding: 24px 16px;
    }
    
    .plans-container {
        padding: 24px 16px;
    }
    
    .plans-title {
        font-size: 32px;
    }
    
    .plan-content {
        padding: 20px;
    }
    
    .plan-duration {
        font-size: 16px;
    }
    
    .plan-description {
        font-size: 13px;
    }
    
    .plan-price {
        font-size: 20px;
    }
    
    .discount-popup-content {
        padding: 32px 24px;
        border-radius: 24px;
    }
    
    .discount-popup-title {
        font-size: 26px;
    }
    
    .discount-popup-code {
        font-size: 24px;
        padding: 12px 24px;
    }
    
    .event-detail-images {
        height: 240px;
    }
    
    .event-detail-image {
        width: 160px;
        height: 200px;
    }
    
    .event-detail-image:nth-child(1) {
        transform: translateX(-60px) translateY(-20px) rotate(-8deg);
    }
    
    .event-detail-image:nth-child(3) {
        transform: translateX(60px) translateY(-20px) rotate(8deg);
    }
    
    .event-detail-title {
        font-size: 24px;
        margin: 24px 24px 12px;
    }
    
    .event-detail-description {
        font-size: 14px;
        margin: 0 24px 24px;
    }
    
    .event-detail-button {
        width: calc(100% - 48px);
        margin: 0 24px 24px;
    }
    
    .promo-code-box {
        padding: 12px 16px;
    }
}

/* Payment Page Styles */
.payment-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.payment-progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

.payment-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-orange), var(--purple));
    transition: width 0.3s ease;
}

.payment-steps-container {
    flex: 1;
    padding: 24px;
}

.payment-step {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.payment-step.active {
    display: block;
    opacity: 1;
}

/* Add bottom padding to step 4 to prevent bottom bar from covering content */
.payment-step#step4 {
    padding-bottom: 120px;
}

.payment-step-back {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-white);
    cursor: pointer;
    padding: 8px 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.payment-step-back:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
}

.payment-step-header {
    margin-bottom: 32px;
}

.payment-step-label {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-step-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-white);
}

.payment-step-subtitle {
    font-size: 16px;
    padding: 5px;
    color: var(--text-gray);
}

.vibe-highlight {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2) 0%, rgba(255, 152, 0, 0.2) 100%);
    border: 1px solid rgba(255, 152, 0, 0.6);
    border-radius: 6px;
    padding: 2px 8px;
    display: inline-block;
    color: #FFD580;
    font-weight: 600;
}

.date-highlight {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2) 0%, rgba(255, 152, 0, 0.2) 100%);
    border: 1px solid rgba(255, 152, 0, 0.6);
    border-radius: 6px;
    padding: 2px 8px;
    display: inline-block;
}

/* Inline icon for text labels (calendar, etc.) */
.inline-icon {
    width: 16px;
    height: 16px;
    vertical-align: -2px;
    margin-right: 6px;
}

/* Inline calendar with centered day (Step 2) */
.inline-calendar {
    position: relative;
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: -3px;
    margin-right: 6px;
}
.inline-calendar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.inline-calendar-day {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    color: #121417;
    transform: translateY(2px);
}

.vibe-selector {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    cursor: default;
}

.vibe-toggle {
    cursor: pointer;
    font: inherit;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: box-shadow 0.2s ease;
}

.vibe-toggle::after {
    content: '▼';
    font-size: 10px;
    margin-left: 2px;
    opacity: 0.8;
    transition: transform 0.2s ease;
}

.vibe-toggle:hover::after {
    opacity: 1;
}

.vibe-toggle:hover {
    box-shadow: 0 0 0 2px rgba(255, 152, 0, 0.35);
}

.vibe-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 220px;
    padding: 8px;
    display: none;
    background: rgba(10, 10, 12, 0.96);
    border: 1px solid rgba(255, 152, 0, 0.35);
    border-radius: 10px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
    z-index: 20;
}

.vibe-dropdown.open {
    display: block;
}

.vibe-option {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    color: #f5f5f5;
    font: inherit;
    padding: 10px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s ease, border 0.15s ease;
}

.vibe-option:hover {
    background: rgba(255, 152, 0, 0.12);
}

.vibe-option.active {
    background: rgba(255, 152, 0, 0.16);
    border: 1px solid rgba(255, 152, 0, 0.3);
}

.confirmation-icon img {
    width: 32px;
    height: 32px;
    display: inline-block;
}

/* Confirmation header calendar day overlay (Step 3) */
.confirmation-icon {
    position: relative;
}
.confirmation-calendar-day {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: #121417;
    transform: translateY(2px);
}

.payment-section {
    margin-bottom: 0;
}

/* Event Cards */
.event-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.event-card {
    display: flex;
    align-items: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.event-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-orange);
}

.event-card-icon {
    font-size: 28px;
    margin-right: 12px;
}

.event-card-content {
    flex: 1;
}

.event-card-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 4px;
}

.event-card-time {
    font-size: 14px;
    color: var(--text-gray);
}

.event-card-arrow {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-orange), var(--purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
}

.event-card:hover .event-card-arrow {
    transform: translateX(4px);
    box-shadow: 0 8px 20px rgba(250, 155, 46, 0.4);
}

.event-card.selected {
    background: rgba(250, 155, 46, 0.08);
    border-color: var(--primary-orange);
}

/* Date Cards */
.date-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.week-divider {
    height: 1px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    margin: 8px 0;
}

.date-card {
    display: flex;
    align-items: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.date-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-orange);
}

.date-card-radio {
    display: none;
}

.date-card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(250, 155, 46, 0.2), rgba(168, 85, 247, 0.2));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(250, 155, 46, 0.3);
    border-radius: 12px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.date-card-icon img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.date-card-day {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #121417;
    font-size: 16px;
    transform: translateY(4px);
}

.date-card.selected {
    background: rgba(250, 155, 46, 0.08);
    border-color: var(--primary-orange);
}

.date-card-content {
    flex: 1;
}

.date-card-label {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 4px;
}

.date-card-time {
    font-size: 14px;
    color: var(--text-gray);
}

.date-card-arrow {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-orange), var(--purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
}

.date-card:hover .date-card-arrow {
    transform: translateX(4px);
    box-shadow: 0 8px 20px rgba(250, 155, 46, 0.4);
}

.event-card:hover .event-card-arrow {
    opacity: 1;
}

/* Location Selection */
.payment-location-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(250, 155, 46, 0.1);
    border-radius: 8px;
    margin-bottom: 32px;
    font-size: 14px;
    color: var(--text-gray);
}

.payment-location-info svg {
    flex-shrink: 0;
    color: var(--primary-orange);
}

.payment-location-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-location-option {
    display: flex;
    align-items: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.payment-location-option input[type="radio"] {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    cursor: pointer;
    accent-color: var(--primary-orange);
}

.payment-location-option input[type="radio"]:checked + .location-label {
    color: var(--primary-orange);
}

.payment-location-option:has(input[type="radio"]:checked) {
    background: rgba(250, 155, 46, 0.1);
    border-color: var(--primary-orange);
}

.location-label {
    flex: 1;
    font-size: 16px;
    cursor: pointer;
    transition: color 0.2s;
}

.payment-location-option:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(250, 155, 46, 0.5);
}

/* Plan Options */
.plan-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.plan-option {
    display: grid;
    grid-template-columns: 20px 1fr;
    grid-template-rows: auto auto;
    gap: 8px 12px;
    align-items: start;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.02);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.plan-option input[type="radio"] {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    accent-color: var(--primary-orange);
    flex-shrink: 0;
    grid-column: 1;
    grid-row: 1;
    align-self: center;
}

.plan-option:has(input[type="radio"]:checked) {
    background: rgba(250, 155, 46, 0.08);
    box-shadow: 0 0 0 2px var(--primary-orange);
}

.plan-option:hover {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.plan-content {
    display: contents;
}

.plan-duration {
    font-size: 18px;
    font-weight: 600;
    min-width: 110px;
    grid-column: 2;
    grid-row: 1;
}

.plan-pricing {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
    width: 100%;
    grid-column: 2;
    grid-row: 2;
}

.plan-price {
    font-size: 16px;
    font-weight: 500;
}

/* Single event price positioning in grid (when not inside plan-pricing) */
.plan-content > .plan-price {
    grid-column: 2;
    grid-row: 2;
}

.plan-price-was {
    font-size: 14px;
    color: var(--text-gray);
    text-decoration: line-through;
}

.plan-weekly {
    font-size: 18px;
    font-weight: 600;
    margin-left: auto;
}

.plan-badge {
    background: #86efac;
    color: #14532d;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 4px;
    border-radius: 8px;
    position: absolute;
    right: 16px;
    top: 14px;
    transform: none;
}

/* Step Button */
.payment-step-button {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--primary-orange), var(--orange-dark));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-top: 16px;
}

.payment-step-button:hover {
    background: linear-gradient(135deg, var(--orange-dark), var(--primary-orange));
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(250, 155, 46, 0.3);
}

.payment-step-button:active {
    transform: translateY(0);
}

/* Confirmation Step Styles - Apple Design */
.confirmation-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 28px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.confirmation-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.confirmation-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.confirmation-icon {
    font-size: 32px;
    line-height: 1;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.confirmation-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.3px;
}

/* Smaller heading specifically within the "What happens next?" card */
.confirmation-info .confirmation-title {
    font-size: 18px;
}

/* Reduce icon size within the "What happens next?" card */
.confirmation-info .confirmation-icon {
    font-size: 26px;
}

.confirmation-details {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.confirmation-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.confirmation-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.confirmation-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    letter-spacing: -0.2px;
}

.confirmation-value {
    font-size: 15px;
    color: #ffffff;
    font-weight: 400;
    text-align: right;
    max-width: 60%;
    letter-spacing: -0.2px;
}

.confirmation-info {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.12), rgba(59, 130, 246, 0.12));
    border: 1px solid rgba(168, 85, 247, 0.25);
}

.confirmation-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.confirmation-step-item {
    display: flex;
    gap: 16px;
    align-items: center;
}

.step-number {
    min-width: 36px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3);
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 4px 0;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.step-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    line-height: 1.5;
    letter-spacing: -0.1px;
}

/* Promo Code Box */
.promo-code-box {
    padding: 16px;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 8px;
    margin-bottom: 32px;
}

.promo-code-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.promo-code-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--purple);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.promo-code-info {
    flex: 1;
}

.promo-code-label {
    font-size: 12px;
    color: var(--text-gray);
    margin: 0;
}

.promo-code-value {
    font-size: 16px;
    font-weight: 600;
    margin: 4px 0 0;
}

.promo-code-discount {
    font-size: 16px;
    font-weight: 600;
    color: var(--purple);
}

/* Testimonials */
.payment-testimonials {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-header {
    text-align: center;
    margin-bottom: 24px;
}

.testimonial-stars {
    font-size: 24px;
    margin-bottom: 8px;
}

.testimonial-subtitle {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

.testimonial-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
}

.testimonial-stars-small {
    font-size: 14px;
    margin-bottom: 12px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 12px;
    color: var(--text-white);
}

.testimonial-author {
    font-size: 13px;
    color: var(--text-gray);
    font-style: italic;
    margin: 0;
}

/* Benefits */
.payment-benefits {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 32px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.benefit-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
}

.benefit-icon-purple {
    background: rgba(168, 85, 247, 0.15);
    color: var(--purple);
}

.benefit-icon-orange {
    background: rgba(250, 155, 46, 0.15);
    color: var(--primary-orange);
}

.benefit-icon-blue {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.benefit-icon-green {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.benefit-icon-teal {
    background: rgba(20, 184, 166, 0.15);
    color: #14b8a6;
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-white);
}

.benefit-description {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-gray);
    margin: 0;
}

/* Payment Footer Links */
.payment-footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.payment-footer-link {
    font-size: 13px;
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.2s;
}

.payment-footer-link:hover {
    color: var(--primary-orange);
    text-decoration: underline;
}

.payment-footer-separator {
    color: var(--text-gray);
    opacity: 0.5;
}

/* Desktop Styles */
@media (min-width: 768px) {
    .payment-page {
        background: linear-gradient(90deg, #101318 0%, #101318 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: auto;
        padding: 32px;
    }

    .payment-steps-container {
        width: 100%;
        max-width: 480px;
        background: rgba(16, 19, 24, 0.8);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 24px;
        padding: 32px 32px 24px;
        margin: 0 0 60px 0;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    }

    /* Remove step4 padding on desktop since container has it */
    .payment-step#step4 {
        padding-bottom: 0;
    }

    .payment-step-header {
        text-align: center;
        margin-bottom: 32px;
    }

    .payment-step-title {
        font-size: 32px;
    }

    .payment-step-back {
        margin: 0 auto 24px;
    }

    .event-cards {
        gap: 16px;
    }

    .event-card {
        padding: 20px;
    }

    .payment-step-button {
        padding: 16px 32px;
        font-size: 16px;
    }

    .payment-location-form {
        gap: 16px;
    }

    .payment-location-option {
        padding: 18px;
    }

    .plan-options {
        gap: 16px;
    }

    .plan-option {
        flex-direction: row;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        padding: 18px 22px;
    }

    .plan-option input[type="radio"] {
        margin-right: 16px;
        margin-bottom: 0;
        margin-top: 2px;
        grid-column: initial;
        grid-row: initial;
    }

    .plan-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        flex: 1;
        position: relative;
    }

    .plan-duration {
        grid-column: initial;
        grid-row: initial;
    }

    .plan-pricing {
        grid-column: initial;
        grid-row: initial;
    }

    .testimonial-cards {
        flex-direction: row;
        gap: 16px;
    }

    .testimonial-card {
        flex: 1;
    }

    .confirmation-card {
        padding: 32px;
    }

    .confirmation-title {
        font-size: 24px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .step-title {
        font-size: 18px;
    }
}
    
    .discount-popup-title {
        font-size: 26px;
    }
    
    .discount-popup-code {
        font-size: 24px;
        padding: 12px 24px;
    }
    
    .event-detail-images {
        height: 240px;
    }
    
    .event-detail-image {
        width: 160px;
        height: 200px;
    }
    
    .event-detail-image:nth-child(1) {
        transform: translateX(-60px) translateY(-20px) rotate(-8deg);
    }
    
    .event-detail-image:nth-child(3) {
        transform: translateX(60px) translateY(-20px) rotate(8deg);
    }
    
    .event-detail-title {
        font-size: 24px;
        margin: 24px 24px 12px;
    }
    
    .event-detail-description {
        font-size: 14px;
        margin: 0 24px 24px;
    }
    
    .event-detail-button {
        width: calc(100% - 48px);
        margin: 0 24px 24px;
    }
    
    .promo-code-box {
        padding: 12px 16px;
    }

/* Bottom Payment Notification Bar - Apple Glassmorphism */
.payment-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.37);
}

.payment-bottom-bar.active {
    transform: translateY(0);
}

.payment-bottom-content {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.payment-bottom-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.payment-bottom-price {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.3px;
}

.payment-bottom-notice {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: -0.1px;
}

.payment-bottom-icon {
    font-size: 12px;
}

.payment-bottom-button {
    background: var(--primary-orange);
    border: none;
    border-radius: 20px;
    padding: 10px 28px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Spoof', sans-serif;
    color: #101318;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(250, 155, 46, 0.25);
    white-space: nowrap;
}

.payment-bottom-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(250, 155, 46, 0.35);
    background: #fba742;
}

.payment-bottom-button:active {
    transform: translateY(0);
}

/* Desktop optimizations */
@media (min-width: 769px) {
    .payment-bottom-bar {
        padding: 10px 24px;
    }
    
    .payment-bottom-content {
        max-width: 600px;
    }
    
    .payment-bottom-price {
        font-size: 14px;
    }
    
    .payment-bottom-notice {
        font-size: 11px;
    }
    
    .payment-bottom-button {
        padding: 8px 24px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .payment-bottom-content {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .payment-bottom-button {
        width: 100%;
    }
}

/* Button loading state */
.button-loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.button-loading svg {
    opacity: 0;
}

.button-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    margin-left: -8px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #ffffff;
    animation: button-spin 0.8s linear infinite;
}

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