 main {
      font-family: 'Arial Black', Arial, sans-serif;
      overflow-x: hidden;
      height: 100vh;
    }

    /* Hero Slider */
    .hero-slider {
      position: relative;
      width: 100%;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    /* Background Slides */
    .bg-slides {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }

    .bg-slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }

    .bg-slide.active {
      opacity: 1;
    }

    /* Overlay */
    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(26,26,46,0.9) 50%, rgba(22,33,62,0.95) 100%);
      z-index: 2;
    }

    /* Slider Content */
    .slider-container {
      position: relative;
      z-index: 3;
      width: 90%;
      max-width: 800px;
      height: 90%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .slider-item {
      position: absolute;
      width: 100%;
      height: 100%;
      opacity: 0;
      visibility: hidden;
      transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .slider-item.active {
      opacity: 1;
      visibility: visible;
    }

    /* Top Section */
    .top-section {
      display: flex;
      align-items: flex-end;
      /* gap: 20px; */
      height: 55%;
      border-top: 20px solid;
      border-image: linear-gradient(135deg, #183718, #d80a2e) 1;
      padding: 40px 20px 20px;
      background: url('../images/img0.jpg') center/cover no-repeat;
    }

    .portrait-img {
      width: 200px;
      height: 280px;
      object-fit: cover;
      /* border-radius: 12px 12px 0 0; */
      box-shadow: 0 20px 40px rgba(0,0,0,0.6);
      border: 10px solid;
      border-image: linear-gradient(135deg, #8cd1e2, #045c80) 1;    }

    .top-text {
      flex: 1;
      color: #fff;
      text-align: right;
    }

    .top-text h1 {
      font-size: clamp(2.2rem, 6vw, 4.5rem);
      font-weight: 900;
      letter-spacing: -0.02em;
      margin-bottom: 8px;
      text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    }

    .top-text h2 {
      font-size: clamp(1.1rem, 3vw, 2rem);
      font-weight: 700;
      opacity: 0.9;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    /* Bottom Section */
    .bottom-section {
      background: rgba(255,255,255,0.95);
      color: #000;
      padding: 35px 40px;
      position: relative;
      height: 45%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: 0 -20px 40px rgba(0,0,0,0.3);
    }

    .tryout-title {
      display: flex;
      gap: 8px;
      align-items: flex-end;
    }

    .tryout-title span:nth-child(1) {
      font-size: clamp(1.5rem, 5vw, 3rem);
      font-weight: 900;
      line-height: 0.85;
      letter-spacing: -0.05em;
    }

    .tryout-title span:nth-child(2) {
      font-size: clamp(0.8rem, 2vw, 2rem);
      font-weight: 700;
      line-height: 0.9;
    }

    .tryout-paris {
      font-size: clamp(2.8rem, 8vw, 5rem);
      font-weight: 900;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin: 8px 0;
    }

    .event-details {
      display: flex;
      gap: 30px;
      align-items: flex-end;
      margin: 20px 0;
    }

    .date-box {
      background: #000;
      color: #fff;
      padding: 12px 16px;
      border-radius: 8px;
      text-align: center;
      min-width: 85px;
    }

    .date {
      font-size: 1.6rem;
      font-weight: 800;
      line-height: 1;
    }

    .date-label {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-top: 2px;
    }

    .time-location {
      flex: 1;
    }

    .time {
      font-size: 2.2rem;
      font-weight: 900;
      line-height: 1;
    }

    .location {
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      opacity: 0.9;
    }

    .website {
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      opacity: 0.9;
      text-align: center;
    }

    /* Slider Dots */
    .slider-dots {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 12px;
      z-index: 4;
    }

    .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255,255,255,0.4);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .dot.active,
    .dot:hover {
      background: #fff;
      transform: scale(1.2);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .top-section {
        flex-direction: column;
        text-align: left;
        padding: 30px 20px;
      }
      
      .portrait-img {
        width: 160px;
        height: 220px;
        align-self: left;
      }
      
      .top-text {
        text-align: left;
      }
      
      .bottom-section {
        padding: 25px 30px;
      }
      
      .event-details {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        text-align: center;
      }
    }

    @media (max-width: 480px) {
      .slider-container {
        width: 95%;
      }
      
      .bottom-section {
        padding: 20px 25px;
      }
    }