@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

.ytcv-premium-channel-viewer,
.ytcv-premium-channel-viewer * {
  box-sizing: border-box;
  min-width: 0;
}

.ytcv-premium-channel-viewer {
  --ytcv-primary: #e62117;
  --ytcv-secondary: #ff6a3d;
  --ytcv-accent: #121212;
  --ytcv-soft: #fff4f1;
  --ytcv-text: #171717;
  --ytcv-muted: #626262;
  --ytcv-border: rgba(230, 33, 23, 0.16);
  --ytcv-shadow: rgba(230, 33, 23, 0.14);
  width: 100% !important;
  overflow: hidden;
  background: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

.ytcv-premium-channel-viewer .ytcv-section {
  width: 100% !important;
  overflow: hidden;
}

.ytcv-premium-channel-viewer .ytcv-section-one,
.ytcv-premium-channel-viewer .ytcv-section-three {
  background: #ffffff;
}

.ytcv-premium-channel-viewer .ytcv-section-two {
  background:
    radial-gradient(circle at 50% 0%, rgba(230, 33, 23, 0.08), transparent 36%),
    linear-gradient(180deg, #fff8f6 0%, #fff3ef 100%);
}

.ytcv-premium-channel-viewer .ytcv-container {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}

.ytcv-premium-channel-viewer h2,
.ytcv-premium-channel-viewer h3,
.ytcv-premium-channel-viewer p {
  text-align: center !important;
  margin-left: auto;
  margin-right: auto;
}

.ytcv-premium-channel-viewer h2 {
  color: var(--ytcv-text);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
  margin-top: 0;
}

.ytcv-premium-channel-viewer .ytcv-intro {
  color: var(--ytcv-muted);
  line-height: 1.7;
  margin-top: 0;
}

.ytcv-premium-channel-viewer .ytcv-grid {
  display: grid !important;
  align-items: stretch !important;
}

.ytcv-premium-channel-viewer .ytcv-card {
  position: relative;
  height: 100% !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 1)),
    radial-gradient(circle at 50% 0%, rgba(230, 33, 23, 0.08), transparent 42%);
  border: 1px solid var(--ytcv-border);
  box-shadow: 0 18px 45px var(--ytcv-shadow);
  text-align: center !important;
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background-position 260ms ease;
}

.ytcv-premium-channel-viewer .ytcv-card::after {
  content: "";
  position: absolute;
  inset: auto 18% 0 18%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--ytcv-primary), var(--ytcv-secondary), transparent);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.ytcv-premium-channel-viewer .ytcv-card:hover {
  transform: translateY(-7px) scale(1.01);
  border-color: rgba(230, 33, 23, 0.34);
  box-shadow: 0 26px 62px rgba(230, 33, 23, 0.2);
}

