@view-transition { navigation: auto; }
 body {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: "Lalezar", sans-serif;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      min-height: 100%;
      width: 100%;
    }

    * {
      box-sizing: border-box;
    }

    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 20px;
    }

    .header {
      text-align: center;
      margin-bottom: 40px;
    }

    .header h1 {
      color: #ffffff;
      font-size: 48px;
      margin: 0;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    }

    .accordion {
      background: #ffffff;
      border-radius: 12px;
      margin-bottom: 20px;
      overflow: hidden;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
    }

    .accordion:hover {
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

    .accordion-header {
      background: #f8f9fa;
      padding: 20px 25px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background 0.3s ease;
      border-bottom: 2px solid transparent;
    }

    .accordion-header:hover {
      background: #e9ecef;
    }

    .accordion-header.active {
      background: #667eea;
      border-bottom-color: #5568d3;
    }

    .accordion-title {
      font-size: 24px;
      font-weight: bold;
      color: #2d3748;
      margin: 0;
    }

    .accordion-header.active .accordion-title {
      color: #ffffff;
    }

    .accordion-icon {
      font-size: 24px;
      color: #667eea;
      transition: transform 0.3s ease;
    }

    .accordion-header.active .accordion-icon {
      transform: rotate(180deg);
      color: #ffffff;
    }

    .accordion-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
      background: #ffffff;
    }

    .accordion-content.active {
      max-height: 3000px;
    }

    .items-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      padding: 30px 25px;
    }

    .video-item {
      background: #f8f9fa;
      border-radius: 10px;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .video-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    }

    .thumbnail-container {
      position: relative;
      width: 100%;
      padding-bottom: 56.25%;
      background: #000000;
      cursor: pointer;
      overflow: hidden;
    }

    .thumbnail {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: opacity 0.3s ease;
    }

    .play-overlay {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 60px;
      height: 60px;
      background: rgba(102, 126, 234, 0.9);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      pointer-events: none;
    }

    .play-overlay::before {
      content: '▶';
      color: #ffffff;
      font-size: 24px;
      margin-right: -4px;
    }

    .thumbnail-container:hover .play-overlay {
      transform: translate(-50%, -50%) scale(1.1);
      background: rgba(102, 126, 234, 1);
    }

    .video-iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: none;
    }

    .item-content {
      padding: 20px;
    }

    .item-title {
      font-size: 18px;
      font-weight: bold;
      color: #2d3748;
      margin: 0 0 15px 0;
    }

    .open-button {
      width: 100%;
      padding: 12px 20px;
      background: #667eea;
      color: #ffffff;
      border: none;
      border-radius: 6px;
      font-size: 16px;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
      font-family: inherit;
    }

    .open-button:hover {
      background: #5568d3;
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(102, 126, 234, 0.3);
    }

    .open-button:active {
      transform: translateY(0);
    }

    @media (max-width: 768px) {
      .header h1 {
        font-size: 32px;
      }

      .accordion-title {
        font-size: 20px;
      }

      .items-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
      }

      .container {
        padding: 20px 10px;
      }
    }
	
	
	/* From Uiverse.io by Codecite */ 
.btn {
  transition: all 0.3s ease-in-out;
  font-family: "Dosis", sans-serif;
}

.btn {
	font-family: "Lalezar", sans-serif;
  width: 150px;
  height: 30px;
  border-radius: 50px;
  background-image: linear-gradient(135deg, #feb692 0%, #ea5455 100%);
  box-shadow: 0 20px 30px -6px rgba(238, 103, 97, 0.5);
  outline: none;
  cursor: pointer;
  border: none;
  font-size: 24px;
  color: white;
}

.btn:hover {
  transform: translateY(3px);
  box-shadow: none;
}

.btn:active {
  opacity: 0.5;
}