    :root {
      --dark-bg: #001514;
      --light-text: #ffffff;
      --accent-dark: #27213c;
      --accent-purple: #8447ff;
      --accent-green: #acfc00;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Prosto One', sans-serif;
      background-color: var(--dark-bg);
      color: var(--light-text);
      overflow-x: hidden;
    }

    header {
      position: fixed;
      top: 0;
      width: 100%;
      background: var(--accent-dark);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 30px;
      z-index: 999;
      height: 70px;
      flex-wrap: nowrap;
      min-width: 600px;
    }

    .logo img {
      height: 50px;
    }

    .countdown {
      font-family: 'Kdam Thmor Pro', monospace;
      font-size: 1.2em;
      white-space: nowrap;
    }

    .menu-toggle {
      display: none;
      background: none;
      border: none;
      width: 30px;
      height: 30px;
      cursor: pointer;
      z-index: 1000;
      position: relative;
      padding: 0;
      filter: drop-shadow(0px 4px 10px rgba(172, 252, 0, 0.5));
    }

    .menu-toggle::before,
    .menu-toggle::after,
    .menu-toggle span {
      content: '';
      position: absolute;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--light-text);
      transition: transform 0.3s ease, top 0.3s ease 0.3s;
    }

    .menu-toggle span {
      top: 50%;
      transform: translateY(-50%);
    }

    .menu-toggle::before {
      top: 8px;
    }

    .menu-toggle::after {
      top: 22px;
    }

    .menu-toggle.active span {
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .menu-toggle.active::before {
      top: 50%;
      transform: translateY(-50%) rotate(45deg);
      transition: top 0.3s ease, transform 0.3s ease 0.3s;
    }

    .menu-toggle.active::after {
      top: 50%;
      transform: translateY(-50%) rotate(-45deg);
      transition: top 0.3s ease, transform 0.3s ease 0.3s;
    }

    nav {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    nav a {
      color: var(--light-text);
      text-decoration: none;
      font-size: 1em;
      white-space: nowrap;
    }

    .social-icons a {
      display: inline-block;
      width: 24px;
      height: 24px;
      margin-left: 10px;
      filter: drop-shadow(0px 4px 10px rgba(172, 252, 0, 1));
    }

    .social-icons img {
      width: 100%;
      height: auto;
    }

    .frame {
      padding: 120px 30px 60px;
      min-height: 100vh;
    }

    #main {
      background: black;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      position: relative;
    }

    #main::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 0;
    }

    #main video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    #main h1 {
      z-index: 1;
      font-size: 3em;
    }

    #main .button {
      z-index: 2;
      position: relative;
      margin-top: 20px;
      background: var(--accent-purple);
      color: white;
      padding: 10px 20px;
      border: none;
      border-radius: 20px;
      cursor: pointer;
      font-size: 1.2em;
    }

    #about, #buy, #team, #faq {
      background: rgba(45, 23, 87, 0.9);
      padding: 80px 30px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 30px;
      margin: 40px 20px;
      box-shadow: 0px 4px 20px rgba(172, 252, 0, 0.49);
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    #about.visible, #buy.visible, #team.visible, #faq.visible {
      opacity: 1;
      transform: translateY(0);
    }

    #about h2, #buy h2, #team h2, #faq h2, #contacts h2 {
      font-size: 2em;
      margin-bottom: 20px;
    }

    #about p, #buy p, #team p, #faq p, #contacts p {
      font-size: 1.1em;
      line-height: 1.5em;
    }

    #ticket-form button:hover {
      transform: scale(1.05);
      box-shadow: 0 0 10px var(--accent-green);
    }

.custom-select {
    position: relative;
    width: 100%;
}

.select-selected {
    background-color: var(--accent-dark);
    color: var(--light-text);
    padding: 10px;
    border: 1px solid var(--accent-purple);
    border-radius: 12px;
    cursor: pointer;
    transition: border-color 0.3s;
}

.select-selected.open {
    border-color: var(--accent-green);
}

.select-items {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--accent-dark);
    border: 1px solid var(--accent-purple);
    border-radius: 12px;
    z-index: 10;
    max-height: 200px;
    overflow-y: auto;
}

