/* ========================================
   CSS RESET & BASE STYLES
   ======================================== */

/* Import Google Fonts for better mobile compatibility */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Roboto:wght@400;500;700;900&family=Oswald:wght@400;500;600;700&display=swap');

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* CSS Custom Properties */
:root {
    --primary-color: #000;
    --secondary-color: #fff;
    --accent-color: #1f2937;
    --text-color: #fff;
    --text-muted: #9ca3af;
    --border-color: #1f2937;
    --border-width: 3px;
    --border-radius: 0;
    --shadow-offset: 6px;
    --transition-speed: 0.3s;
    --font-impact: 'Oswald', 'Inter', 'Arial Black', Arial, sans-serif;
    --font-system: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

/* ========================================
   SCROLLBAR STYLES
   ======================================== */

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--primary-color);
    border-left: 2px solid var(--border-color);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border: 2px solid var(--primary-color);
}

::-webkit-scrollbar-thumb:hover {
    background: #e5e7eb;
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--secondary-color) var(--primary-color);
}


/* ========================================
   BASE STYLES
   ======================================== */

body {
    font-family: var(--font-system);
    background-color: var(--primary-color);
    color: var(--text-color);
    overflow-x: hidden;
    direction: rtl;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "kern" 1;
    font-kerning: normal;
    width: 100%;
    min-height: 100vh;
}

.impact-font {
    font-family: var(--font-impact);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 1px 1px 0px var(--accent-color);
    line-height: 1.2;
}

/* ========================================
   LAYOUT CONTAINERS
   ======================================== */

.container {
    position: relative;
    z-index: 10;
    width: 100%;
    overflow-x: hidden;
}

.container > .main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px clamp(16px, 4vw, 40px);
    width: 100%;
    box-sizing: border-box;
}

/* ========================================
   BACKGROUND ELEMENTS
   ======================================== */

.background-elements {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.graffiti-star {
    position: absolute;
    top: 80px;
    right: 5%;
    font-size: 6rem;
    color: rgba(156, 163, 175, 0.08);
    transform: rotate(12deg);
    animation: fadeIn 1s 0.2s forwards;
    opacity: 0;
}

.graffiti-music {
    position: absolute;
    bottom: 160px;
    left: 5%;
    font-size: 6rem;
    color: rgba(156, 163, 175, 0.08);
    transform: rotate(-12deg);
    animation: fadeIn 1s 0.4s forwards;
    opacity: 0;
}

.graffiti-diamond {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 6rem;
    color: rgba(156, 163, 175, 0.06);
    animation: fadeIn 1s 0.6s forwards;
    opacity: 0;
}

.graffiti-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(8rem, 20vw, 20rem);
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.03);
    font-family: Impact, 'Arial Black', sans-serif;
    animation: fadeIn 1.5s 0.8s forwards;
    opacity: 0;
    user-select: none;
}

/* Hero Section */
    .hero-section {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

/* Video Background */
.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-bg-video.active {
    opacity: 1;
    z-index: 1;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.7),
        rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0.7)
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    max-width: 1400px;
    width: 100%;
    padding: clamp(40px, 6vw, 80px) clamp(16px, 4vw, 60px);
    z-index: 10;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    box-sizing: border-box;
}

.hero-header {
    margin-bottom: clamp(40px, 5vw, 60px);
    animation: slideDown 0.8s ease-out;
}

/* Hero Video Controls */
.hero-video-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 20px;
}

.main-title {
    font-size: clamp(3rem, 9vw, 9rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    -webkit-text-stroke: 2px white;
    -webkit-text-fill-color: transparent;
    text-shadow: 6px 6px 0px rgba(255,255,255,0.1);
    display: inline-block;
    position: relative;
    animation: slideRight 1s 0.2s ease-out backwards;
    max-width: 100%;
    word-wrap: break-word;
}

.title-underline {
    height: 5px;
    background: white;
    margin-top: -10px;
    animation: expandRight 0.8s 0.5s ease-out backwards;
    max-width: 100%;
}

.subtitle-row {
    display: flex;
    align-items: center;
    gap: clamp(12px, 2vw, 20px);
    margin-top: 12px;
    flex-wrap: wrap;
    max-width: 100%;
}

.subtitle {
    font-size: clamp(1.5rem, 3.5vw, 3.5rem);
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: -0.025em;
    animation: slideRight 0.8s 0.6s ease-out backwards;
}

.subtitle-separator {
    font-size: clamp(1.25rem, 3vw, 3rem);
    color: white;
    font-weight: bold;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin-bottom: clamp(60px, 10vw, 120px);
}

/* Image Gallery - Brutalistic Design */
.image-gallery {
    margin: clamp(40px, 6vw, 80px) 0;
    background: #000;
    border-top: 4px solid #fff;
    border-bottom: 4px solid #fff;
    padding: clamp(20px, 3vw, 40px) 0;
    position: relative;
    /* Add brutalistic shadow */
    box-shadow: 0 0 0 2px #fff, 0 8px 0 0 #fff;
}

.gallery-scroll-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: visible; /* Allow hover effects to show */
    padding: 25px clamp(16px, 4vw, 40px) 35px; /* Add top/bottom padding for scrollbar spacing */
    /* Brutalistic scrollbar styling - Hidden by default */
    scrollbar-width: none; /* Hidden by default */
    scrollbar-color: #fff #000;
    /* Disable smooth scrolling for raw feel */
    scroll-behavior: auto;
    /* Add brutalistic border with shadow */
    border: 4px solid #fff;
    margin: 15px 0;
    /* Add space for hover effects */
    position: relative;
    background: #000;
    /* Brutalistic shadow effect */
    box-shadow: 0 0 0 2px #000, 6px 6px 0 0 #fff;
}

/* Enhanced Brutalistic scrollbar for webkit browsers - Show only on hover */
.gallery-scroll-container::-webkit-scrollbar {
    height: 0px; /* Hidden by default */
    background: #000;
    border: 4px solid #fff;
    border-radius: 0;
    transition: height 0.3s ease;
}

.gallery-scroll-container:hover::-webkit-scrollbar {
    height: 24px; /* Show on hover */
}

