/* ======================================================== */
/* == STYLES FOR INTERACTIVE BUILDER (SCROLLS OVER PIN)  == */
/* ======================================================== */


/* 1. SHARED STYLES FOR ALL PARTICLES */
.particle { 
    position: absolute; 
    width: 2px; 
    height: 2px; 
    background: rgba(51, 194, 219, 0.8); 
    border-radius: var(--radius-full); 
}
@keyframes floatParticle { 
    0% { transform: translateY(100vh) translateX(0) scale(1); opacity: 0; } 
    10% { opacity: 1; } 
    90% { opacity: 1; } 
    100% { transform: translateY(-100px) translateX(50px) scale(1.2); opacity: 0; } 
}

/* 2. SYSTEM FOR THE HERO SECTION */
#hero-particles {
    position: absolute; /* Contained by the hero section */
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 2; /* Above hero BG, below hero content */
}

/* 3. SYSTEM FOR THE MAIN CONTENT SECTIONS */
#global-particles {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 1; /* Sits just above main content backgrounds */
}

#builder-particles {
    position: fixed;
    top: 0; 
    left: 0; 
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 11;
    opacity: 0;
    visibility: hidden;

    /* ADD THIS LINE - The background from the builder section goes here */
    background: var(--primary-bg); 
}

/* Ensure the builder section properly contains the particles */
.builder-section {
    position: relative;
    z-index: 20;
 background: transparent;
    color: #ffffff;
    padding: 40px 0;
    overflow: hidden;
    min-height: 100vh; /* Add this */
}


@keyframes floatParticleBuilder { 
    0% { transform: translateY(100%) translateX(0) scale(1); opacity: 0; } 
    10% { opacity: 1; } 
    90% { opacity: 1; } 
    100% { transform: translateY(-100%) translateX(50px) scale(1.2); opacity: 0; } 
}

/* 5. CONTENT LAYERING FIX */
/* This ensures all page content sits above the particle layers. */
.hero-container, .section-content, .cta-container {
    position: relative;
    z-index: 3; /* Lifted above all particle systems */
}


