    :root {
      --bg-deep: #050013;
      --bg-purple: #0c0330;
      --panel: rgba(10, 5, 42, 0.72);
      --panel-soft: rgba(18, 8, 56, 0.62);
      --line: rgba(255, 255, 255, 0.12);
      --white: #ffffff;
      --muted: rgba(255, 255, 255, 0.78);
      --muted-soft: rgba(255, 255, 255, 0.62);
      --pink: #ff39c8;
      --pink-strong: #ff1fb8;
      --cyan: #24dcff;
      --blue: #4a69ff;
      --violet: #9437ff;
      --hero-photo: url("images/bachata-hero.jpg");
    }

    * {
      box-sizing: border-box;
    }

    html {
      min-height: 100%;
      scroll-behavior: smooth;
    }

    body {
      min-height: 100%;
      margin: 0;
      font-family: "Montserrat", Arial, sans-serif;
      color: var(--white);
      background:
        radial-gradient(circle at 74% 16%, rgba(36, 220, 255, 0.16) 0, transparent 28%),
        radial-gradient(circle at 24% 18%, rgba(255, 57, 200, 0.15) 0, transparent 30%),
        radial-gradient(circle at 70% 82%, rgba(255, 57, 200, 0.16) 0, transparent 35%),
        linear-gradient(135deg, #050013 0%, #08001f 42%, #090028 100%);
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      z-index: -2;
      background-image:
        radial-gradient(circle, rgba(255,255,255,0.38) 0 1px, transparent 1px),
        radial-gradient(circle, rgba(36,220,255,0.34) 0 1px, transparent 1px),
        radial-gradient(circle, rgba(255,57,200,0.32) 0 1px, transparent 1px);
      background-size: 110px 110px, 170px 170px, 240px 240px;
      background-position: 12px 20px, 80px 60px, 140px 120px;
      opacity: 0.24;
      pointer-events: none;
    }

    body::after {
      content: "";
      position: fixed;
      left: -15%;
      right: -15%;
      bottom: -34%;
      height: 58%;
      z-index: -1;
      background: radial-gradient(ellipse at center, rgba(255, 31, 184, 0.24) 0%, rgba(74, 105, 255, 0.11) 34%, transparent 70%);
      filter: blur(8px);
      pointer-events: none;
    }

    a {
      color: inherit;
    }

    .page {
      width: 100%;
      min-height: 100vh;
      padding: 26px 38px 34px;
      position: relative;
    }

    .page::before {
      content: "";
      position: absolute;
      top: 78px;
      right: 8%;
      width: 420px;
      height: 420px;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(36, 220, 255, 0.18), transparent 62%);
      filter: blur(4px);
      pointer-events: none;
    }

    .site-header,
    .hero,
    .values-panel {
      max-width: 1480px;
      margin-left: auto;
      margin-right: auto;
      position: relative;
      z-index: 2;
    }

    .site-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
      padding: 2px 8px 20px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 18px;
      min-width: max-content;
      text-decoration: none;
    }

    .brand-mark {
      width: 92px;
      height: 92px;
      display: grid;
      place-items: center;
      position: relative;
      flex: 0 0 auto;
    }

    .brand-mark::before {
      content: "";
      position: absolute;
      inset: 3px;
      border-radius: 18px;
      background:
        linear-gradient(145deg, rgba(36,220,255,0.22), rgba(255,57,200,0.22));
      filter: blur(18px);
      opacity: 0.9;
    }

    .brand-mark span {
      position: relative;
      font-size: 88px;
      line-height: 0.8;
      font-weight: 900;
      letter-spacing: -0.09em;
      color: rgba(5, 0, 19, 0.9);
      -webkit-text-stroke: 3px var(--cyan);
      text-shadow:
        0 0 8px rgba(36,220,255,0.95),
        5px 5px 0 rgba(255,57,200,0.82),
        0 0 26px rgba(255,57,200,0.78);
    }

    .brand-text strong,
    .brand-text span {
      display: block;
      line-height: 1;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .brand-text strong {
      font-size: 32px;
      font-weight: 900;
      background: linear-gradient(90deg, #61e8ff 0%, #7da6ff 45%, #ff83d7 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .brand-text span {
      margin-top: 6px;
      font-size: 22px;
      font-weight: 800;
      color: rgba(255,255,255,0.82);
    }

    .main-nav {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: clamp(18px, 3vw, 46px);
      width: 100%;
    }

    .main-nav a {
      position: relative;
      text-decoration: none;
      text-transform: uppercase;
      font-size: 15px;
      line-height: 1;
      font-weight: 800;
      letter-spacing: 0.12em;
      color: rgba(255,255,255,0.9);
      transition: color 0.22s ease, text-shadow 0.22s ease, border-color 0.22s ease;
      white-space: nowrap;
    }

    .main-nav a:hover,
    .main-nav a.active {
      color: var(--pink);
      text-shadow: 0 0 16px rgba(255,57,200,0.72);
    }

    .main-nav .register-link {
      padding: 18px 28px;
      border: 1px solid rgba(255, 57, 200, 0.8);
      border-radius: 8px;
      box-shadow: inset 0 0 0 1px rgba(36,220,255,0.08), 0 0 18px rgba(255,57,200,0.18);
    }

    .main-nav .register-link:hover {
      color: #fff;
      border-color: var(--cyan);
      text-shadow: 0 0 16px rgba(36,220,255,0.72);
      box-shadow: 0 0 22px rgba(36,220,255,0.22), 0 0 20px rgba(255,57,200,0.18);
    }

    .hero {
      display: grid;
      grid-template-columns: minmax(420px, 0.93fr) minmax(480px, 1.07fr);
      gap: 42px;
      align-items: center;
      min-height: calc(100vh - 195px);
      padding: 34px 8px 28px;
    }

    .hero-copy {
      max-width: 720px;
      padding: 20px 0 48px;
    }

    .eyebrow {
      margin: 0 0 18px;
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--pink);
      text-shadow: 0 0 16px rgba(255,57,200,0.7);
    }

    .hero-title {
      margin: 0;
      text-transform: uppercase;
      font-size: clamp(58px, 6.8vw, 104px);
      line-height: 0.88;
      letter-spacing: 0.04em;
      font-weight: 900;
      color: #fff;
      text-shadow:
        0 4px 24px rgba(0,0,0,0.7),
        0 0 18px rgba(255,255,255,0.18);
    }

    .hero-script {
      display: block;
      margin-top: -2px;
      margin-left: 6px;
      font-family: "Dancing Script", cursive;
      font-size: clamp(52px, 6.1vw, 94px);
      line-height: 0.98;
      font-weight: 700;
      color: var(--pink);
      text-transform: none;
      letter-spacing: 0;
      text-shadow:
        0 0 13px rgba(255,57,200,0.92),
        0 0 28px rgba(255,57,200,0.55);
    }

    .hero-lead {
      max-width: 620px;
      margin: 26px 0 0;
      font-size: 19px;
      line-height: 1.68;
      font-weight: 500;
      color: rgba(255,255,255,0.9);
      text-shadow: 0 2px 18px rgba(0,0,0,0.45);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-top: 34px;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 56px;
      padding: 0 32px;
      border-radius: 8px;
      text-decoration: none;
      text-transform: uppercase;
      font-size: 14px;
      font-weight: 900;
      letter-spacing: 0.08em;
      transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    }

    .button:hover {
      transform: translateY(-2px);
    }

    .button-primary {
      border: 1px solid rgba(255,255,255,0.1);
      background: linear-gradient(120deg, var(--pink-strong) 0%, #a733ff 52%, #356dff 100%);
      color: #fff;
      box-shadow: 0 0 24px rgba(255,57,200,0.32), 0 8px 28px rgba(0,0,0,0.36);
    }

    .button-primary:hover {
      box-shadow: 0 0 34px rgba(255,57,200,0.48), 0 0 24px rgba(36,220,255,0.22), 0 12px 34px rgba(0,0,0,0.42);
    }

    .button-ghost {
      border: 1px solid rgba(36,220,255,0.78);
      background: rgba(5,0,19,0.38);
      color: #fff;
      box-shadow: inset 0 0 16px rgba(36,220,255,0.06), 0 0 18px rgba(36,220,255,0.16);
      backdrop-filter: blur(10px);
    }

    .button-ghost:hover {
      border-color: var(--pink);
      box-shadow: inset 0 0 20px rgba(255,57,200,0.08), 0 0 24px rgba(255,57,200,0.22);
    }

    .hero-visual {
      min-height: 610px;
      border-radius: 32px;
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.12);
      background:
        linear-gradient(90deg, rgba(5,0,19,0.98) 0%, rgba(5,0,19,0.64) 37%, rgba(5,0,19,0.12) 100%),
        radial-gradient(circle at 76% 46%, rgba(255,57,200,0.38) 0%, transparent 28%),
        radial-gradient(circle at 45% 20%, rgba(36,220,255,0.28) 0%, transparent 32%),
        var(--hero-photo) center / cover no-repeat,
        linear-gradient(135deg, #100035 0%, #08001c 42%, #1e0248 100%);
      box-shadow:
        0 0 70px rgba(74,105,255,0.26),
        0 0 48px rgba(255,57,200,0.18),
        0 28px 80px rgba(0,0,0,0.48);
      isolation: isolate;
    }

    .hero-visual::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.06) 0%, transparent 22%, rgba(5,0,19,0.42) 100%),
        radial-gradient(circle at 80% 24%, rgba(36,220,255,0.30), transparent 18%),
        radial-gradient(circle at 83% 58%, rgba(255,57,200,0.28), transparent 19%);
      z-index: 1;
      pointer-events: none;
    }

    .hero-visual::after {
      content: "";
      position: absolute;
      left: 5%;
      right: 5%;
      bottom: -18px;
      height: 140px;
      border-radius: 999px;
      background: radial-gradient(ellipse at center, rgba(255,57,200,0.36) 0%, rgba(36,220,255,0.14) 36%, transparent 70%);
      filter: blur(10px);
      z-index: 1;
    }

    .visual-glow-b {
      position: absolute;
      right: 9%;
      bottom: 1%;
      z-index: 2;
      font-size: clamp(280px, 29vw, 430px);
      line-height: 0.75;
      font-weight: 900;
      color: rgba(255,255,255,0.015);
      -webkit-text-stroke: 4px rgba(255,255,255,0.12);
      text-shadow:
        0 0 22px rgba(36,220,255,0.42),
        12px 10px 0 rgba(255,57,200,0.28),
        0 0 80px rgba(255,57,200,0.28);
      opacity: 0.92;
      pointer-events: none;
    }

    .visual-caption {
      position: absolute;
      left: 34px;
      bottom: 34px;
      width: min(410px, calc(100% - 68px));
      z-index: 3;
      padding: 24px 24px 22px;
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 20px;
      background: rgba(6, 0, 26, 0.68);
      backdrop-filter: blur(14px);
      box-shadow: 0 18px 48px rgba(0,0,0,0.38), 0 0 24px rgba(255,57,200,0.10);
    }

    .visual-caption strong {
      display: block;
      margin-bottom: 8px;
      font-size: 17px;
      line-height: 1.2;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: #fff;
    }

    .visual-caption p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.58;
    }

    .values-panel {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      margin-top: -12px;
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 18px;
      background: rgba(8, 2, 36, 0.70);
      box-shadow: 0 24px 70px rgba(0,0,0,0.32), inset 0 0 42px rgba(74,105,255,0.07);
      backdrop-filter: blur(12px);
      overflow: hidden;
    }

    .value-card {
      min-height: 194px;
      padding: 28px 26px;
      border-right: 1px solid rgba(255,255,255,0.10);
      background:
        radial-gradient(circle at 50% 0%, rgba(255,57,200,0.08), transparent 36%),
        rgba(255,255,255,0.01);
    }

    .value-card:last-child {
      border-right: none;
    }

    .value-icon {
      display: block;
      height: 46px;
      margin-bottom: 18px;
      font-size: 42px;
      line-height: 1;
      font-weight: 800;
      color: var(--pink);
      text-shadow: 0 0 18px rgba(255,57,200,0.78);
    }

    .value-card:nth-child(even) .value-icon {
      color: var(--cyan);
      text-shadow: 0 0 18px rgba(36,220,255,0.78);
    }

    .value-card h3 {
      margin: 0 0 11px;
      font-size: 15px;
      line-height: 1.25;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-weight: 900;
    }

    .value-card p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.62;
      font-weight: 500;
    }

    @media (max-width: 1180px) {
      .page {
        padding: 22px 22px 30px;
      }

      .site-header {
        align-items: flex-start;
      }

      .main-nav {
        flex-wrap: wrap;
        gap: 18px 26px;
        padding-top: 18px;
      }

      .hero {
        grid-template-columns: 1fr;
        min-height: auto;
      }

      .hero-copy {
        max-width: 820px;
        padding-bottom: 8px;
      }

      .hero-visual {
        min-height: 520px;
      }

      .values-panel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .value-card:nth-child(2n) {
        border-right: none;
      }

      .value-card:last-child {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 760px) {
      .page {
        padding: 18px 15px 24px;
      }

      .site-header {
        display: block;
      }

      .brand-mark {
        width: 74px;
        height: 74px;
      }

      .brand-mark span {
        font-size: 70px;
        -webkit-text-stroke-width: 2px;
      }

      .brand-text strong {
        font-size: 24px;
      }

      .brand-text span {
        font-size: 17px;
      }

      .main-nav {
        justify-content: flex-start;
        gap: 14px 18px;
      }

      .main-nav a {
        font-size: 12px;
      }

      .main-nav .register-link {
        padding: 13px 18px;
      }

      .hero {
        padding-top: 22px;
        gap: 22px;
      }

      .hero-title {
        font-size: clamp(44px, 14vw, 70px);
      }

      .hero-script {
        font-size: clamp(44px, 13vw, 68px);
      }

      .hero-lead {
        font-size: 16px;
        line-height: 1.62;
      }

      .button {
        width: 100%;
        min-height: 52px;
      }

      .hero-visual {
        min-height: 430px;
        border-radius: 24px;
      }

      .visual-glow-b {
        right: 1%;
        bottom: 8%;
        font-size: 250px;
      }

      .visual-caption {
        left: 18px;
        right: 18px;
        bottom: 18px;
        width: auto;
        padding: 20px;
      }

      .values-panel {
        grid-template-columns: 1fr;
      }

      .value-card,
      .value-card:nth-child(2n) {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.10);
      }

      .value-card:last-child {
        border-bottom: none;
      }
    }

    /* UPCOMING CLASSES & EVENTS SECTIONS */
    .sections-wrap {
      max-width: 1480px;
      margin: 52px auto 0;
      position: relative;
      z-index: 2;
    }

    .upcoming-section {
      padding: 48px 8px;
      border-top: 1px solid rgba(255,255,255,0.08);
      display: grid;
      grid-template-columns: 300px 1fr;
      gap: 48px;
      align-items: start;
    }

    .upcoming-label {
      font-size: 11px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--pink);
      text-shadow: 0 0 14px rgba(255,57,200,0.6);
      margin: 0 0 12px;
    }

    .upcoming-title {
      font-size: 28px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      line-height: 1.15;
      margin: 0 0 14px;
      color: #fff;
    }

    .upcoming-desc {
      font-size: 14px;
      font-weight: 500;
      color: var(--muted-soft);
      line-height: 1.65;
      margin: 0 0 28px;
    }

    .upcoming-btn {
      display: inline-flex;
      align-items: center;
      min-height: 46px;
      padding: 0 24px;
      border-radius: 8px;
      text-decoration: none;
      text-transform: uppercase;
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.1em;
      color: #fff;
      border: 1px solid rgba(255,57,200,0.7);
      background: transparent;
      transition: border-color 0.2s, box-shadow 0.2s;
    }

    .upcoming-btn:hover {
      border-color: var(--cyan);
      box-shadow: 0 0 18px rgba(36,220,255,0.22);
    }

    .cards-row {
      display: grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: 18px;
    }

    .class-card {
      border-radius: 16px;
      overflow: hidden;
      background: rgba(8,2,36,0.72);
      border: 1px solid rgba(255,255,255,0.10);
      transition: border-color 0.2s, box-shadow 0.2s;
    }

    .class-card:hover {
      border-color: rgba(255,57,200,0.35);
      box-shadow: 0 0 28px rgba(255,57,200,0.12);
    }

    .class-card-img-placeholder {
      width: 100%;
      height: 160px;
      background:
        radial-gradient(circle at 60% 40%, rgba(255,57,200,0.28), transparent 55%),
        radial-gradient(circle at 30% 70%, rgba(36,220,255,0.22), transparent 50%),
        linear-gradient(135deg, #1a0040 0%, #08001c 100%);
    }

    .class-card-body { padding: 18px 18px 20px; }

    .class-card-name {
      font-size: 14px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin: 0 0 8px;
      color: #fff;
    }

    .class-card-when {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 12px;
      font-weight: 700;
      color: var(--pink);
      text-shadow: 0 0 10px rgba(255,57,200,0.5);
      margin: 0 0 10px;
    }

    .class-card-desc {
      font-size: 13px;
      font-weight: 500;
      color: var(--muted-soft);
      line-height: 1.58;
      margin: 0;
    }

    .event-card {
      border-radius: 16px;
      overflow: hidden;
      background: rgba(8,2,36,0.72);
      border: 1px solid rgba(255,255,255,0.10);
      display: grid;
      grid-template-columns: 72px 1fr;
      transition: border-color 0.2s, box-shadow 0.2s;
    }

    .event-card:hover {
      border-color: rgba(255,57,200,0.35);
      box-shadow: 0 0 28px rgba(255,57,200,0.12);
    }

    .event-date-badge {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      padding: 14px 8px 10px;
      background: rgba(255,57,200,0.15);
      border-right: 1px solid rgba(255,255,255,0.08);
    }

    .event-date-badge .month {
      font-size: 10px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--pink);
    }

    .event-date-badge .day {
      font-size: 26px;
      font-weight: 900;
      color: #fff;
      line-height: 1.1;
    }

    .event-card-body { padding: 14px 16px; }

    .event-card-name {
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.07em;
      color: #fff;
      margin: 0 0 3px;
    }

    .event-card-sub {
      font-size: 12px;
      font-weight: 700;
      color: var(--cyan);
      margin: 0 0 8px;
    }

    .event-card-when {
      font-size: 12px;
      font-weight: 500;
      color: var(--muted-soft);
      margin: 0;
    }

    /* FOOTER */
    .site-footer {
      max-width: 1480px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 40px 8px 32px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
    }

    .footer-heading {
      font-size: 11px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--pink);
      text-shadow: 0 0 12px rgba(255,57,200,0.5);
      margin: 0 0 20px;
    }

    .social-icons { display: flex; gap: 16px; }

    .social-icon {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      border: 1px solid rgba(255,255,255,0.18);
      background: rgba(255,255,255,0.05);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      text-decoration: none;
      color: #fff;
      transition: border-color 0.2s, box-shadow 0.2s;
    }

    .social-icon:hover {
      border-color: var(--pink);
      box-shadow: 0 0 14px rgba(255,57,200,0.3);
    }

    .contact-row {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px;
      font-size: 14px;
      font-weight: 500;
      color: var(--muted);
    }

    .contact-row:last-child { margin-bottom: 0; }

    .contact-icon {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      background: rgba(255,57,200,0.12);
      border: 1px solid rgba(255,57,200,0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      flex-shrink: 0;
    }

    .footer-copy {
      max-width: 1480px;
      margin: 0 auto 32px;
      padding: 0 8px;
      font-size: 12px;
      font-weight: 500;
      color: rgba(255,255,255,0.28);
      text-align: center;
      position: relative;
      z-index: 2;
    }

    @media (max-width: 1100px) {
      .upcoming-section { grid-template-columns: 1fr; gap: 28px; }
      .cards-row { grid-template-columns: repeat(2, minmax(0,1fr)); }
    }
    @media (max-width: 680px) {
      .cards-row { grid-template-columns: 1fr; }
      .site-footer { grid-template-columns: 1fr; gap: 32px; }
    }
	
	/* =========================
   Contact Modal
   ========================= */

.contact-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background:
    radial-gradient(circle at 35% 20%, rgba(255, 57, 200, 0.22), transparent 32%),
    radial-gradient(circle at 70% 70%, rgba(36, 220, 255, 0.16), transparent 34%),
    rgba(3, 0, 18, 0.82);
  backdrop-filter: blur(12px);
}