.gallery-scroll-container::-webkit-scrollbar-track {
    background: #000;
    border: 4px solid #fff;
    border-top: none;
    border-bottom: none;
    margin: 0 8px; /* Add horizontal spacing */
    box-shadow: inset 0 0 0 2px #000;
}

.gallery-scroll-container::-webkit-scrollbar-thumb {
    background: #fff;
    border: 4px solid #000;
    border-radius: 0;
    box-shadow: inset 0 0 0 4px #000, 0 0 0 2px #fff;
    min-width: 50px; /* Ensure minimum thumb size */
    position: relative;
}

.gallery-scroll-container::-webkit-scrollbar-thumb:hover {
    background: #f0f0f0;
    border: 4px solid #000;
    box-shadow: inset 0 0 0 4px #000, 0 0 0 2px #fff, 0 0 15px rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

.gallery-scroll-container::-webkit-scrollbar-thumb:active {
    background: #e0e0e0;
    border: 4px solid #000;
    box-shadow: inset 0 0 0 4px #000, 0 0 0 2px #fff, 0 0 20px rgba(255, 255, 255, 0.6);
    transform: scale(0.95);
}

.gallery-scroll-container::-webkit-scrollbar-corner {
    background: #000;
    border: 4px solid #fff;
}

.gallery-horizontal {
    display: flex;
    gap: clamp(20px, 3vw, 32px);
    width: max-content;
    padding: 15px 0; /* Add vertical padding for hover effects */
    align-items: center;
}

.gallery-item {
    flex-shrink: 0;
    width: clamp(220px, 28vw, 320px);
    height: clamp(165px, 22vw, 240px);
    border: 4px solid #fff;
    background: #000;
    overflow: hidden;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* Add margin for hover effects */
    margin: 20px 0;
    cursor: pointer;
    /* Brutalistic shadow */
    box-shadow: 0 0 0 2px #000, 6px 6px 0 0 #fff;
}

.gallery-item:hover {
    transform: scale(1.08) translateY(-8px) rotate(1deg);
    z-index: 15;
    box-shadow: 0 0 0 2px #000, 8px 8px 0 0 #fff, 0 0 30px rgba(255, 255, 255, 0.2);
}

.gallery-item:active {
    transform: scale(0.95) translateY(-2px) rotate(0deg);
    box-shadow: 0 0 0 2px #000, 3px 3px 0 0 #fff;
    transition: all 0.1s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.3) brightness(0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, filter;
}

.gallery-item:hover img {
    filter: grayscale(0%) contrast(1.1) brightness(1.1) saturate(1.2);
    transform: scale(1.02);
}

.gallery-item:active img {
    filter: grayscale(20%) contrast(1.2) brightness(1.05);
    transform: scale(0.98);
}

/* Brutalistic shadow effect */
.gallery-item::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 4px solid #fff;
    transform: translate(6px, 6px);
    z-index: -1;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #000;
}

.gallery-item:hover::before {
    opacity: 1;
    transform: translate(8px, 8px);
}

/* Artistic overlay on hover */
.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 50%, 
        rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Firefox scrollbar - Show on hover */
.gallery-scroll-container:hover {
    scrollbar-width: thick;
}

.hero-description {
    font-size: clamp(1.125rem, 2vw, 1.75rem);
    color: #d1d5db;
    margin-top: clamp(20px, 3vw, 30px);
    letter-spacing: 0.025em;
    animation: fadeIn 0.8s 1s ease-out backwards;
    line-height: 1.5;
}

.video-indicators {
    display: flex;
    gap: 8px;
}

.video-indicator {
    width: 35px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all var(--transition-speed);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 0;
    outline: none;
}

.video-indicator.active {
    background: var(--secondary-color);
    width: 55px;
}

.video-indicator:hover {
    background: rgba(255, 255, 255, 0.6);
}

.video-indicator:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

.video-btn {
    background: rgba(0, 0, 0, 0.9);
    color: white;
    border: 2px solid white;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 1.125rem;
    font-family: Impact, 'Arial Black', sans-serif;
    transition: all 0.2s;
    line-height: 1;
}

.video-btn:hover {
    background: white;
}


/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2vw, 24px);
    margin-bottom: clamp(40px, 6vw, 80px);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
}

.feature-content {
    border: 3px solid #1f2937;
    padding: clamp(20px, 3vw, 32px);
    background: linear-gradient(to bottom right, rgba(17, 24, 39, 0.8), rgba(0, 0, 0, 0.8));
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
    min-height: 250px;
}

.feature-content:hover::before {
    opacity: 0.05;
}

.feature-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: white;
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-shadow {
    position: absolute;
    inset: 0;
    border: 3px solid #1f2937;
    transform: translate(6px, 6px);
    z-index: -1;
}

.feature-icon {
    width: clamp(48px, 8vw, 64px);
    height: clamp(48px, 8vw, 64px);
    margin-bottom: clamp(16px, 2vw, 24px);
    transition: transform 0.3s;
    position: relative;
    z-index: 1;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-title {
    font-size: clamp(1.5rem, 2.5vw, 1.875rem);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: -0.025em;
    position: relative;
    z-index: 1;
}

.feature-desc {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: #9ca3af;
    line-height: 1.625;
    position: relative;
    z-index: 1;
}

.corner-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 48px;
    height: 48px;
    border-top: 3px solid white;
    border-right: 3px solid white;
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover .corner-accent {
    opacity: 0.2;
}

/* Third feature card specific styling */
.feature-card-3 {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
}

.feature-card-3 .feature-content {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border-color: #374151;
}

.feature-card-3:hover .feature-content {
    border-color: #60a5fa;
    background: linear-gradient(135deg, #1e40af 0%, #1f2937 100%);
}

/* Artistic Options for Booking Form */
.artistic-options-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(12px, 1.5vw, 16px);
    margin-top: clamp(12px, 1.5vw, 16px);
    max-height: 50vh;
    overflow-y: auto;
    overflow-x: visible;
    padding: 15px 8px 15px 0;
    -webkit-overflow-scrolling: touch;
}

/* Approval Step Styles */
.approval-container {
    margin-top: clamp(16px, 2vw, 24px);
}

.approval-summary {
    background: #030712;
    border: 3px solid #1f2937;
    padding: clamp(20px, 3vw, 32px);
    margin-bottom: clamp(20px, 3vw, 32px);
    position: relative;
    overflow: hidden;
}

.approval-title {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    color: white;
    margin-bottom: clamp(16px, 2vw, 24px);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.approval-details {
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 1vw, 12px);
}

.approval-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(8px, 1vw, 12px) 0;
    border-bottom: 1px solid #374151;
    color: #d1d5db;
    font-size: clamp(0.9rem, 1.25vw, 1.125rem);
}

