@font-face {
    font-family: 'Benzin Extra Bold';
    src: url('Benzin-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #fff;
  }
  
  body {
    font-family: 'Benzin Extra Bold', sans-serif;
    background: #000;
    min-height: 100vh;
    overflow-x: hidden;
    text-transform: uppercase;
    color: #fff;
  }
  
  .video-bg {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: contrast(130%) saturate(130%) brightness(60%);
  }
  
  body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, #000 70%);
    z-index: -1;
  }
  
  header {
    padding: 40px;
    text-align: center;
    font-size: 56px;
    letter-spacing: 6px;
    text-shadow: 0 0 20px rgba(255,255,255,0.4);
    color: #fff;
  }
  
  nav {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding-bottom: 30px;
  }
  
  nav button {
    background: none;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 28px;
    font-family: inherit;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  
  nav button:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
  }
  
  main {
    padding: 60px 40px;
    min-height: 60vh;
    border-top: 6px solid #000;
    background: none;
    color: #fff;
  }
  
  section {
    display: none;
    max-width: 900px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
  }
  
  section.active {
    display: block;
    animation: fadeUp 0.6s ease forwards;
  }
  
  h2 {
    margin-bottom: 20px;
    font-size: 32px;
    color: #fff;
  }
  
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* ===== CONCERT CARDS ===== */
  .concert-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.6);
    padding: 20px;
    margin-bottom: 15px;
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff;
    font-size: 18px;
    transition: 0.2s;
    backdrop-filter: blur(5px);
  }
  
  .concert-card:hover {
    background: rgba(0,0,0,0.8);
  }
  
  .buy {
    border: 2px solid #fff;
    padding: 6px 12px;
    text-decoration: none;
    color: #fff;
    transition: 0.2s;
  }
  
  .buy:hover {
    background: #fff;
    color: #000;
  }
  
  .sold {
    color: red;
    font-weight: bold;
  }
  
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.5s forwards;
  }
  