.contact-modal-overlay.show {
  display: flex;
}

.contact-modal-card {
  width: min(520px, 100%);
  position: relative;
  padding: 30px;
  border: 1px solid rgba(255, 57, 200, 0.42);
  border-radius: 22px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 57, 200, 0.18), transparent 38%),
    radial-gradient(circle at 90% 20%, rgba(36, 220, 255, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(9, 3, 37, 0.98), rgba(4, 9, 35, 0.98));
  box-shadow:
    0 0 36px rgba(255, 57, 200, 0.20),
    0 24px 80px rgba(0, 0, 0, 0.58);
}

.contact-modal-close {
  position: absolute;
  top: 14px;
  right: 15px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.contact-modal-close:hover {
  border-color: var(--pink);
  box-shadow: 0 0 18px rgba(255,57,200,0.28);
}

.contact-modal-title {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-modal-subtitle {
  margin: 0 0 24px;
  color: rgba(255,255,255,0.76);
  font-size: 14px;
  line-height: 1.55;
}

.contact-field {
  margin-bottom: 16px;
}

.contact-field label {
  display: block;
  margin-bottom: 7px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.82);
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 12px;
  padding: 13px 14px;
  background: rgba(3, 0, 18, 0.58);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  outline: none;
}

.contact-field textarea {
  resize: vertical;
  min-height: 110px;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(36,220,255,0.12), 0 0 20px rgba(36,220,255,0.12);
}

.contact-counter {
  margin-top: 6px;
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  text-align: right;
}

.contact-modal-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
}

