@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');

.ytvd-premium-wrap,
.ytvd-premium-wrap * {
  box-sizing: border-box;
  min-width: 0;
}

.ytvd-premium-wrap {
  width: 100% !important;
  overflow: hidden;
  background: #ffffff;
  color: #17212b;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ytvd-premium-wrap .ytvd-section {
  width: 100% !important;
}

.ytvd-premium-wrap .ytvd-section-white {
  background: #ffffff;
}

.ytvd-premium-wrap .ytvd-section-tint {
  background: linear-gradient(180deg, #fff7f5 0%, #f8fbfd 100%);
}

.ytvd-premium-wrap .ytvd-container {
  max-width: 1200px !important;
  width: 100% !important;
  margin: 0 auto !important;
}

.ytvd-premium-wrap h2,
.ytvd-premium-wrap h3,
.ytvd-premium-wrap p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.ytvd-premium-wrap h2 {
  color: #111827;
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 14px;
}

.ytvd-premium-wrap .ytvd-intro {
  color: #52606d;
  line-height: 1.7;
  max-width: 760px;
  margin-top: 0;
}

.ytvd-premium-wrap .ytvd-grid {
  display: grid !important;
  align-items: stretch !important;
  width: 100%;
}

.ytvd-premium-wrap .ytvd-card {
  position: relative;
  height: 100% !important;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fffdfc 100%);
  border: 1px solid #f1d5cf;
  box-shadow: 0 18px 45px rgba(194, 45, 31, 0.09);
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease, background 280ms ease;
}

.ytvd-premium-wrap .ytvd-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% -15%, rgba(255, 0, 0, 0.13), transparent 48%);
  opacity: 0;
  transition: opacity 280ms ease, transform 280ms ease;
  pointer-events: none;
}

