@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/Syne-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/Syne-Bold.ttf') format('truetype');
}

@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/Syne-ExtraBold.ttf') format('truetype');
}


:root {
  --bg: #090909;
  --bg-soft: #121212;
  --panel: #161616;
  --panel-2: #1d1d1d;
  --card: #202020;
  --border: rgba(255, 255, 255, .08);
  --text: #ffffff;
  --muted: #b8b8b8;
  --primary: #71F336;
  --primary-2: #5ad528;
  --success: #71F336;
  --warning: #f59e0b;
  --shadow: 0 18px 50px rgba(0, 0, 0, .35);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1200px;
  --body-font: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font2: 'Syne', sans-serif;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: var(--body-font);
  background: linear-gradient(180deg, #060606 0%, #0d0d0d 100%);
  color: var(--text);
}

body.no-scroll {
  overflow: hidden
}

a {
  text-decoration: none;
  color: inherit
}

button,
input {
  font: inherit
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(9, 9, 9, .78);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: .3px
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), #8f0c11);
  display: grid;
  place-items: center;
  font-size: 22px;
  box-shadow: var(--shadow)
}

.logo-text {
  font-size: 18px;
  font-family: var(--font2);
}

.main-nav {
  display: flex;
  gap: 22px
}

.main-nav a {
  color: var(--muted);
  transition: .2s
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text)
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px
}

.search-box input {
  width: 220px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px 14px;
  border-radius: 999px;
  outline: none
}

.search-box input::placeholder {
  color: #949494
}

.btn {
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  transition: transform .2s ease, opacity .2s ease, background .2s ease, color .2s ease;
}

.btn:hover {
  transform: translateY(-1px)
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff
}

.btn-secondary {
  background: #fff;
  color: #111
}

.btn-ghost {
  background: rgba(255, 255, 255, .06);
  color: #fff;
  border: 1px solid var(--border);
  font-family: var(--font2);
}

.btn.small {
  padding: 10px 14px;
  font-size: 14px
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 42px;
  height: 42px
}

.hamburger span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 6px 0;
  border-radius: 99px
}



.content-row-section,
.movie-detail-section,
.player-section,
.pricing-section,
.admin-section {
  padding: 88px 0
}

.content-row-section.alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, .015), transparent)
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 28px
}

.section-head.center {
  display: block;
  text-align: center
}

h1,
h2,
h3,
.vh-title,
.ms-content h2,
.p-card h3,
.ft-content h2 {
  font-family: var(--font2);
}

.section-head h2 {
  margin: 0;
  font-size: 36px
}

.section-head p,
.section-head a {
  margin: 10px 0 0;
  color: var(--muted)
}

.card-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px
}

.media-card {
  background: transparent;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
  cursor: pointer;
  position: relative;
}

.media-card:hover {
  transform: translateY(-8px);
}

.media-thumb {
  width: 100%;
  aspect-ratio: 2/3;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
}

.media-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.media-card:hover .media-thumb img {
  transform: scale(1.1);
}

.media-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, transparent 50%);
  opacity: 1;
  transition: 0.3s;
}

.media-card:hover .media-thumb::after {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, transparent 60%);
}

.media-info-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  transform: translateY(100%);
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  opacity: 0;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.media-card:hover .media-info-overlay {
  transform: translateY(0);
  opacity: 1;
}

.media-age {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.media-footer {
  padding: 12px 0;
}

.media-subtitle {
  font-size: 13px;
  color: #fff;
  margin-bottom: 12px;
  font-weight: 500;
  opacity: 0.9;
}

.media-badges {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
}

.m-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 800;
}

.m-badge.imdb {
  color: #f5c518;
}

.m-badge.kinopoisk {
  color: #ff6600;
}

.m-badge.itv {
  color: #71F336;
}

.media-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.media-tag {
  font-size: 13px;
  font-weight: 600;
}

.media-tag.buy {
  color: #f59e0b;
}

.media-tag.sub {
  color: #71F336;
}

/* Channels Marquee */
.channels-section {
  padding: 40px 0;
  overflow: hidden;
}

.marquee-container {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  position: relative;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 15px;
  animation: marqueeMove 30s linear infinite;
}

@keyframes marqueeMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.channel-card {
  flex: 0 0 140px;
  height: 140px;
  background: #fff;
  border-radius: 16px;
  display: grid;
  place-items: center;
  padding: 15px;
  transition: 0.3s;
}

.channel-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(113, 243, 54, 0.2);
}

.channel-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Cinemas Section */
.cinemas-section {
  padding: 40px 0;
}

.cinema-row {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 20px;
  scrollbar-width: none;
}

.cinema-row::-webkit-scrollbar {
  display: none;
}

.cinema-card {
  flex: 0 0 200px;
  height: 120px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: 0.3s;
}

.cinema-card:hover {
  transform: translateY(-5px);
  filter: brightness(1.1);
}