.contact-modal-actions button {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.contact-cancel-btn {
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  color: #fff;
}

.contact-send-btn {
  border: 0;
  color: #fff;
  background: linear-gradient(90deg, var(--pink), var(--blue));
  box-shadow: 0 0 24px rgba(255,57,200,0.26);
}

.contact-send-btn:disabled {
  opacity: 0.65;
  cursor: wait;
}

.contact-status {
  min-height: 20px;
  margin-top: 14px;
  color: rgba(255,255,255,0.78);
  font-size: 13px;
}

@media (max-width: 560px) {
  .contact-modal-card {
    padding: 26px 20px;
  }

  .contact-modal-actions {
    flex-direction: column-reverse;
  }

  .contact-modal-actions button {
    width: 100%;
  }
}



/* =========================
   Location Modal
   ========================= */

.location-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background:
    radial-gradient(circle at 30% 15%, rgba(255, 57, 200, 0.24), transparent 34%),
    radial-gradient(circle at 78% 72%, rgba(36, 220, 255, 0.18), transparent 36%),
    rgba(3, 0, 18, 0.84);
  backdrop-filter: blur(12px);
}

.location-modal-overlay.show {
  display: flex;
}

.location-modal-card {
  width: min(980px, 100%);
  max-height: 92vh;
  overflow: auto;
  position: relative;
  border: 1px solid rgba(255, 57, 200, 0.42);
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 57, 200, 0.16), transparent 36%),
    radial-gradient(circle at 85% 18%, rgba(36, 220, 255, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(9, 3, 37, 0.98), rgba(4, 9, 35, 0.98));
  box-shadow:
    0 0 36px rgba(255, 57, 200, 0.20),
    0 24px 90px rgba(0, 0, 0, 0.62);
}