.approval-item:last-child {
    border-bottom: none;
}

.approval-item strong {
    color: white;
    font-weight: 600;
    min-width: 120px;
    text-align: right;
}

/* Scroll instruction for approval step */
.approval-scroll-instruction {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: clamp(20px, 3vw, 32px);
    transition: opacity 0.3s ease;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(8px, 1vw, 12px);
    padding: clamp(16px, 2vw, 20px);
    border: 3px solid #1f2937;
    background: #030712;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.scroll-text {
    font-size: clamp(1rem, 1.25vw, 1.125rem);
    color: #60a5fa;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.scroll-arrow {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: #60a5fa;
    animation: bounce 2s infinite;
    font-weight: bold;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.artistic-box {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #1f2937;
    background: linear-gradient(135deg, #030712 0%, #111827 100%);
    overflow: hidden;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
    border-radius: 4px;
}

.artistic-box:hover {
    transform: translateY(-2px);
    border-color: #60a5fa;
    box-shadow: 0 4px 15px rgba(96, 165, 250, 0.15);
    z-index: 10;
}

.artistic-box.selected {
    border-color: #60a5fa;
    background: linear-gradient(135deg, #1e40af 0%, #1f2937 100%);
    box-shadow: 0 0 0 1px rgba(96, 165, 250, 0.3);
}

.artistic-box-content {
    text-align: center;
    padding: clamp(8px, 1vw, 12px);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    overflow: hidden;
}

.artistic-icon {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    margin-bottom: clamp(4px, 0.5vw, 6px);
    display: block;
    flex-shrink: 0;
}

.artistic-title {
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    margin-bottom: clamp(2px, 0.3vw, 4px);
    color: white;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    flex-shrink: 0;
}

.artistic-description {
    font-size: clamp(0.7rem, 1vw, 0.8rem);
    color: #9ca3af;
    line-height: 1.2;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    text-align: center;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

/* Date Picker Styles */
.date-picker-button {
    width: 100%;
    text-align: right;
    cursor: pointer;
    background: #030712;
    border: 3px solid #1f2937;
    color: white;
    padding: clamp(14px, 2vw, 18px);
    font-size: clamp(0.9rem, 1.25vw, 1.125rem);
    transition: all 0.3s ease;
    box-sizing: border-box;
    min-height: 48px;
}

.date-picker-button:hover {
    border-color: #60a5fa;
    background: #111827;
}

.date-picker-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(8px);
}

.date-picker-modal.active {
    display: flex;
}

.date-picker-container {
    background: black;
    border: 3px solid white;
    box-shadow: 0 0 0 2px #000, 8px 8px 0 0 #fff, 0 0 30px rgba(255, 255, 255, 0.1);
    max-width: 400px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
}

.date-picker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 2px solid #1f2937;
}

.date-picker-title {
    font-size: 1.5rem;
    color: white;
    margin: 0;
    text-transform: uppercase;
}

.date-picker-close {
    background: transparent;
    border: 2px solid #1f2937;
    color: white;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.date-picker-close:hover {
    border-color: white;
    background: #111827;
}

.date-picker-content {
    padding: 20px;
}

.date-picker-calendar {
    background: #030712;
    border: 2px solid #1f2937;
    padding: 16px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.calendar-nav {
    background: transparent;
    border: 2px solid #1f2937;
    color: white;
    width: 36px;
    height: 36px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.calendar-nav:hover {
    border-color: #60a5fa;
    background: #111827;
}

.calendar-month {
    font-size: 1.25rem;
    color: white;
    margin: 0;
    text-transform: uppercase;
}

.calendar-grid {
    width: 100%;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}

.weekday {
    text-align: center;
    font-size: 0.875rem;
    color: #9ca3af;
    padding: 8px;
    font-weight: bold;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.date-cell {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    color: white;
    background: #030712;
}

.date-cell:hover:not(.past):not(.empty) {
    border-color: #60a5fa;
    background: #111827;
}

.date-cell.today {
    background: #1f2937;
    border-color: #60a5fa;
}

.date-cell.selected {
    background: #60a5fa;
    color: black;
    border-color: white;
}

.date-cell.past {
    color: #4b5563;
    cursor: not-allowed;
    opacity: 0.3;
    background: #1f2937;
    border-color: #374151;
}

.date-cell.empty {
    cursor: default;
    background: transparent;
}

.date-picker-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-top: 2px solid #1f2937;
}

.date-picker-instruction {
    color: #9ca3af;
    font-size: 0.875rem;
    text-align: center;
}

/* Date Display */
.date-display {
    width: 100%;
    text-align: center;
    background: #030712;
    border: 3px solid #1f2937;
    color: white;
    padding: clamp(14px, 2vw, 18px);
    font-size: clamp(0.9rem, 1.25vw, 1.125rem);
    box-sizing: border-box;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    transition: all 0.3s ease;
}

.date-display:hover {
    border-color: #60a5fa;
    background: #111827;
}

/* CTA Button */
.cta-wrapper {
    margin-bottom: clamp(60px, 10vw, 120px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-button {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #000000;
    padding: clamp(28px, 4.5vw, 48px) clamp(80px, 10vw, 120px);
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-transform: uppercase;
    border: 6px solid #000000;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.1em;
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.4);
    font-family: var(--font-impact);
    line-height: 1.2;
    text-shadow: none;
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 12px 12px 0px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%) !important;
    color: #ffffff !important;
    border-color: #000000;
    text-shadow: none;
}

.cta-button:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.6);
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #ffffff;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border: 6px solid #000;
    transform: translate(8px, 8px);
    z-index: -1;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.cta-button:hover::before {
    opacity: 1;
    transform: translate(4px, 4px);
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}



/* Divider */
.divider {
    max-width: 100%;
    margin: clamp(60px, 10vw, 120px) auto;
    position: relative;
}

.divider-line {
    height: 3px;
    background: linear-gradient(to right, transparent, #374151, transparent);
}

.divider-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: black;
    padding: 0 clamp(16px, 3vw, 32px);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    color: #4b5563;
}

/* Subscribe Section */
.subscribe-section {
    max-width: 100%;
    margin-bottom: clamp(40px, 6vw, 80px);
    animation: fadeInUp 0.8s ease-out;
    padding: 0 clamp(16px, 4vw, 40px);
    box-sizing: border-box;
}

.subscribe-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: clamp(16px, 2vw, 24px);
    text-transform: uppercase;
    letter-spacing: -0.025em;
    position: relative;
    display: inline-block;
}

.subscribe-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 0;
    width: clamp(60px, 12vw, 96px);
    height: 3px;
    background: white;
}

.subscribe-desc {
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    color: #9ca3af;
    margin-bottom: clamp(24px, 3vw, 40px);
    line-height: 1.625;
}

.subscribe-form {
    display: flex;
    gap: clamp(12px, 2vw, 16px);
    flex-wrap: wrap;
}

.input-wrapper {
    flex: 1;
    min-width: min(100%, 280px);
    position: relative;
}

.email-input {
    width: 100%;
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    padding: clamp(16px, 2.5vw, 24px) clamp(16px, 2.5vw, 24px) clamp(16px, 2.5vw, 24px) clamp(48px, 6vw, 64px);
    background: #111827;
    border: 3px solid #1f2937;
    color: white;
    transition: all 0.3s;
}

.email-input::placeholder {
    color: #4b5563;
}

.email-input:focus {
    outline: none;
    border-color: white;
}

.input-icon {
    position: absolute;
    right: clamp(12px, 2vw, 24px);
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    transition: color 0.3s;
    width: clamp(20px, 2.5vw, 24px);
    height: clamp(20px, 2.5vw, 24px);
}

.input-wrapper:focus-within .input-icon {
    color: white;
}

.input-shadow {
    position: absolute;
    inset: 0;
    border: 3px solid #1f2937;
    transform: translate(6px, 6px);
    z-index: -1;
    transition: transform 0.3s;
}

.input-wrapper:focus-within .input-shadow {
    transform: translate(8px, 8px);
}

.submit-button {
    position: relative;
    background: white;
    color: black;
    padding: clamp(16px, 2.5vw, 24px) clamp(24px, 3vw, 40px);
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    text-transform: uppercase;
    border: 3px solid white;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.2s;
    white-space: nowrap;
}

.submit-button:hover {
    transform: scale(1.05);
}

.submit-button:active {
    transform: scale(0.95);
}

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

/* Bottom Stripe */
.bottom-stripe {
    display: flex;
    height: clamp(12px, 1.5vw, 16px);
    position: relative;
    animation: expandX 1.5s 2s ease-out backwards;
}

.stripe-segment {
    flex: 1;
}

.stripe-white {
    background: white;
}

.stripe-gray {
    background: #374151;
}

.stripe-dark {
    background: #111827;
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: clamp(8px, 2vw, 20px);
    backdrop-filter: blur(4px);
    overflow-y: auto;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: black;
    border: 3px solid white;
    color: white;
    max-width: min(650px, 95vw);
    width: 100%;
    max-height: min(90vh, 95vh);
    overflow: hidden;
    padding: clamp(16px, 3vw, 28px);
    display: flex;
    flex-direction: column;
    margin: auto;
    position: relative;
    box-shadow: 0 0 0 2px #000, 8px 8px 0 0 #fff, 0 0 30px rgba(255, 255, 255, 0.1);
}

.modal-header {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    text-transform: uppercase;
    margin-bottom: clamp(12px, 1.5vw, 16px);
    flex-shrink: 0;
}

.progress-bar {
    display: flex;
    gap: 4px;
    margin-bottom: clamp(16px, 2vw, 20px);
    flex-shrink: 0;
}

.progress-segment {
    flex: 1;
    height: 5px;
    background: #1f2937;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    position: absolute;
    inset: 0;
    background: white;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s;
}

.progress-segment.active .progress-fill {
    transform: scaleX(1);
}

.form-steps-container {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    max-height: 70vh;
    position: relative;
    padding-right: 4px;
}

.form-step {
    display: none;
    flex-direction: column;
    min-height: 200px;
    width: 100%;
    box-sizing: border-box;
    padding: 0 4px 20px 0;
    overflow-y: auto;
    overflow-x: visible;
    max-height: 65vh;
}

.form-step.active {
    display: flex;
}

.form-label {
    font-size: clamp(1.125rem, 1.75vw, 1.5rem);
    text-transform: uppercase;
    display: block;
    margin-bottom: clamp(10px, 1.5vw, 14px);
    flex-shrink: 0;
}

.form-input, .form-select {
    width: 100%;
    font-size: clamp(0.9rem, 1.25vw, 1.125rem);
    padding: clamp(14px, 2vw, 18px);
    background: #030712;
    border: 3px solid #1f2937;
    color: white;
    transition: all 0.3s ease;
    box-sizing: border-box;
    min-height: 48px;
    position: relative;
}

.form-input::placeholder {
    color: #4b5563;
    transition: color 0.3s ease;
}

.form-input:focus, .form-select:focus {
    outline: none;
    border-color: white;
    background: #111827;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.form-input:hover, .form-select:hover {
    border-color: #374151;
    background: #111827;
}

.radio-options-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    max-height: 300px;
    padding-right: 4px;
}

.radio-option {
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
}

.radio-content {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: clamp(12px, 1.75vw, 16px);
    border: 3px solid #1f2937;
    background: #030712;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.radio-option:hover .radio-content {
    border-color: white;
    background: #111827;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.radio-content input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: white;
    flex-shrink: 0;
}

.radio-content label {
    font-size: clamp(0.9rem, 1.25vw, 1.125rem);
    cursor: pointer;
    flex: 1;
}

.modal-actions {
    display: flex;
    justify-content: space-between;
    gap: clamp(10px, 1.5vw, 14px);
    margin-top: clamp(16px, 2vw, 20px);
    flex-shrink: 0;
}

.btn {
    padding: clamp(12px, 1.75vw, 16px) clamp(18px, 2.5vw, 24px);
    font-size: clamp(0.875rem, 1.1vw, 1.125rem);
    text-transform: uppercase;
    border: 3px solid;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 100px;
    position: relative;
    overflow: hidden;
}

.btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}


