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

html {
    font-size: 16px;
    height: 100%;
    background: black;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: 
        url('new_assets/marvel_bg5.jpg') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* App Container */
.app-container {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    padding: 2rem 0rem 1rem 0rem;
    position: relative;
    z-index: 20;
    width: 100%;
}

.header-container {
    width: 100%;
    background: black;
    /* background: #ffd601; */
    padding: 0.55rem 0.3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-logo {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header Responsive Styles */
@media (min-width: 768px) {
    .header-container {
        padding: 0.75rem 1rem;
    }
    
    .header-logo {
        max-width: 400px;
        width: auto;
    }
}

@media (min-width: 1024px) {
    .header-container {
        padding: 1rem 1.5rem;
    }
    
    .header-logo {
        max-width: 400px;
    }
}

.logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: #004C97;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.logo::after {
    content: '';
    position: absolute;
    top: -5px;
    right: -8px;
    width: 12px;
    height: 12px;
    background: #ED1C24;
    border-radius: 2px;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    position: relative;
    z-index: 20;
    padding-bottom: 5rem;
}

/* Landing content - no glass effect */
.landing-content {
    padding: 0rem;
}

/* Steps */
.step {
    display: none;
    width: 100%;
    max-width: 400px;
    text-align: center;
    animation: fadeIn 0.5s ease-in-out;
}

.step.active {
    display: block;
}

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

/* Step Titles */
.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
    text-shadow: 
        0 0 20px rgba(0, 0, 0, 1),
        0 0 30px rgba(0, 0, 0, 0.9),
        0 0 40px rgba(0, 0, 0, 0.8),
        3px 3px 6px rgba(0, 0, 0, 1),
        2px 2px 4px rgba(0, 0, 0, 1),
        -1px -1px 2px rgba(0, 0, 0, 1);
    letter-spacing: 1px;
}

/* Landing Page (Step 1) */
.landing-content {
    text-align: center;
}

.marvel-photobooth-logo {
    max-width: 100%;
    width: 100%;
    /* max-width: 1000px; */
    height: auto;
    margin-bottom: 1.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.main-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ED1C24;
    margin-bottom: 1rem;
    text-shadow: 
        0 0 20px rgba(237, 28, 36, 0.8),
        0 0 30px rgba(237, 28, 36, 0.6),
        2px 2px 4px rgba(0, 0, 0, 0.8),
        4px 4px 8px rgba(0, 0, 0, 0.6);
    letter-spacing: 3px;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.3);
}

.subtitle {
    font-size: 1.2rem;
    color: #ED1C24;
    margin-bottom: 1rem;
    margin-left: 1rem;
    margin-right: 1rem;
    font-weight: 600;
    text-shadow: 
        0 0 10px rgba(237, 28, 36, 0.6),
        2px 2px 4px rgba(0, 0, 0, 0.7),
        1px 1px 2px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.separator {
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, #ED1C24, #004C97);
    margin: 1.5rem auto;
    border-radius: 2px;
}

.description {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.98);
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.98;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.8),
        1px 1px 2px rgba(0, 0, 0, 0.9),
        0 0 8px rgba(0, 0, 0, 0.5);
    font-weight: 600;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 8px;
    backdrop-filter: blur(4px);
}

.cta-button {
    background: linear-gradient(135deg, #ED1C24, #004C97);
    color: white;
    border: 3px solid rgba(255, 255, 255, 0.8);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px rgba(237, 28, 36, 0.5),
        0 0 20px rgba(0, 0, 0, 0.5),
        4px 4px 8px rgba(0, 0, 0, 0.6);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
    position: relative;
    z-index: 5;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(237, 28, 36, 0.6),
        0 0 30px rgba(0, 0, 0, 0.6),
        6px 6px 12px rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 255, 255, 1);
}

/* Gender Selection (Step 2) */
.gender-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.gender-button {
    background: rgba(0, 0, 0, 0.4);
    color: white;
    border: 3px solid rgba(255, 255, 255, 0.8);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.5),
        0 0 15px rgba(0, 0, 0, 0.4),
        3px 3px 6px rgba(0, 0, 0, 0.6);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
    position: relative;
    z-index: 5;
}

.gender-button:hover {
    background: rgba(0, 76, 151, 0.8);
    border-color: rgba(255, 255, 255, 1);
    color: white;
    box-shadow: 
        0 6px 18px rgba(0, 76, 151, 0.7),
        0 0 25px rgba(0, 0, 0, 0.5),
        4px 4px 8px rgba(0, 0, 0, 0.7);
}

.gender-button.selected {
    background: rgba(237, 28, 36, 0.9);
    border-color: rgba(255, 255, 255, 1);
    color: white;
    box-shadow: 
        0 6px 18px rgba(237, 28, 36, 0.7),
        0 0 25px rgba(0, 0, 0, 0.5),
        4px 4px 8px rgba(0, 0, 0, 0.7);
}