.location-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(5, 0, 19, 0.72);
  color: #fff;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.location-modal-close:hover {
  border-color: var(--pink);
  box-shadow: 0 0 18px rgba(255,57,200,0.30);
}

.location-modal-grid {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 0;
  align-items: start;
}

.location-photo-wrap {
  width: 360px;
  aspect-ratio: 1 / 1;
  min-height: auto;
  position: relative;
  overflow: hidden;
  align-self: start;
  justify-self: start;
  margin: 42px 0 42px 42px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  background:
    radial-gradient(circle at center, rgba(255,57,200,0.10), transparent 45%),
    linear-gradient(135deg, #17042d, #050d2d);
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-photo-wrap img {
  width: 100%;
  height: 100%;
  min-height: auto;
  display: block;
  object-fit: contain;
  object-position: center center;
  background: #09051f;
  opacity: 1;
}

.location-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(5,0,19,0.42) 100%),
    radial-gradient(circle at 50% 70%, rgba(255,57,200,0.22), transparent 46%);
  pointer-events: none;
}

.location-content {
  padding: 42px 42px 34px 26px;
}

.location-label {
  margin: 0 0 10px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-shadow: 0 0 14px rgba(255,57,200,0.72);
}

.location-title {
  margin: 0;
  font-size: 34px;
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.location-address {
  margin: 12px 0 20px;
  color: rgba(255,255,255,0.82);
  font-size: 15px;
  line-height: 1.55;
}

.location-description {
  margin: 0 0 22px;
  color: rgba(255,255,255,0.76);
  font-size: 14px;
  line-height: 1.7;
}

.location-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.location-features li {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 11px 12px;
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.82);
  font-size: 12px;
  line-height: 1.35;
}

.location-features li span {
  color: var(--cyan);
  margin-right: 7px;
}