.btn-back {
    background: transparent;
    color: white;
    border-color: #1f2937;
}

.btn-back:hover:not(:disabled) {
    background: white;
    color: black;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.btn-next {
    background: white;
    color: black;
    border-color: white;
}

.btn-next:hover:not(:disabled) {
    background: #e5e7eb;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}

/* Toast */
.toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: black;
    padding: clamp(12px, 2vw, 16px) clamp(20px, 3vw, 32px);
    border: 3px solid black;
    font-size: clamp(0.875rem, 1.2vw, 1.125rem);
    z-index: 2000;
    display: none;
    max-width: 90%;
    text-align: center;
}

.toast.show {
    display: block;
    animation: toastSlide 0.3s ease-out;
}

.toast.error {
    background: #dc2626;
    color: white;
    border-color: white;
}

/* ========================================
   IMAGE POPUP - BRUTALISTIC DESIGN
   ======================================== */

.image-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: clamp(20px, 4vw, 40px);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-popup.active {
    display: flex;
    opacity: 1;
}

.image-popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    cursor: pointer;
}

.image-popup-container {
    position: relative;
    max-width: 95vw;
    max-height: 95vh;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #000;
    border: 6px solid #fff;
    box-shadow: 0 0 0 3px #000, 12px 12px 0 0 #fff, 0 0 50px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transform: scale(0.8) rotate(2deg);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-popup.active .image-popup-container {
    transform: scale(1) rotate(0deg);
}