.ytvd-premium-wrap .ytvd-card:hover {
  transform: translateY(-8px);
  border-color: #ffb0a6;
  box-shadow: 0 26px 70px rgba(194, 45, 31, 0.16);
  background: linear-gradient(180deg, #ffffff 0%, #fff8f6 100%);
}

.ytvd-premium-wrap .ytvd-card:hover::before {
  opacity: 1;
  transform: translateY(8px);
}

.ytvd-premium-wrap .ytvd-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
  background: linear-gradient(135deg, #ff0000 0%, #c22d1f 54%, #ff8a00 100%);
  box-shadow: 0 14px 28px rgba(255, 0, 0, 0.2);
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.ytvd-premium-wrap .ytvd-card:hover .ytvd-icon {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 18px 34px rgba(255, 0, 0, 0.26);
}

.ytvd-premium-wrap .ytvd-i {
  display: block;
  color: #ffffff;
  line-height: 1;
  text-align: center;
}

.ytvd-premium-wrap h3 {
  position: relative;
  z-index: 1;
  color: #18202a;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
  margin-top: 0;
}

.ytvd-premium-wrap .ytvd-card p {
  position: relative;
  z-index: 1;
  color: #5a6673;
  line-height: 1.62;
  margin-top: 0;
  margin-bottom: 0;
}

.ytvd-premium-wrap .ytvd-card.ytvd-reveal {
  opacity: 0;
  transform: translateY(18px);
}

.ytvd-premium-wrap .ytvd-card.ytvd-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1024px) {
  .ytvd-premium-wrap .ytvd-section {
    padding: 86px 0;
  }

  .ytvd-premium-wrap .ytvd-container {
    padding: 0 28px;
  }

  .ytvd-premium-wrap h2 {
    font-size: 42px;
    white-space: nowrap;
  }

  .ytvd-premium-wrap .ytvd-intro {
    font-size: 17px;
    margin-bottom: 42px;
  }

  .ytvd-premium-wrap .ytvd-grid {
    gap: 24px;
  }

  .ytvd-premium-wrap .ytvd-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ytvd-premium-wrap .ytvd-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .ytvd-premium-wrap .ytvd-card {
    min-height: 300px;
    padding: 34px 26px;
    border-radius: 24px;
  }

  .ytvd-premium-wrap .ytvd-icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    margin-bottom: 22px;
  }

  .ytvd-premium-wrap .ytvd-i {
    font-size: 29px;
  }

  .ytvd-premium-wrap h3 {
    font-size: 20px;
    margin-bottom: 13px;
  }

  .ytvd-premium-wrap .ytvd-card p {
    font-size: 15px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .ytvd-premium-wrap .ytvd-section {
    padding: 70px 0;
  }

  .ytvd-premium-wrap .ytvd-container {
    padding: 0 24px;
  }

  .ytvd-premium-wrap h2 {
    font-size: 34px;
  }

  .ytvd-premium-wrap .ytvd-intro {
    font-size: 16px;
    margin-bottom: 34px;
  }

  .ytvd-premium-wrap .ytvd-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .ytvd-premium-wrap .ytvd-card {
    min-height: 268px;
    padding: 30px 22px;
    border-radius: 22px;
  }

  .ytvd-premium-wrap .ytvd-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    margin-bottom: 19px;
  }

  .ytvd-premium-wrap .ytvd-i {
    font-size: 26px;
  }

  .ytvd-premium-wrap h3 {
    font-size: 19px;
    margin-bottom: 12px;
  }

  .ytvd-premium-wrap .ytvd-card p {
    font-size: 14px;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .ytvd-premium-wrap .ytvd-section {
    padding: 54px 0;
  }

  .ytvd-premium-wrap .ytvd-container {
    padding: 0 16px;
  }

  .ytvd-premium-wrap h2 {
    font-size: 28px;
  }

  .ytvd-premium-wrap .ytvd-intro {
    font-size: 14px;
    line-height: 1.62;
    margin-bottom: 24px;
  }

  .ytvd-premium-wrap .ytvd-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .ytvd-premium-wrap .ytvd-card {
    min-height: 236px;
    padding: 22px 14px;
    border-radius: 18px;
  }

  .ytvd-premium-wrap .ytvd-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    margin-bottom: 15px;
  }

  .ytvd-premium-wrap .ytvd-i {
    font-size: 22px;
  }

  .ytvd-premium-wrap h3 {
    font-size: 16px;
    margin-bottom: 9px;
  }

  .ytvd-premium-wrap .ytvd-card p {
    font-size: 13px;
    line-height: 1.5;
  }
}

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

  .ytvd-premium-wrap .ytvd-container {
    padding: 0 13px;
  }

  .ytvd-premium-wrap h2 {
    font-size: 24px;
  }

  .ytvd-premium-wrap .ytvd-intro {
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 20px;
  }

  .ytvd-premium-wrap .ytvd-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
  }

  .ytvd-premium-wrap .ytvd-card {
    min-height: 222px;
    padding: 19px 11px;
    border-radius: 16px;
  }

  .ytvd-premium-wrap .ytvd-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    margin-bottom: 13px;
  }

  .ytvd-premium-wrap .ytvd-i {
    font-size: 20px;
  }

  .ytvd-premium-wrap h3 {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .ytvd-premium-wrap .ytvd-card p {
    font-size: 12px;
    line-height: 1.45;
  }
}

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

  .ytvd-premium-wrap .ytvd-container {
    padding: 0 10px;
  }

  .ytvd-premium-wrap h2 {
    font-size: 21px;
  }

  .ytvd-premium-wrap .ytvd-intro {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 18px;
  }

  .ytvd-premium-wrap .ytvd-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .ytvd-premium-wrap .ytvd-card {
    min-height: 214px;
    padding: 17px 9px;
    border-radius: 14px;
  }

  .ytvd-premium-wrap .ytvd-icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    margin-bottom: 11px;
  }

  .ytvd-premium-wrap .ytvd-i {
    font-size: 18px;
  }

  .ytvd-premium-wrap h3 {
    font-size: 14px;
    margin-bottom: 7px;
  }

  .ytvd-premium-wrap .ytvd-card p {
    font-size: 11px;
    line-height: 1.42;
  }
}

@media (max-width: 319px) {
  .ytvd-premium-wrap .ytvd-section {
    padding: 36px 0;
  }

  .ytvd-premium-wrap .ytvd-container {
    padding: 0 10px;
  }

  .ytvd-premium-wrap h2 {
    font-size: 20px;
  }

  .ytvd-premium-wrap .ytvd-intro {
    font-size: 12px;
    margin-bottom: 16px;
  }

  .ytvd-premium-wrap .ytvd-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .ytvd-premium-wrap .ytvd-card {
    min-height: 210px;
    padding: 18px 12px;
    border-radius: 14px;
  }

  .ytvd-premium-wrap .ytvd-icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    margin-bottom: 11px;
  }

  .ytvd-premium-wrap .ytvd-i {
    font-size: 18px;
  }

  .ytvd-premium-wrap h3 {
    font-size: 14px;
    margin-bottom: 7px;
  }

  .ytvd-premium-wrap .ytvd-card p {
    font-size: 12px;
  }
}