.location-map {
  overflow: hidden;
  height: 220px;
  border: 1px solid rgba(36,220,255,0.32);
  border-radius: 16px;
  box-shadow: 0 0 22px rgba(36,220,255,0.12);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.location-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.location-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 9px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.location-action-primary {
  border: 0;
  color: #fff;
  background: linear-gradient(90deg, var(--pink), var(--blue));
  box-shadow: 0 0 22px rgba(255,57,200,0.24);
}

.location-action-secondary {
  border: 1px solid rgba(36,220,255,0.82);
  color: #fff;
  background: rgba(5,0,19,0.42);
}


@media (max-width: 850px) {
  .location-modal-grid {
    grid-template-columns: 1fr;
  }

  .location-photo-wrap {
    width: min(100% - 32px, 420px);
    aspect-ratio: 1 / 1;
    margin: 22px auto 0;
  }

  .location-photo-wrap,
  .location-photo-wrap img {
    min-height: auto;
  }

  .location-content {
    padding: 24px 22px 26px;
  }

  .location-title {
    font-size: 28px;
  }

  .location-features {
    grid-template-columns: 1fr;
  }
}


/* =========================
   Location modal layout fix
   Photo + map left, text right
   ========================= */

.location-modal-card {
  width: min(980px, calc(100vw - 32px));
  max-height: 92vh;
  overflow: auto;
}

.location-modal-grid {
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 38px;
}

.location-left-column {
  width: 100%;
  display: grid;
  gap: 14px;
}

.location-photo-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: auto;
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  background:
    radial-gradient(circle at center, rgba(255,57,200,0.10), transparent 45%),
    linear-gradient(135deg, #17042d, #050d2d);
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-photo-wrap::after {
  display: none;
}

.location-photo-wrap img {
  width: 100%;
  height: 100%;
  min-height: auto;
  display: block;
  object-fit: contain;
  object-position: center center;
  background: #07051d;
  opacity: 1;
}

.location-content {
  padding: 0;
  min-width: 0;
}

.location-title {
  font-size: 34px;
}

.location-description {
  margin-bottom: 20px;
}

.location-map {
  width: 100%;
  height: 210px;
  overflow: hidden;
  border: 1px solid rgba(36,220,255,0.32);
  border-radius: 16px;
  box-shadow: 0 0 22px rgba(36,220,255,0.12);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.location-actions {
  width: 100%;
  display: flex;
  gap: 12px;
  margin-top: 0;
}

.location-action-btn {
  flex: 1;
  min-height: 44px;
  padding: 0 14px;
  white-space: nowrap;
}

/* Mobile layout */
@media (max-width: 850px) {
  .location-modal-grid {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .location-left-column {
    order: 1;
  }

  .location-content {
    order: 2;
  }

  .location-photo-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
  }

  .location-map {
    height: 220px;
  }

  .location-title {
    font-size: 28px;
  }

  .location-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .location-modal-grid {
    padding: 18px;
  }

  .location-actions {
    flex-direction: column;
  }

  .location-action-btn {
    width: 100%;
  }
}


/* =========================
   Class Calendar Modal
   ========================= */

.calendar-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9997;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 57, 200, 0.24), transparent 34%),
    radial-gradient(circle at 82% 74%, rgba(36, 220, 255, 0.18), transparent 36%),
    rgba(3, 0, 18, 0.86);
  backdrop-filter: blur(12px);
}

.calendar-modal-overlay.show {
  display: flex;
}

.calendar-modal-card {
  width: min(980px, calc(100vw - 32px));
  max-height: 92vh;
  overflow: auto;
  position: relative;
  padding: 38px;
  border: 1px solid rgba(255, 57, 200, 0.44);
  border-radius: 24px;
  background:
    radial-gradient(circle at 15% 0%, rgba(255,57,200,0.16), transparent 34%),
    radial-gradient(circle at 90% 14%, rgba(36,220,255,0.14), transparent 34%),
    linear-gradient(145deg, rgba(9, 3, 37, 0.98), rgba(4, 9, 35, 0.98));
  box-shadow:
    0 0 36px rgba(255, 57, 200, 0.22),
    0 24px 90px rgba(0, 0, 0, 0.62);
}

.calendar-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(5, 0, 19, 0.72);
  color: #fff;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.calendar-modal-close:hover {
  border-color: var(--pink);
  box-shadow: 0 0 18px rgba(255,57,200,0.30);
}

.calendar-modal-header {
  margin-bottom: 26px;
  padding-right: 42px;
}

.calendar-label {
  margin: 0 0 10px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-shadow: 0 0 14px rgba(255,57,200,0.72);
}

.calendar-title {
  margin: 0;
  font-size: 38px;
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.calendar-subtitle {
  max-width: 720px;
  margin: 14px 0 0;
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  line-height: 1.65;
}

.calendar-info-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 26px;
}

.calendar-info-card {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 16px;
  background: rgba(255,255,255,0.045);
}

.calendar-info-card strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.calendar-info-card span {
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  line-height: 1.45;
}

.calendar-blocks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}

.calendar-block {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  background: rgba(5, 0, 19, 0.42);
}

.calendar-block.june {
  border-color: rgba(255,57,200,0.38);
  box-shadow: 0 0 24px rgba(255,57,200,0.12);
}

.calendar-block.july {
  border-color: rgba(36,220,255,0.38);
  box-shadow: 0 0 24px rgba(36,220,255,0.12);
}