.ytcv-premium-channel-viewer .ytcv-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.ytcv-premium-channel-viewer .ytcv-icon {
  display: grid;
  place-items: center;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
  background: linear-gradient(135deg, var(--ytcv-primary), var(--ytcv-secondary));
  box-shadow: 0 14px 28px rgba(230, 33, 23, 0.24);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.ytcv-premium-channel-viewer .ytcv-card:hover .ytcv-icon {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(230, 33, 23, 0.3);
}

.ytcv-premium-channel-viewer .ytcv-i {
  line-height: 1;
  text-align: center !important;
}

.ytcv-premium-channel-viewer h3 {
  color: var(--ytcv-text);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
  margin-bottom: 0;
}

.ytcv-premium-channel-viewer .ytcv-card p {
  color: var(--ytcv-muted);
  line-height: 1.65;
  margin-bottom: 0;
}

.ytcv-premium-channel-viewer .ytcv-reveal {
  opacity: 1;
  transform: translateY(0);
}

.ytcv-premium-channel-viewer.ytcv-js-ready .ytcv-reveal {
  opacity: 0;
  transform: translateY(18px);
}

.ytcv-premium-channel-viewer.ytcv-js-ready .ytcv-reveal.ytcv-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

@media (min-width: 1024px) {
  .ytcv-premium-channel-viewer .ytcv-section {
    padding: 86px 0;
  }

  .ytcv-premium-channel-viewer .ytcv-container {
    padding: 0 28px;
  }

  .ytcv-premium-channel-viewer h2 {
    font-size: 42px;
    margin-bottom: 16px;
    white-space: nowrap;
  }

  .ytcv-premium-channel-viewer .ytcv-intro {
    max-width: 760px;
    font-size: 17px;
    margin-bottom: 38px;
  }

  .ytcv-premium-channel-viewer .ytcv-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ytcv-premium-channel-viewer .ytcv-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .ytcv-premium-channel-viewer .ytcv-grid {
    gap: 24px;
  }

  .ytcv-premium-channel-viewer .ytcv-card {
    min-height: 292px;
    padding: 34px 28px 32px;
    border-radius: 22px;
  }

  .ytcv-premium-channel-viewer .ytcv-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    margin-bottom: 24px;
    font-size: 29px;
  }

  .ytcv-premium-channel-viewer h3 {
    font-size: 21px;
    margin-top: 0;
  }

  .ytcv-premium-channel-viewer .ytcv-card p {
    font-size: 15px;
    margin-top: 14px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .ytcv-premium-channel-viewer .ytcv-section {
    padding: 68px 0;
  }

  .ytcv-premium-channel-viewer .ytcv-container {
    padding: 0 24px;
  }

  .ytcv-premium-channel-viewer h2 {
    font-size: 34px;
    margin-bottom: 14px;
  }

  .ytcv-premium-channel-viewer .ytcv-intro {
    max-width: 680px;
    font-size: 16px;
    margin-bottom: 30px;
  }

  .ytcv-premium-channel-viewer .ytcv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 20px;
  }

  .ytcv-premium-channel-viewer .ytcv-card {
    min-height: 266px;
    padding: 30px 24px 28px;
    border-radius: 20px;
  }

  .ytcv-premium-channel-viewer .ytcv-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    margin-bottom: 20px;
    font-size: 26px;
  }

  .ytcv-premium-channel-viewer h3 {
    font-size: 19px;
    margin-top: 0;
  }

  .ytcv-premium-channel-viewer .ytcv-card p {
    font-size: 14.5px;
    margin-top: 12px;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .ytcv-premium-channel-viewer .ytcv-section {
    padding: 52px 0;
  }

  .ytcv-premium-channel-viewer .ytcv-container {
    padding: 0 16px;
  }

  .ytcv-premium-channel-viewer h2 {
    font-size: 27px;
    margin-bottom: 12px;
  }

  .ytcv-premium-channel-viewer .ytcv-intro {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .ytcv-premium-channel-viewer .ytcv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px;
  }

  .ytcv-premium-channel-viewer .ytcv-card {
    min-height: 236px;
    padding: 22px 14px 20px;
    border-radius: 16px;
  }

  .ytcv-premium-channel-viewer .ytcv-icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    margin-bottom: 16px;
    font-size: 21px;
  }

  .ytcv-premium-channel-viewer h3 {
    font-size: 16px;
    margin-top: 0;
  }

  .ytcv-premium-channel-viewer .ytcv-card p {
    font-size: 13px;
    line-height: 1.5;
    margin-top: 10px;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .ytcv-premium-channel-viewer .ytcv-section {
    padding: 46px 0;
  }

  .ytcv-premium-channel-viewer .ytcv-container {
    padding: 0 12px;
  }

  .ytcv-premium-channel-viewer h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .ytcv-premium-channel-viewer .ytcv-intro {
    font-size: 13.5px;
    line-height: 1.55;
    margin-bottom: 20px;
  }

  .ytcv-premium-channel-viewer .ytcv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px;
  }

  .ytcv-premium-channel-viewer .ytcv-card {
    min-height: 226px;
    padding: 19px 11px 18px;
    border-radius: 14px;
  }

  .ytcv-premium-channel-viewer .ytcv-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    margin-bottom: 14px;
    font-size: 19px;
  }

  .ytcv-premium-channel-viewer h3 {
    font-size: 15px;
    margin-top: 0;
  }

  .ytcv-premium-channel-viewer .ytcv-card p {
    font-size: 12.5px;
    line-height: 1.45;
    margin-top: 9px;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .ytcv-premium-channel-viewer .ytcv-section {
    padding: 40px 0;
  }

  .ytcv-premium-channel-viewer .ytcv-container {
    padding: 0 10px;
  }

  .ytcv-premium-channel-viewer h2 {
    font-size: 22px;
    margin-bottom: 9px;
  }

  .ytcv-premium-channel-viewer .ytcv-intro {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 18px;
  }

  .ytcv-premium-channel-viewer .ytcv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px;
  }

  .ytcv-premium-channel-viewer .ytcv-card {
    min-height: 218px;
    padding: 17px 9px 16px;
    border-radius: 13px;
  }

  .ytcv-premium-channel-viewer .ytcv-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    margin-bottom: 12px;
    font-size: 18px;
  }

  .ytcv-premium-channel-viewer h3 {
    font-size: 14px;
    margin-top: 0;
  }

  .ytcv-premium-channel-viewer .ytcv-card p {
    font-size: 12px;
    line-height: 1.42;
    margin-top: 8px;
  }
}