/* Character Selection (Step 3) */
.character-display {
    position: relative;
    margin-bottom: 0.5rem;
}

.character-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    border: 2px solid rgb(203, 203, 203);
    margin-bottom: 1.5rem;
    margin-top: 0.25rem;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.4),
        0 0 15px rgba(0, 0, 0, 0.3),
        3px 3px 6px rgba(0, 0, 0, 0.5);
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background:  linear-gradient(135deg, #ED1C24, #004C97);
    color: white;
    border: 2px solid white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.4),
        0 0 15px rgba(0, 0, 0, 0.3),
        3px 3px 6px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.nav-button:hover {
    background:  linear-gradient(140deg, #ED1C24, #004C97);
    transform: translateY(-50%) scale(1.1);
    border-color: white;
    box-shadow: 
        0 6px 18px rgba(237, 28, 36, 0.5),
        0 0 25px rgba(0, 0, 0, 0.4),
        4px 4px 8px rgba(0, 0, 0, 0.6);
}

.nav-button.prev {
    left: -20px;
}

.nav-button.next {
    right: -20px;
}

/* Captions under selection and result */
.character-caption,
.result-caption {
    font-size: 1.25rem;
    font-weight: 800;
    color: #ED1C24;
    text-shadow: 
        0 0 15px rgba(237, 28, 36, 0.8),
        0 0 20px rgba(237, 28, 36, 0.6),
        2px 2px 4px rgba(0, 0, 0, 0.8),
        1px 1px 2px rgba(0, 0, 0, 0.9);
    letter-spacing: 2px;
    margin: 0rem 0 0.25rem;
    -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .character-caption,
    .result-caption {
        font-size: 1.25rem;
    }
}

/* Photo Capture (Step 4) */
.camera-frame {
    width: 100%;
    max-width: 250px;
    height: 350px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    margin: 0 auto 2rem;
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.7);
    /* Ensure portrait orientation is maintained */
    aspect-ratio: 5/7;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(0, 0, 0, 0.5),
        inset 0 0 30px rgba(0, 0, 0, 0.3);
}

/* Ensure camera feed is properly oriented for mobile */
@media (max-width: 768px) {
    .camera-frame {
        height: 450px;
        max-width: 300px;
    }
    
    .camera-video {
        transform: scaleX(-1) rotate(0deg); /* Mirror and ensure no rotation */
    }
}

.camera-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    display: none;
    transform: scaleX(-1); /* Mirror the camera feed for selfie effect */
    position: relative;
    z-index: 1;
}

.camera-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    font-weight: 500;
}

.capture-button {
    background: linear-gradient(135deg, #ED1C24, #004C97);
    color: white;
    border: 3px solid rgba(255, 255, 255, 0.8);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px rgba(237, 28, 36, 0.5),
        0 0 20px rgba(0, 0, 0, 0.5),
        4px 4px 8px rgba(0, 0, 0, 0.6);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
    position: relative;
    z-index: 5;
}

.capture-button:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(237, 28, 36, 0.6),
        0 0 30px rgba(0, 0, 0, 0.6),
        6px 6px 12px rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 255, 255, 1);
}

/* Countdown Steps (5-7) */
.countdown-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0);
    z-index: 20;
}

.countdown-number {
    font-size: 10rem;
    font-weight: 700;
    color: #ED1C24;
    text-shadow: 0 0 20px rgba(237, 28, 36, 0.8);
    background: rgba(0, 0, 0, 0);
    padding: 1rem 2rem;
    border-radius: 15px;
    /* backdrop-filter: blur(10px); */
}