.calendar-block-top {
  padding: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.calendar-block.june .calendar-block-top {
  background: linear-gradient(90deg, rgba(255,57,200,0.22), rgba(80,70,255,0.10));
}

.calendar-block.july .calendar-block-top {
  background: linear-gradient(90deg, rgba(36,220,255,0.18), rgba(80,70,255,0.10));
}

.calendar-block-label {
  margin: 0 0 6px;
  color: rgba(255,255,255,0.66);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.calendar-block-title {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
}

.calendar-date-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 18px;
}

.calendar-date {
  min-height: 82px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  background: rgba(255,255,255,0.045);
}

.calendar-date small {
  display: block;
  margin-bottom: 5px;
  color: var(--pink);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.calendar-block.july .calendar-date small {
  color: var(--cyan);
}

.calendar-date strong {
  display: block;
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
}

.calendar-time-box {
  margin: 0 18px 18px;
  padding: 15px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  background: rgba(3,0,18,0.38);
}

.calendar-time-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 7px 0;
  color: rgba(255,255,255,0.78);
  font-size: 13px;
}

.calendar-time-row + .calendar-time-row {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.calendar-time-row strong {
  color: #fff;
}

.calendar-social-highlight {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 10px;
  padding: 20px;
  border: 1px solid rgba(255,57,200,0.48);
  border-radius: 20px;
  background:
    radial-gradient(circle at 10% 45%, rgba(255,57,200,0.26), transparent 34%),
    linear-gradient(90deg, rgba(33, 3, 52, 0.92), rgba(3, 12, 42, 0.92));
  box-shadow: 0 0 28px rgba(255,57,200,0.16);
}

.calendar-social-date {
  min-height: 112px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,57,200,0.60);
  border-radius: 18px;
  background: rgba(5,0,19,0.58);
  text-align: center;
  box-shadow: inset 0 0 24px rgba(255,57,200,0.12);
}

.calendar-social-date small {
  display: block;
  color: var(--pink);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.calendar-social-date strong {
  display: block;
  font-size: 46px;
  line-height: 1;
  font-weight: 900;
}

.calendar-social-content h3 {
  margin: 0 0 6px;
  font-size: 26px;
  line-height: 1.1;
  text-transform: uppercase;
}

.calendar-social-content p {
  margin: 0;
  color: rgba(255,255,255,0.76);
  font-size: 14px;
  line-height: 1.55;
}

.calendar-register-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  background: linear-gradient(90deg, var(--pink), var(--blue));
  box-shadow: 0 0 24px rgba(255,57,200,0.24);
  white-space: nowrap;
}

@media (max-width: 860px) {
  .calendar-modal-card {
    padding: 28px 20px;
  }

  .calendar-info-strip,
  .calendar-blocks {
    grid-template-columns: 1fr;
  }

  .calendar-social-highlight {
    grid-template-columns: 1fr;
  }

  .calendar-social-date {
    min-height: 90px;
  }
}

@media (max-width: 520px) {
  .calendar-date-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .calendar-title {
    font-size: 30px;
  }

  .calendar-register-btn {
    width: 100%;
  }
}



/* =========================
   Events / Fuego Jam Modal
   ========================= */

.events-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9996;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 115, 0, 0.22), transparent 34%),
    radial-gradient(circle at 78% 74%, rgba(255, 57, 200, 0.18), transparent 34%),
    rgba(3, 0, 14, 0.88);
  backdrop-filter: blur(12px);
}

.events-modal-overlay.show {
  display: flex;
}

.events-modal-card {
  width: min(980px, calc(100vw - 32px));
  max-height: 92vh;
  overflow: auto;
  position: relative;
  padding: 38px;
  border: 1px solid rgba(255, 160, 55, 0.48);
  border-radius: 24px;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 125, 0, 0.18), transparent 34%),
    radial-gradient(circle at 90% 18%, rgba(255, 57, 200, 0.13), transparent 34%),
    linear-gradient(145deg, rgba(12, 3, 26, 0.98), rgba(5, 7, 27, 0.98));
  box-shadow:
    0 0 42px rgba(255, 125, 0, 0.20),
    0 24px 90px rgba(0, 0, 0, 0.65);
}

.events-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(5, 0, 19, 0.72);
  color: #fff;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.events-modal-close:hover {
  border-color: #ff9a2f;
  box-shadow: 0 0 18px rgba(255,154,47,0.35);
}