.floating-dashboard { position: fixed; bottom: 0; left: 0; width: 100%; height: 280px; z-index: 1000; pointer-events: none; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; padding-bottom: 20px; }
.dashboard-counter { position: absolute; bottom: 15px; left: 50%; transform: translateX(-50%); background: rgba(0, 0, 0, 0.8); border: 2px solid rgba(51, 194, 219, 0.4); border-radius: 20px; padding: 8px 16px; backdrop-filter: var(--blur-heavy); animation: pulse-visibility 4s infinite ease-in-out; z-index: 1001; }
@keyframes celebration-glow { 0%, 100% { border-color: hsl(0, 100%, 75%); box-shadow: 0 0 10px white, 0 0 20px hsl(0, 100%, 75%), 0 0 35px hsl(0, 100%, 75%); } 25% { border-color: hsl(120, 100%, 75%); box-shadow: 0 0 15px white, 0 0 30px hsl(120, 100%, 75%), 0 0 45px hsl(120, 100%, 75%); } 50% { border-color: hsl(180, 100%, 75%); box-shadow: 0 0 10px white, 0 0 20px hsl(180, 100%, 75%), 0 0 35px hsl(180, 100%, 75%); } 75% { border-color: hsl(270, 100%, 75%); box-shadow: 0 0 15px white, 0 0 30px hsl(270, 100%, 75%), 0 0 45px hsl(270, 100%, 75%); } }
.dashboard-counter.celebrating { animation: celebration-glow 2s infinite linear; opacity: 1; }
.counter-text { font-size: 14px; font-weight: 600; color: #33C2DB; text-transform: uppercase; letter-spacing: 1px; }
.floating-dashboard .cubes-canvas { width: 100%; height: 100%; filter: drop-shadow(0 -5px 25px rgba(0, 0, 0, 0.3)); position: relative; z-index: 1; }

.menu-container {
    position: relative;
    z-index: 21; /* <-- Change this from 10 to 21 */
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-xl) 40px var(--space-xl);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.glass-container { background: linear-gradient(135deg, var(--glass-light) 0%, rgba(255, 255, 255, 0.04) 50%, rgba(255, 255, 255, 0.02) 100%); border: 1px solid var(--glass-border); backdrop-filter: var(--blur-heavy); position: relative; overflow: hidden; transition: var(--transition-slow); }
.glass-container::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent 0%, var(--theme-alpha) 50%, transparent 100%); transition: left 0.8s ease; }
.glass-container:hover::before { left: 100%; }
.glass-heavy { background: linear-gradient(135deg, var(--glass-medium) 0%, rgba(255, 255, 255, 0.06) 50%, rgba(255, 255, 255, 0.03) 100%); border-color: var(--glass-heavy); box-shadow: 0 12px 40px var(--shadow-medium), inset 0 2px 0 var(--glass-heavy), var(--glow-md) var(--theme-alpha); }
.glass-heavy:hover { border-color: var(--theme-color); box-shadow: 0 16px 50px var(--shadow-heavy), var(--glow-lg) var(--theme-glow), inset 0 2px 0 rgba(255, 255, 255, 0.35); transform: translateY(-5px); }
.menu-title { margin-bottom: var(--space-md); margin-top: var(--space-xl); }
.title-glass { border-radius: 24px; padding: var(--space-2xl); text-align: center; box-shadow: 0 8px 32px var(--shadow-light), inset 0 1px 0 rgba(255, 255, 255, 0.2), var(--glow-md) var(--theme-alpha); }
.title-glass h1 { font-size: 3.2rem; font-weight: 800; margin: 0 0 var(--space-md) 0; background: linear-gradient(135deg, var(--white) 0%, var(--accent-primary) 25%, var(--white) 50%, var(--accent-secondary) 75%, var(--white) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; filter: drop-shadow(var(--glow-md) var(--theme-glow)) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2)); }
.title-glass p { font-size: 1.4rem; color: var(--glass-text); margin: 0; text-shadow: var(--glow-sm) var(--theme-alpha), 0 1px 2px var(--shadow-light); font-weight: 400; letter-spacing: 0.5px; }
.menu-section { margin: var(--space-3xl) 0; opacity: 0; transform: translateY(30px); animation: slideInUp 0.8s ease forwards; }
.menu-section:nth-child(2) { animation-delay: 0.1s; }
.menu-section:nth-child(3) { animation-delay: 0.2s; }
.menu-section:nth-child(4) { animation-delay: 0.3s; }
@keyframes slideInUp { to { opacity: 1; transform: translateY(0); } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-50px); } to { opacity: 1; transform: translateX(0); } }
.section-glass { border-radius: var(--radius-3xl); padding: var(--space-3xl); }
.question-section { margin-bottom: var(--space-2xl); }
.question-layout { display: flex; align-items: center; justify-content: space-between; gap: var(--space-2xl); flex-wrap: wrap; }
#addons .question-layout, #sessionOptions .question-layout, .length-theme .question-layout, .package-theme .question-layout, .format-theme .question-layout { margin-bottom: var(--space-2xl); }
#skillLevel .question-layout, #sessionType .question-layout, #topics .question-layout { margin-bottom: var(--space-xl); }
.question-info { display: flex; align-items: center; gap: var(--space-lg); min-width: 300px; }
.cube-icon-container { width: 60px; height: 60px; position: relative; flex-shrink: 0; filter: brightness(0.4) saturate(0.3); transition: var(--transition-slow); border-radius: var(--radius-md); background: var(--glass-light); border: 1px solid var(--glass-border); }
.cube-icon-container.activated { filter: drop-shadow(var(--glow-lg) var(--theme-color)); transform: scale(1.15) rotateY(20deg); background: var(--theme-alpha); border-color: var(--theme-color); }
.question-content h3 { margin: 0 0 var(--space-sm) 0; font-size: 1.5rem; font-weight: 700; background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.question-content p { margin: 0; font-size: 1rem; color: rgba(255, 255, 255, 0.75); font-weight: 400; }
.format-theme { --theme-color: var(--kinetic-teal); --theme-glow: rgba(0, 245, 212, 0.6); --theme-alpha: rgba(0, 245, 212, 0.15); }
.length-theme { --theme-color: var(--neon-periwinkle); --theme-glow: rgba(138, 43, 226, 0.6); --theme-alpha: rgba(138, 43, 226, 0.15); }
.package-theme { --theme-color: var(--signal-green); --theme-glow: rgba(0, 229, 91, 0.6); --theme-alpha: rgba(0, 229, 91, 0.15); }
.addons-theme { --theme-color: var(--ignition-orange); --theme-glow: rgba(249, 115, 22, 0.6); --theme-alpha: rgba(249, 115, 22, 0.15); }
.session-theme { --theme-color: var(--hyper-blue); --theme-glow: rgba(77, 159, 255, 0.6); --theme-alpha: rgba(77, 159, 255, 0.15); }
.skill-theme { --theme-color: var(--neural-gold); --theme-glow: rgba(249, 224, 118, 0.6); --theme-alpha: rgba(249, 224, 118, 0.15); }
.type-theme { --theme-color: var(--fusion-coral); --theme-glow: rgba(255, 92, 92, 0.6); --theme-alpha: rgba(255, 92, 92, 0.15); }
.topics-theme { --theme-color: var(--kinetic-teal); --theme-glow: rgba(20, 184, 166, 0.6); --theme-alpha: rgba(20, 184, 166, 0.15); }
.options-grid { display: flex; gap: 1.2rem; flex-wrap: wrap; flex: 1; justify-content: flex-end; margin: 0; }
.multi-select-options-grid { display: grid; gap: 1.2rem; grid-template-columns: repeat(4, 1fr); width: 100%; }
.neo-button { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; height: 85px; padding: var(--space-md) var(--space-lg); flex: 0 1 130px; font-family: inherit; font-weight: 600; color: var(--glass-text); background: linear-gradient(145deg, var(--glass-medium), rgba(255, 255, 255, 0.03)); border: 2px solid var(--glass-heavy); border-radius: var(--radius-xl); backdrop-filter: var(--blur-heavy); box-shadow: 0 6px 25px var(--shadow-medium), inset 0 1px 0 var(--glass-heavy); transition: var(--transition-normal); overflow: hidden; cursor: pointer; text-align: center; }
.neo-button:hover { transform: translateY(-4px) scale(1.03); border-color: var(--theme-color); box-shadow: 0 12px 35px var(--shadow-heavy), var(--glow-lg) var(--theme-glow), inset 0 2px 0 rgba(255, 255, 255, 0.35); }
.neo-button:active { transform: translateY(2px) scale(0.98); box-shadow: 0 2px 8px var(--shadow-medium), var(--glow-sm) var(--theme-glow), inset 0 1px 3px rgba(0, 0, 0, 0.25); transition-duration: 0.1s; }
.neo-button.selected { background: linear-gradient(145deg, var(--theme-alpha), var(--theme-alpha)); border-color: var(--theme-color); color: var(--white); box-shadow: 0 0 45px var(--theme-glow), inset 0 0 20px var(--theme-alpha), 0 8px 30px var(--shadow-heavy); transform: none; }
.package-theme #packageDescription.selected:hover { transform: translateY(-2px); box-shadow: 0 0 60px 15px var(--theme-glow), inset 0 0 25px var(--theme-alpha), 0 8px 30px var(--shadow-medium) !important; }
#packageDescription.hover-sync { border-color: var(--signal-green) !important; box-shadow: 0 0 20px rgba(0, 229, 91, 0.4), 0 6px 25px var(--shadow-medium), inset 0 1px 0 var(--glass-heavy) !important; }
#packageDescription.selected { background: linear-gradient(145deg, rgba(0, 229, 91, 0.15), rgba(0, 229, 91, 0.15)) !important; border-color: var(--signal-green) !important; color: var(--signal-green) !important; text-shadow: 0 0 8px rgba(0, 229, 91, 0.6) !important; box-shadow: 0 0 35px rgba(0, 229, 91, 0.6), inset 0 0 25px rgba(0, 229, 91, 0.15), 0 6px 25px var(--shadow-medium) !important; }
#packageDescription.selected:hover { transform: translateY(-2px) !important; box-shadow: 0 0 35px rgba(0, 229, 91, 0.6), inset 0 0 25px rgba(0, 229, 91, 0.15), 0 6px 25px var(--shadow-medium) !important; }
.button-content { position: relative; z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 0.3rem; }
.button-label { font-size: 1rem; line-height: 1; font-weight: 600; }
.button-sublabel { font-size: 0.8rem; opacity: 0.8; font-weight: 400; }
.package-grid { display: flex; gap: 1.2rem; flex-wrap: wrap; justify-content: flex-end; width: auto; max-width: 600px; margin: 0; }
.package-grid .neo-button { flex: 1; min-width: 170px; max-width: 260px; }
.format-toggle-container { display: flex; justify-content: flex-end; align-items: center; width: auto; max-width: 600px; margin: 0; }
.format-toggle { position: relative; width: 600px; height: 90px; background: linear-gradient(145deg, rgba(0, 0, 0, 0.4) 0%, rgba(255, 255, 255, 0.02) 30%, rgba(255, 255, 255, 0.05) 70%, rgba(0, 0, 0, 0.3) 100%); border: 2px solid rgba(255, 255, 255, 0.15); border-radius: 45px; padding: 6px; cursor: pointer; transition: var(--transition-slow); backdrop-filter: var(--blur-heavy); box-shadow: 0 8px 30px var(--shadow-medium), inset 0 3px 6px rgba(0, 0, 0, 0.3), inset 0 -1px 2px rgba(255, 255, 255, 0.1); overflow: hidden; }
.format-toggle::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent 0%, rgba(51, 194, 219, 0.1) 50%, transparent 100%); transition: left 0.8s ease; }
.format-toggle:hover::before { left: 100%; }
.format-toggle:hover {
    transform: translateY(-4px); /* Add the "lift" effect */
    border-color: var(--theme-color); /* Use the solid theme color for the border */
    box-shadow: 0 12px 35px var(--shadow-heavy), var(--glow-lg) var(--theme-glow), inset 0 2px 0 rgba(255, 255, 255, 0.35); /* Use the stronger theme glow */
}/* This makes the slider teal only when its parent has the 'is-selected' class */


/* --- FIND and MODIFY the existing .toggle-slider rule --- */
.toggle-slider {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 294px;
    height: 74px; /* CORRECTED: This perfectly fits inside the padded container */
    background: linear-gradient(145deg, var(--glass-medium), rgba(255, 255, 255, 0.03));
    border: 1px solid var(--glass-heavy);
    box-shadow: 0 4px 15px var(--shadow-medium), inset 0 1px 0 var(--glass-heavy);
    border-radius: 37px; /* CORRECTED: Half of the new height */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: var(--blur-medium);
}

/* NEW: Styles the outer container when selected, just like other buttons */
.format-toggle.is-selected {
    background: linear-gradient(145deg, var(--theme-alpha), var(--theme-alpha));
    border-color: var(--theme-color);
    box-shadow: 0 0 45px var(--theme-glow),
                inset 0 0 20px var(--theme-alpha),
                0 8px 30px var(--shadow-heavy);
}