/* Photo Review (Step 8) */
.captured-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transform: scaleX(-1); /* Mirror the captured photo to match camera view */
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.action-buttons-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.action-button {
    background: linear-gradient(135deg, #ED1C24, #004C97);
    color: white;
    border: 2px solid white;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px rgba(237, 28, 36, 0.5),
        0 0 20px rgba(0, 0, 0, 0.5),
        4px 4px 8px rgba(0, 0, 0, 0.6);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
    position: relative;
    z-index: 5;
}

.action-button:hover {
    background: linear-gradient(140deg, #ED1C24, #004C97);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(237, 28, 36, 0.6),
        0 0 30px rgba(0, 0, 0, 0.6),
        6px 6px 12px rgba(0, 0, 0, 0.7);
}


/* Upload Progress (Step 9) */
.upload-progress {
    margin: 2rem 0;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ED1C24, #004C97);
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 0%;
}

.progress-text {
    color: white;
    font-size: 1rem;
    font-weight: 500;
    text-shadow: 
        0 0 20px rgba(0, 0, 0, 1),
        0 0 30px rgba(0, 0, 0, 0.9),
        0 0 40px rgba(0, 0, 0, 0.8),
        3px 3px 6px rgba(0, 0, 0, 1),
        2px 2px 4px rgba(0, 0, 0, 1),
        -1px -1px 2px rgba(0, 0, 0, 1);
}

/* Processing Screen (Step 10) */
.processing-animation {
    margin: 2rem 0;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top: 4px solid #ED1C24;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.processing-text {
    color: white;
    font-size: 1rem;
    margin-top: 1rem;
    opacity: 0.8;
    text-shadow: 
        0 0 20px rgba(0, 0, 0, 1),
        0 0 30px rgba(0, 0, 0, 0.9),
        0 0 40px rgba(0, 0, 0, 0.8),
        3px 3px 6px rgba(0, 0, 0, 1),
        2px 2px 4px rgba(0, 0, 0, 1),
        -1px -1px 2px rgba(0, 0, 0, 1); 
}

/* Final Result (Step 11) */
.result-frame {
    width: 75%;
    /* max-width: 250px; */
    height: auto;
    /* background: rgba(0, 0, 0, 0.3); */
    border-radius: 15px;
    margin: 0 auto 0rem;
    overflow: hidden;
    /* border: 2px solid rgba(50, 205, 50, 0.3); */
}

.result-image {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
    border: 2px solid rgb(203, 203, 203);
    margin-bottom: 1.25rem;
}


/* QR Code Screen (Step 12) */
.qr-container {
    margin: 2rem 0;
}

.qr-code {
    display: inline-block;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.qr-code div{
    display: none;
}

/* Next Button */
.next-button {
    background: linear-gradient(135deg, #ED1C24, #004C97);
    color: white;
    border: 3px solid rgba(255, 255, 255, 0.8);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px rgba(237, 28, 36, 0.5),
        0 0 20px rgba(0, 0, 0, 0.5),
        4px 4px 8px rgba(0, 0, 0, 0.6);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
    position: relative;
    z-index: 5;
}

.next-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(237, 28, 36, 0.6),
        0 0 30px rgba(0, 0, 0, 0.6),
        6px 6px 12px rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 255, 255, 1);
}

.next-button:disabled {
    background: rgba(128, 128, 128, 0.5);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Enhanced disabled button styles */
button:disabled {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
    pointer-events: none;
}

button:disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* Specific disabled styles for different button types */
.capture-button:disabled {
    background: rgba(128, 128, 128, 0.5) !important;
    color: rgba(255, 255, 255, 0.7) !important;
}

.action-button:disabled {
    background: rgba(128, 128, 128, 0.5) !important;
    color: rgba(255, 255, 255, 0.7) !important;
}

.gender-button:disabled {
    background: rgba(128, 128, 128, 0.3) !important;
    color: rgba(0, 76, 151, 0.5) !important;
    border-color: rgba(0, 76, 151, 0.3) !important;
}

.nav-button:disabled {
    background: rgba(128, 128, 128, 0.5) !important;
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Error Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    margin: 15% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    border: 2px solid rgba(237, 28, 36, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.modal-content h3 {
    color: #ED1C24;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.modal-content p {
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-shadow: 
        0 0 20px rgba(0, 0, 0, 1),
        0 0 30px rgba(0, 0, 0, 0.9),
        0 0 40px rgba(0, 0, 0, 0.8),
        3px 3px 6px rgba(0, 0, 0, 1),
        2px 2px 4px rgba(0, 0, 0, 1),
        -1px -1px 2px rgba(0, 0, 0, 1);
}

.modal-content button {
    background: linear-gradient(135deg, #ED1C24, #004C97);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-content button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(237, 28, 36, 0.3);
}

/* Background Elements */
.background-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.glow-circle {
    display: none; /* Hide glow circles as we're using the Marvel background image */
}

.glow-circle.top-left,
.glow-circle.top-right,
.glow-circle.bottom-left,
.glow-circle.bottom-right {
    display: none;
}

.geometric-patterns {
    position: absolute;
    width: 100%;
    height: 100%;
    /* Simplified patterns to not compete with Marvel background */
    opacity: 0;
}

.marvel-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    /* Hide overlay pattern as Marvel background image has its own design */
    opacity: 0;
}

@keyframes pulse {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.sparkles {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .step-title {
        font-size: 1.3rem;
    }
    
    .gender-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .gender-button {
        width: 200px;
    }
    
    .camera-frame {
        height: 450px;
        max-width: 300px;
    }
    
    .nav-button {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .nav-button.prev {
        left: 0px;
    }
    
    .nav-button.next {
        right: 0px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
    
    .step-title {
        font-size: 1.2rem;
    }
    
    .camera-frame {
        height: 450px;
        max-width: 300px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .action-buttons-row {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .action-button {
        width: 200px;
    }
}

/* Loading and Animation States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(237, 28, 36, 0.3);
    border-top: 2px solid #ED1C24;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states for keyboard navigation */
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #ED1C24;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .step-title {
        color: #ED1C24;
    }
    
    .main-title {
        color: #ED1C24;
    }
    
    .cta-button,
    .next-button {
        background: #ED1C24;
        color: #FFF;
    }
}

/* Marvel-themed background enhancements */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Subtle overlay to ensure text readability on comic book background */
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
    z-index: 2;
}
  