.events-modal-grid {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.events-left-column {
  display: grid;
  gap: 16px;
}

.fuego-logo-card {
  overflow: hidden;
  border: 1px solid rgba(255, 160, 55, 0.42);
  border-radius: 20px;
  background:
    radial-gradient(circle at center, rgba(255,130,0,0.16), transparent 44%),
    #05020d;
  box-shadow:
    0 0 34px rgba(255, 115, 0, 0.20),
    inset 0 0 32px rgba(255, 115, 0, 0.10);
}

.fuego-logo-card img {
  width: 100%;
  display: block;
  object-fit: contain;
}

.events-time-card {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 18px;
  background: rgba(255,255,255,0.045);
}

.events-time-card h3 {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.events-time-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  color: rgba(255,255,255,0.76);
  font-size: 13px;
  line-height: 1.35;
}

.events-time-row + .events-time-row {
  border-top: 1px solid rgba(255,255,255,0.10);
}

.events-time-row strong {
  color: #fff;
  white-space: nowrap;
}

.events-content {
  min-width: 0;
}

.events-label {
  margin: 0 0 10px;
  color: #ff9a2f;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-shadow: 0 0 14px rgba(255,154,47,0.72);
}

.events-title {
  margin: 0;
  font-size: 42px;
  line-height: 1.02;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.events-title span {
  color: #ffcf87;
  text-shadow: 0 0 18px rgba(255,154,47,0.40);
}

.events-subtitle {
  margin: 12px 0 22px;
  color: rgba(255,255,255,0.82);
  font-size: 15px;
  line-height: 1.6;
}

.events-description {
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}

.events-description p {
  margin: 0;
  color: rgba(255,255,255,0.76);
  font-size: 14px;
  line-height: 1.7;
}

.events-highlight-box {
  margin: 22px 0;
  padding: 18px;
  border: 1px solid rgba(255, 160, 55, 0.38);
  border-radius: 18px;
  background:
    radial-gradient(circle at 12% 35%, rgba(255, 115, 0, 0.18), transparent 38%),
    rgba(255,255,255,0.045);
}

.events-highlight-box strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.events-highlight-box span {
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  line-height: 1.55;
}

.events-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.events-action-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.events-instagram-btn {
  border: 0;
  background:
    linear-gradient(90deg, #833ab4, #fd1d1d, #fcb045);
  box-shadow: 0 0 24px rgba(253, 29, 29, 0.24);
}

.events-register-btn {
  border: 1px solid rgba(36,220,255,0.82);
  background: rgba(5,0,19,0.42);
  box-shadow: 0 0 18px rgba(36,220,255,0.12);
}

.instagram-dot {
  width: 18px;
  height: 18px;
  margin-right: 9px;
  border-radius: 6px;
  display: inline-block;
  background:
    radial-gradient(circle at 70% 25%, #fff 0 7%, transparent 8%),
    radial-gradient(circle at center, transparent 0 30%, #fff 31% 38%, transparent 39%),
    linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  box-shadow: 0 0 12px rgba(252,176,69,0.35);
}

@media (max-width: 860px) {
  .events-modal-card {
    padding: 28px 20px;
  }

  .events-modal-grid {
    grid-template-columns: 1fr;
  }

  .fuego-logo-card {
    max-width: 360px;
    margin: 0 auto;
  }

  .events-title {
    font-size: 34px;
  }
}

@media (max-width: 520px) {
  .events-actions {
    flex-direction: column;
  }

  .events-action-btn {
    width: 100%;
  }

  .events-title {
    font-size: 30px;
  }
}



/* Events modal alignment adjustment */
.events-modal-grid {
  align-items: stretch;
}

.events-content {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.events-content .events-highlight-box {
  margin: 0;
  margin-top: auto;
}

/* Full-width Fuego Jam explanation */
.events-description-full {
  width: 100%;
  margin: 30px 0 0;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 30px;
}

.events-description-full p {
  margin: 0;
}

/* Full-width action row */
.events-actions-full {
  margin-top: 26px;
  justify-content: flex-start;
}

@media (max-width: 860px) {
  .events-description-full {
    grid-template-columns: 1fr;
  }

  .events-content .events-highlight-box {
    margin-top: 22px;
  }
}

.class-card {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}


.class-card {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  background: rgba(8, 2, 32, 0.92);
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.class-card-image-wrap {
  height: 145px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: #05020d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.class-card-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
padding: 10px;
background: #05020d;
  object-position: center;
}

.class-card-body {
  padding: 16px 18px 18px;
}

.class-card:hover {
  border-color: rgba(255,57,200,0.55);
  box-shadow: 0 0 24px rgba(255,57,200,0.18);
}

.instagram-badge {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  text-decoration: none;
  background:
    radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 18%, #fd5949 42%, #d6249f 62%, #285AEB 100%);
  box-shadow:
    0 0 18px rgba(253, 29, 121, 0.35),
    0 0 28px rgba(40, 90, 235, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.instagram-badge svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
}

.instagram-badge:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 24px rgba(253, 29, 121, 0.48),
    0 0 36px rgba(40, 90, 235, 0.26);
}

/* =========================
   Class card images
   ========================= */

.class-card {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.class-card-image-wrap {
  height: 145px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background:
    radial-gradient(circle at 30% 35%, rgba(255,57,200,0.20), transparent 38%),
    radial-gradient(circle at 72% 35%, rgba(36,220,255,0.14), transparent 38%),
    #07031d;
}

.class-card-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.class-card:hover .class-card-image {
  transform: scale(1.04);
}

.class-card-image {
  transition: transform 0.25s ease;
}


/* =========================
   Class Info Modal
   ========================= */

.class-info-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9995;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background:
    radial-gradient(circle at 24% 18%, rgba(255,57,200,0.24), transparent 34%),
    radial-gradient(circle at 78% 74%, rgba(36,220,255,0.18), transparent 36%),
    rgba(3, 0, 18, 0.86);
  backdrop-filter: blur(12px);
}

.class-info-modal-overlay.show {
  display: flex;
}

.class-info-modal-card {
  width: min(900px, calc(100vw - 32px));
  max-height: 92vh;
  overflow: auto;
  position: relative;
  border: 1px solid rgba(255,57,200,0.44);
  border-radius: 24px;
  background:
    radial-gradient(circle at 14% 0%, rgba(255,57,200,0.16), transparent 34%),
    radial-gradient(circle at 90% 18%, rgba(36,220,255,0.14), transparent 34%),
    linear-gradient(145deg, rgba(9,3,37,0.98), rgba(4,9,35,0.98));
  box-shadow:
    0 0 36px rgba(255,57,200,0.22),
    0 24px 90px rgba(0,0,0,0.62);
}

.class-info-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(5,0,19,0.72);
  color: #fff;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.class-info-close:hover {
  border-color: var(--pink);
  box-shadow: 0 0 18px rgba(255,57,200,0.30);
}

.class-info-grid {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 30px;
  padding: 38px;
  align-items: stretch;
}

.class-info-image-wrap {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  background: #07031d;
  min-height: 440px;
}

.class-info-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.class-info-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.class-info-label {
  margin: 0 0 10px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-shadow: 0 0 14px rgba(255,57,200,0.72);
}

.class-info-title {
  margin: 0;
  font-size: 38px;
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.class-info-time {
  margin: 12px 0 20px;
  color: rgba(255,255,255,0.82);
  font-size: 15px;
  line-height: 1.55;
}

.class-info-description {
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}

.class-info-description p {
  margin: 0;
  color: rgba(255,255,255,0.76);
  font-size: 14px;
  line-height: 1.7;
}

.class-info-points {
  display: grid;
  gap: 10px;
  margin: auto 0 24px;
  padding: 0;
  list-style: none;
}

.class-info-points li {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 13px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.045);
  color: rgba(255,255,255,0.82);
  font-size: 13px;
  line-height: 1.45;
}

.class-info-points li span {
  color: var(--cyan);
  margin-right: 7px;
}

.class-info-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.class-info-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.class-info-register {
  border: 0;
  background: linear-gradient(90deg, var(--pink), var(--blue));
  box-shadow: 0 0 24px rgba(255,57,200,0.24);
}

.class-info-calendar {
  border: 1px solid rgba(36,220,255,0.82);
  background: rgba(5,0,19,0.42);
}

@media (max-width: 820px) {
  .class-info-grid {
    grid-template-columns: 1fr;
    padding: 28px 20px;
  }

  .class-info-image-wrap,
  .class-info-image-wrap img {
    min-height: 260px;
  }

  .class-info-title {
    font-size: 30px;
  }
}

@media (max-width: 520px) {
  .class-info-actions {
    flex-direction: column;
  }

  .class-info-btn {
    width: 100%;
  }
}

/* =========================
   Playful Calendar Info Cards
   ========================= */

.calendar-info-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

/* Class Length — pink / purple */
.calendar-info-card:nth-child(1) {
  border-color: rgba(255, 57, 200, 0.48);
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 57, 200, 0.24), transparent 42%),
    linear-gradient(135deg, rgba(55, 7, 75, 0.78), rgba(18, 8, 46, 0.92));
  box-shadow: 0 0 22px rgba(255, 57, 200, 0.12);
}

/* Location — cyan / blue */
.calendar-info-card:nth-child(2) {
  border-color: rgba(36, 220, 255, 0.48);
  background:
    radial-gradient(circle at 18% 20%, rgba(36, 220, 255, 0.22), transparent 42%),
    linear-gradient(135deg, rgba(6, 39, 78, 0.78), rgba(8, 13, 48, 0.92));
  box-shadow: 0 0 22px rgba(36, 220, 255, 0.12);
}

/* Monthly Social — orange / fire */
.calendar-info-card:nth-child(3) {
  border-color: rgba(255, 156, 45, 0.52);
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 156, 45, 0.24), transparent 42%),
    linear-gradient(135deg, rgba(74, 28, 8, 0.78), rgba(24, 8, 42, 0.92));
  box-shadow: 0 0 22px rgba(255, 156, 45, 0.13);
}

/* Small glow accent inside each card */
.calendar-info-card::after {
  content: "";
  position: absolute;
  top: -35px;
  right: -35px;
  width: 90px;
  height: 90px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  filter: blur(10px);
  pointer-events: none;
}

.calendar-info-card strong {
  color: #fff;
}

.calendar-info-card:nth-child(1) strong {
  color: #ff7ee7;
}

.calendar-info-card:nth-child(2) strong {
  color: #5ee9ff;
}

.calendar-info-card:nth-child(3) strong {
  color: #ffc26b;
}


/* =========================
   Registration Modal
   ========================= */

.register-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 57, 200, 0.24), transparent 34%),
    radial-gradient(circle at 78% 74%, rgba(36, 220, 255, 0.18), transparent 36%),
    rgba(3, 0, 18, 0.88);
  backdrop-filter: blur(12px);
}

