.tickets-container {
    background-color: #2a2a2a;
    border-radius: 20px;
    padding: 30px;
    max-width: 900px;
    width: 90%;
    margin: 0 auto;
    color: white;
  }
  
  .tickets-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
  }
  
  .tickets-header h2 {
    font-size: 24px;
    font-weight: 500;
    margin: 0;
    color: #7dd3fc;
  }
  
  .close-btn {
    background: none;
    border: none;
    color: #888;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .close-btn:hover {
    color: #fff;
  }
  
  .tickets-content {
    display: flex;
    gap: 30px;
  }
  
  .subscription-section,
  .purchase-section {
    flex: 1;
  }
  
  .section-header {
    background-color: #4a7c7e;
    color: #b8e6e8;
    padding: 15px 20px;
    border-radius: 20px 20px 0 0;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
  }
  
  .section-content {
    background-color: #3a3a3a;
    border-radius: 0 0 20px 20px;
    padding: 25px 20px;
  }
  
  .option {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    cursor: pointer;
  }
  
  .radio-input {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #4dd0e1;
    border-radius: 50%;
    margin-right: 15px;
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
  }
  
  .radio-input:checked {
    background-color: #4dd0e1;
    border-color: #4dd0e1;
  }
  
  .option-label {
    cursor: pointer;
    flex: 1;
  }
  
  .option-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 4px;
    color: white;
  }
  
  .option-subtitle {
    font-size: 14px;
    color: #ccc;
  }
  
  .buy-btn {
    width: 100%;
    background-color: #4dd0e1;
    color: #2a2a2a;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 10px;
  }
  
  .buy-btn:hover {
    background-color: #26c6da;
  }
  
  @media (max-width: 768px) {
    .tickets-content {
      flex-direction: column;
      gap: 20px;
    }
    
    .tickets-container {
      padding: 20px;
      margin: 20px;
    }
  }
  