 :root {
      --gradient: linear-gradient(45deg, #ff3366, #ff6b6b, #4834d4, #686de0);
      --primary-blue: #6b7cff;
      --primary-purple: #8a5fff;
      --primary-pink: #c45aad;
      --primary-coral: #e8655a;

    }



    /* Body için transition ekliyoruz */
body.adult-mode {
  background: rgb(10, 15, 11);
  transition: background-color ease 2.5s;
}
    /* Çocuk oyunları için aydınlık arkaplan */
    body.kids-mode {
      background: linear-gradient(135deg, rgba(13, 69, 143, 0.80), rgba(255, 152, 83, 0.30)) !important;
      transition: background-color ease 2.5s;
    }

    /* ─── Header Section ─── */
    .plays-header {
      position: relative;
      padding: 8rem 2rem 3rem;
      text-align: center;
      overflow: hidden;
      font-size: 3vw;
      width: 100%;
      z-index: 1;
    }

    .header-title {
  font-size: 3vw;
  font-family: "Poppins", serif;
  font-weight: 600;
  margin-bottom: 2rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient 8s linear infinite;
  background-size: 300%;
  line-height: 1.1;
  letter-spacing: -2px;
}

.header-description * {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 3px;
  font-size: 1.6rem;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 2rem;
  line-height: 1.6;
  opacity: 0.8;
  color: white;
}

/* .header-description * {
  font-size: 1.2rem;
  max-width: 1400px;
  font-family: inherit;
} */



/* ─── CTA Section (ULTRA ANIMATED) ─── */
    .cta-section {
      padding: 4rem 2rem;
      display: flex;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .cta-content {
      position: relative;
      width: 100%;
      max-width: 900px;
      min-height: 220px;
      padding: 3rem 2.5rem;
      border-radius: 28px;
      background: linear-gradient(135deg, rgba(107, 124, 255, 0.12), rgba(232, 101, 90, 0.12));
      border: 2px solid rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(16px);
      box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
      overflow: hidden;
    }

    /* ─── Animated Particles ─── */
    .cta-particles {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .particle {
      position: absolute;
      font-size: 2rem;
      opacity: 0.4;
      animation: particleFloat 8s ease-in-out infinite;
    }

    .particle-1 { top: 10%; left: 5%; animation-delay: 0s; }
    .particle-2 { top: 60%; left: 10%; animation-delay: 1s; font-size: 1.5rem; }
    .particle-3 { top: 20%; right: 8%; animation-delay: 2s; }
    .particle-4 { bottom: 15%; right: 15%; animation-delay: 3s; font-size: 1.8rem; }
    .particle-5 { top: 70%; right: 5%; animation-delay: 1.5s; font-size: 1.3rem; }
    .particle-6 { bottom: 25%; left: 12%; animation-delay: 2.5s; }

    @keyframes particleFloat {
      0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 0.3; }
      25% { transform: translate(10px, -15px) rotate(90deg) scale(1.1); opacity: 0.6; }
      50% { transform: translate(-5px, -25px) rotate(180deg) scale(0.9); opacity: 0.4; }
      75% { transform: translate(15px, -10px) rotate(270deg) scale(1.05); opacity: 0.5; }
    }

    /* ─── Gradient Waves ─── */
    .cta-wave {
      position: absolute;
      width: 200%;
      height: 200%;
      opacity: 0.3;
      border-radius: 40%;
      animation: waveRotate 15s linear infinite;
    }

    .wave-1 {
      background: radial-gradient(circle at center, rgba(107, 124, 255, 0.3), transparent 60%);
      top: -100%;
      left: -50%;
    }

    .wave-2 {
      background: radial-gradient(circle at center, rgba(232, 101, 90, 0.3), transparent 60%);
      bottom: -100%;
      right: -50%;
      animation-direction: reverse;
      animation-duration: 20s;
    }

    @keyframes waveRotate {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    /* ─── Main Content Container ─── */
    .cta-main {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 3rem;
    }

    /* ─── Step Wrapper ─── */
    .cta-step {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.2rem;
    }

    /* ─── Step Icon Wrapper with Rings ─── */
    .step-icon-wrapper {
      position: relative;
      width: 90px;
      height: 90px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .step-icon-glow {
      position: absolute;
      inset: -15px;
      border-radius: 50%;
      background: radial-gradient(circle, var(--glow-color, #6b7cff), transparent 70%);
      opacity: 0.5;
      animation: glowPulse 2s ease-in-out infinite;
    }

    .cta-step-1 .step-icon-glow { --glow-color: #6b7cff; }
    .cta-step-2 .step-icon-glow { --glow-color: #e8655a; animation-delay: 1s; }

    @keyframes glowPulse {
      0%, 100% { transform: scale(0.8); opacity: 0.3; }
      50% { transform: scale(1.2); opacity: 0.6; }
    }

    .step-number {
      position: relative;
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--step-color-1, #6b7cff), var(--step-color-2, #8a5fff));
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 
        0 8px 32px rgba(107, 124, 255, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
      animation: numberBounce 1.5s ease-in-out infinite;
      z-index: 2;
    }

    .cta-step-1 .step-number { --step-color-1: #6b7cff; --step-color-2: #8a5fff; }
    .cta-step-2 .step-number { --step-color-1: #c45aad; --step-color-2: #e8655a; animation-delay: 0.75s; }

    @keyframes numberBounce {
      0%, 100% { transform: scale(1) translateY(0); }
      50% { transform: scale(1.08) translateY(-5px); }
    }

    .number-inner {
      font-family: 'Georgia', serif;
      font-size: 2rem;
      font-weight: 700;
      color: #fff;
      text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    /* ─── Expanding Rings ─── */
    .step-rings {
      position: absolute;
      inset: 0;
    }

    .ring {
      position: absolute;
      inset: 0;
      border-radius: 50%;
      border: 2px solid var(--ring-color, #6b7cff);
      opacity: 0;
      animation: ringExpand 2.5s ease-out infinite;
    }

    .cta-step-1 .ring { --ring-color: #6b7cff; }
    .cta-step-2 .ring { --ring-color: #e8655a; }

    .ring-1 { animation-delay: 0s; }
    .ring-2 { animation-delay: 0.8s; }
    .ring-3 { animation-delay: 1.6s; }

    @keyframes ringExpand {
      0% { transform: scale(1); opacity: 0.6; }
      100% { transform: scale(1.8); opacity: 0; }
    }

    /* ─── Step Text ─── */
    .step-text-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.3rem;
    }

    .step-text {
      font-family: 'Georgia', serif;
      font-size: clamp(1.3rem, 2.5vw, 1.6rem);
      font-weight: 700;
      background: linear-gradient(120deg, var(--text-color-1, #6b7cff), var(--text-color-2, #c45aad));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: textShine 3s ease-in-out infinite;
    }

    .cta-step-1 .step-text { --text-color-1: #6b7cff; --text-color-2: #8a5fff; }
    .cta-step-2 .step-text { --text-color-1: #c45aad; --text-color-2: #e8655a; animation-delay: 1.5s; }

    @keyframes textShine {
      0%, 100% { filter: brightness(1); }
      50% { filter: brightness(1.3); }
    }

    .step-text-sub {
      font-family: 'Inter', sans-serif;
      font-size: clamp(1rem, 2vw, 1.2rem);
      font-weight: 600;
      color: rgba(255, 255, 255, 0.7);
      letter-spacing: 0.05em;
    }

    /* ─── Divider with Animated Arrow ─── */
    .cta-divider {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .divider-line {
      width: 60px;
      height: 3px;
      background: linear-gradient(90deg, transparent, #c45aad, transparent);
      position: absolute;
    }

    .divider-pulse {
      position: absolute;
      width: 80px;
      height: 20px;
      background: radial-gradient(ellipse, rgba(196, 90, 173, 0.5), transparent 70%);
      animation: pulseDivider 1.5s ease-in-out infinite;
    }

    @keyframes pulseDivider {
      0%, 100% { transform: scale(0.8); opacity: 0.3; }
      50% { transform: scale(1.2); opacity: 0.7; }
    }

    .divider-arrow {
      position: relative;
      z-index: 2;
      animation: arrowSlide 1.2s ease-in-out infinite;
    }

    .divider-arrow svg {
      stroke: url(#cta-gradient);
      filter: drop-shadow(0 0 8px rgba(196, 90, 173, 0.6));
    }

    @keyframes arrowSlide {
      0%, 100% { transform: translateX(0); }
      50% { transform: translateX(12px); }
    }

    /* ─── Floating Ticket ─── */
    .floating-ticket {
      position: absolute;
      bottom: 1.5rem;
      right: 2rem;
      animation: ticketFloat 4s ease-in-out infinite;
    }

    .floating-ticket svg {
      stroke: url(#cta-gradient);
      filter: drop-shadow(0 4px 12px rgba(107, 124, 255, 0.4));
    }

    @keyframes ticketFloat {
      0%, 100% { transform: translateY(0) rotate(-5deg); }
      50% { transform: translateY(-15px) rotate(5deg); }
    }



 

    /* ─── Category Toggle ─── */
    .category-toggle {
      display: flex;
      justify-content: center;
      gap: 1rem;
      padding: 3rem 2rem 4rem;
      position: relative;
      z-index: 10;
    }

    

    .toggle-btn {
      position: relative;
      padding: 1rem 2.5rem;
      font-family: 'Inter', sans-serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.5);
      background: rgba(255, 255, 255, 0.04);
      border: 2px solid rgba(255, 255, 255, 0.1);
      border-radius: 14px;
      cursor: pointer;
      transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
      overflow: visible;
    }

    .toggle-btn::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, var(--primary-blue), var(--primary-pink));
      opacity: 0;
      transition: opacity 0.35s ease;
      border-radius: 12px;
    }

    .toggle-btn span {
      position: relative;
      z-index: 1;
    }

    .toggle-btn:hover {
      border-color: rgba(255, 255, 255, 0.2);
      transform: translateY(-2px);
    }

    /* Yetişkin butonu - Mavi/Mor glowing */
    .toggle-btn[data-category="adult"].active {
      color: #fff;
      border-color: #6b7cff;
      background: linear-gradient(135deg, rgba(107, 124, 255, 0.3), rgba(138, 95, 255, 0.3));
      box-shadow: 
        0 0 20px rgba(107, 124, 255, 0.6),
        0 0 40px rgba(107, 124, 255, 0.4),
        0 0 60px rgba(138, 95, 255, 0.3),
        0 8px 30px rgba(107, 124, 255, 0.4);
      animation: glowPulseBlue 2s ease-in-out infinite;
    }

    .toggle-btn[data-category="adult"].active::before {
      opacity: 0.4;
      background: linear-gradient(135deg, #6b7cff, #8a5fff);
    }

    /* Çocuk butonu - Turuncu glowing */
    .toggle-btn[data-category="kids"].active {
      color: #fff;
      border-color: #ff8e53;
      background: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(255, 142, 83, 0.3));
      box-shadow: 
        0 0 20px rgba(255, 107, 53, 0.6),
        0 0 40px rgba(255, 142, 83, 0.5),
        0 0 60px rgba(255, 107, 53, 0.3),
        0 8px 30px rgba(255, 107, 53, 0.4);
      animation: glowPulseOrange 2s ease-in-out infinite;
    }

    .toggle-btn[data-category="kids"].active::before {
      opacity: 0.4;
      background: linear-gradient(135deg, #ff6b35, #ff8e53);
    }

    /* Glowing animasyonlar */
    @keyframes glowPulseBlue {
      0%, 100% {
        box-shadow: 
          0 0 20px rgba(107, 124, 255, 0.6),
          0 0 40px rgba(107, 124, 255, 0.4),
          0 0 60px rgba(138, 95, 255, 0.3),
          0 8px 30px rgba(107, 124, 255, 0.4);
      }
      50% {
        box-shadow: 
          0 0 30px rgba(107, 124, 255, 0.8),
          0 0 60px rgba(107, 124, 255, 0.6),
          0 0 90px rgba(138, 95, 255, 0.4),
          0 8px 40px rgba(107, 124, 255, 0.5);
      }
    }

    @keyframes glowPulseOrange {
      0%, 100% {
        box-shadow: 
          0 0 20px rgba(255, 107, 53, 0.6),
          0 0 40px rgba(255, 142, 83, 0.5),
          0 0 60px rgba(255, 107, 53, 0.3),
          0 8px 30px rgba(255, 107, 53, 0.4);
      }
      50% {
        box-shadow: 
          0 0 30px rgba(255, 107, 53, 0.8),
          0 0 60px rgba(255, 142, 83, 0.7),
          0 0 90px rgba(255, 107, 53, 0.5),
          0 8px 40px rgba(255, 107, 53, 0.5);
      }
    }

    /* ─── Plays Grid (Offset Layout) ─── */
    .plays-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 2rem 6rem;
      position: relative;
    }

    .plays-grid {
      display: none;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2.5rem;
      animation: fadeIn 0.6s ease;
    }

    .plays-grid.active {
      display: grid;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Offset layout: alternate row positioning */
    .play-card:nth-child(even) {
      transform: translateY(40px);
    }

    .play-card {
      position: relative;
      cursor: pointer;
      border-radius: 20px;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
      
      opacity: 0;
      animation: cardFadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }

    .play-card:nth-child(1) { animation-delay: 0.05s; }
    .play-card:nth-child(2) { animation-delay: 0.1s; }
    .play-card:nth-child(3) { animation-delay: 0.15s; }
    .play-card:nth-child(4) { animation-delay: 0.2s; }
    .play-card:nth-child(5) { animation-delay: 0.25s; }
    .play-card:nth-child(6) { animation-delay: 0.3s; }
    .play-card:nth-child(7) { animation-delay: 0.35s; }
    .play-card:nth-child(8) { animation-delay: 0.4s; }
    .play-card:nth-child(9) { animation-delay: 0.45s; }
    .play-card:nth-child(10) { animation-delay: 0.5s; }

    @keyframes cardFadeUp {
      to { opacity: 1; }
    }

    .play-card:hover {
      transform: translateY(-8px);
      border-color: rgba(255, 255, 255, 0.2);
      box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(0, 30, 255, 0.4),
    0 0 60px rgba(41, 43, 167, 0.3),
    0 0 90px rgba(59, 79, 190, 0.2);
    }

    .play-card:nth-child(even):hover {
      transform: translateY(32px);
     box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(0, 30, 255, 0.4),
    0 0 60px rgba(41, 43, 167, 0.3),
    0 0 90px rgba(59, 79, 190, 0.2);
    }

    .play-poster {
      position: relative;
      width: 100%;
      aspect-ratio: 2/3;
      overflow: hidden;
    }

    .play-poster img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .play-card:hover .play-poster img {
      transform: scale(1.08);
    }

    .play-poster::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
    }

    .play-info {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 1.5rem;
      z-index: 1;
    }

    .play-title {
      font-family: 'Georgia', serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 0.5rem;
      line-height: 1.2;
    }

    .play-meta {
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.6);
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .play-category {
      padding: 0.3rem 0.8rem;
      background: rgba(107, 124, 255, 0.3);
      border-radius: 6px;
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    /* ─── Modal (Oyun Detayı) ─── */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.85);
      backdrop-filter: blur(8px);
      z-index: 1000;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 2rem;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .modal-overlay.active {
      display: flex;
      opacity: 1;
    }

    .modal-content {
      position: relative;
      max-width: 900px;
      width: 100%;
      max-height: 90vh;
      overflow-y: auto;
      background: rgba(10, 10, 15, 0.95);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 24px;
      backdrop-filter: blur(20px);
      box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
      
      transform: scale(0.9);
      transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .modal-overlay.active .modal-content {
      transform: scale(1);
    }

    .modal-close {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10;
      transition: all 0.3s ease;
    }

    .modal-close:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: rotate(90deg);
    }

    .modal-close svg {
      stroke: #fff;
    }

    .modal-header {
      position: relative;
      height: 400px;
      overflow: hidden;
      border-radius: 24px 24px 0 0;
    }

    .modal-header img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .modal-header::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 15, 0.95) 100%);
    }

    .modal-body {
      padding: 2.5rem;
    }

    .modal-title {
      font-family: 'Georgia', serif;
      font-size: clamp(2rem, 4vw, 2.8rem);
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 1rem;
      
      background: linear-gradient(120deg, #6b7cff, #c45aad, #e8655a);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .modal-category {
      display: inline-block;
      padding: 0.5rem 1.2rem;
      background: rgba(107, 124, 255, 0.2);
      border: 1px solid rgba(107, 124, 255, 0.4);
      border-radius: 8px;
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 2rem;
    }

    .modal-description {
      font-family: 'Inter', sans-serif;
      font-size: 1.05rem;
      font-weight: 300;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 3rem;
    }

    .ticket-section {
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .ticket-section h3 {
      font-family: 'Georgia', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 1.5rem;
    }

    .ticket-links {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1rem;
    }

    .ticket-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.8rem;
      padding: 1.2rem 2rem;
      font-family: 'Inter', sans-serif;
      font-size: 1rem;
      font-weight: 600;
      text-decoration: none;
      border-radius: 12px;
      transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
      position: relative;
      overflow: hidden;
    }

    .ticket-btn::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, currentColor, transparent);
      opacity: 0;
      transition: opacity 0.35s ease;
    }

    .ticket-btn span {
      position: relative;
      z-index: 1;
    }

    .ticket-btn svg {
      position: relative;
      z-index: 1;
    }

    .ticket-btn:hover::before {
      opacity: 0.15;
    }

    .ticket-btn:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    }

    /* Biletinial */
    .ticket-btn.biletinial {
     background: linear-gradient(135deg, #d4af37 20%, #ffd014 100%);
      color: #000;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .ticket-btn.biletinial:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(233, 197, 79, 0.644);
    }

    /* Bubilet */
    .ticket-btn.bubilet {
      background: linear-gradient(135deg, #449b38 20%, #00ac00 100%);
      color: #f0e6d2;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .ticket-btn.bubilet:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(10, 252, 43, 0.5);
    }

    /* ─── Responsive ─── */
    @media (max-width: 768px) {
      .plays-header {
        padding: 4rem 1.5rem 2rem;
      }

      .cta-section {
        padding: 2rem 1rem;
      }

      .cta-content {
        padding: 2.5rem 1.5rem;
        min-height: auto;
      }

      .cta-main {
        flex-direction: column;
        gap: 2rem;
      }

      .cta-divider {
        transform: rotate(90deg);
      }

      .divider-arrow {
        animation: arrowSlideVertical 1.2s ease-in-out infinite;
      }

      @keyframes arrowSlideVertical {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(12px); }
      }

      .particle {
        font-size: 1.5rem;
      }

      .floating-ticket {
        bottom: 1rem;
        right: 1rem;
      }

      .floating-ticket svg {
        width: 36px;
        height: 36px;
      }

      .step-icon-wrapper {
        width: 80px;
        height: 80px;
      }

      .step-number {
        width: 60px;
        height: 60px;
      }

      .number-inner {
        font-size: 1.7rem;
      }

      .category-toggle {
        padding: 2rem 1.5rem 3rem;
        flex-direction: column;
      }

      .toggle-btn {
        width: 100%;
      }

      .plays-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .play-card:nth-child(even) {
        transform: translateY(0);
      }

      .play-card:nth-child(even):hover {
        transform: translateY(-8px);
      }

      .modal-header {
        height: 300px;
      }

      .modal-body {
        padding: 2rem 1.5rem;
      }

      .ticket-links {
        grid-template-columns: 1fr;
      }
    }

    /* Custom Scrollbar */
    .modal-content::-webkit-scrollbar {
      width: 8px;
    }

    .modal-content::-webkit-scrollbar-track {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 10px;
    }

    .modal-content::-webkit-scrollbar-thumb {
      background: rgba(107, 124, 255, 0.5);
      border-radius: 10px;
    }

    .modal-content::-webkit-scrollbar-thumb:hover {
      background: rgba(107, 124, 255, 0.7);
    }