:root {
    --primary: #ff85c0; /* Cherry Pink */
    --primary-dark: #eb2f96;
    --bg-dark: #120309; /* Dark Cherry/Vampire Black */
    --glass-bg: rgba(20, 5, 10, 0.4);
    --glass-border: rgba(255, 133, 192, 0.2);
    --retro-font: 'Press Start 2P', cursive;
    --text-font: 'VT323', monospace;
    --accent: #d3b998;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: white;
    font-family: var(--text-font);
    font-size: 1.2rem;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Custom Scrollbar - Minecraft Style */
::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-track {
    background: #1e1e1e;
}
::-webkit-scrollbar-thumb {
    background: #4e4e4e;
    border: 2px solid #1e1e1e;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    z-index: -1;
}

/* Full Screen Video Background */
.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: #000;
}

#bgVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.7) contrast(1.1);
}

.video-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://www.transparenttextures.com/patterns/carbon-fibre.png");
    opacity: 0.12;
    z-index: 1;
    pointer-events: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(18, 3, 9, 0) 0%, rgba(18, 3, 9, 0.6) 100%);
    z-index: 2;
}

/* Page Content Layout */
.hero-header {
    text-align: center;
    padding: 8vh 0 4vh;
}

.glitch {
    font-family: var(--retro-font);
    font-size: clamp(2rem, 8vw, 4rem); /* Responsive scaling */
    color: white;
    text-shadow: 
        0 0 15px rgba(255, 133, 192, 0.6),
        3px 3px 0 var(--primary-dark);
    letter-spacing: 5px;
    line-height: 1.2;
}

h3 {
    font-family: var(--retro-font);
    font-size: 0.8rem;
    margin-bottom: 20px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Form Styling */
.input-group {
    margin-bottom: 15px;
}

input[type="text"],
input[type="tel"],
input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    color: white;
    font-family: var(--text-font);
    font-size: 1.2rem; /* Reduced slightly */
    transition: all 0.3s ease;
}

input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

/* Radio Cards */
.radio-group {
    display: flex;
    gap: 15px;
}

.radio-card {
    flex: 1;
    cursor: pointer;
    position: relative;
}

.radio-card input {
    display: none;
}

.card-content {
    border: 2px solid var(--glass-border);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.radio-card input:checked + .card-content {
    border-color: var(--primary);
    background: rgba(85, 255, 85, 0.1);
}

.type-name {
    display: block;
    font-family: var(--retro-font);
    font-size: 0.7rem;
    margin-bottom: 5px;
}

.price {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary);
}

/* Checkbox Grid */
.checkbox-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

@media (min-width: 600px) {
    .checkbox-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.event-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    transition: all 0.2s ease;
}

.event-item:hover {
    border-color: rgba(85, 255, 85, 0.3);
    background: rgba(85, 255, 85, 0.05);
}

.event-item label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    flex: 1;
    min-width: 0; /* Allow text to truncate if needed */
}

.event-name {
    font-size: 1.4rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.info-btn {
    color: var(--accent);
    cursor: pointer;
    transition: transform 0.2s ease;
    padding: 5px;
}

.info-btn:hover {
    transform: scale(1.2);
    color: white;
}

/* Total Section */
.total-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    border-left: 5px solid var(--primary);
}

.total-label {
    font-family: var(--retro-font);
    font-size: 0.8rem;
}

.total-amount {
    font-family: var(--retro-font);
    font-size: 1.5rem;
    color: var(--primary);
}

/* Submit Button - Cherry Style */
.premium-btn {
    width: 100%;
    padding: 20px;
    background: var(--primary);
    border-top: 4px solid #ffa3d1;
    border-left: 4px solid #ffa3d1;
    border-right: 4px solid #9e1068;
    border-bottom: 4px solid #9e1068;
    color: white;
    font-family: var(--retro-font);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    transition: all 0.1s ease;
    margin-top: 20px;
    text-shadow: 2px 2px 0 #000;
}

.premium-btn:hover {
    background: #ffadd2;
}

.premium-btn:active {
    border-top: 4px solid #9e1068;
    border-left: 4px solid #9e1068;
    border-right: 4px solid #ffa3d1;
    border-bottom: 4px solid #ffa3d1;
    padding-top: 22px;
    padding-bottom: 18px;
}

.hidden {
    display: none !important;
}

/* Modal Styling */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    max-width: 500px;
    width: 90%;
    padding: 30px;
    position: relative;
    border: 2px solid var(--primary);
}

.modal-content h2 {
    font-family: var(--retro-font);
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.modal-content p {
    font-size: 1.4rem;
    line-height: 1.6;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--accent);
}

.close-btn:hover {
    color: white;
}

.footer-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--accent);
    margin-top: 20px;
    opacity: 0.7;
}

/* Container Spacing */
.container {
    max-width: 600px;
    margin: 0 auto 40px;
    padding: 0 20px;
    position: relative;
    z-index: 30;
}

.subtitle {
    font-family: var(--retro-font);
    font-size: 1rem;
    color: white;
    margin-top: 15px;
    letter-spacing: 4px;
    opacity: 0.9;
}

/* Glassmorphism Sections */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px; /* More blocky/Minecraft feel */
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .video-container {
        height: 100dvh; /* Use dynamic viewport height */
    }
    .hero-header {
        padding: 6vh 0 3vh;
    }
    .glitch {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    body { font-size: 1.1rem; }
    .container { padding: 0 15px; }
    .glass { padding: 15px; margin-bottom: 15px; }
    .hero-header { padding: 5vh 0 2vh; }
    .glitch { font-size: 1.8rem; letter-spacing: 2px; }
    .subtitle { font-size: 0.7rem; letter-spacing: 2px; }
    .radio-group { flex-direction: column; gap: 10px; }
    .checkbox-grid { grid-template-columns: 1fr; gap: 8px; }
    .event-item { padding: 10px; }
    .event-name { font-size: 1.1rem; }
    .price { font-size: 1.5rem; }
    .success-card { padding: 30px 20px; }
    .success-icon { font-size: 3.5rem; }
    .success-text { font-size: 1.1rem; }
}
/* Success Message Styling */
.success-card {
    text-align: center;
    padding: 50px 30px;
    animation: fadeInUp 0.6s ease;
}

.success-icon {
    font-size: 5rem;
    color: var(--primary);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px var(--primary));
}

.success-title {
    font-family: var(--retro-font);
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: white;
}

.success-text {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

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