/* ===== DESIGN TOKENS =====
   Primary:    #5c4cfc (blue)
   Secondary:  #ff2e7e (pink)
   Tertiary:   #ffb77f (orange)
   Background: #251233
   Surface:    #180526
   Surface+:   #341948
   On-surface: #f4deff
   On-surface-variant: #bca2cb
   ===================== */

@font-face {
    font-family: 'Mokoto';
    src: url('https://fonts.cdnfonts.com/s/16219/Mokoto%20Glitch.woff') format('woff');
}

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

::selection {
    background: #ff2e7e;
    color: #fff;
}

body {
    font-family: 'Tomorrow', sans-serif;
    background-color: #251233;
    color: #f4deff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

main {
    flex: 1;
    width: 100%;
}

/* ===== GLITCH TEXT UTILITY ===== */
.glitch-text {
    position: relative;
}


/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(24, 5, 38, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(92, 76, 252, 0.2);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0.7rem 2rem;
}

.navbar-logo img {
    height: 32px;
    width: auto;
}

.navbar-links {
    display: flex;
    gap: 2rem;
}

.navbar-links a {
    color: #bca2cb;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.2s;
}

.navbar-links a:hover {
    color: #ff2e7e;
}

.navbar-cta {
    padding: 0.5rem 1.5rem;
    font-size: 0.8rem;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.navbar-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #f4deff;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.navbar-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 6rem 2rem 3rem;
    overflow: hidden;
}

.video-background video {
  position: fixed; /* Fixes the video relative to the viewport */
  right: 0;
  bottom: 0;
  min-width: 100%; /* Ensures the video is at least full width and height */
  min-height: 100%;
  z-index: -1; /* Pushes the video behind other content */
  /* Optional: use object-fit to ensure the video covers the area without stretching */
  object-fit: cover; 
  filter: blur(10px); /* Applies the blur effect */
  -webkit-filter: blur(10px); /* For compatibility with WebKit browsers */
  pointer-events: none;
}

.content {
  position: relative; /* Ensures content is above the video */
  z-index: 1; 
  /* Add styling for your content (e.g., color, padding) */
  color: white;
  padding: 20px;
  /* ... other content styles ... */
}

/* Optional: Add a dark overlay to improve text visibility over the video */
.video-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.5);
    z-index: 0; /* Place the overlay between the video and the content */
}


.hero::before,
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero::before {
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 46, 126, 0.03) 2px,
        rgba(255, 46, 126, 0.03) 4px
    );
    z-index: -1;
}

.hero::after {
    background:
        radial-gradient(ellipse at 20% 80%, rgba(92, 76, 252, 0.55) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 46, 126, 0.45) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(77, 2, 121, 0.65) 0%, transparent 70%);
    z-index: -1;
    animation: glitchOverlay 3s steps(4) infinite;
    opacity: 1.0;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes glitchOverlay {
    0% { opacity: 0.8; }
    25% { opacity: 1; }
    50% { opacity: 0.6; }
    75% { opacity: 0.9; }
    100% { opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    width: 100%;
    max-width: 700px;
}

.hero-logo {
    width: clamp(1000px, 22vw, 300px);
    height: auto;
    margin-bottom: clamp(3rem, 6vh, 5rem);
}

/* ===== COUNTDOWN ===== */
.countdown {
    display: flex;
    justify-content: center;
    gap: clamp(0.6rem, 2vw, 1.2rem);
    width: 100%;

}

.countdown-item {
    background: rgba(24, 5, 38, 0.7);
    border: 2px solid #ff2e7e;
    border-radius: 12px;
    padding: clamp(0.8rem, 2vh, 1.2rem) clamp(0.6rem, 2vw, 1.4rem);
    text-align: center;
    display: flex;
    flex-direction: column;
    min-width: clamp(60px, 12vw, 100px);

        /* From https://css.glass */
    background: rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4.7px);
    -webkit-backdrop-filter: blur(4.7px);
    border: 1px solid rgba(255, 255, 255, 0.31);
}

.countdown-value {
    font-family: 'Tomorrow', sans-serif;
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    font-weight: 900;
    color: #ffb77f;
    line-height: 1;

}