.select-items div {
    padding: 10px;
    cursor: pointer;
}

.select-items div:hover {
    background-color: var(--accent-purple);
}

    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.8);
      z-index: 10000;
      align-items: center;
      justify-content: center;
    }

    .modal.show {
      display: flex;
    }

    .modal-content {
      background: #1e3029;
      color: white;
      padding: 20px 30px;
      border-radius: 16px;
      box-shadow: 0 0 20px rgba(172, 252, 0, 0.6);
      max-width: 400px;
      text-align: center;
      border: 1px solid #acfc00;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .modal-content p {
      font-size: 1.2em;
      margin-bottom: 20px;
    }

    .modal-content button {
      background: #acfc00;
      color: black;
      padding: 10px 20px;
      border: none;
      border-radius: 12px;
      cursor: pointer;
      font-weight: bold;
    }

    .modal.show .modal-content {
      opacity: 1;
    }

    #error-message {
      display: none;
      color: #ff4d4d;
      font-size: 0.9em;
      text-align: center;
      padding: 10px;
      border: 1px solid #ff4d4d;
      border-radius: 8px;
      background: rgba(255, 77, 77, 0.1);
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      justify-items: center;
      margin-top: 40px;
    }

    .team-card {
      width: 100%;
      max-width: 200px;
      background: #ffffff0d;
      border: 1px solid rgba(172, 252, 0, 0.3);
      border-radius: 12px;
      padding: 15px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .team-photo {
      width: 100%;
      max-width: 170px;
      aspect-ratio: 3 / 4;
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0px 4px 10px rgba(172, 252, 0, 0.5);
      margin: 0 auto;
    }

    .team-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    .team-card p {
      margin-top: 15px;
      font-size: 1em;
      overflow-wrap: break-word;
      color: var(--light-text);
    }

    .team-card:hover {
      transform: scale(1.05);
      box-shadow: 0px 8px 20px rgba(172, 252, 0, 0.8);
    }

    .faq-list {
      margin-top: 20px;
    }

    .faq-item {
      margin-bottom: 10px;
    }

    .faq-question {
      width: 100%;
      background: #ffffff0d;
      color: var(--light-text);
      padding: 15px;
      border: none;
      border-radius: 12px;
      text-align: left;
      font-size: 1.1em;
      cursor: pointer;
      transition: background 0.3s ease;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .faq-question::after {
      content: '▼';
      font-size: 0.8em;
      transition: transform 0.3s ease;
    }

    .faq-question.active::after {
      transform: rotate(180deg);
    }

    .faq-question:hover {
      background: rgba(172, 252, 0, 0.2);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      padding: 0 15px;
    }

    .faq-answer p {
      padding: 15px 0;
      font-size: 1em;
    }

    .faq-item.active .faq-answer {
      max-height: 200px;
    }

    .buy-button {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .buy-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px var(--accent-green);
    }

    @media (max-width: 800px) {
      header {
        height: 60px;
        padding: 10px 20px;
        min-width: auto;
      }

      .logo img {
        height: 50px;
      }

      .countdown {
        font-size: 1.2em;
      }

      .menu-toggle {
        display: block;
      }

      nav {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 60px;
        right: 0;
        width: 250px;
        background: var(--accent-dark);
        padding: 20px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        box-shadow: -4px 0 10px rgba(0, 0, 0, 0.5);
      }

      nav.active {
        display: flex;
        transform: translateX(0);
      }

      nav a {
        font-size: 1.2em;
        padding: 10px 0;
        display: block;
        text-align: right;
      }

      .social-icons {
        display: flex;
        gap: 15px;
        margin-top: 20px;
        justify-content: flex-end;
      }

      .social-icons a {
        margin-left: 0;
      }

      #main h1 {
        font-size: 2em;
      }

      #about h2, #buy h2, #team h2, #faq h2 {
        font-size: 1.5em;
      }

      .modal-content {
        max-width: 90%;
      }

      .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .team-card {
        max-width: 250px;
      }

      .team-photo {
        max-width: 210px;
      }
    }
  
select option {
  background: #27213c;
  color: white;
}