:root {
  --primary: #6f3798;
  --primary-dark: #5c2c82;
  --primary-soft: #8d67ad;
  --primary-light: #f3ebfb;
  --bg: #f7f2fb;
  --surface: #ffffff;
  --text: #2f2140;
  --muted: #6f6280;
  --border: #eadcf7;
  --shadow: 0 12px 30px rgba(111, 55, 152, 0.14);
  --shadow-strong: 0 20px 50px rgba(111, 55, 152, 0.20);
  --radius: 24px;
  --max: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.hero {
  padding: 24px 0 40px;
}

.hero-box {
  background: linear-gradient(135deg, var(--primary), var(--primary-soft));
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.hero-banner {
  width: 100%;
  max-height: 290px;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  text-align: center;
  color: #fff;
  padding: 42px 28px;
}

.eyebrow,
.section-badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
}

.eyebrow {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  margin-bottom: 16px;
}

.section-badge {
  background: var(--primary-light);
  color: var(--primary-dark);
  border: 1px solid var(--border);
  margin-bottom: 12px;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  margin-bottom: 14px;
}

.hero-content p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.05rem;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: #fff;
  color: var(--primary);
  border-color: var(--border);
}

.btn-secondary:hover {
  background: #fcf9ff;
  transform: translateY(-2px);
}

.section {
  padding: 28px 0 54px;
}

.channel-intro {
  padding-top: 0;
}

.intro-card {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 24px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
}

.intro-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.08;
  margin-bottom: 10px;
}

.intro-text p {
  color: var(--muted);
}

.intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.section-header h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.08;
  color: var(--primary-dark);
}

.section-intro {
  color: var(--muted);
  max-width: 420px;
  text-align: right;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.video-card,
.loading-card,
.error-box {
  background: var(--surface);
  border-radius: 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.loading-card {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  padding: 20px;
}

.video-thumb-link {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.video-card:hover .video-thumb {
  transform: scale(1.04);
}

.play-icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.play-icon span {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.88);
  color: var(--primary-dark);
  font-size: 28px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.video-info {
  padding: 20px;
}

.video-meta {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.video-info h3 {
  font-size: 1.08rem;
  line-height: 1.35;
  margin-bottom: 10px;
}

.video-info p {
  color: var(--muted);
  font-size: 0.94rem;
  margin-bottom: 14px;
}

.video-link {
  color: var(--primary);
  font-weight: 700;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
}

.about-media {
  min-height: 430px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background:
    linear-gradient(rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.12)),
    url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1200&q=80")
    center/cover no-repeat;
}

.about-copy {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px;
}

.about-copy h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.1;
  margin-bottom: 12px;
  color: var(--primary-dark);
}

.about-copy p {
  color: var(--muted);
}

.features {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.feature {
  background: #fcf9ff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px 18px;
}

.feature strong {
  display: block;
  margin-bottom: 4px;
}

.feature span {
  color: var(--muted);
  font-size: 0.95rem;
}

.cta {
  background: linear-gradient(135deg, #ffffff, #f4ecfb);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 38px 30px;
  text-align: center;
  box-shadow: var(--shadow);
}

.cta h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.08;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.cta p {
  color: var(--muted);
  max-width: 760px;
  margin: 0 auto;
}

footer {
  padding: 30px 0 44px;
}

.footer-wrap {
  border-top: 1px solid var(--border);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
}

.footer-wrap strong {
  color: var(--text);
}

.error-box {
  grid-column: 1 / -1;
  padding: 22px;
}

@media (max-width: 980px) {
  .videos-grid,
  .about,
  .intro-card {
    grid-template-columns: 1fr;
  }

  .section-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-intro {
    max-width: none;
    text-align: left;
  }

  .intro-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .hero-content {
    padding: 30px 20px;
  }

  .hero-actions,
  .intro-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .about-copy,
  .cta,
  .intro-card {
    padding: 22px;
  }
}
.hero-description{
  max-width:850px;
  margin:20px auto 0 auto;
  text-align:center;
  line-height:1.7;
  color:rgba(255,255,255,0.95);
  font-size:1rem;
}

.hero-description p{
  margin-bottom:12px;
}