.countdown-label {
    font-size: clamp(0.5rem, 1.2vw, 0.75rem);
    text-transform: uppercase;
    color: rgba(255, 183, 127, 0.7);
    letter-spacing: 1.5px;
    margin-top: 0.4rem;
    font-weight: 300;
        -webkit-text-stroke: 1px white;
}

/* ===== TICKER ===== */
.ticker-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    background: rgba(255, 46, 126, 0.15);
    border-top: 1px solid rgba(255, 46, 126, 0.5);
    padding: 0.7rem 0;
    z-index: 3;
}

.ticker-track {
    display: flex;
    white-space: nowrap;
    animation: tickerScroll 18s linear infinite;
    width: max-content;
}

.ticker-item {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff;
    padding: 0 3rem;
}

.ticker-item::before {
    content: '◆';
    margin-right: 3rem;
    color: #ff2e7e;
}

@keyframes tickerScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ===== CRÉNEAUX PLEIN ===== */
.creneaux-plein-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    padding: 4rem 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(92, 76, 252, 0.25);
}

.creneaux-spotlight {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 55% 70% at 50% 50%, rgba(180, 0, 255, 0.18) 0%, rgba(255, 46, 126, 0.08) 40%, transparent 70%);
    pointer-events: none;
    animation: spotlightPulse 3s ease-in-out infinite;
}

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

.creneaux-scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(0, 0, 0, 0.08) 3px,
        rgba(0, 0, 0, 0.08) 4px
    );
    pointer-events: none;
    z-index: 2;
}

.creneaux-ticket-wrap {
    position: relative;
    z-index: 3;
    transform: rotate(-3deg);
    transition: transform 0.4s ease;
    filter: drop-shadow(0 12px 40px rgba(255, 46, 126, 0.5)) drop-shadow(0 0 80px rgba(140, 0, 255, 0.3));
    animation: ticketFloat 4s ease-in-out infinite, glitchIn 0.6s ease forwards;
    opacity: 0;
}

.creneaux-ticket-wrap.visible {
    opacity: 1;
}

.creneaux-ticket-wrap:hover {
    transform: rotate(0deg) scale(1.03);
}

@keyframes ticketFloat {
    0%, 100% { transform: rotate(-3deg) translateY(0);    filter: drop-shadow(0 12px 40px rgba(255, 46, 126, 0.5)) drop-shadow(0 0 80px rgba(140, 0, 255, 0.3)); }
    50%       { transform: rotate(-3deg) translateY(-10px); filter: drop-shadow(0 24px 60px rgba(255, 46, 126, 0.7)) drop-shadow(0 0 100px rgba(140, 0, 255, 0.5)); }
}

@keyframes glitchIn {
    0%   { opacity: 0; transform: rotate(-3deg) translateX(-8px) skewX(4deg); clip-path: inset(40% 0 40% 0); }
    30%  { opacity: 1; transform: rotate(-3deg) translateX(4px)  skewX(-2deg); clip-path: inset(0% 0 0% 0); }
    60%  { transform: rotate(-3deg) translateX(-2px) skewX(1deg); }
    100% { opacity: 1; transform: rotate(-3deg) translateX(0); }
}

.creneaux-plein-img {
    width: clamp(240px, 28vw, 380px);
    height: auto;
    display: block;
}

.creneaux-side {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    text-align: center;

    z-index: 3;
}

.creneaux-side--left  { left: clamp(2rem, 8vw, 10%); }
.creneaux-side--right { right: clamp(2rem, 8vw, 10%); animation-delay: 0.8s; }

.creneaux-side-label {
    font-size: 0.55rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ff2e7e;
    font-weight: 600;
}

.creneaux-side-text {
    font-family: 'Mokoto', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 900;
    color: #f4deff;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 24px rgba(140, 0, 255, 0.7);
}

@keyframes sideFloat {
    0%, 100% { transform: translateY(-50%); }
    50%       { transform: translateY(calc(-50% - 10px)); }
}