.register-modal-overlay.show {
  display: flex;
}

.register-modal-card {
  width: min(600px, calc(100vw - 32px));
  height: min(94vh, 970px);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 57, 200, 0.46);
  border-radius: 24px;
  background:
    radial-gradient(circle at 15% 0%, rgba(255,57,200,0.16), transparent 34%),
    radial-gradient(circle at 90% 14%, rgba(36,220,255,0.14), transparent 34%),
    linear-gradient(145deg, rgba(9, 3, 37, 0.98), rgba(4, 9, 35, 0.98));
  box-shadow:
    0 0 40px rgba(255, 57, 200, 0.24),
    0 24px 90px rgba(0, 0, 0, 0.65);
}

.register-modal-top {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 22px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  background: rgba(5, 0, 19, 0.72);
}

.register-modal-title {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.register-modal-title span {
  color: var(--pink);
}

.register-modal-close {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.register-modal-close:hover {
  border-color: var(--pink);
  box-shadow: 0 0 18px rgba(255,57,200,0.30);
}

.register-modal-frame {
  width: 100%;
  height: calc(100% - 64px);
  border: 0;
  display: block;
  background: #05020d;
}

@media (max-width: 640px) {
  .register-modal-overlay {
    padding: 10px;
  }

  .register-modal-card {
    width: 100%;
    height: 94vh;
    border-radius: 18px;
  }

  .register-modal-title {
    font-size: 15px;
  }
}






/* Top menu Register button */
.top-register-btn {
  color: #ff4fe1 !important;
  font-size: calc(100% + 2px);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;

  padding: 14px 24px;
  border: 1px solid rgba(255, 79, 225, 0.62);
  border-radius: 8px;

  background: rgba(8, 2, 32, 0.38);

  text-shadow:
    0 0 8px rgba(255, 79, 225, 0.9),
    0 0 18px rgba(255, 79, 225, 0.55),
    0 0 30px rgba(255, 79, 225, 0.28);

  box-shadow:
    0 0 14px rgba(255, 79, 225, 0.26),
    inset 0 0 14px rgba(255, 79, 225, 0.06);

  transition:
    color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.top-register-btn:hover {
  color: #ff7bea !important;
  border-color: rgba(255, 79, 225, 0.95);

  box-shadow:
    0 0 20px rgba(255, 79, 225, 0.42),
    0 0 34px rgba(255, 79, 225, 0.20),
    inset 0 0 16px rgba(255, 79, 225, 0.08);

  transform: translateY(-1px);
}


/* =========================
   Calendar info strip - 4 playful cards
   ========================= */

.calendar-info-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.calendar-info-card {
  padding: 13px 14px;
  min-height: 92px;
}

.calendar-info-card strong {
  font-size: 12px;
  line-height: 1.2;
}

.calendar-info-card span {
  font-size: 12px;
  line-height: 1.4;
}

/* Class Price — green / gold */
.calendar-info-card:nth-child(4) {
  border-color: rgba(85, 255, 170, 0.50);
  background:
    radial-gradient(circle at 18% 20%, rgba(85, 255, 170, 0.22), transparent 42%),
    radial-gradient(circle at 84% 78%, rgba(255, 205, 80, 0.16), transparent 40%),
    linear-gradient(135deg, rgba(7, 62, 45, 0.78), rgba(22, 18, 48, 0.92));
  box-shadow: 0 0 22px rgba(85, 255, 170, 0.13);
}

.calendar-info-card:nth-child(4) strong {
  color: #7dffbd;
}

/* Medium screens: two cards per row */
@media (max-width: 980px) {
  .calendar-info-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Small screens: one card per row */
@media (max-width: 560px) {
  .calendar-info-strip {
    grid-template-columns: 1fr;
  }
}

.calendar-time-box-note {
  padding: 13px 15px;
}

.calendar-time-note-text {
  margin: 0;
  font-size: 11.5px;
  line-height: 1.45;
  color: rgba(255,255,255,0.72);
}

.calendar-time-note-text strong {
  color: #ff7ee7;
}

/* Block 1 clickable dates - fix dark numbers */
button.calendar-date strong {
  color: #ffffff !important;
}

button.calendar-date small {
  color: var(--pink) !important;
}

button.calendar-date {
  color: #ffffff !important;
}

/* =========================
   Class Info Modal Price Box
   ========================= */

.class-info-price-box {
  margin: 4px 0 22px;
  padding: 15px 16px;
  border: 1px solid rgba(85, 255, 170, 0.36);
  border-radius: 15px;
  background:
    radial-gradient(circle at 14% 20%, rgba(85, 255, 170, 0.14), transparent 42%),
    radial-gradient(circle at 88% 80%, rgba(255, 205, 80, 0.10), transparent 40%),
    rgba(255,255,255,0.045);
  box-shadow: 0 0 20px rgba(85, 255, 170, 0.10);
}

.class-info-price-title {
  margin-bottom: 10px;
  color: #7dffbd;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.10em;
}

.class-info-price-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 7px 0;
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  line-height: 1.35;
}

.class-info-price-row + .class-info-price-row {
  border-top: 1px solid rgba(255,255,255,0.10);
}

.class-info-price-row strong {
  color: #ffffff;
  white-space: nowrap;
}

/* =========================
   Class card date pill
   ========================= */

.class-card-schedule-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 6px 0 10px;
}

.class-card-schedule-row .class-card-when {
  margin: 0;
}

.class-card-date-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 8px;
  border: 1px solid rgba(36, 220, 255, 0.42);
  border-radius: 7px;
  background:
    radial-gradient(circle at 20% 20%, rgba(36, 220, 255, 0.16), transparent 46%),
    rgba(255,255,255,0.045);
  color: rgba(255,255,255,0.86);
  font-size: 10.5px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0.03em;
  box-shadow: 0 0 12px rgba(36, 220, 255, 0.10);
}