.cinema-card img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.detail-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 36px;
  align-items: center
}

.detail-content h2 {
  font-size: 48px;
  margin: 12px 0
}

.detail-description {
  color: #d6d6d6;
  line-height: 1.8;
  font-size: 17px
}

.detail-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
  margin: 22px 0 28px;
  color: #e5e5e5
}

.detail-meta-grid div {
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  padding: 14px 16px;
  border-radius: 14px
}

.player-shell {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 18px;
  box-shadow: var(--shadow)
}

.player-screen {
  aspect-ratio: 16/9;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 50% 35%, rgba(229, 9, 20, .18), transparent 18%),
    linear-gradient(135deg, #151515, #090909 55%, #1f0f12)
}

.player-screen::before {
  content: "Protected HLS Stream";
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .55);
  border: 1px solid var(--border);
  color: #fff;
  font-size: 13px;
  font-weight: 700
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff
}

.player-center-btn {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #111;
  background: #fff;
  box-shadow: var(--shadow)
}

.player-title {
  position: absolute;
  left: 22px;
  bottom: 20px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(0, 0, 0, .42)
}

.player-controls {
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  gap: 12px;
  align-items: center;
  margin-top: 16px
}

.control-btn {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .05);
  color: #fff;
  cursor: pointer
}

#progressBar {
  width: 100%
}

.time-label {
  color: var(--muted);
  font-size: 14px
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px
}

.pricing-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow)
}

.modal-actions,
.helper-row,
.hero-buttons {
  flex-direction: column;
  align-items: stretch
}

/* --- NEW SECTIONS --- */
/* Mega Sale Banner */
.mega-sale-banner {
  background-color: #71F336;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 40px;
  margin: 30px auto;
  color: #000;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(113, 243, 54, 0.2);
  isolation: isolate;
  margin-top: 40px;
  z-index: 1;
  clip-path: inset(0 round 20px);
}

.mega-sale-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 0;
  padding-bottom: 200%;
  background: repeating-conic-gradient(from 0deg, rgb(0 0 0 / 4%) 0deg 10deg, transparent 10deg 20deg);
  transform: translate(-50%, -50%);
  animation: rotateSunburst 60s linear infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes rotateSunburst {
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.ms-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.ms-badge {
  background: #111;
  color: #71F336;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 15px;
}

.ms-content h2 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: 2px;
  margin: 0;
  text-transform: uppercase;
  font-family: var(--font2);
}

.ms-content p {
  font-weight: 600;
  font-size: 16px;
  margin: 10px 0 0;
}

.ms-posters {
  display: flex;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.ms-posters img {
  height: 180px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
  aspect-ratio: 16/9;
}

.ms-img {
  height: 300px;
  position: relative;
  z-index: 1;
  margin-top: -30px;
  margin-bottom: -30px;
}

/* 3-Item Slider */
.highlight-slider-section {
  padding: 60px 0;
  background: #000;
  overflow: hidden;
}

.highlight-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.hs-item {
  width: 260px;
  height: 160px;
  transition: 0.4s ease;
  cursor: pointer;
  border-radius: 16px;
  overflow: hidden;
  opacity: 0.6;
  transform: scale(0.9);
}

.hs-item.active {
  width: 380px;
  height: 230px;
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.hs-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* Video Background Hero */
.video-hero {
  position: relative;
  height: 85vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: #111;
  overflow: hidden;
  margin-bottom: 40px;
  z-index: 10;
}

.vh-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.vh-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transition: opacity 0.5s ease;
}

.vh-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #090909 20%, transparent 80%), linear-gradient(0deg, #090909 5%, transparent 40%);
}

.vh-content {
  position: relative;
  z-index: 1;
}

.vh-genre {
  color: #71F336;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.vh-title {
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  max-width: 600px;
  transition: opacity 0.4s ease;
}

.vh-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}