/* This rule makes the inner slider colorful when active (keep this) */
.format-toggle.is-selected .toggle-slider {
  background: linear-gradient(145deg, rgba(51, 194, 219, 0.4) 0%, rgba(51, 194, 219, 0.25) 30%, rgba(51, 194, 219, 0.3) 70%, rgba(51, 194, 219, 0.5) 100%);
  border: 1px solid rgba(51, 194, 219, 0.6);
  box-shadow: 0 6px 20px rgba(51, 194, 219, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.3), inset 0 -2px 4px rgba(0, 0, 0, 0.2);
}
.toggle-slider::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 40%; background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.2) 100%); border-radius: 39px 39px 0 0; }
.format-toggle.in-person .toggle-slider { left: 300px; background: linear-gradient(145deg, rgba(236, 58, 149, 0.4) 0%, rgba(236, 58, 149, 0.25) 30%, rgba(236, 58, 149, 0.3) 70%, rgba(236, 58, 149, 0.5) 100%); border-color: rgba(236, 58, 149, 0.6); box-shadow: 0 6px 20px rgba(236, 58, 149, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.3), inset 0 -2px 4px rgba(0, 0, 0, 0.2); }
.toggle-option { position: absolute; top: 0; width: 300px; height: 90px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: rgba(255, 255, 255, 0.6); font-weight: 600; font-size: 1.1rem; transition: var(--transition-slow); z-index: 2; pointer-events: none; }
.toggle-option.left { left: 0; }
.toggle-option.right { right: 0; }
.toggle-option.active { color: rgba(255, 255, 255, 1); text-shadow: var(--glow-sm) rgba(255, 255, 255, 0.6), 0 1px 2px var(--shadow-light); font-weight: 700; }
.toggle-option.disabled { color: rgba(255, 255, 255, 0.25); }
.toggle-sublabel { font-size: 0.75rem; opacity: 0.7; margin-top: 0.2rem; font-weight: 400; }
.addons-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.2rem; row-gap: var(--space-xl); }
.addon-card { position: relative; display: flex; align-items: center; padding: var(--space-lg); background: linear-gradient(145deg, var(--glass-light) 0%, rgba(255, 255, 255, 0.04) 50%, rgba(255, 255, 255, 0.02) 100%); border: 1px solid var(--glass-border); border-radius: var(--radius-xl); cursor: pointer; transition: var(--transition-slow); user-select: none; overflow: hidden; }
.addon-card::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent 0%, var(--theme-alpha) 50%, transparent 100%); transition: left 0.6s ease; }
.addon-card:hover::before { left: 100%; }
.addon-card:hover { background: linear-gradient(145deg, var(--glass-medium) 0%, rgba(255, 255, 255, 0.06) 50%, rgba(255, 255, 255, 0.03) 100%); border-color: var(--glass-heavy); transform: translateY(-3px); box-shadow: 0 10px 30px var(--shadow-light); }
.addon-card input[type="checkbox"] { display: none; }
.addon-toggle { position: relative; width: 50px; height: 26px; background: linear-gradient(145deg, var(--glass-medium) 0%, rgba(255, 255, 255, 0.06) 100%); border: 1px solid var(--glass-heavy); border-radius: 13px; margin-right: var(--space-lg); transition: var(--transition-normal); box-shadow: inset 0 2px 4px var(--shadow-light); }
.toggle-orb { position: absolute; top: 2px; left: 2px; width: 20px; height: 20px; background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%); border-radius: var(--radius-full); transition: var(--transition-normal); box-shadow: 0 3px 6px var(--shadow-light), inset 0 1px 0 rgba(255, 255, 255, 0.8); }
.addons-theme .addon-card input:checked + .addon-toggle { background: linear-gradient(145deg, var(--theme-color) 0%, var(--theme-color) 100%); border-color: var(--theme-color); box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2), var(--glow-md) var(--theme-glow); }
.addons-theme .addon-card input:checked + .addon-toggle .toggle-orb { left: 26px; background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%); box-shadow: 0 3px 8px var(--shadow-medium), inset 0 1px 0 rgba(255, 255, 255, 1), var(--glow-md) var(--theme-glow); }
.addons-theme .addon-card.checked { background: linear-gradient(145deg, var(--theme-alpha), var(--theme-alpha)); border-color: var(--theme-color); box-shadow: var(--glow-md) var(--theme-glow), inset 0 0 20px var(--theme-alpha); }
.addon-details { display: flex; justify-content: space-between; align-items: center; width: 100%; color: rgba(255, 255, 255, 0.85); transition: var(--transition-normal); }
.addon-card.checked .addon-details { color: rgba(255, 255, 255, 1); }
.addon-name { font-weight: 500; font-size: 1rem; line-height: 1.3; }
.addon-price { font-weight: 600; font-size: 0.95rem; color: rgba(255, 255, 255, 0.9); background: var(--glass-medium); padding: 0.4rem var(--space-md); border-radius: 14px; border: 1px solid rgba(255, 255, 255, 0.2); }
.addon-price.free { background: linear-gradient(145deg, rgba(78, 205, 196, 0.25) 0%, rgba(78, 205, 196, 0.15) 100%); color: #4ECDC4; border-color: rgba(78, 205, 196, 0.4); font-weight: 700; box-shadow: var(--glow-sm) rgba(78, 205, 196, 0.3); }
.engage-addons { text-align: center; margin-top: var(--space-xl); }
.engage-button { background: linear-gradient(145deg, var(--glass-medium) 0%, rgba(255, 255, 255, 0.06) 50%, rgba(255, 255, 255, 0.03) 100%); border: 2px solid var(--glass-heavy); border-radius: var(--radius-2xl); padding: 1.2rem var(--space-2xl); color: var(--glass-text); font-weight: 600; font-size: 1.1rem; cursor: pointer; transition: var(--transition-normal); backdrop-filter: var(--blur-medium); box-shadow: 0 6px 25px var(--shadow-medium), inset 0 1px 0 var(--glass-heavy); position: relative; overflow: hidden; }
.engage-button::after { content: ''; position: absolute; width: 120px; height: 120px; background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%); border-radius: var(--radius-full); opacity: 0; left: var(--glow-x, 50%); top: var(--glow-y, 50%); transform: translate(-50%, -50%); transition: opacity 0.2s ease, left 0.1s ease, top 0.1s ease; pointer-events: none; z-index: 2; }
.engage-button:hover { transform: translateY(-4px) scale(1.03); border-color: var(--theme-color); box-shadow: 0 12px 35px var(--shadow-heavy), var(--glow-lg) var(--theme-glow), inset 0 2px 0 rgba(255, 255, 255, 0.35); }
.engage-button:hover::after { opacity: 1; }
.engage-button.selected { background: linear-gradient(145deg, var(--theme-alpha), var(--theme-alpha)); border-color: var(--theme-color); color: #ffffff; box-shadow: var(--glow-lg) var(--theme-glow), inset 0 0 25px var(--theme-alpha), 0 6px 25px var(--shadow-medium); animation: engageSelectedPulse 2s ease-in-out infinite; }
@keyframes engageSelectedPulse { 0%, 100% { box-shadow: var(--glow-lg) var(--theme-glow), inset 0 0 25px var(--theme-alpha), 0 6px 25px var(--shadow-medium); } 50% { box-shadow: 0 0 45px var(--theme-glow), inset 0 0 30px var(--theme-alpha), 0 8px 30px var(--shadow-heavy); } }
.engage-button:active { transform: translateY(-2px) scale(0.98); box-shadow: 0 8px 25px var(--shadow-heavy), var(--glow-sm) var(--theme-glow), inset 0 1px 0 rgba(255, 255, 255, 0.2); }
.engage-text { display: block; position: relative; z-index: 3; }
.engage-subtext { display: block; font-size: 0.9rem; opacity: 0.8; margin-top: 0.3rem; position: relative; z-index: 3; }
.session-pricing { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--space-lg); }
.session-options-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: stretch; }
.session-option-box { background: rgba(0, 0, 0, 0.2); border: 2px solid rgba(255, 255, 255, 0.2); border-radius: var(--radius-lg); padding: var(--space-lg); text-align: left; display: flex; flex-direction: column; transition: var(--transition-normal); cursor: pointer; position: relative; overflow: hidden; will-change: transform, box-shadow; }
.session-option-box input[type="radio"] { display: none; }
.session-theme .session-option-box:hover { border-color: var(--theme-color); transform: translateY(-5px); box-shadow: 0 8px 30px var(--shadow-light); }
.session-theme .session-option-box.selected { border-color: var(--theme-color); background: var(--theme-alpha); box-shadow: var(--glow-md) var(--theme-glow); transform: translateY(-5px) scale(1.02); }
.session-theme .session-option-box:active { transform: translateY(1px) scale(0.995); box-shadow: 0 4px 15px var(--shadow-light), var(--glow-sm) var(--theme-glow); transition-duration: 0.1s; }
.session-option-box::after { content: ''; position: absolute; width: 150px; height: 150px; background: radial-gradient(circle, var(--theme-alpha) 0%, transparent 70%); border-radius: var(--radius-full); opacity: 0; left: var(--glow-x, 50%); top: var(--glow-y, 50%); transform: translate(-50%, -50%); transition: opacity 0.3s ease; pointer-events: none; z-index: 2; }
.session-theme .session-option-box:hover::after { opacity: 1; }
.session-option-box .date-header { font-weight: 700; font-size: 1.1rem; margin-bottom: 0.5rem; position: relative; z-index: 3; }
.session-option-box .details { font-size: 0.95rem; color: rgba(255, 255, 255, 0.85); line-height: 1.5; margin-bottom: 1rem; flex-grow: 1; position: relative; z-index: 3; }
.summary-details { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255, 255, 255, 0.2); font-size: 0.9rem; line-height: 1.7; color: rgba(255, 255, 255, 0.9); position: relative; z-index: 3; }
.summary-details s { color: rgba(255, 255, 255, 0.5); font-weight: 400; }
.cost-details { font-size: 1rem; font-weight: 600; line-height: 1.6; margin-top: 1rem; position: relative; z-index: 3; }
.cost-details .original-price { font-size: 1rem; margin-right: 0.5rem; text-decoration: line-through; color: rgba(255, 255, 255, 0.5); }
.cost-details .final-price { color: #4ECDC4; font-size: 1.1rem; font-weight: 700; }
.early-bird-deadline { font-size: 0.85rem; font-style: italic; color: rgba(255, 255, 255, 0.7); margin-top: 0.25rem; position: relative; z-index: 3; }
.skill-slider-container { width: 100%; position: relative; }
.skill-slider { width: 100%; height: 16px; border-radius: var(--radius-sm); background: transparent; outline: none; margin: 0; -webkit-appearance: none; position: relative; z-index: 3; cursor: pointer; }
.slider-track-container { position: absolute; top: 50%; left: 0; right: 0; transform: translateY(-50%); height: 16px; border-radius: var(--radius-sm); background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(255, 255, 255, 0.02) 25%, rgba(255, 255, 255, 0.04) 50%, rgba(0, 0, 0, 0.6) 100%); border: 1px solid rgba(255, 255, 255, 0.08); box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.7), inset 0 -1px 2px rgba(255, 255, 255, 0.03), 0 1px 3px var(--shadow-medium); overflow: hidden; }
.skill-theme .slider-fill { position: absolute; top: 0; left: 0; height: 100%; width: var(--fill-width, 7.5%); background: linear-gradient(135deg, var(--theme-color) 0%, var(--theme-color) 80%, var(--white) 100%); border-radius: var(--radius-sm); box-shadow: var(--glow-md) var(--theme-glow), inset 0 1px 2px rgba(255, 255, 255, 0.4), inset 0 -1px 2px rgba(0, 0, 0, 0.2); }
.skill-theme .slider-fill::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 40%; background: linear-gradient(90deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.2) 30%, rgba(255, 255, 255, 0.1) 70%, rgba(255, 255, 255, 0.4) 100%); border-radius: var(--radius-sm) var(--radius-sm) 0 0; }
.skill-theme .skill-slider::-webkit-slider-thumb { appearance: none; width: 30px; height: 30px; border-radius: var(--radius-full); background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, var(--theme-color) 20%, var(--theme-color) 80%, var(--white) 100%); cursor: grab; border: 2px solid rgba(255, 255, 255, 0.4); box-shadow: var(--glow-md) var(--theme-glow), 0 4px 12px var(--shadow-heavy), inset 0 2px 4px rgba(255, 255, 255, 0.6), inset 0 -2px 4px var(--shadow-light), inset 0 0 0 1px rgba(255, 255, 255, 0.2); position: relative; z-index: 4; }
.skill-theme .skill-slider::-webkit-slider-thumb:hover { transform: scale(1.1); box-shadow: var(--glow-lg) var(--theme-glow), 0 6px 16px var(--shadow-heavy), inset 0 2px 4px rgba(255, 255, 255, 0.7), inset 0 -2px 4px var(--shadow-medium), inset 0 0 0 1px rgba(255, 255, 255, 0.3); }
.skill-theme .skill-slider::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.05); }
.skill-labels { display: flex; justify-content: space-between; gap: var(--space-md); margin-top: var(--space-xl); }
.skill-label { font-size: 0.85rem; color: rgba(255, 255, 255, 0.6); text-align: center; transition: var(--transition-normal); flex: 1; }
.skill-theme .skill-label.active { color: var(--theme-color); font-weight: 600; text-shadow: var(--glow-sm) var(--theme-glow); }
#packageDescription { position: relative; color: #00ff41; font-size: 0.95rem; font-weight: 600; font-family: 'Courier New', monospace; text-align: left; padding: 15px 25px 15px 55px; background: linear-gradient(145deg, var(--glass-light) 0%, rgba(255, 255, 255, 0.04) 100%); border: 2px solid var(--glass-heavy); border-radius: var(--radius-xl); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; text-shadow: 0 0 8px #00ff41, 0 0 16px #00ff41; pointer-events: auto; width: 600px; height: 65px; display: flex; align-items: center; justify-content: flex-start; margin: 0; backdrop-filter: var(--blur-heavy); box-shadow: 0 6px 25px var(--shadow-medium), inset 0 1px 0 var(--glass-heavy); transition: var(--transition-normal); cursor: text; }
#packageDescription:focus { outline: none; border-color: #00ff88; box-shadow: 0 8px 30px var(--shadow-heavy), 0 0 20px rgba(0, 255, 136, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.35); }
#packageDescription.hover-sync { border-color: #22C55E; }
#packageDescription.error { border-color: #ef4444; background: linear-gradient(145deg, rgba(239, 68, 68, 0.2) 0%, rgba(220, 38, 38, 0.1) 100%); box-shadow: 0 0 25px rgba(239, 68, 68, 0.4), inset 0 0 15px rgba(239, 68, 68, 0.1); animation: none; }
#packageDescription::before { content: '> '; position: absolute; left: 25px; top: 50%; transform: translateY(-50%); color: #00ff88; font-weight: bold; text-shadow: 0 0 8px #00ff88; }
.terminal-cursor { display: inline-block; width: 2px; height: 1.1em; background: #00ff41; margin-left: 4px; border-radius: 1px; animation: blinkCursor 1s infinite; box-shadow: 0 0 8px #00ff41; }
@keyframes blinkCursor { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } }
.text-content { white-space: pre; font-family: 'Courier New', monospace; }
#packageDescription.interactive { transition: var(--transition-normal); background: rgba(0, 15, 10, 0.2) !important; }
#packageDescription.interactive:hover { border-color: rgba(0, 255, 65, 0.8); box-shadow: 0 8px 30px var(--shadow-heavy), 0 0 20px rgba(0, 255, 65, 0.4), inset 0 2px 4px rgba(0, 255, 65, 0.1); transform: translateY(-2px); }
#proceedContainerWrapper { display: none; }
.proceed-container { margin-top: 0; text-align: center; }
.proceed-button-wrapper { --color-1: #33C2DB; --color-2: #EC4899; position: relative; display: inline-block; border-radius: 22px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.3), 0 0 20px var(--color-1), 0 0 20px var(--color-2); transition: transform 0.2s ease-out, box-shadow 0.2s ease-out; }
.proceed-button-wrapper::after { content: ''; position: absolute; top: -3px; left: -3px; width: calc(100% + 6px); height: calc(100% + 6px); background: linear-gradient(90deg, var(--color-1), var(--color-2), var(--color-1)); background-size: 200% 100%; border-radius: 25px; z-index: -1; animation: flow-border 4s ease-in-out infinite; transition: filter 0.3s ease; }
.proceed-button { position: relative; display: block; padding: 1.2rem 3rem; background: rgba(15, 23, 42, 0.7); backdrop-filter: blur(10px); box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), inset 0 -1px 1px rgba(0,0,0,0.3); border: none; border-radius: 22px; font-family: inherit; font-weight: 700; font-size: 1.2rem; letter-spacing: 0.5px; color: white; text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5); text-transform: uppercase; cursor: pointer; user-select: none; overflow: visible; }
.proceed-button .shine { position: absolute; top: 0; left: -150%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%); transform: skewX(-30deg); transition: left 0.6s ease-in-out; }
.proceed-button-wrapper:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 12px 35px rgba(0,0,0,0.4), 0 0 30px var(--color-1), 0 0 30px var(--color-2); }
.proceed-button-wrapper:hover::after { filter: brightness(1.3); }
.proceed-button:hover .shine { left: 150%; }
.proceed-button-wrapper:active { transform: translateY(1px) scale(0.98); box-shadow: 0 5px 15px rgba(0,0,0,0.4); }
.proceed-button:active { box-shadow: inset 0 2px 5px rgba(0,0,0,0.4); }
@keyframes flow-border { 0% { background-position: 100% 50%; } 50% { background-position: 0% 50%; } 100% { background-position: 100% 50%; } }
.glass-button-container { background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 50%, rgba(255, 255, 255, 0.03) 100%); border: 1px solid rgba(255, 255, 255, 0.25); border-radius: 28px; padding: 5rem; display: flex; justify-content: center; align-items: center; width: 100%; max-width: 600px; margin: 2rem auto; position: relative; overflow: hidden; transition: all 0.4s ease; backdrop-filter: blur(25px); cursor: pointer; will-change: transform, box-shadow; }
.glass-button-container::before { content: ''; position: absolute; top: -2px; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent 0%, rgba(51, 194, 219, 0.15) 50%, transparent 100%); transition: left 0.8s ease; border-radius: 28px; z-index: 0; }
.glass-button-container:hover::before { left: 0; background: linear-gradient(90deg, transparent 0%, rgba(51, 194, 219, 0.15) 25%, rgba(236, 72, 153, 0.15) 75%, transparent 100%); }
.glass-button-container::after { content: ''; position: absolute; width: 100px; height: 100px; background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, transparent 70%); border-radius: 50%; opacity: 0; left: var(--glow-x, 50%); top: var(--glow-y, 50%); transform: translate(-50%, -50%); transition: opacity 0.3s ease; pointer-events: none; z-index: 1; }
.glass-button-container:hover { border: 1px solid transparent; transform: translateY(-5px); box-shadow: inset 0 0 0 2px linear-gradient(to right, #EC4899, #33C2DB), 0 16px 50px rgba(0, 0, 0, 0.5), 0 0 20px 5px linear-gradient(to right, #33C2DB, #EC4899), inset 0 2px 0 rgba(255, 255, 255, 0.35); }
.glass-button-container:hover::after { opacity: 1; background: radial-gradient(circle, linear-gradient(to right, #33C2DB, #EC4899) 0%, transparent 70%); }
.glass-button-container.is-pressing { transform: translateY(-2px) scale(0.98); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5); transition: transform 0.15s ease-out, box-shadow 0.15s ease-out; }
.glass-button-container.is-pressing::after { opacity: 1; }
.particle-dust { position: absolute; width: 4px; height: 4px; border-radius: 50%; pointer-events: none; opacity: 0; }
.proceed-hover-particle { position: fixed; border-radius: 50%; pointer-events: none; }
.hidden { display: none; }
.cart-footer { text-align: center; padding: 40px 20px; background: rgba(0, 0, 0, 0); color: rgba(255, 255, 255, 0.7); border-top: 1px solid rgba(255, 255, 255, 0); }
.cart-footer a { color: var(--color-primary); text-decoration: none; margin: 0 5px; transition: color 0.3s ease, text-shadow 0.3s ease; }
.cart-footer a:hover { color: var(--color-secondary); text-shadow: 0 0 5px rgba(236, 58, 149, 0.5); }
/* ALTERNATE THEME STYLES */
#farmSceneryBackground { position: absolute; bottom: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; display: none; }
.farm-active #farmSceneryBackground { display: block; }
.farm-bg-element { position: absolute; bottom: -10px; transform-origin: bottom center; transition: transform 0.5s ease-out; }
.farm-bg-element.barn { height: 90%; left: 50%; transform: translateX(-50%); }
.farm-bg-element.cow { height: 35%; left: 15%; }
.farm-bg-element.pig { height: 25%; left: 75%; bottom: 0; }
.farm-active { --farm-wood: #A0522D; --farm-wood-light: #DEB887; --farm-red: #B22222; --farm-sky: #87CEEB; --farm-chalk: #F0EAD6; background: linear-gradient(to bottom, var(--farm-sky) 0%, #a8e0f7 100%); transition: background 1s ease-in-out; }
.farm-active .section-glass, .farm-active .title-glass, .farm-active .glass-button-container { background: var(--farm-wood-light); border: 3px solid var(--farm-wood); border-radius: 4px; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25); backdrop-filter: none; transition: all 0.5s ease; }
.farm-active h1, .farm-active h3 { font-family: 'Rye', cursive; letter-spacing: 1px; color: var(--farm-red); text-shadow: 1px 1px 0px var(--farm-wood); }
.farm-active p { font-family: 'Georgia', serif; color: #4a2c12; }
.farm-active .neo-button, .farm-active .neo-button.selected { font-family: 'Rye', cursive; font-size: 1.1rem; background: #2F4F2F; color: var(--farm-chalk); border: 2px solid #553a1f; border-radius: 2px; box-shadow: 2px 2px 0 var(--farm-wood); height: 70px; animation: none; transition: all 0.3s ease; }
.farm-active .neo-button:hover { background: #4a6d4a; transform: translateY(1px); box-shadow: 1px 1px 0 var(--farm-wood); }
.farm-active .neo-button.selected { background: #FFD700; color: #000; border-color: var(--farm-wood); transform: scale(1.05); }
.farm-active #packageDescription { background: #F5F5DC; color: #4a2c12; font-family: 'Georgia', serif; border: 1px solid #ccc; box-shadow: 2px 2px 5px rgba(0,0,0,0.1); text-shadow: none; }
.farm-active .bg-particles { opacity: 1; }
.farm-active .particle { background: rgba(255, 253, 208, 0.7); border-radius: 50%; width: 3px; height: 3px; box-shadow: 0 0 10px rgba(255, 253, 208, 0.5); animation-name: floatMote; animation-duration: 20s; animation-timing-function: ease-in-out; }
@keyframes floatMote { 0% { transform: translateY(0) translateX(0); opacity: 0; } 10% { opacity: 0.7; } 50% { transform: translateY(-50vh) translateX(10vw); } 90% { opacity: 0.7; } 100% { transform: translateY(-100vh) translateX(-10vw); opacity: 0; } }
.wonderland-active { --wonderland-purple: #4a0d66; --wonderland-teal: #0d6666; --wonderland-red: #a31a1a; --paper-bg: #f5e8d7; --ink-color: #2c251e; background: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.4), transparent 50%) 0 0 / 100% 100%, radial-gradient(circle at 80% 70%, rgba(210, 180, 140, 0.2), transparent 60%) 0 0 / 100% 100%, linear-gradient(to right, rgba(0,0,0,0.02) 1px, transparent 1px) 0 0 / 2px 2px, var(--paper-bg); transition: background 1s ease-in-out; }
.wonderland-active .bg-particles { opacity: 1; filter: blur(0.5px); }
.wonderland-active .particle { background: var(--ink-color); border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%; animation-name: tumbleParticle; animation-duration: 15s; animation-timing-function: linear; animation-iteration-count: infinite; }
.wonderland-active .particle:nth-child(3n) { background: var(--wonderland-red); width: 3px; height: 3px; }
@keyframes tumbleParticle { 0% { transform: translateY(-10vh) translateX(0) rotate(0deg); opacity: 0; } 10% { opacity: 0.7; } 90% { opacity: 0.7; } 100% { transform: translateY(110vh) translateX(20vw) rotate(720deg); opacity: 0; } }
.wonderland-active .section-glass, .wonderland-active .title-glass, .wonderland-active .glass-button-container { background: var(--paper-bg); border: 2px solid var(--ink-color); border-radius: 8px 20px 8px 20px; box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3); backdrop-filter: none; transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55); }
.wonderland-active .section-glass:hover { transform: rotate(-1deg) scale(1.02); }
.wonderland-active h1, .wonderland-active h3 { font-family: 'AliceInWonderland', cursive; color: var(--ink-color); letter-spacing: 2px; text-shadow: 1px 3px 0px rgba(0,0,0,0.1); }
.wonderland-active h1 { font-size: 4rem; color: var(--wonderland-red); }
.wonderland-active h3 { font-size: 2.5rem; }
.wonderland-active p { font-family: 'Georgia', serif; color: var(--ink-color); font-style: italic; }
.wonderland-active .neo-button, .wonderland-active .neo-button.selected { font-family: 'AliceInWonderland', cursive; font-size: 1.2rem; background: var(--paper-bg); border: 2px dashed var(--ink-color); border-radius: 4px; color: var(--ink-color); box-shadow: 3px 3px 0px rgba(0,0,0,0.2); height: 70px; transition: all 0.3s ease; animation: none; }
.wonderland-active .neo-button:hover { background: #fff3e3; box-shadow: 1px 1px 0px rgba(0,0,0,0.2); transform: translateY(2px); }
.wonderland-active .neo-button.selected { background: var(--wonderland-teal); color: var(--paper-bg); border-style: solid; border-color: var(--wonderland-purple); transform: rotate(2deg) scale(1.05); }
.wonderland-active #packageDescription { font-family: 'Georgia', serif; background: var(--paper-bg); border: 2px solid var(--ink-color); color: var(--ink-color); text-shadow: none; }
.glow-active { --glow-1: #00ffff; --glow-2: #ff00ff; --glow-3: #8A2BE2; }
.glow-active .section-glass, .glow-active .title-glass, .glow-active .glass-button-container { position: relative; overflow: hidden; transition: transform 0.5s ease, box-shadow 0.5s ease; }
.glow-active .section-glass::before, .glow-active .title-glass::before, .glow-active .glass-button-container::before { content: ''; position: absolute; top: 0; left: 0; width: 200%; height: 200%; z-index: -1; background: radial-gradient(circle at 25% 25%, var(--glow-1), transparent 40%), radial-gradient(circle at 75% 25%, var(--glow-2), transparent 40%), radial-gradient(circle at 50% 75%, var(--glow-3), transparent 40%); filter: blur(60px); opacity: 0.6; animation: pan-glow 15s linear infinite; }
@keyframes pan-glow { 0% { transform: translate(0, 0); } 25% { transform: translate(-25%, -25%); } 50% { transform: translate(-50%, 0); } 75% { transform: translate(-25%, 25%); } 100% { transform: translate(0, 0); } }
.glow-active h1, .glow-active h3 { color: #fff; text-shadow: 0 0 12px var(--glow-1); animation: text-pulse 4s ease-in-out infinite alternate; }
.glow-active p, .glow-active .button-sublabel { color: rgba(255, 255, 255, 0.85); text-shadow: 0 0 8px var(--glow-2); }
@keyframes text-pulse { from { text-shadow: 0 0 12px var(--glow-1); opacity: 1; } to { text-shadow: 0 0 18px var(--glow-2); opacity: 0.95; } }
.glow-activation-fx { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100px; height: 100px; border-radius: 50%; pointer-events: none; z-index: 9999; background: radial-gradient(circle, var(--glow-1), transparent 60%); animation: glow-power-up 1.5s ease-out forwards; }
@keyframes glow-power-up { 0% { transform: translate(-50%, -50%) scale(0); opacity: 0.8; filter: blur(20px); } 100% { transform: translate(-50%, -50%) scale(30); opacity: 0; filter: blur(5px); } }
.ocean-active { --ocean-deep: #001122; --ocean-mid: #002244; --ocean-surface: #003366; --ocean-bio: #00FFFF; --ocean-teal: #20B2AA; --ocean-electric: #40E0D0; --ocean-bubble: #87CEEB; }
.ocean-active { background: radial-gradient(ellipse at center top, var(--ocean-surface) 0%, var(--ocean-mid) 40%, var(--ocean-deep) 100%); background-attachment: fixed; position: relative; }
.ocean-active::before { content: ''; position: fixed; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none; z-index: 0; background: radial-gradient(circle at 20% 30%, rgba(64, 224, 208, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(0, 255, 255, 0.08) 0%, transparent 60%), radial-gradient(circle at 50% 20%, rgba(32, 178, 170, 0.06) 0%, transparent 40%), linear-gradient(135deg, rgba(0, 17, 34, 0.3) 0%, rgba(0, 34, 68, 0.2) 25%, rgba(0, 51, 102, 0.1) 50%, rgba(0, 34, 68, 0.2) 75%, rgba(0, 17, 34, 0.3) 100%); animation: ocean-current-flow 20s ease-in-out infinite; }
@keyframes ocean-current-flow { 0%, 100% { background-position: 0% 0%, 100% 100%, 50% 0%; opacity: 0.8; } 33% { background-position: 30% 20%, 70% 80%, 80% 30%; opacity: 1; } 66% { background-position: 70% 80%, 30% 20%, 20% 70%; opacity: 0.9; } }
.ocean-active .bg-particles { z-index: 0; }
.ocean-active .particle { background: radial-gradient(circle, rgba(135, 206, 235, 0.6) 0%, rgba(135, 206, 235, 0.3) 50%, transparent 100%); border-radius: 50%; width: 4px; height: 4px; box-shadow: 0 0 6px rgba(135, 206, 235, 0.4), inset -1px -1px 2px rgba(255, 255, 255, 0.3); animation: ocean-bubble-rise 12s linear infinite; }
@keyframes ocean-bubble-rise { 0% { transform: translateY(100vh) translateX(0) scale(0.3); opacity: 0; } 10% { opacity: 0.8; transform: translateY(90vh) translateX(10px) scale(0.5); } 50% { opacity: 1; transform: translateY(50vh) translateX(-20px) scale(1); } 90% { opacity: 0.6; transform: translateY(10vh) translateX(30px) scale(0.8); } 100% { transform: translateY(-10vh) translateX(50px) scale(0.2); opacity: 0; } }
.ocean-active .section-glass, .ocean-active .title-glass, .ocean-active .glass-button-container { overflow: hidden; transition: all 0.6s ease; }
.ocean-active .section-glass::before, .ocean-active .title-glass::before, .ocean-active .glass-button-container::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; border-radius: inherit; pointer-events: none; z-index: -1; background: linear-gradient(135deg, rgba(0, 17, 34, 0.9) 0%, rgba(0, 34, 68, 0.7) 25%, rgba(0, 51, 102, 0.8) 50%, rgba(0, 34, 68, 0.7) 75%, rgba(0, 17, 34, 0.9) 100%); border: 1px solid rgba(64, 224, 208, 0.3); box-shadow: inset 0 1px 2px rgba(64, 224, 208, 0.2), inset 0 -1px 2px rgba(0, 255, 255, 0.1), 0 0 20px rgba(64, 224, 208, 0.15), 0 8px 25px rgba(0, 0, 0, 0.6); animation: ocean-container-glow 8s ease-in-out infinite alternate; }
@keyframes ocean-container-glow { 0% { box-shadow: inset 0 1px 2px rgba(64, 224, 208, 0.2), inset 0 -1px 2px rgba(0, 255, 255, 0.1), 0 0 20px rgba(64, 224, 208, 0.15), 0 8px 25px rgba(0, 0, 0, 0.6); border-color: rgba(64, 224, 208, 0.3); } 100% { box-shadow: inset 0 1px 2px rgba(64, 224, 208, 0.4), inset 0 -1px 2px rgba(0, 255, 255, 0.2), 0 0 30px rgba(64, 224, 208, 0.25), 0 12px 35px rgba(0, 0, 0, 0.7); border-color: rgba(64, 224, 208, 0.5); } }
.ocean-active h1 { color: var(--ocean-bio); text-shadow: 0 0 20px rgba(0, 255, 255, 0.6), 0 0 40px rgba(64, 224, 208, 0.3), 0 2px 4px rgba(0, 0, 0, 0.8); animation: bioluminescent-pulse 4s ease-in-out infinite alternate; }
.ocean-active h3 { color: var(--ocean-teal); text-shadow: 0 0 15px rgba(32, 178, 170, 0.5), 0 1px 3px rgba(0, 0, 0, 0.6); }
.ocean-active p, .ocean-active .button-sublabel { color: rgba(135, 206, 235, 0.9); text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5); }
@keyframes bioluminescent-pulse { 0% { text-shadow: 0 0 20px rgba(0, 255, 255, 0.6), 0 0 40px rgba(64, 224, 208, 0.3), 0 2px 4px rgba(0, 0, 0, 0.8); } 100% { text-shadow: 0 0 30px rgba(0, 255, 255, 0.9), 0 0 60px rgba(64, 224, 208, 0.5), 0 0 20px rgba(135, 206, 235, 0.4), 0 2px 4px rgba(0, 0, 0, 0.8); } }
.ocean-active .neo-button, .ocean-active .neo-button.selected { background: linear-gradient(145deg, rgba(0, 34, 68, 0.8) 0%, rgba(0, 51, 102, 0.6) 100%); border-color: rgba(64, 224, 208, 0.4); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(135, 206, 235, 0.2); }
.ocean-active .neo-button:hover { border-color: rgba(64, 224, 208, 0.7); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7), 0 0 20px rgba(64, 224, 208, 0.4), inset 0 1px 0 rgba(135, 206, 235, 0.3); }
.ocean-active .neo-button.selected { background: linear-gradient(145deg, rgba(64, 224, 208, 0.2) 0%, rgba(0, 51, 102, 0.8) 100%); border-color: var(--ocean-bio); color: white; box-shadow: 0 0 25px rgba(64, 224, 208, 0.6), inset 0 0 15px rgba(64, 224, 208, 0.1), 0 6px 20px rgba(0, 0, 0, 0.8); animation: ocean-selected-pulse 3s ease-in-out infinite; }
@keyframes ocean-selected-pulse { 0%, 100% { box-shadow: 0 0 25px rgba(64, 224, 208, 0.6), inset 0 0 15px rgba(64, 224, 208, 0.1), 0 6px 20px rgba(0, 0, 0, 0.8); } 50% { box-shadow: 0 0 35px rgba(64, 224, 208, 0.8), 0 0 15px rgba(0, 255, 255, 0.4), inset 0 0 20px rgba(64, 224, 208, 0.15), 0 8px 25px rgba(0, 0, 0, 0.9); } }
.ocean-active .dashboard-counter { background: rgba(0, 17, 34, 0.9); border-color: rgba(64, 224, 208, 0.6); box-shadow: 0 0 20px rgba(64, 224, 208, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.1); animation: sonar-pulse 4s ease-in-out infinite; }
@keyframes sonar-pulse { 0%, 100% { box-shadow: 0 0 20px rgba(64, 224, 208, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.1); border-color: rgba(64, 224, 208, 0.6); } 50% { box-shadow: 0 0 30px rgba(64, 224, 208, 0.5), 0 0 50px rgba(0, 255, 255, 0.3), inset 0 0 15px rgba(0, 255, 255, 0.2); border-color: rgba(64, 224, 208, 0.8); } }
.ocean-active .counter-text { color: var(--ocean-bio); text-shadow: 0 0 10px rgba(0, 255, 255, 0.8); }
.ocean-active #packageDescription { background: linear-gradient(145deg, rgba(0, 17, 34, 0.95) 0%, rgba(0, 34, 68, 0.8) 100%); border-color: rgba(64, 224, 208, 0.6); color: var(--ocean-bio); text-shadow: 0 0 8px rgba(0, 255, 255, 0.6); box-shadow: 0 6px 25px rgba(0, 0, 0, 0.6), 0 0 20px rgba(64, 224, 208, 0.3), inset 0 1px 0 rgba(135, 206, 235, 0.2); }
.ocean-active #packageDescription::before { color: var(--ocean-teal); text-shadow: 0 0 8px rgba(32, 178, 170, 0.8); }
.whiteout-active { --whiteout-bg: #f8f9fa; --whiteout-panel: #ffffff; --whiteout-border: #dee2e6; --whiteout-text: #495057; --whiteout-heading: #212529; background: linear-gradient(90deg, #f0f2f4 1px, transparent 1px), linear-gradient(180deg, #f0f2f4 1px, transparent 1px); background-size: 20px 20px; background-color: var(--whiteout-bg); transition: background 1s ease-in-out; }
.whiteout-active .section-glass, .whiteout-active .title-glass, .whiteout-active .glass-button-container { background: var(--whiteout-panel); border: 1px solid var(--whiteout-border); border-left: 4px solid var(--theme-color, var(--whiteout-border)); box-shadow: 0 4px 25px rgba(0, 0, 0, 0.07); backdrop-filter: none; transition: all 0.5s ease; }
.whiteout-active .title-glass h1 { color: transparent; background: linear-gradient(90deg, #33C2DB 0%, #EC4899 50%, #33C2DB 100%); background-size: 200% 100%; background-clip: text; -webkit-background-clip: text; animation: title-shimmer 4s ease-in-out infinite; text-shadow: none; filter: none; }
@keyframes title-shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.whiteout-active p { color: var(--whiteout-text); text-shadow: none; }
.whiteout-active .question-content h3 { background: none; -webkit-background-clip: initial; -webkit-text-fill-color: initial; color: var(--theme-color, var(--whiteout-heading)); text-shadow: none; }
.whiteout-active .question-content p { color: var(--theme-color, var(--whiteout-text)); opacity: 0.75; text-shadow: none; }
.whiteout-active .neo-button, .whiteout-active .neo-button.selected { background: var(--whiteout-panel); color: var(--theme-color, var(--whiteout-text)); border: 2px solid var(--theme-color, var(--whiteout-border)); box-shadow: none; animation: none; transition: all 0.3s ease; }
.whiteout-active .neo-button:hover { background: var(--theme-color); color: white; }
.whiteout-active .neo-button.selected { background: var(--theme-color); color: white; font-weight: 700; }
.whiteout-active .addons-theme .addon-name { color: var(--theme-color); }
.whiteout-active .addons-theme .addon-toggle { border: 1px solid #dee2e6; background: #f8f9fa; box-shadow: inset 0 1px 2px rgba(0,0,0,0.05); }
.whiteout-active .addons-theme .addon-card input:checked + .addon-toggle { border-color: var(--theme-color); background: var(--theme-color); box-shadow: none; }
.whiteout-active .addons-theme .toggle-orb { background: #e9ecef; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
.whiteout-active .addons-theme .addon-card input:checked + .addon-toggle .toggle-orb { background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.2); }
.whiteout-active .bg-particles { opacity: 0; }
.whiteout-active .dashboard-counter { background: #fff; border-color: #dee2e6; box-shadow: 0 2px 10px rgba(0,0,0,0.1); animation: none; backdrop-filter: none; }
.whiteout-active .counter-text { color: #495057; }
.whiteout-active .dashboard-counter.celebrating { animation: celebration-glow 2s infinite linear; }
.midnight-active { --midnight-primary: #0A0F1C; --midnight-secondary: #1A1F2E; --midnight-accent: #2D3748; --midnight-gold: #D4AF37; --midnight-silver: #C0C5CE; --midnight-white: #F7FAFC; }
.midnight-active .section-glass, .midnight-active .title-glass, .midnight-active .glass-button-container { overflow: hidden; transition: all 0.5s ease; }
.midnight-active .section-glass::before, .midnight-active .title-glass::before, .midnight-active .glass-button-container::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; border-radius: inherit; pointer-events: none; z-index: -1; background: linear-gradient(135deg, var(--midnight-primary) 0%, var(--midnight-secondary) 25%, var(--midnight-accent) 50%, var(--midnight-secondary) 75%, var(--midnight-primary) 100%); box-shadow: inset 0 1px 2px rgba(212, 175, 55, 0.3), inset 0 -1px 2px rgba(192, 197, 206, 0.2), 0 0 30px rgba(212, 175, 55, 0.1), 0 8px 25px rgba(0, 0, 0, 0.6); animation: midnight-shimmer 8s ease-in-out infinite; }
@keyframes midnight-shimmer { 0%, 100% { background-position: 0% 50%; box-shadow: inset 0 1px 2px rgba(212, 175, 55, 0.3), inset 0 -1px 2px rgba(192, 197, 206, 0.2), 0 0 30px rgba(212, 175, 55, 0.1), 0 8px 25px rgba(0, 0, 0, 0.6); } 50% { background-position: 100% 50%; box-shadow: inset 0 1px 2px rgba(212, 175, 55, 0.4), inset 0 -1px 2px rgba(192, 197, 206, 0.3), 0 0 40px rgba(212, 175, 55, 0.15), 0 12px 35px rgba(0, 0, 0, 0.7); } }
.midnight-active h1 { color: var(--midnight-white); text-shadow: 0 0 20px rgba(212, 175, 55, 0.4), 0 2px 4px rgba(0, 0, 0, 0.8); animation: midnight-title-glow 6s ease-in-out infinite alternate; }
.midnight-active h3 { color: var(--midnight-silver); text-shadow: 0 0 15px rgba(192, 197, 206, 0.3), 0 1px 3px rgba(0, 0, 0, 0.6); }
.midnight-active p, .midnight-active .button-sublabel { color: rgba(192, 197, 206, 0.9); text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5); }
@keyframes midnight-title-glow { from { text-shadow: 0 0 20px rgba(212, 175, 55, 0.4), 0 2px 4px rgba(0, 0, 0, 0.8); } to { text-shadow: 0 0 30px rgba(212, 175, 55, 0.6), 0 0 15px rgba(247, 250, 252, 0.3), 0 2px 4px rgba(0, 0, 0, 0.8); } }
.midnight-activation-fx { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 80px; height: 80px; border-radius: 50%; pointer-events: none; z-index: 9999; background: radial-gradient(circle, var(--midnight-gold) 0%, transparent 70%); animation: midnight-power-up 2s ease-out forwards; }
@keyframes midnight-power-up { 0% { transform: translate(-50%, -50%) scale(0); opacity: 0.9; filter: blur(10px); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); } 50% { transform: translate(-50%, -50%) scale(15); opacity: 0.6; filter: blur(5px); box-shadow: 0 0 100px 20px rgba(212, 175, 55, 0.3); } 100% { transform: translate(-50%, -50%) scale(25); opacity: 0; filter: blur(2px); box-shadow: 0 0 150px 30px rgba(212, 175, 55, 0.1); } }
.theme-2am-active { --midnight-bg: #0a0e1a; --midnight-panel: rgba(16, 22, 42, 0.7); --midnight-border: #38bdf8; --midnight-text: #e2e8f0; --midnight-glow: rgba(56, 189, 248, 0.4); background: var(--midnight-bg); transition: background 1s ease-in-out; }
.theme-2am-active .section-glass, .theme-2am-active .title-glass, .theme-2am-active .glass-button-container { background: var(--midnight-panel); border: 1px solid var(--midnight-border); backdrop-filter: blur(10px); box-shadow: 0 0 25px var(--midnight-glow); transition: all 0.5s ease; }
.theme-2am-active h1, .theme-2am-active h3, .theme-2am-active p { color: var(--midnight-text); text-shadow: 0 0 8px var(--midnight-glow); }
.theme-2am-active .neo-button, .theme-2am-active .neo-button.selected { background: transparent; border: 2px solid var(--midnight-border); color: var(--midnight-border); font-weight: 400; box-shadow: none; height: 70px; animation: none; transition: all 0.3s ease; }
.theme-2am-active .neo-button:hover { background: var(--midnight-glow); color: #fff; box-shadow: 0 0 20px var(--midnight-border); }
.theme-2am-active .neo-button.selected { background: var(--midnight-border); color: var(--midnight-bg); font-weight: 700; box-shadow: 0 0 30px 5px var(--midnight-border); animation: theme-2am-pulse 4s ease-in-out infinite; }
@keyframes theme-2am-pulse { 0% { box-shadow: 0 0 30px 5px var(--midnight-border); } 50% { box-shadow: 0 0 45px 10px var(--midnight-border); } 100% { box-shadow: 0 0 30px 5px var(--midnight-border); } }
.theme-2am-active #packageDescription { font-family: 'Courier New', 'Lucida Console', monospace; background: #000; color: #39ff14; text-shadow: 0 0 5px #39ff14; border: 1px solid #39ff14; box-shadow: 0 0 15px rgba(57, 255, 20, 0.4); }
.frosted-mode .section-glass, .frosted-mode .title-glass, .frosted-mode .glass-button-container { position: relative; overflow: hidden; }
.frosted-mode .section-glass::after, .frosted-mode .title-glass::after, .frosted-mode .glass-button-container::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; border-radius: inherit; pointer-events: none; z-index: 5; backdrop-filter: blur(4px) saturate(120%); background-image: radial-gradient(circle at 25% 35%, rgba(255, 255, 255, 0.04) 0%, transparent 50%), radial-gradient(circle at 75% 65%, rgba(255, 255, 255, 0.03) 0%, transparent 50%), linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 25%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0.03) 75%, rgba(255, 255, 255, 0.06) 100%); box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.2), inset 0 -1px 2px rgba(0, 0, 0, 0.05), inset 1px 0 2px rgba(255, 255, 255, 0.1), inset -1px 0 2px rgba(0, 0, 0, 0.03); animation: subtleFrostedShimmer 8s ease-in-out infinite; }
@keyframes subtleFrostedShimmer { 0%, 100% { background-position: 0% 0%, 100% 100%; filter: brightness(1) contrast(1); } 50% { background-position: 100% 100%, 0% 0%; filter: brightness(1.02) contrast(1.01); } }

@media (max-width: 768px) {
    .container { padding: 2rem 1rem; }
    .session-types-grid { grid-template-columns: 1fr; }
    .floating-dashboard { height: 220px; padding-bottom: 15px; }
    .dashboard-counter { bottom: 10px; padding: 6px 12px; }
    .counter-text { font-size: 12px; }
    .menu-container { padding: var(--space-md); padding-bottom: 260px; }
    .section-glass { padding: var(--space-xl); }
    .title-glass { padding: var(--space-xl) var(--space-lg); }
    .title-glass h1 { font-size: 2.2rem; }
    .title-glass p { font-size: 1.1rem; }
    .question-layout { flex-direction: column; align-items: flex-start; gap: var(--space-lg); justify-content: flex-start; }
    .question-info { min-width: auto; width: 100%; }
    .options-grid { width: 100%; justify-content: flex-start; }
    .format-toggle-container { width: 100%; justify-content: center; }
    .neo-button { min-width: 130px; height: 70px; padding: 0.8rem 1.2rem; flex-grow: 1; }
    .package-grid { flex-direction: column; justify-content: center; }
    .format-toggle { width: 320px; height: 70px; }
    .toggle-slider { width: 156px; height: 62px; }
    .format-toggle.in-person .toggle-slider { left: 160px; }
    .toggle-option { width: 160px; height: 70px; font-size: 0.9rem; }
    .multi-select-options-grid { grid-template-columns: repeat(2, 1fr); }
    .addons-grid { grid-template-columns: 1fr; }
    .session-options-grid { grid-template-columns: 1fr; }
    .glass-button-container { padding: 2rem; border-radius: 20px; margin: 1.5rem auto; max-width: 100%; }
    .proceed-button { font-size: 1rem; padding: 1rem 2rem; }
}