    :root {
      --bg: #03030b;
      --panel: #070716;
      --panel-2: #0d0d20;
      --text: #ffffff;
      --muted: rgba(255, 255, 255, 0.72);
      --soft: rgba(255, 255, 255, 0.52);
      --line: rgba(255, 77, 255, 0.34);
      --pink: #ff4dff;
      --pink-2: #ff79ff;
      --blue: #4f8dff;
      --blue-2: #7bb0ff;
      --shadow-pink: 0 0 18px rgba(255, 77, 255, .95), 0 0 42px rgba(255, 77, 255, .35);
      --shadow-blue: 0 0 18px rgba(79, 141, 255, .95), 0 0 42px rgba(79, 141, 255, .35);
      --radius: 14px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: Arial, Helvetica, sans-serif;
      line-height: 1.45;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      width: 100%;
      display: block;
    }

    .page {
      max-width: 1440px;
      margin: 0 auto;
      background: #03030b;
      border-left: 1px solid rgba(255, 77, 255, .18);
      border-right: 1px solid rgba(255, 77, 255, .18);
      overflow: hidden;
    }

    .container {
      width: min(1280px, calc(100% - 64px));
      margin: 0 auto;
    }

    .topbar {
      position: fixed;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      z-index: 50;
      width: min(1440px, 100%);
      background: rgba(3, 3, 11, .72);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(255, 77, 255, .25);
    }

    .topbar-inner {
      min-height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }

    .mini-logo {
      width: 102px;
      height: 62px;
      position: relative;
      display: grid;
      place-items: center;
      color: #fff;
      flex: 0 0 auto;
    }

    .mini-logo::before {
      content: "";
      position: absolute;
      width: 76px;
      height: 76px;
      border-radius: 50%;
      border: 2px solid var(--blue);
      box-shadow: var(--shadow-blue);
      background: rgba(0,0,0,.84);
    }

    .mini-logo span {
      position: relative;
      z-index: 2;
      color: #fff;
      font-size: 25px;
      font-weight: 900;
      font-style: italic;
      text-transform: uppercase;
      letter-spacing: -.08em;
      text-shadow: var(--shadow-pink);
      transform: rotate(-9deg);
    }

    .mini-logo small {
      position: absolute;
      z-index: 2;
      bottom: 8px;
      left: 28px;
      font-size: 7px;
      letter-spacing: .12em;
      color: #e8f1ff;
      text-shadow: var(--shadow-blue);
      transform: rotate(-9deg);
      white-space: nowrap;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 52px;
      margin-right: auto;
      margin-left: 40px;
      font-size: 14px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .08em;
    }

    .nav a {
      position: relative;
      padding: 31px 0;
      color: #f4f4ff;
    }

    .nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 20px;
      width: 0;
      height: 2px;
      background: var(--pink);
      box-shadow: var(--shadow-pink);
      transition: width .25s ease;
    }

    .nav a:hover::after,
    .nav a.active::after {
      width: 100%;
    }

    .socials {
      display: flex;
      gap: 18px;
      color: #fff;
      font-weight: 900;
      font-size: 18px;
      align-items: center;
    }

    .menu-button {
      display: none;
      width: 46px;
      height: 46px;
      border: 1px solid rgba(255, 77, 255, .45);
      border-radius: 10px;
      background: transparent;
      cursor: pointer;
    }

    .menu-button span {
      width: 22px;
      height: 2px;
      display: block;
      margin: 5px auto;
      background: white;
      box-shadow: var(--shadow-pink);
      transition: .25s ease;
    }

    .menu-open .menu-button span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .menu-open .menu-button span:nth-child(2) {
      opacity: 0;
    }

    .menu-open .menu-button span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .hero {
      min-height: 710px;
      padding-top: 82px;
      position: relative;
      overflow: hidden;
      border-bottom: 1px solid var(--line);
      background:
        radial-gradient(circle at 63% 28%, rgba(143, 69, 255, .38), transparent 30%),
        radial-gradient(circle at 88% 55%, rgba(255, 77, 255, .24), transparent 24%),
        linear-gradient(90deg, #03030b 0%, #050511 38%, #0a0718 100%);
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0 0 0 43%;
      background:
        linear-gradient(90deg, rgba(3,3,11,.9), rgba(3,3,11,.15)),
        url("https://images.unsplash.com/photo-1514933651103-005eec06c04b?auto=format&fit=crop&w=1600&q=80") center/cover;
      opacity: .78;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 82px 0 0 0;
      background: linear-gradient(180deg, rgba(3,3,11,0) 55%, rgba(3,3,11,.96) 100%);
      pointer-events: none;
    }

    .hero-inner {
      min-height: 628px;
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      align-items: center;
      gap: 40px;
      position: relative;
      z-index: 2;
    }

    .hero-copy {
      border-left: 3px solid var(--pink);
      box-shadow: -12px 0 26px -26px rgba(255,77,255,.9);
      padding-left: 48px;
    }

    .hero h1 {
      font-size: clamp(74px, 9.6vw, 152px);
      line-height: .82;
      text-transform: uppercase;
      letter-spacing: -.07em;
      font-weight: 950;
      margin-bottom: 12px;
    }

    .subtitle {
      font-size: clamp(38px, 4.3vw, 62px);
      line-height: 1;
      text-transform: uppercase;
      letter-spacing: -.04em;
      font-weight: 900;
      margin-bottom: 16px;
      background: linear-gradient(90deg, var(--pink), var(--blue));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      filter: drop-shadow(0 0 15px rgba(255,77,255,.48));
    }

    .tagline {
      font-size: clamp(24px, 3vw, 36px);
      font-weight: 800;
      margin-bottom: 20px;
    }

    .hero p {
      max-width: 580px;
      color: var(--muted);
      font-size: 20px;
    }

    .actions {
      display: flex;
      flex-wrap: wrap;
      gap: 34px;
      margin-top: 42px;
    }

    .btn {
      min-width: 176px;
      height: 56px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-transform: uppercase;
      font-weight: 900;
      font-size: 14px;
      transition: .25s ease;
    }

    .btn-pink {
      border: 2px solid var(--pink);
      box-shadow: var(--shadow-pink), inset 0 0 18px rgba(255,77,255,.12);
    }

    .btn-blue {
      border: 2px solid var(--blue);
      box-shadow: var(--shadow-blue), inset 0 0 18px rgba(79,141,255,.12);
    }

    .btn:hover {
      transform: translateY(-3px) scale(1.02);
    }

    .hero-logo-wrap {
      position: relative;
      min-height: 530px;
    }

    .big-neon-logo {
      position: absolute;
      top: 48%;
      left: 42%;
      transform: translate(-50%, -50%);
      width: min(580px, 92%);
      aspect-ratio: 1;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: rgba(0,0,0,.48);
    }

    .big-neon-logo::before {
      content: "";
      position: absolute;
      inset: 34px;
      border-radius: 50%;
      border: 6px solid transparent;
      border-top-color: #e6b0ff;
      border-bottom-color: var(--blue-2);
      box-shadow: var(--shadow-blue), inset 0 0 28px rgba(255,77,255,.25);
      filter: drop-shadow(0 0 20px rgba(255,77,255,.6));
    }

    .big-neon-logo .zine-word {
      position: relative;
      z-index: 3;
      color: #ffd8ff;
      font-size: clamp(90px, 10vw, 164px);
      line-height: 1;
      font-weight: 300;
      font-style: italic;
      text-transform: uppercase;
      letter-spacing: -.1em;
      transform: rotate(-10deg);
      text-shadow: var(--shadow-pink), 0 0 72px rgba(255,77,255,.35);
      transition: opacity .06s ease, filter .06s ease, text-shadow .06s ease;
    }

    .big-neon-logo.neon-flicker .zine-word {
      opacity: .42;
      filter: brightness(.65);
      text-shadow: 0 0 6px rgba(255,77,255,.55), 0 0 14px rgba(255,77,255,.25);
    }

    .big-neon-logo.neon-flicker .slash-top,
    .big-neon-logo.neon-flicker .slash-bottom {
      opacity: .45;
      filter: brightness(.65);
      box-shadow: 0 0 8px rgba(255,77,255,.42);
    }

    .big-neon-logo .bar-word {
      position: relative;
      z-index: 3;
      margin-top: 18px;
      color: #dce9ff;
      font-size: clamp(22px, 2.1vw, 34px);
      text-transform: uppercase;
      letter-spacing: .18em;
      transform: rotate(-10deg);
      text-shadow: var(--shadow-blue);
    }

    .big-neon-logo .slash-top,
    .big-neon-logo .slash-bottom {
      position: absolute;
      z-index: 2;
      left: 9%;
      right: 9%;
      height: 8px;
      border-radius: 999px;
      transform: rotate(-10deg);
      background: var(--pink-2);
      box-shadow: var(--shadow-pink);
    }

    .big-neon-logo .slash-top {
      top: 39%;
    }

    .big-neon-logo .slash-bottom {
      bottom: 35%;
      background: var(--blue-2);
      box-shadow: var(--shadow-blue);
    }

    .table-sign {
      position: absolute;
      right: 0;
      bottom: 80px;
      z-index: 4;
      width: 165px;
      min-height: 125px;
      border: 2px solid rgba(255,77,255,.6);
      background: rgba(5,5,16,.78);
      display: grid;
      place-items: center;
      color: #ffd8ff;
      text-align: center;
      font-size: 19px;
      line-height: 1.35;
      text-transform: uppercase;
      text-shadow: var(--shadow-pink);
      transform: rotate(-4deg);
    }

    .section {
      border-bottom: 1px solid var(--line);
      padding: 36px 0 44px;
    }

    .dual-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
    }

    .section-title-row {
      display: flex;
      gap: 26px;
      align-items: flex-start;
      margin-bottom: 28px;
    }

    .line-icon {
      width: 68px;
      height: 68px;
      flex: 0 0 auto;
      border: 2px solid currentColor;
      color: var(--pink);
      box-shadow: var(--shadow-pink);
      border-radius: 10px;
      display: grid;
      place-items: center;
      font-size: 34px;
      background: rgba(255,77,255,.05);
    }

    .line-icon.blue {
      color: var(--blue);
      box-shadow: var(--shadow-blue);
      border-radius: 50%;
    }

    .section h2 {
      font-size: clamp(28px, 3vw, 42px);
      line-height: 1;
      letter-spacing: .03em;
      text-transform: uppercase;
      color: var(--pink-2);
      text-shadow: 0 0 22px rgba(255,77,255,.35);
    }

    .bar-block h2 {
      color: var(--blue-2);
      text-shadow: 0 0 22px rgba(79,141,255,.35);
    }

    .section-lead {
      color: var(--muted);
      font-size: 18px;
      margin-top: 8px;
      max-width: 470px;
    }

    .product-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .bar-block .product-grid {
      grid-template-columns: repeat(4, 1fr);
    }

    .product-card {
      min-height: 210px;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid rgba(255,77,255,.58);
      background: var(--panel);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      box-shadow: inset 0 0 24px rgba(255,255,255,.03);
      transition: .25s ease;
    }

    .bar-block .product-card {
      border-color: rgba(79,141,255,.58);
    }

    .product-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-pink);
    }

    .bar-block .product-card:hover {
      box-shadow: var(--shadow-blue);
    }

    .product-image {
      flex: 1;
      min-height: 132px;
      background: linear-gradient(to top, rgba(3,3,11,.95), rgba(3,3,11,.2)), var(--image) center/cover;
    }

    .product-name {
      min-height: 58px;
      display: grid;
      place-items: center;
      text-align: center;
      padding: 8px;
      font-size: 14px;
      font-weight: 900;
      line-height: 1.1;
    }

    .agenda-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 28px;
    }

    .agenda-title {
      display: flex;
      align-items: center;
      gap: 26px;
    }

    .agenda-title h2 {
      color: var(--pink-2);
    }

    .agenda-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
    }

    .event-card {
      min-height: 294px;
      border: 1px solid rgba(255,77,255,.54);
      border-radius: 12px;
      overflow: hidden;
      position: relative;
      background: var(--panel);
      display: flex;
      align-items: flex-end;
      padding: 22px;
      transition: .25s ease;
    }

    .event-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-pink);
    }

    .event-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(3,3,11,.96), rgba(3,3,11,.24)), var(--image) center/cover;
      opacity: .86;
    }

    .event-content {
      position: relative;
      z-index: 2;
    }

    .date {
      position: absolute;
      top: 18px;
      left: 18px;
      z-index: 2;
      width: 64px;
      height: 72px;
      border-radius: 8px;
      border: 2px solid var(--pink);
      background: rgba(116, 26, 116, .55);
      display: grid;
      place-items: center;
      text-align: center;
      font-weight: 900;
      line-height: 1.05;
      box-shadow: var(--shadow-pink);
      text-transform: uppercase;
    }

    .date strong {
      font-size: 25px;
    }

    .date small {
      font-size: 13px;
    }

    .event-type {
      color: var(--pink-2);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: .06em;
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .event-card h3 {
      font-size: 23px;
      line-height: 1.15;
      margin-bottom: 16px;
    }

    .event-card p {
      color: var(--muted);
      font-size: 14px;
      text-transform: uppercase;
    }

    .space-section {
      padding: 28px 0;
    }

    .space-grid {
      display: grid;
      grid-template-columns: 190px 330px 1fr 210px;
      min-height: 310px;
      gap: 20px;
      align-items: stretch;
    }

    .door-card {
      border: 1px solid rgba(255,77,255,.45);
      border-radius: 8px;
      background:
        linear-gradient(to top, rgba(3,3,11,.95), rgba(3,3,11,.2)),
        url("https://images.unsplash.com/photo-1519608487953-e999c86e7455?auto=format&fit=crop&w=600&q=80") center/cover;
      box-shadow: var(--shadow-pink);
      display: grid;
      place-items: center;
      text-align: center;
      color: #ffd8ff;
      text-transform: uppercase;
      font-weight: 900;
      font-size: 32px;
      text-shadow: var(--shadow-pink);
    }

    .space-copy {
      padding: 30px 10px;
    }

    .space-copy h2 {
      font-size: 37px;
      color: var(--pink-2);
      text-transform: uppercase;
      line-height: 1;
      margin-bottom: 24px;
      text-shadow: 0 0 24px rgba(255,77,255,.35);
    }

    .space-copy strong {
      display: block;
      font-size: 19px;
      line-height: 1.35;
      margin-bottom: 20px;
    }

    .space-copy p {
      color: var(--muted);
      font-size: 18px;
      margin-bottom: 26px;
    }

    .space-photo {
      border: 1px solid rgba(79,141,255,.24);
      background:
        linear-gradient(90deg, rgba(3,3,11,.65), rgba(3,3,11,.08)),
        url("https://images.unsplash.com/photo-1526243741027-444d633d7365?auto=format&fit=crop&w=1200&q=80") center/cover;
    }

    .quote-card {
      border: 1px solid rgba(255,77,255,.35);
      background:
        linear-gradient(to top, rgba(3,3,11,.88), rgba(3,3,11,.18)),
        url("https://images.unsplash.com/photo-1519682337058-a94d519337bc?auto=format&fit=crop&w=600&q=80") center/cover;
      display: grid;
      place-items: center;
      text-align: center;
      color: #ffd8ff;
      text-transform: uppercase;
      font-size: 29px;
      line-height: 1.25;
      text-shadow: var(--shadow-pink);
    }

    .reserve-form-container {
      margin: 60px auto 0;
      max-width: 800px;
      padding: 40px;
      background: rgba(255,77,255,.04);
      border: 1px solid rgba(255,77,255,.24);
      border-radius: 12px;
      box-shadow: 0 4px 30px rgba(0,0,0,0.25);
    }

    .reserve-form-container h3 {
      font-size: clamp(24px, 4vw, 32px);
      color: var(--pink-2);
      margin-bottom: 8px;
    }

    .reserve-form-container p {
      color: var(--muted);
      margin-bottom: 28px;
      font-size: 18px;
    }

    .reserve-form {
      display: grid;
      gap: 16px;
    }

    .reserve-form .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .reserve-form input,
    .reserve-form textarea {
      width: 100%;
      background: rgba(3,3,11,.8);
      border: 1px solid rgba(255,77,255,.3);
      color: #fff;
      padding: 16px 18px;
      border-radius: 8px;
      font-size: 16px;
      outline: none;
      transition: .2s ease;
      font-family: inherit;
    }

    .reserve-form input:focus,
    .reserve-form textarea:focus {
      border-color: var(--pink);
      box-shadow: var(--shadow-pink);
    }

    .footer {
      padding: 38px 0 24px;
      border-top: 1px solid var(--line);
      background: #020208;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 170px 1fr 1fr 1.2fr;
      gap: 42px;
      align-items: start;
      color: var(--muted);
    }

    .footer-logo {
      width: 130px;
      height: 130px;
      border-radius: 50%;
      border: 2px solid var(--blue);
      box-shadow: var(--shadow-blue);
      display: grid;
      place-items: center;
      color: #fff;
      background: #000;
      text-transform: uppercase;
      font-size: 34px;
      font-weight: 900;
      font-style: italic;
      letter-spacing: -.08em;
      text-shadow: var(--shadow-pink);
    }

    .footer h3 {
      color: var(--pink-2);
      text-transform: uppercase;
      font-size: 16px;
      margin-bottom: 18px;
      letter-spacing: .05em;
    }

    .footer p,
    .footer a {
      display: block;
      margin-bottom: 10px;
      color: var(--muted);
    }

    .newsletter {
      display: flex;
      gap: 10px;
      margin-top: 14px;
    }

    .newsletter input {
      height: 48px;
      min-width: 0;
      flex: 1;
      border: 1px solid rgba(255,77,255,.58);
      border-radius: 8px;
      background: transparent;
      color: #fff;
      padding: 0 18px;
      font-size: 16px;
      outline: none;
    }

    .newsletter button {
      width: 52px;
      border-radius: 8px;
      border: 1px solid var(--pink);
      background: rgba(255,77,255,.08);
      color: #fff;
      font-size: 24px;
      box-shadow: var(--shadow-pink);
      cursor: pointer;
    }

    .copyright {
      margin-top: 32px;
      padding-top: 18px;
      border-top: 1px solid rgba(255,77,255,.16);
      text-align: center;
      color: rgba(255,255,255,.34);
      font-size: 13px;
    }

    .fade-in {
      opacity: 0;
      transform: translateY(18px);
      transition: .7s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 1180px) {
      .container {
        width: min(100% - 36px, 1180px);
      }

      .nav {
        gap: 24px;
        margin-left: 22px;
      }

      .dual-section {
        grid-template-columns: 1fr;
      }

      .product-grid,
      .bar-block .product-grid,
      .agenda-grid {
        grid-template-columns: repeat(4, 1fr);
      }

      .space-grid {
        grid-template-columns: 180px 1fr 1.2fr;
      }

      .quote-card {
        display: none;
      }
    }

    @media (max-width: 980px) {
      .socials {
        display: none;
      }

      .menu-button {
        display: block;
      }

      .nav {
        position: fixed;
        top: 82px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        margin: 0;
        padding: 14px 28px 24px;
        background: rgba(3,3,11,.98);
        border-bottom: 1px solid var(--line);
      }

      .menu-open .nav {
        display: flex;
      }

      .nav a {
        width: 100%;
        padding: 16px 0;
      }

      .hero-inner {
        grid-template-columns: 1fr;
        padding: 54px 0 50px;
      }

      .hero::before {
        inset: 45% 0 0 0;
      }

      .hero-copy {
        padding-left: 28px;
      }

      .hero-logo-wrap {
        min-height: 480px;
      }

      .big-neon-logo {
        left: 50%;
      }

      .table-sign {
        right: 20px;
        bottom: 30px;
      }

      .product-grid,
      .bar-block .product-grid,
      .agenda-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .agenda-header {
        align-items: flex-start;
        flex-direction: column;
      }

      .space-grid {
        grid-template-columns: 1fr;
      }

      .door-card,
      .space-photo {
        min-height: 260px;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 640px) {
      .container {
        width: min(100% - 24px, 1180px);
      }

      .topbar-inner {
        min-height: 72px;
      }

      .mini-logo {
        transform: scale(.82);
        transform-origin: left center;
      }

      .brand-text {
        display: none;
      }

      .nav {
        top: 72px;
      }

      .hero {
        padding-top: 72px;
      }

      .hero-inner {
        min-height: auto;
        padding: 44px 0 42px;
      }

      .hero-copy {
        border-left-width: 2px;
        padding-left: 20px;
      }

      .actions {
        gap: 14px;
      }

      .btn {
        width: 100%;
      }

      .hero-logo-wrap {
        min-height: 360px;
      }

      .table-sign {
        width: 126px;
        min-height: 94px;
        font-size: 15px;
      }

      .section {
        padding: 30px 0 38px;
      }

      .section-title-row,
      .agenda-title {
        gap: 16px;
      }

      .line-icon {
        width: 52px;
        height: 52px;
        font-size: 26px;
      }

      .product-grid,
      .bar-block .product-grid,
      .agenda-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .product-card {
        min-height: 250px;
      }

      .event-card {
        min-height: 300px;
      }

      .space-copy {
        padding: 10px 0;
      }

      .newsletter button {
        margin-bottom: 24px;
      }

      .reserve-form-container {
        padding: 24px 20px;
        margin: 40px auto 0;
      }

      .reserve-form .form-row {
        grid-template-columns: 1fr;
      }
    }

    .whatsapp-float {
      position: fixed;
      bottom: 24px;
      right: 24px;
      width: 60px;
      height: 60px;
      background-color: #25d366;
      color: #fff;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-size: 32px;
      box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
      z-index: 100;
      transition: .3s ease;
      text-decoration: none;
    }
    .whatsapp-float:hover {
      transform: translateY(-4px) scale(1.05);
      box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
      color: #fff;
    }
