      section{
        margin-top: 80px;
      }
      .livestream-container {
        max-width: 1200px;
        margin: 2rem auto;
        padding: 0 20px;
      }
  
      .stream-header {
        text-align: center;
        margin-bottom: 3rem;
        position: relative;
        padding-bottom: 1rem;
      }
  
      .stream-header h1 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
      }
  
      .stream-header p {
        font-size: 1.1rem;
        color: #666;
        max-width: 600px;
        margin: 0 auto;
      }
  
      .stream-header::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
      }
  
      .stream-tabs {
        display: flex;
        justify-content: center;
        margin-bottom: 1.5rem;
        gap: 15px;
      }
  
      .stream-tab {
        padding: 12px 24px;
        background: white;
        border-radius: 30px;
        cursor: pointer;
        transition: var(--transition);
        font-weight: 600;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        border: 1px solid #eaeaea;
      }
  
      .stream-tab:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      }
  
      .stream-tab.active {
        background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
        color: white;
        border: none;
      }
  
      .stream-content {
        margin-bottom: 3rem;
        box-shadow: var(--card-shadow);
        border-radius: 12px;
        overflow: hidden;
        position: relative;
      }
  
      .stream-frame {
        width: 100%;
        aspect-ratio: 16/9;
        display: none;
        background-color: #000;
      }
  
      .stream-frame.active {
        display: block;
      }
  
      .upcoming-events {
        margin-top: 4rem;
        padding: 2rem;
        background: white;
        border-radius: 12px;
        box-shadow: var(--card-shadow);
      }
  
      .upcoming-events h2 {
        text-align: center;
        margin-bottom: 2rem;
        color: var(--primary-color);
        font-weight: 700;
        position: relative;
        padding-bottom: 0.5rem;
      }
  
      .upcoming-events h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
      }
  
      .event-card {
        border: none;
        border-radius: 10px;
        padding: 20px;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        background: white;
        box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        transition: var(--transition);
      }
  
      .event-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
      }
  
      .event-date {
        flex: 0 0 100px;
        padding: 15px 10px;
        text-align: center;
        font-weight: 700;
        border-radius: 8px;
        background: linear-gradient(to bottom right, var(--primary-color), var(--secondary-color));
        color: white;
        line-height: 1.3;
      }
  
      .event-date .day {
        font-size: 1.5rem;
        display: block;
      }
  
      .event-date .month {
        font-size: 1rem;
        text-transform: uppercase;
      }
  
      .event-date .time {
        font-size: 0.9rem;
        opacity: 0.9;
        margin-top: 5px;
      }
  
      .event-info {
        flex-grow: 1;
        padding: 0 20px;
      }
  
      .event-info h3 {
        margin: 0 0 10px;
        color: var(--dark-bg);
        font-size: 1.2rem;
      }
  
      .event-info p {
        margin: 0;
        color: #666;
      }
  
      .event-platform {
        flex: 0 0 80px;
        text-align: center;
      }
  
      .event-platform i {
        font-size: 32px;
        padding: 10px;
        border-radius: 50%;
        transition: var(--transition);
      }
  
      .facebook-color {
        color: #3b5998;
      }
  
      .facebook-color:hover {
        background-color: rgba(59, 89, 152, 0.1);
      }
  
      .youtube-color {
        color: #ff0000;
      }
      
      .youtube-color:hover {
        background-color: rgba(255, 0, 0, 0.1);
      }
  
      .replay-section {
        margin-top: 4rem;
        padding: 2rem;
        background: white;
        border-radius: 12px;
        box-shadow: var(--card-shadow);
      }
  
      .replay-section h2 {
        text-align: center;
        margin-bottom: 0.5rem;
        color: var(--primary-color);
        font-weight: 700;
        position: relative;
        padding-bottom: 0.5rem;
      }
  
      .replay-section h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
      }
  
      .replay-section p {
        text-align: center;
        margin-bottom: 2rem;
        color: #666;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
      }
  
      .replay-videos {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
      }
  
      .replay-card {
        background: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        transition: var(--transition);
      }
  
      .replay-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
      }
  
      .replay-card .video-container {
        border-radius: 10px 10px 0 0;
        overflow: hidden;
        position: relative;
      }
  
      .replay-card iframe {
        display: block;
        width: 100%;
        height: 200px;
        border: none;
      }
  
      .replay-card .content {
        padding: 20px;
      }
  
      .replay-card h4 {
        margin: 0 0 10px;
        font-size: 1.1rem;
        color: var(--dark-bg);
      }
  
      .replay-card p {
        font-size: 0.9rem;
        color: #666;
        margin: 0;
        text-align: left;
      }
  
      .call-to-action {
        margin-top: 4rem;
        padding: 3rem 2rem;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        border-radius: 12px;
        text-align: center;
        color: white;
        box-shadow: var(--card-shadow);
      }
  
      .call-to-action h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
        font-weight: 700;
      }
  
      .call-to-action p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        opacity: 0.9;
      }
  
      .social-buttons {
        display: flex;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
      }
  
      .btn {
        display: inline-flex;
        align-items: center;
        padding: 12px 24px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        transition: var(--transition);
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      }
  
      .btn i {
        margin-right: 8px;
        font-size: 1.2rem;
      }
  
      .btn-primary {
        background-color: #3b5998;
        color: white;
      }
  
      .btn-primary:hover {
        background-color: #2d4373;
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(59, 89, 152, 0.3);
      }
  
      .btn-danger {
        background-color: #ff0000;
        color: white;
      }
  
      .btn-danger:hover {
        background-color: #cc0000;
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(255, 0, 0, 0.3);
      }
  
      /* Responsive styles */
      @media (max-width: 768px) {
        .stream-tab{
            font-size: 0.75rem;
        }
        .event-card {
          flex-direction: column;
          text-align: center;
          padding: 15px;
        }
  
        .event-date {
          margin-bottom: 15px;
          width: 100%;
          max-width: 150px;
        }
  
        .event-info {
          margin-bottom: 15px;
          padding: 0;
        }
  
        .social-buttons {
          flex-direction: column;
          align-items: center;
        }
  
        .btn {
          width: 100%;
          max-width: 250px;
          justify-content: center;
          margin-bottom: 10px;
        }
        
        .livestream-container {
          padding: 0 15px;
        }
        
        .stream-header h1 {
          font-size: 2rem;
        }
        .replay-videos {
            grid-template-columns: 1fr !important;
            justify-items: center;
          }
        .replay-card{
            width: 100%;
            max-width: 100%;
            margin: 0 auto;
        }
        .event-date {
          width: 300px !important;
          text-align: center;
          font-weight: 700;
          border-radius: 8px;
          background: linear-gradient(to bottom right, var(--primary-color), var(--secondary-color));
          color: white;
          line-height: 1.3;
        }
      }