.vh-meta span {
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.vh-meta span.star {
  background: transparent;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
}

.vh-desc {
  max-width: 600px;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 30px;
  font-size: 15px;
}

.vh-actions {
  display: flex;
  gap: 15px;
}

.btn-play-now {
  background: #71F336;
  color: #000;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}

.btn-detail {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}

.vh-indicators {
  position: absolute;
  bottom: 40px;
  right: 5%;
  display: flex;
  gap: 15px;
  z-index: 5;
}

.vh-indicator {
  width: 60px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
}

.vh-progress {
  width: 0;
  height: 100%;
  background: var(--primary);
}

.vh-indicator.active .vh-progress {
  animation: progressFill 3s linear forwards;
}

@keyframes progressFill {
  from { width: 0; }
  to { width: 100%; }
}

.vh-nav-btn {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 18px;
}

.vh-volume-btn {
  position: absolute;
  right: 40px;
  bottom: 140px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
}

/* Pricing Plans */
.pricing-section-new {
  padding: 80px 0;
  background: #000;
  text-align: center;
}

.pricing-header {
  margin-bottom: 50px;
}

.pricing-header h2 {
  font-size: 42px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.pricing-header p {
  color: #aaa;
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  align-items: stretch;
}

.p-card {
  background: #0c0c0c;
  padding: 40px 30px;
  border-radius: 12px;
  width: 320px;
  text-align: left;
}

.p-card.featured {
  background: #1f1f25;
  transform: scale(1.05);
}

.p-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
  text-align: center;
}

.p-card .p-price {
  font-size: 40px;
  font-weight: 900;
  color: #71F336;
  text-align: center;
  margin-bottom: 30px;
  font-family: var(--font2);
}

.p-card .p-price small {
  font-size: 16px;
  color: #aaa;
  font-style: normal;
  font-weight: 400;
}

.p-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.p-card ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 15px;
  color: #ccc;
  font-size: 15px;
}

.p-card ul li::before {
  content: 'o';
  position: absolute;
  left: 0;
  color: #71F336;
  font-size: 20px;
  line-height: 15px;
}

.p-btn {
  width: 100%;
  background: transparent;
  border: 1px solid #71F336;
  color: #71F336;
  padding: 12px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  margin-bottom: 15px;
}

.p-btn:hover {
  background: #71F336;
  color: #000;
}

.p-about {
  display: block;
  text-align: center;
  color: #ccc;
  font-size: 13px;
  text-decoration: underline;
}

/* Free Trial Section */
.free-trial-section {
  position: relative;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ft-bg {
  position: absolute;
  inset: 0;
  background-image: url(https://beeble.jwsuperthemes.com/wp-content/uploads/2023/02/bg_multi_movies.jpg);
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.ft-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #060606, transparent 50%, #060606);
}

.ft-content {
  position: relative;
  z-index: 1;
}

.ft-content h2 {
  font-size: 30px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.1;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.ft-content p {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 30px;
}

.ft-btn {
  background: #71F336;
  color: #265e0d;
  font-size: 20px;
  font-weight: 500;
  padding: 15px 40px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s;
}

.ft-btn:hover {
  transform: scale(1.05);
}

.modal-actions,
.helper-row,
.hero-buttons {
  flex-direction: column;
  align-items: stretch
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
  background: #090909;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 24px;
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #aaa;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #161616;
  padding: 14px 20px;
  border-radius: 12px;
  margin-bottom: 12px;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid var(--border);
}

.app-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.app-badge {
  background: #161616;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
  text-decoration: none;
}

.app-badge:hover {
  background: #202020;
  border-color: #333;
}

.app-badge img {
  width: 24px;
  height: 24px;
}

.app-badge-text span {
  display: block;
  font-size: 10px;
  color: #aaa;
}

.app-badge-text strong {
  display: block;
  font-size: 13px;
  color: #fff;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 40px);
  gap: 12px;
}

.social-btn {
  width: 40px;
  height: 40px;
  background: #161616;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  transition: 0.3s;
  text-decoration: none;
}

.social-btn:hover {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #666;
  font-size: 13px;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: #666;
  text-decoration: none;
}

.footer-legal a:hover {
  color: #fff;
}

/* Media Queries */
@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }

  .vh-thumbnails {
    display: none;
  }
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .main-nav {
    display: none;
  }

  .vh-title {
    font-size: 48px;
  }

  .ms-content h2 {
    font-size: 32px;
  }
}

/* Modals */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal.open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(420px, 95%);
  background: rgba(18, 18, 18, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 45px 35px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  animation: modalPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalPop {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-header {
  text-align: center;
  margin-bottom: 30px;
}

.modal-header h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 10px;
  font-family: var(--font2);
}

.modal-header p {
  color: #888;
  font-size: 14px;
  line-height: 1.5;
}

.modal-close {
  position: absolute;
  top: 25px;
  right: 25px;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.modal-close:hover {
  opacity: 1;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #aaa;
}

.form-group input {
  width: 100%;
  background: #1a1a1a;
  border: 1px solid var(--border);
  padding: 14px;
  border-radius: 12px;
  color: #fff;
  outline: none;
}

.form-group input:focus {
  border-color: var(--primary);
}

.otp-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.otp-input {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  transition: 0.3s;
  background: rgba(255, 255, 255, 0.05) !important;
}

.otp-input:focus {
  background: rgba(255, 255, 255, 0.1) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(113, 243, 54, 0.2);
}

.modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 30px;
}

.modal-actions .btn {
  padding: 14px;
  border-radius: 14px;
  font-size: 15px;
}

.modal-helper {
  margin-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #666;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
}

.auth-status {
  color: var(--primary);
  font-weight: 600;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #71F336;
  color: #000;
  padding: 15px 25px;
  border-radius: 12px;
  font-weight: 700;
  transform: translateY(100px);
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 2000;
  box-shadow: 0 10px 30px rgba(113, 243, 54, 0.3);
}

.toast.show {
  transform: translateY(0);
}