@media (max-width: 780px) {
    .creneaux-plein-section {
        min-height: 50vh;
    }
    .creneaux-plein-img {
        width: min(42vw, 200px);
    }
    .creneaux-side { display: flex; }
    .creneaux-side--left  { left: 2vw; }
    .creneaux-side--right { right: 2vw; }
    .creneaux-side-label {
        font-size: 0.45rem;
        letter-spacing: 2px;
    }
    .creneaux-side-text {
        font-size: clamp(0.85rem, 4vw, 1.1rem);
    }
    @keyframes ticketFloat {
        0%, 100% { transform: rotate(-3deg) translateY(0); }
        50%       { transform: rotate(-3deg) translateY(-6px); }
    }
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-block;
    padding: 0.9rem 2.8rem;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 20px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
    font-family: 'Tomorrow', sans-serif;

  /* Dimensions and positioning (example values) */
  position: relative;
  isolation: isolate; /* Creates a new stacking context for backdrop-filter to work correctly */

  /* The core "glass" look */
  background: rgba(255, 255, 255, 0.05); /* Subtle background tint */
  backdrop-filter: blur(8px); /* The essential blur effect */
  -webkit-backdrop-filter: blur(8px); /* Safari compatibility */
  border: 1px solid rgba(255, 255, 255, 0.3); /* Subtle white border for highlight */
  box-shadow: 0px 6px 24px rgba(0, 0, 0, 0.2); /* For depth and 'floating' effect */

}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 46, 126, 0.5);
}

.btn-outline {
    display: inline-block;
    padding: 0.9rem 2.8rem;
    background: rgba(24, 5, 38, 0.5);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
    font-family: 'Tomorrow', sans-serif;
}

.btn-outline:hover {
    transform: translateY(-2px);
    border-color: #ff2e7e;
    box-shadow: 0 6px 25px rgba(255, 46, 126, 0.3);
}

/* ===== UTILITIES ===== */
.mokoto { font-family: 'Mokoto', sans-serif; }
.text-secondary { color: #ff2e7e; }
.text-primary { color: #5c4cfc; }
.text-tertiary { color: #ffb77f; }

/* ===== SECTIONS BASE ===== */
.hero { max-width: none; }

/* ===== ABOUT ===== */
.about {
    max-width: none;
    background: #180526;
    padding: 8rem 1.5rem;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-heading {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #f4deff;
    margin-bottom: 2rem;
    text-transform: none;
    text-align: left;
}

.accent-bar {
    width: 80px;
    height: 6px;
    background: #5c4cfc;
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #bca2cb;
    font-weight: 300;
    max-width: 540px;
}

.about-image-wrap {
    position: relative;
}

.about-image-glow {
    position: absolute;
    inset: -16px;
    background: rgba(92, 76, 252, 0.15);
    filter: blur(40px);
    border-radius: 8px;
    transition: background 0.4s;
}

.about-image-wrap:hover .about-image-glow {
    background: rgba(255, 46, 126, 0.15);
}

.about-image-frame {
    position: relative;
    border: 2px solid rgba(92, 76, 252, 0.3);
    padding: 8px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.about-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.7s;
}

.about-image-frame:hover img {
    filter: grayscale(0%);
}

.image-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #251233;
    padding: 4px 12px;
    font-size: 0.6rem;
    letter-spacing: 3px;
    border: 1px solid rgba(92, 76, 252, 0.4);
    text-transform: uppercase;
    color: #bca2cb;
}

/* ===== PILLARS ===== */
.pillars {
    max-width: none;
    background: #341948;
    padding: 6rem 1.5rem;
}

.pillars-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid rgba(92, 76, 252, 0.1);
}

.pillar {
    padding: 3.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: background-color 0.3s;
}

.pillar:hover {
    background-color: rgba(52, 25, 72, 0.5);
}

.pillar-middle {
    border-left: 1px solid rgba(92, 76, 252, 0.1);
    border-right: 1px solid rgba(92, 76, 252, 0.1);
}

.pillar-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    transition: transform 0.2s;
    color: red;
}

.pillar:hover .pillar-img {
    transform: scale(1.1);
}

.pillar-title {
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #f4deff;
    margin-bottom: 1rem;
}

.pillar-desc {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #bca2cb;
    max-width: 280px;
    line-height: 1.6;
}

/* ===== AUDIENCE ===== */
.audience {
    max-width: none;
    background: #251233;
    padding: 8rem 1.5rem;
    overflow: hidden;
}

.audience-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.audience-heading {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1;
    letter-spacing: -0.02em;
    color: #f4deff;
    margin-bottom: 3rem;
    text-transform: uppercase;
    text-align: left;
}

.audience-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.audience-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem 1.4rem;
    border-left: 4px solid;
    background: #180526;
    transition: transform 0.2s;
}

