  :root {
      --primary-orange: #f57c00;
      --primary-dark: #e06b00;
      --primary-light: #ffb74d;
      --orange-bg: #fff3e0;
      --orange-border: #ffcc80;
      --text-on-orange: white;
    }



    h1 {
      font-size: 2.5rem;
      font-weight: 600;
      color: #bf360c;
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      border-left: 6px solid var(--primary-orange);
      padding-left: 1.2rem;
    }

    .subhead {
      font-size: 1.1rem;
      color: #5d4037;
      margin-bottom: 2.5rem;
      padding-left: 1.5rem;
      font-weight: 400;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    /* Featured Videos */
    .featured-section {
      display: flex;
      flex-direction: column;
      gap: 2.5rem;
      margin-bottom: 3.5rem;
    }

    .featured-card {
      display: flex;
      flex-direction: row;
      background: white;
      border-radius: 28px;
      box-shadow: 0 12px 28px rgba(0,0,0,0.05), 0 4px 12px rgba(255, 111, 0, 0.1);
      overflow: hidden;
      border: 1px solid var(--orange-border);
      transition: transform 0.2s, box-shadow 0.2s;
      align-items: stretch;
    }

    .featured-card:hover {
      box-shadow: 0 20px 35px rgba(245, 124, 0, 0.18);
      transform: translateY(-3px);
    }

    .featured-text {
      flex: 1 1 45%;
      padding: 2.2rem 2rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background: linear-gradient(145deg, #fff7ed 0%, #ffffff 100%);
    }

    .featured-text h2 {
      font-size: 1.9rem;
      font-weight: 650;
      color: #bf360c;
      margin-bottom: 1rem;
      line-height: 1.3;
    }

    .featured-text p {
      font-size: 1.1rem;
      color: #4e342e;
      margin-bottom: 1.8rem;
      opacity: 0.9;
    }

    .orange-btn {
      background: var(--primary-orange);
      color: white;
      border: none;
      padding: 0.8rem 1.8rem;
      border-radius: 40px;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: linear-gradient(135deg, #f57c00 0%, #fb8c00 100%);
      box-shadow: 0 6px 16px rgba(245, 124, 0, 0.35);
      transition: 0.2s;
      width: fit-content;
      border: none;
    }

    .orange-btn:hover {
      background: #ef6c00;
      box-shadow: 0 8px 20px rgba(230, 81, 0, 0.45);
    }

    .featured-video {
      flex: 1 1 55%;
      background: #1a1a1a;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      min-height: 280px;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    .play-icon-overlay {
      position: absolute;
      width: 80px;
      height: 80px;
      background: rgba(245, 124, 0, 0.9);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 24px rgba(0,0,0,0.5);
      transition: 0.25s;
      color: white;
      font-size: 2.8rem;
      backdrop-filter: blur(4px);
    }

    .featured-video:hover .play-icon-overlay {
      background: #ff9800;
      transform: scale(1.08);
    }

    /* More Videos Section */
    .grid-header {
      margin: 2.5rem 0 1.8rem;
    }

    .grid-title {
      font-size: 2rem;
      font-weight: 650;
      color: #bf360c;
      display: flex;
      align-items: center;
      gap: 0.8rem;
      margin-bottom: 0.6rem;
    }

    .grid-description {
      font-size: 1.05rem;
      color: #5d4037;
      background: #fff3e0;
      padding: 0.9rem 1.5rem;
      border-radius: 16px;
      border-left: 4px solid var(--primary-orange);
      max-width: 100%;
      line-height: 1.6;
    }

    .video-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.8rem;
    }

    .video-item {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0,0,0,0.04);
      border: 1px solid #ffe0b2;
      transition: all 0.25s;
      display: flex;
      flex-direction: column;
      cursor: pointer;
      background: #ffffff;
    }

    .video-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 18px 30px rgba(245, 124, 0, 0.2);
      border-color: var(--primary-orange);
    }

    .thumb-wrap {
      position: relative;
      width: 100%;
      padding-top: 56.25%;
      background: #2d2d2d;
      background-size: cover;
      background-position: center;
    }

    .small-play {
      position: absolute;
      bottom: 10px;
      right: 10px;
      background: var(--primary-orange);
      color: white;
      border-radius: 50%;
      width: 38px;
      height: 38px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      box-shadow: 0 4px 12px black;
    }

    .video-info {
      padding: 1rem 0.9rem;
    }

    .video-info h3 {
      font-size: 1rem;
      font-weight: 600;
      color: #3e2723;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      margin-bottom: 0.3rem;
    }

    .video-date {
      font-size: 0.8rem;
      color: #8d6e63;
    }

    /* Modal */
    .modal {
      display: none;
      position: fixed;
      top: 0; left: 0; width: 100%; height: 100%;
      background: rgba(0,0,0,0.85);
      align-items: center;
      justify-content: center;
      z-index: 1000;
      backdrop-filter: blur(6px);
    }

    .modal-content {
      position: relative;
      width: 85%;
      max-width: 1000px;
      background: black;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 30px 50px black;
    }

    .close-modal {
      position: absolute;
      top: 10px; right: 18px;
      color: white;
      font-size: 2.8rem;
      cursor: pointer;
      z-index: 10;
      opacity: 0.9;
    }

    iframe {
      width: 100%;
      height: 520px;
      border: none;
    }

    .loading-text {
      text-align: center;
      padding: 2rem;
      color: #bf360c;
    }

    @media (max-width: 900px) {
      .featured-card {
        flex-direction: column;
      }
      .video-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      h1 {
        font-size: 2rem;
      }
    }

    @media (max-width: 550px) {
      .video-grid {
        grid-template-columns: 1fr;
      }