.image-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #fff;
    color: #000;
    border: 4px solid #000;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    transition: all 0.2s ease;
    box-shadow: 0 0 0 2px #fff, 6px 6px 0 0 #000;
}

.image-popup-close:hover {
    background: #000;
    color: #fff;
    border-color: #fff;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 0 2px #000, 8px 8px 0 0 #fff, 0 0 20px rgba(255, 255, 255, 0.3);
}

.image-popup-close:active {
    transform: scale(0.95) rotate(0deg);
    box-shadow: 0 0 0 2px #fff, 3px 3px 0 0 #000;
}

.close-icon {
    font-size: 2.5rem;
    line-height: 1;
    font-family: Impact, 'Arial Black', sans-serif;
}

.image-popup-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.popup-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(0%) contrast(1.1) brightness(1.05);
    transition: filter 0.3s ease;
}

.image-popup-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: clamp(20px, 4vw, 40px) clamp(20px, 4vw, 40px) clamp(20px, 4vw, 40px);
    border-top: 4px solid #fff;
    transform: translateY(100%);
    transition: transform 0.3s ease 0.2s;
}

.image-popup.active .image-popup-info {
    transform: translateY(0);
}

.image-popup-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -0.025em;
    margin-bottom: 8px;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.8);
}

.image-popup-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Animations */
@keyframes fadeIn {
    to { opacity: 1; }
}

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


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

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes expandRight {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

@keyframes expandX {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

@keyframes toastSlide {
    from {
        transform: translate(-50%, -100%);
    }
    to {
        transform: translate(-50%, 0);
    }
}

/* Desktop Optimizations */
@media (min-width: 1024px) {
    .container > .main-content {
        max-width: 1200px;
        margin: 0 auto;
        padding: 80px clamp(40px, 6vw, 80px);
    }

    .hero-content {
        max-width: 1200px;
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: clamp(20px, 2.5vw, 32px);
        max-width: 100%;
    }

    .feature-content {
        min-height: 280px;
        padding: clamp(24px, 3vw, 40px);
    }

    .subscribe-section {
        max-width: 800px;
        margin: 0 auto;
    }

    .subscribe-form {
        max-width: 600px;
        margin: 0 auto;
    }

}

/* Large Desktop Optimizations */
@media (min-width: 1400px) {
    .container > .main-content {
        max-width: 1400px;
        padding: 100px clamp(60px, 8vw, 120px);
    }

    .hero-content {
        max-width: 1400px;
    }

    .features-grid {
        gap: clamp(32px, 4vw, 48px);
    }

    .feature-content {
        min-height: 320px;
        padding: clamp(32px, 4vw, 48px);
    }

}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.white-text {
    color: var(--secondary-color);
}

.submit-button-wrapper {
    position: relative;
}

/* Performance optimizations */
.gallery-item img {
    will-change: transform;
}

.hero-bg-video {
    will-change: opacity;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-bg-video {
        transition: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .video-indicator {
        border-width: 2px;
    }
    
    .btn {
        border-width: 2px;
    }
}

/* ========================================
   MOBILE OPTIMIZATIONS
   ======================================== */

/* General mobile improvements */
@media (max-width: 768px) {
    /* Improve overall mobile layout */
    * {
        -webkit-tap-highlight-color: transparent;
    }

    /* Better mobile scrolling */
    html {
        -webkit-overflow-scrolling: touch;
    }

    /* Mobile font optimizations */
    body {
        font-size: 16px;
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }

    /* Improve font rendering on mobile */
    .impact-font, h1, h2, h3, h4, h5, h6 {
        font-weight: 700;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        text-shadow: 1px 1px 0px var(--accent-color);
        line-height: 1.2;
    }

    /* Improve mobile performance */
    .hero-bg-video {
        will-change: auto;
    }

    .gallery-item {
        will-change: auto;
    }

    /* Ensure popups don't get cut off */
    .modal, .image-popup {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        margin: 0 !important;
        padding: 4px !important;
        box-sizing: border-box !important;
    }

    /* Prevent body scroll when popups are open */
body.modal-open, body.popup-open {
    overflow: hidden !important;
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
}
    .container {
        padding: 20px 16px;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .container > .main-content {
        padding: 40px 16px;
        max-width: 100%;
    }

    /* Improve touch targets */
    .cta-button, .submit-button, .btn {
        min-height: 44px;
        min-width: 44px;
        touch-action: manipulation;
    }

    .video-btn {
        min-height: 44px;
        min-width: 44px;
        touch-action: manipulation;
    }

    .video-indicator {
        min-height: 44px;
        min-width: 44px;
        touch-action: manipulation;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Improve mobile scrolling */
    .gallery-scroll-container {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }

    /* Better mobile spacing */
    .hero-content {
        padding: clamp(20px, 4vw, 40px) clamp(16px, 3vw, 32px);
    }

    /* Optimize video controls for mobile */
    .hero-video-controls {
        flex-direction: column;
        gap: 12px;
        bottom: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 100%;
    }

    .feature-content {
        min-height: 180px;
        padding: 20px;
    }

    .subscribe-form {
        flex-direction: column;
    }

    .input-wrapper {
        min-width: 100%;
    }

    .graffiti-star,
    .graffiti-music {
        font-size: 4rem;
    }

    .graffiti-diamond {
        font-size: 4rem;
    }

    .video-btn {
        padding: 6px 12px;
        font-size: 1rem;
    }

    .video-indicator {
        width: 30px;
        height: 3px;
    }

    .video-indicator.active {
        width: 45px;
    }

    .main-content {
        padding: 30px 16px;
    }

    .hero-section {
        min-height: 100vh;
        padding: clamp(30px, 5vw, 60px) 0;
        display: flex;
        align-items: center;
    }

    .subtitle-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .subtitle-separator {
        display: none;
    }

    .modal {
        padding: 4px;
        align-items: center;
        justify-content: center;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .modal-content {
        padding: 20px 16px;
        max-height: 98vh;
        margin: 0;
        width: 100%;
        max-width: 100%;
        border: 3px solid #fff;
        box-shadow: 0 0 0 2px #000, 6px 6px 0 0 #fff, 0 0 20px rgba(255, 255, 255, 0.1);
        display: flex;
        flex-direction: column;
        position: relative;
        overflow: hidden;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    .modal-header {
        font-size: 1.75rem;
        margin-bottom: 16px;
        text-align: center;
        line-height: 1.2;
        flex-shrink: 0;
    }

    .progress-bar {
        margin-bottom: 20px;
        gap: 6px;
        flex-shrink: 0;
    }

    .progress-segment {
        height: 6px;
        border-radius: 0;
    }

    .form-steps-container {
        max-height: 65vh;
        min-height: 200px;
        overflow: hidden;
        padding-right: 4px;
    }

    .form-step {
        min-height: 180px;
        padding: 0;
        justify-content: center;
        overflow-x: hidden;
    }

    .form-label {
        font-size: 1.25rem;
        margin-bottom: 12px;
        text-align: center;
        line-height: 1.3;
        flex-shrink: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .form-input, .form-select {
        font-size: 1.125rem;
        padding: 16px 14px;
        min-height: 52px;
        border: 3px solid #1f2937;
        border-radius: 0;
        touch-action: manipulation;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .form-input:focus, .form-select:focus {
        border-color: #fff;
        outline: none;
        box-shadow: 0 0 0 2px #fff;
    }

    .radio-options-container {
        gap: 12px;
        max-height: 300px;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        padding-right: 4px;
        width: 100%;
    }

    .radio-content {
        padding: 16px 14px;
        min-height: 52px;
        border: 3px solid #1f2937;
        touch-action: manipulation;
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    .radio-content:hover {
        border-color: #fff;
        background: #111827;
        box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
    }

    .radio-content input[type="radio"] {
        width: 20px;
        height: 20px;
        margin-right: 12px;
        flex-shrink: 0;
    }

    .radio-content label {
        font-size: 1.125rem;
        line-height: 1.3;
        flex: 1;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .modal-actions {
        margin-top: 20px;
        gap: 12px;
        flex-direction: column;
        flex-shrink: 0;
    }

    /* Mobile artistic boxes */
    .artistic-options-container {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 12px;
        max-height: 45vh;
        overflow-y: auto;
        overflow-x: visible;
        padding: 15px 4px 15px 0;
        -webkit-overflow-scrolling: touch;
    }

    /* Mobile approval step */
    .approval-container {
        margin-top: 16px;
    }

    .approval-summary {
        padding: 16px;
        margin-bottom: 20px;
        border: 2px solid #1f2937;
    }

    .approval-title {
        font-size: 1.25rem;
        margin-bottom: 16px;
    }

    .approval-item {
        padding: 8px 0;
        font-size: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .approval-item strong {
        min-width: auto;
        text-align: left;
        font-size: 0.9rem;
        color: #60a5fa;
    }

    .approval-scroll-instruction {
        margin-top: 20px;
    }

    .scroll-indicator {
        padding: 16px;
        border: 2px solid #1f2937;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .scroll-text {
        font-size: 1rem;
        line-height: 1.4;
    }

    .scroll-arrow {
        font-size: 1.5rem;
    }

    .artistic-box {
        min-height: 80px;
        width: 100%;
        box-sizing: border-box;
        border: 2px solid #1f2937;
    }

    .artistic-box-content {
        padding: 8px;
        min-height: 70px;
    }

    .artistic-icon {
        font-size: 1.5rem;
        margin-bottom: 4px;
    }

    .artistic-title {
        font-size: 0.85rem;
        margin-bottom: 2px;
        line-height: 1.1;
    }

    .artistic-description {
        font-size: 0.7rem;
        line-height: 1.1;
        -webkit-line-clamp: 1;
    }

    /* Mobile date picker */
    .date-picker-container {
        max-width: 95%;
        width: 95%;
    }

    .date-picker-header {
        padding: 16px;
    }

    .date-picker-title {
        font-size: 1.25rem;
    }

    .date-picker-content {
        padding: 16px;
    }

    .date-picker-calendar {
        padding: 12px;
    }

    .date-cell {
        font-size: 0.8rem;
    }

    .date-picker-actions {
        padding: 16px;
        gap: 8px;
    }

    .btn {
        padding: 16px 24px;
        font-size: 1rem;
        min-width: 120px;
        min-height: 52px;
        touch-action: manipulation;
        border: 3px solid;
        width: 100%;
    }

    .btn:active {
        transform: scale(0.98);
    }

    /* Additional mobile improvements */
    .gallery-item {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

    .gallery-item:active {
        transform: scale(0.95) translateY(-2px) rotate(0deg);
        box-shadow: 0 0 0 2px #000, 3px 3px 0 0 #fff;
        transition: all 0.1s ease;
    }

    /* Better mobile text selection */
    .hero-description, .feature-desc {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    /* Improve mobile form interactions */
    .form-input, .form-select, .radio-content {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }

    /* Better mobile button states */
    .cta-button {
        font-size: clamp(1.8rem, 4.5vw, 3rem);
        padding: clamp(24px, 4vw, 40px) clamp(60px, 8vw, 100px);
        letter-spacing: 0.08em;
        font-weight: 800;
    }
    
    .cta-button:hover {
        color: #ffffff !important;
        background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%) !important;
    }
    
    .cta-button:active {
        transform: translateY(1px) scale(0.98);
        box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.5);
        color: #ffffff;
        background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    }

    .video-btn:active {
        transform: scale(0.95);
    }

    .image-popup-close:active {
        transform: scale(0.9) rotate(0deg);
    }


    .main-title {
        -webkit-text-stroke: 1.5px white;
        text-shadow: 4px 4px 0px rgba(255,255,255,0.1);
    }

    .feature-content {
        min-height: 200px;
    }

    /* Mobile horizontal gallery adjustments - Brutalistic */
    .gallery-item {
        width: clamp(200px, 40vw, 280px);
        height: clamp(150px, 30vw, 210px);
        margin: 15px 0; /* Maintain brutalistic spacing */
        border: 3px solid #fff;
        box-shadow: 0 0 0 2px #000, 4px 4px 0 0 #fff;
    }

    .gallery-item:hover {
        transform: scale(1.05) translateY(-6px) rotate(0.5deg);
        box-shadow: 0 0 0 2px #000, 6px 6px 0 0 #fff, 0 0 20px rgba(255, 255, 255, 0.15);
    }

    .gallery-scroll-container {
        padding: 20px 16px 30px; /* Maintain brutalistic spacing */
        border: 3px solid #fff;
        box-shadow: 0 0 0 2px #000, 4px 4px 0 0 #fff;
    }

    /* Mobile image popup adjustments - Enhanced */
    .image-popup {
        padding: 4px;
        backdrop-filter: blur(12px);
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .image-popup-container {
        border: 4px solid #fff;
        box-shadow: 0 0 0 2px #000, 8px 8px 0 0 #fff;
        max-width: 98vw;
        max-height: 95vh;
        width: 100%;
        height: auto;
        margin: 0;
        transform: scale(0.95) rotate(0deg);
        display: flex;
        flex-direction: column;
        position: relative;
    }

    .image-popup.active .image-popup-container {
        transform: scale(1) rotate(0deg);
    }

    .image-popup-close {
        width: 56px;
        height: 56px;
        top: 8px;
        right: 8px;
        font-size: 1.75rem;
        border: 3px solid #000;
        box-shadow: 0 0 0 2px #fff, 4px 4px 0 0 #000;
        min-width: 44px;
        min-height: 44px;
        touch-action: manipulation;
        z-index: 10;
        position: absolute;
    }

    .image-popup-close:hover {
        transform: scale(1.05) rotate(3deg);
    }

    .close-icon {
        font-size: 2.25rem;
        line-height: 1;
    }

    .image-popup-content {
        min-height: 0;
        flex: 1;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        position: relative;
    }

    .popup-image {
        object-fit: contain;
        max-height: 75vh;
        width: 100%;
        height: auto;
        display: block;
    }

    .image-popup-info {
        padding: 16px 12px 20px;
        border-top: 3px solid #fff;
        position: relative;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.95));
        flex-shrink: 0;
        margin-top: auto;
    }

    .image-popup-title {
        font-size: 1.5rem;
        margin-bottom: 8px;
        line-height: 1.2;
    }

    .image-popup-subtitle {
        font-size: 1rem;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    ::-webkit-scrollbar {
        width: 8px;
    }

    /* Enhanced font rendering for very small screens */
    body {
        font-size: 14px;
        line-height: 1.5;
    }

    .impact-font {
        font-weight: 800;
        letter-spacing: -0.02em;
    }

    /* Ensure text is readable on small screens */
    h1, h2, h3, h4, h5, h6 {
        font-weight: 700;
        line-height: 1.2;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        text-shadow: 1px 1px 0px var(--accent-color);
    }

    .container {
        padding: 16px 12px;
    }

    .container > .main-content {
        padding: 30px 12px;
    }

    .graffiti-star,
    .graffiti-music,
    .graffiti-diamond {
        display: none;
    }

    .hero-section {
        min-height: 100vh;
    }

    .hero-video-controls {
        bottom: 15px;
        gap: 10px;
    }

    .video-btn {
        padding: 5px 10px;
        font-size: 0.875rem;
    }

    .video-indicator {
        width: 25px;
        height: 3px;
    }

    .video-indicator.active {
        width: 35px;
    }


    /* Better very small screen spacing */
    .main-content {
        padding: 20px 12px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 100%;
    }

    .feature-content {
        padding: 16px;
        min-height: 140px;
    }

    .subscribe-section {
        padding: 0 12px;
    }

    .main-title {
        font-size: clamp(2.5rem, 8vw, 3rem);
        -webkit-text-stroke: 1px white;
    }

    .subtitle {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .modal {
        padding: 2px;
        align-items: center;
        justify-content: center;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .modal-content {
        padding: 16px 12px;
        max-height: 98vh;
        margin: 0;
        width: 100%;
        max-width: 100%;
        border: 2px solid #fff;
        box-shadow: 0 0 0 1px #000, 4px 4px 0 0 #fff, 0 0 15px rgba(255, 255, 255, 0.1);
        display: flex;
        flex-direction: column;
        position: relative;
        overflow: hidden;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    .modal-header {
        font-size: 1.5rem;
        margin-bottom: 12px;
        text-align: center;
        line-height: 1.1;
        flex-shrink: 0;
    }

    .progress-bar {
        margin-bottom: 16px;
        gap: 4px;
        flex-shrink: 0;
    }

    .progress-segment {
        height: 5px;
    }

    .form-steps-container {
        max-height: 60vh;
        min-height: 150px;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .form-step {
        min-height: 140px;
        padding: 0;
        justify-content: center;
        overflow-x: hidden;
    }

    .form-label {
        font-size: 1.125rem;
        margin-bottom: 10px;
        text-align: center;
        line-height: 1.2;
        flex-shrink: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .form-input, .form-select {
        font-size: 1rem;
        padding: 14px 12px;
        min-height: 48px;
        border: 2px solid #1f2937;
        touch-action: manipulation;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .form-input:focus, .form-select:focus {
        border-color: #fff;
        outline: none;
        box-shadow: 0 0 0 1px #fff;
    }

    .radio-options-container {
        gap: 8px;
        max-height: 200px;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        padding-right: 4px;
        width: 100%;
    }

    .radio-content {
        padding: 14px 12px;
        min-height: 48px;
        border: 2px solid #1f2937;
        touch-action: manipulation;
        display: flex;
        align-items: center;
        gap: 8px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    .radio-content:hover {
        border-color: #fff;
        background: #111827;
        box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
    }

    .radio-content input[type="radio"] {
        width: 18px;
        height: 18px;
        margin-right: 10px;
        flex-shrink: 0;
    }

    .radio-content label {
        font-size: 1rem;
        line-height: 1.2;
        flex: 1;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .modal-actions {
        margin-top: 16px;
        gap: 8px;
        flex-direction: column;
        flex-shrink: 0;
    }

    /* Very small screen artistic boxes */
    .artistic-options-container {
        gap: 10px;
        margin-top: 10px;
        max-height: 40vh;
        overflow-y: auto;
        overflow-x: visible;
        padding: 12px 4px 12px 0;
        -webkit-overflow-scrolling: touch;
    }

    .artistic-box {
        min-height: 70px;
        width: 100%;
        box-sizing: border-box;
        border: 2px solid #1f2937;
    }

    .artistic-box-content {
        padding: 6px;
        min-height: 60px;
    }

    .artistic-icon {
        font-size: 1.2rem;
        margin-bottom: 3px;
    }

    .artistic-title {
        font-size: 0.75rem;
        margin-bottom: 2px;
        line-height: 1.1;
    }

    .artistic-description {
        font-size: 0.65rem;
        line-height: 1.1;
        -webkit-line-clamp: 1;
    }

    /* Very small screen date picker */
    .date-picker-container {
        max-width: 98%;
        width: 98%;
    }

    .date-picker-header {
        padding: 12px;
    }

    .date-picker-title {
        font-size: 1.125rem;
    }

    .date-picker-content {
        padding: 12px;
    }

    .date-picker-calendar {
        padding: 8px;
    }

    .date-cell {
        font-size: 0.75rem;
    }

    .date-picker-actions {
        padding: 12px;
        gap: 6px;
    }

    .btn {
        padding: 14px 20px;
        font-size: 0.875rem;
        min-width: 100px;
        min-height: 48px;
        touch-action: manipulation;
        border: 2px solid;
        width: 100%;
    }

    .btn:active {
        transform: scale(0.97);
    }

    /* Very small screen horizontal gallery - Brutalistic */
    .gallery-item {
        width: clamp(160px, 45vw, 200px);
        height: clamp(120px, 34vw, 150px);
        margin: 12px 0; /* Maintain brutalistic spacing */
        border: 2px solid #fff;
        box-shadow: 0 0 0 1px #000, 3px 3px 0 0 #fff;
    }

    .gallery-item:hover {
        transform: scale(1.03) translateY(-4px) rotate(0.3deg);
        box-shadow: 0 0 0 1px #000, 4px 4px 0 0 #fff, 0 0 15px rgba(255, 255, 255, 0.1);
    }

    .gallery-scroll-container {
        padding: 15px 12px 25px; /* Maintain brutalistic spacing */
        border: 2px solid #fff;
        box-shadow: 0 0 0 1px #000, 3px 3px 0 0 #fff;
    }

    /* Smaller scrollbar for very small screens - Brutalistic */
    .gallery-scroll-container::-webkit-scrollbar {
        height: 18px;
        border: 2px solid #fff;
    }

    .gallery-scroll-container::-webkit-scrollbar-thumb {
        border: 2px solid #000;
        min-width: 30px;
    }

    /* Very small screen image popup - Enhanced */
    .image-popup {
        padding: 2px;
        backdrop-filter: blur(16px);
        overflow: hidden;
    }

    .image-popup-container {
        border: 3px solid #fff;
        box-shadow: 0 0 0 1px #000, 6px 6px 0 0 #fff;
        max-width: 99vw;
        max-height: 98vh;
        width: 100%;
        height: auto;
        margin: 0;
        transform: scale(0.98) rotate(0deg);
        display: flex;
        flex-direction: column;
        position: relative;
    }

    .image-popup.active .image-popup-container {
        transform: scale(1) rotate(0deg);
    }

    .image-popup-close {
        width: 48px;
        height: 48px;
        top: 6px;
        right: 6px;
        font-size: 1.5rem;
        border: 2px solid #000;
        box-shadow: 0 0 0 1px #fff, 3px 3px 0 0 #000;
        min-width: 44px;
        min-height: 44px;
        touch-action: manipulation;
        position: absolute;
        z-index: 10;
    }

    .image-popup-close:hover {
        transform: scale(1.03) rotate(2deg);
    }

    .close-icon {
        font-size: 1.875rem;
        line-height: 1;
    }

    .image-popup-content {
        min-height: 0;
        flex: 1;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        position: relative;
    }

    .popup-image {
        object-fit: contain;
        max-height: 80vh;
        width: 100%;
        height: auto;
        display: block;
    }

    .image-popup-info {
        padding: 12px 8px 16px;
        border-top: 2px solid #fff;
        position: relative;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.95));
        flex-shrink: 0;
        margin-top: auto;
    }

    .image-popup-title {
        font-size: 1.25rem;
        margin-bottom: 6px;
        line-height: 1.1;
    }

    .image-popup-subtitle {
        font-size: 0.875rem;
        line-height: 1.2;
    }
}