.audience-item:hover {
    transform: translateX(10px);
}

.audience-item.border-primary { border-color: #5c4cfc; }
.audience-item.border-secondary { border-color: #ff2e7e; }
.audience-item.border-tertiary { border-color: #ffb77f; }

.audience-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.audience-item h4 {
    font-weight: 700;
    color: #f4deff;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
}

.audience-item p {
    font-size: 0.8rem;
    color: #bca2cb;
    line-height: 1.5;
}

.audience-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-content: start;
}

.audience-img-card {
    position: relative;
    height: 320px;
    overflow: hidden;
    border: 1px solid rgba(92, 76, 252, 0.2);
    box-shadow: 0 0 32px rgba(92, 76, 252, 0.25);
    transition: box-shadow 0.4s;
}

.audience-img-card:hover {
    box-shadow: 0 0 48px rgba(255, 46, 126, 0.3);
}

.audience-img-offset {
    margin-top: 3rem;
}

.audience-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s;
}

.audience-img-card:hover img {
    filter: grayscale(0%);
}

.audience-img-card .image-tag {
    top: auto;
    right: auto;
    bottom: 16px;
    left: 16px;
    background: transparent;
    border: none;
    font-size: 0.7rem;
    color: #5c4cfc;
    padding: 0;
}

.tag-secondary {
    color: #ff2e7e !important;
}

/* ===== CTA ===== */
.cta {
    text-align: center;
    padding-top: 3.5rem;
    padding-bottom: 4rem;
    border-top: 1px solid rgba(92, 76, 252, 0.15);
}

.cta h2 {
    margin-bottom: 0.2rem;
    color: #f4deff;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-weight: 400;
}

.cta-title {
    font-family: 'Mokoto', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #f4deff;
    margin-bottom: 2rem;
}

.cta-title span {
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* ===== FOOTER ===== */
footer {
    border-top: 1px solid rgba(255, 46, 126, 0.15);
    padding: 3rem 2rem;
    background: #251233;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links a {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(244, 222, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s, transform 0.2s, text-shadow 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: #ffb77f;
    transform: scale(1.15);
    text-shadow: 0 0 8px rgba(255, 183, 127, 0.4);
}

.footer-links a:active {
    transform: scale(0.95);
    color: #ff2e7e;
}

.footer-divider {
    width: 100%;
    max-width: 500px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 46, 126, 0.2), transparent);
    margin-bottom: 1.5rem;
}

.footer-copy {
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ff2e7e;
}

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(24, 5, 38, 0.88);
    backdrop-filter: blur(8px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: #180526;
    border: 1px solid rgba(92, 76, 252, 0.35);
    border-radius: 6px;
    width: 100%;
    max-width: 680px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    scrollbar-width: thin;
    scrollbar-color: rgba(92, 76, 252, 0.4) transparent;
}

.modal::-webkit-scrollbar { width: 4px; }
.modal::-webkit-scrollbar-track { background: transparent; }
.modal::-webkit-scrollbar-thumb { background: rgba(92, 76, 252, 0.4); border-radius: 2px; }

#formView { padding: 2.5rem; }

.modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #bca2cb;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, color 0.2s;
}

.modal-close:hover {
    border-color: #ff2e7e;
    color: #ff2e7e;
}

.modal-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #5c4cfc;
    margin-bottom: 0.5rem;
}

.modal-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #f4deff;
    margin-bottom: 1rem;
    line-height: 1;
}

.modal-header .accent-bar {
    margin-bottom: 2rem;
}

/* Form sections */
.form-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(92, 76, 252, 0.1);
}

.form-section-title {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #5c4cfc;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-section-hint {
    font-size: 0.8rem;
    color: #bca2cb;
    margin-bottom: 1rem;
}

/* Inputs */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #bca2cb;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.form-group input {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(92, 76, 252, 0.22);
    border-radius: 4px;
    padding: 0.7rem 0.9rem;
    color: #f4deff;
    font-family: 'Tomorrow', sans-serif;
    font-size: 0.88rem;
    transition: border-color 0.2s, background 0.2s;
    width: 100%;
}

.form-group input:focus {
    outline: none;
    border-color: #5c4cfc;
    background: rgba(92, 76, 252, 0.07);
}

.form-group input::placeholder {
    color: rgba(188, 162, 203, 0.35);
}

.form-group input.invalid {
    border-color: #ff2e7e;
}


.field-error {
    font-size: 0.68rem;
    color: #ff2e7e;
    min-height: 1em;
    margin-top: 0.2rem;
}

/* Slots */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.7rem;
    margin-bottom: 0.5rem;
}

.slot-card {
    border: 1px solid rgba(92, 76, 252, 0.22);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 1rem 0.5rem;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, transform 0.15s;
    user-select: none;
}

.slot-card:hover:not(.taken) {
    border-color: #5c4cfc;
    background: rgba(92, 76, 252, 0.1);
    transform: translateY(-2px);
}

.slot-card.selected {
    border-color: #ffb77f;
    background: rgba(255, 183, 127, 0.08);
}

.slot-card.taken {
    opacity: 0.3;
    cursor: not-allowed;
}

.slot-time {
    font-size: 1.25rem;
    font-weight: 900;
    color: #f4deff;
    font-family: 'Tomorrow', sans-serif;
    display: block;
}

.slot-status {
    font-size: 0.52rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 0.3rem;
    display: block;
    color: rgba(188, 162, 203, 0.55);
}

.slot-card.selected .slot-status { color: #ffb77f; }
.slot-card.taken .slot-status { color: rgba(255, 46, 126, 0.6); }

.slot-card.skeleton {
    cursor: default;
    pointer-events: none;
    border-color: rgba(92, 76, 252, 0.1);
}

.slot-skeleton-time {
    height: 1.4rem;
    width: 60%;
    margin: 0 auto 0.5rem;
    border-radius: 4px;
    background: linear-gradient(90deg, rgba(255,255,255,0.05) 25%, rgba(255,255,255,0.12) 50%, rgba(255,255,255,0.05) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.2s infinite;
}

.slot-skeleton-status {
    height: 0.6rem;
    width: 70%;
    margin: 0 auto;
    border-radius: 4px;
    background: linear-gradient(90deg, rgba(255,255,255,0.05) 25%, rgba(255,255,255,0.12) 50%, rgba(255,255,255,0.05) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.2s infinite;
}

@keyframes shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Radio */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(92, 76, 252, 0.18);
    border-radius: 4px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.radio-option:hover {
    border-color: #5c4cfc;
    background: rgba(92, 76, 252, 0.05);
}

.radio-option input[type="radio"] { display: none; }

.radio-custom {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(92, 76, 252, 0.4);
    flex-shrink: 0;
    position: relative;
    transition: border-color 0.2s;
}

.radio-option input[type="radio"]:checked ~ .radio-custom {
    border-color: #ff2e7e;
}

.radio-option input[type="radio"]:checked ~ .radio-custom::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: #ff2e7e;
}

.radio-option:has(input:checked) {
    border-color: #ff2e7e;
    background: rgba(255, 46, 126, 0.05);
}

.radio-label {
    font-size: 0.85rem;
    color: #f4deff;
}

/* Players */
.players-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.player-card {
    border: 1px solid rgba(92, 76, 252, 0.15);
    border-radius: 6px;
    overflow: hidden;
}

.player-card-header {
    background: rgba(92, 76, 252, 0.07);
    padding: 0.45rem 1rem;
    font-size: 0.62rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #5c4cfc;
    font-weight: 600;
    border-bottom: 1px solid rgba(92, 76, 252, 0.12);
}

.player-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    padding: 1rem;
}

/* Footer + submit */
.form-footer {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    padding-top: 0.5rem;
}

.form-error-global {
    font-size: 0.72rem;
    color: #ff2e7e;
    text-align: center;
    min-height: 1em;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    font-size: 0.95rem;
    text-align: center;
    border-radius: 6px;
}

/* Success */
#successView { padding: 4rem 2.5rem; }

.success-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.2rem;
}

.success-checkmark {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid #5c4cfc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #5c4cfc;
    animation: scaleIn 0.4s ease;
}

@keyframes scaleIn {
    from { transform: scale(0); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

.success-title {
    font-size: 2rem;
    color: #f4deff;
}

.success-message {
    font-size: 0.9rem;
    color: #bca2cb;
    line-height: 1.8;
}

.success-slot {
    font-size: 0.88rem;
    color: #bca2cb;
    padding: 0.6rem 1.5rem;
    border: 1px solid rgba(255, 183, 127, 0.2);
    border-radius: 4px;
    background: rgba(255, 183, 127, 0.05);
}

/* Modal responsive */
@media (max-width: 600px) {
    #formView { padding: 1.5rem 1rem; }
    .slots-grid { grid-template-columns: repeat(2, 1fr); }
    .player-fields { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 360px) {
    .player-fields { grid-template-columns: 1fr; }
    .player-fields .form-group:last-child { grid-column: span 1; }
}

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

/* Tablet */
@media (max-width: 768px) {

    .hero {
        padding: 5rem 1.5rem 2rem;
    }

    /* About tablet */
    .about {
        padding: 5rem 1.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-heading {
        text-align: center;
    }

    .accent-bar {
        margin: 0 auto 2rem;
    }

    .about-text p {
        text-align: center;
        max-width: 100%;
    }

    .about-image-frame {
        max-width: 500px;
        margin: 0 auto;
    }

    /* Pillars tablet */
    .pillars {
        padding: 4rem 1.5rem;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        border: none;
    }

    .pillar {
        padding: 2rem;
        border: 1px solid rgba(92, 76, 252, 0.1);
    }

    .pillar-middle {
        border-left: 1px solid rgba(92, 76, 252, 0.1);
        border-right: 1px solid rgba(92, 76, 252, 0.1);
    }

    /* Audience tablet */
    .audience {
        padding: 5rem 1.5rem;
    }

    .audience-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .audience-heading {
        text-align: center;
    }

    .audience-right {
        max-width: 500px;
        margin: 0 auto;
    }

    .audience-img-card {
        height: 220px;
    }

    /* CTA tablet */
    .cta {
        padding: 5rem 1.5rem;
    }
}


@media (max-width: 1000px) {
.hero-logo {
    width: clamp(500px, 22vw, 300px);
    height: auto;
}
}

@media (max-width: 1600px) {
.hero-logo {
    width: clamp(700px, 22vw, 300px);
    height: auto;
}
}

/* Mobile */
@media (max-width: 780px) {

    .hero {
        padding: 4.5rem 1rem 1.5rem;
        min-height: 100svh;
    }

    .hero-logo {
        width: clamp(320px, 40vw, 180px);
    }

    .hero-content {
        gap: 1.5rem;
    }

    .countdown-item {
        min-width: 55px;
        padding: 0.6rem 0.4rem;
    }

    .countdown-value {
        font-size: 1.5rem;
    }

    .countdown-label {
        font-size: 0.45rem;
        letter-spacing: 0.5px;
    }

    .btn-outline,
    .btn-primary {
        padding: 0.7rem 2rem;
        font-size: 0.85rem;
    }

    /* About mobile */
    .about {
        padding: 3.5rem 1rem;
    }

    .about-heading {
        font-size: 2rem;
    }

    /* Pillars mobile */
    .pillars {
        padding: 3rem 1rem;
    }

    .pillar-img {
        width: 48px;
        height: 48px;
    }

    .pillar-title {
        font-size: 1.1rem;
    }

    /* Audience mobile */
    .audience {
        padding: 3.5rem 1rem;
    }

    .audience-right {
        grid-template-columns: 1fr;
    }

    .audience-img-offset {
        margin-top: 0;
    }

    .audience-img-card {
        height: 200px;
    }

    .audience-item {
        padding: 1rem;
    }

    /* CTA mobile */
    .btn-cta {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }

    /* Footer mobile */
    .footer-links {
        gap: 1.2rem;
    }
}
