/**
 * StreamXHub — Professional Enhancements
 * Video badges, live chat, GIF containers, hero banners,
 * partners, categories page, premium page
 * Version 2.0
 */

/* ============================================================
   VIDEO BADGES
   ============================================================ */
.video-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  color: #fff;
  padding: 4px 9px;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  background: linear-gradient(135deg, #ff0055 0%, #ff4488 100%);
  box-shadow: 0 3px 10px rgba(255, 0, 85, 0.4);
  animation: badgePulse 2.5s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 3px 10px rgba(255, 0, 85, 0.4); }
  50%       { box-shadow: 0 5px 18px rgba(255, 0, 85, 0.65); }
}

.video-badge.badge-4k {
  background: linear-gradient(135deg, #00cfff 0%, #0066ff 100%);
  box-shadow: 0 3px 10px rgba(0, 207, 255, 0.4);
  animation: badge4kPulse 2.5s ease-in-out infinite;
}

@keyframes badge4kPulse {
  0%, 100% { box-shadow: 0 3px 10px rgba(0, 207, 255, 0.4); }
  50%       { box-shadow: 0 5px 18px rgba(0, 207, 255, 0.65); }
}

.video-badge.badge-hd {
  background: linear-gradient(135deg, #ffc947 0%, #ff9500 100%);
  box-shadow: 0 3px 10px rgba(255, 165, 0, 0.4);
  animation: none;
}

.video-badge.badge-live {
  background: linear-gradient(135deg, #ff0033 0%, #cc0022 100%);
  animation: liveBadgePulse 1.6s ease-in-out infinite;
}

@keyframes liveBadgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 0, 51, 0.7); }
  50%       { box-shadow: 0 0 0 8px rgba(255, 0, 51, 0); }
}

/* ============================================================
   GIF CONTAINERS
   ============================================================ */
.gif-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(145deg, #1a1a2c 0%, #0f0f1e 100%);
  border: 1px solid rgba(255, 0, 85, 0.2);
}

.gif-container video,
.gif-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gif-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: #ff0055;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 0, 85, 0.2);
}

/* GIF showcase grid */
.gif-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
  margin: 24px 0;
}

.gif-item {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: linear-gradient(145deg, #1a1a2c 0%, #0f0f1e 100%);
  border: 1px solid rgba(255, 0, 85, 0.15);
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease,
              box-shadow 0.3s ease;
}

.gif-item:hover {
  transform: scale(1.06);
  border-color: rgba(255, 0, 85, 0.5);
  box-shadow: 0 12px 36px rgba(255, 0, 85, 0.28);
}

.gif-item video,
.gif-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gif-item:hover video,
.gif-item:hover img { transform: scale(1.1); }

.gif-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.7) 100%);
  display: flex;
  align-items: flex-end;
  padding: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gif-item:hover .gif-overlay { opacity: 1; }

.gif-label {
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================================
   LIVE CHAT PANEL
   ============================================================ */
.live-chat-panel {
  background: linear-gradient(160deg, #0d0d1a 0%, #0a0014 100%);
  border: 1px solid rgba(255, 0, 85, 0.25);
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.6), 0 0 32px rgba(255,0,85,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 600px;
}

.chat-header {
  background: linear-gradient(135deg, #ff0055 0%, #cc0040 100%);
  padding: 14px 16px;
  font-weight: 800;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

.chat-header .live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.2);
}

.chat-header .live-indicator::before {
  content: '';
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
  animation: chatDotPulse 1.8s ease-in-out infinite;
}

@keyframes chatDotPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(10, 0, 20, 0.6);
}

.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-track { background: transparent; }
.chat-messages::-webkit-scrollbar-thumb { background: rgba(255,0,85,0.35); border-radius: 2px; }
.chat-messages::-webkit-scrollbar-thumb:hover { background: rgba(255,0,85,0.65); }

.chat-msg {
  display: flex;
  gap: 10px;
  animation: messageSlide 0.35s ease both;
}

@keyframes messageSlide {
  from { opacity: 0; transform: translateX(-12px); }
  to   { opacity: 1; transform: translateX(0); }
}

.chat-msg .avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff0055, #ff4488);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 11px;
  color: #fff;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.12);
}

.chat-msg .message-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}

.chat-user {
  font-weight: 800;
  font-size: 12px;
  color: #ff6699;
  display: flex;
  align-items: center;
  gap: 6px;
}

.user-badge {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: rgba(255, 0, 85, 0.18);
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 10px;
  color: #ffaa00;
  font-weight: 700;
}

.chat-text {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.45;
  word-break: break-word;
}

.chat-time {
  font-size: 10px;
  color: rgba(255,255,255,0.25);
}

.chat-input-area {
  padding: 12px;
  background: rgba(255, 0, 85, 0.04);
  border-top: 1px solid rgba(255, 0, 85, 0.15);
  display: flex;
  gap: 8px;
}

.chat-input-area input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 0, 85, 0.2);
  color: #fff;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 13px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.chat-input-area input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 0, 85, 0.55);
  box-shadow: 0 0 0 3px rgba(255, 0, 85, 0.12);
}

.chat-input-area input::placeholder { color: rgba(255,255,255,0.28); }

.chat-send {
  background: linear-gradient(135deg, #ff0055 0%, #ff4488 100%);
  color: #fff;
  border: none;
  padding: 9px 16px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 12px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.chat-send:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 0, 85, 0.4);
}

.chat-send:active { transform: translateY(0); }

/* ============================================================
   ENHANCED VIDEO CARDS
   ============================================================ */
.video-card-enhanced {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(145deg, #1a1a2c 0%, #0f0f1e 100%);
  border: 1px solid rgba(255, 0, 85, 0.15);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.4s ease, border-color 0.3s ease;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

.video-card-enhanced:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 56px rgba(255, 0, 85, 0.28);
  border-color: rgba(255, 0, 85, 0.45);
}

.video-thumbnail {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: linear-gradient(145deg, #1a1a2c 0%, #0f0f1e 100%);
}

.video-thumbnail img,
.video-thumbnail video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.25, 1, 0.5, 1);
  display: block;
}

.video-card-enhanced:hover .video-thumbnail img,
.video-card-enhanced:hover .video-thumbnail video { transform: scale(1.14); }

.play-button-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 20%, rgba(0,0,0,0.65) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-card-enhanced:hover .play-button-overlay { opacity: 1; }

.play-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #ff0055 0%, #ff4488 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 8px 28px rgba(255, 0, 85, 0.55);
  animation: playBreath 2s ease-in-out infinite;
}

@keyframes playBreath {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.08); }
}

.quality-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 15;
  background: linear-gradient(135deg, #00cfff 0%, #0066ff 100%);
  color: #fff;
  padding: 4px 9px;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0, 207, 255, 0.4);
}

.video-info {
  padding: 13px 14px;
  background: linear-gradient(180deg, #111120 0%, #0c0c1a 100%);
}

.video-title {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.45;
}

.video-meta {
  display: flex;
  gap: 8px;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  align-items: center;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 3px;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-with-gifs { position: relative; overflow: hidden; }

.section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 0, 85, 0.15);
}

.section-title {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 900;
  background: linear-gradient(135deg, #ff0055 0%, #ff8833 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  letter-spacing: -0.3px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 20px;
  background: linear-gradient(180deg, #ff0055, #ff8833);
  border-radius: 999px;
  flex-shrink: 0;
  -webkit-text-fill-color: unset;
  background-clip: unset;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.stat-number {
  font-size: 22px;
  font-weight: 900;
  color: #ff0055;
  letter-spacing: -0.5px;
}

.stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 700;
}

/* ============================================================
   SKELETON LOADER
   ============================================================ */
.skeleton-loader {
  background: linear-gradient(90deg,
    rgba(255, 0, 85, 0.06) 0%,
    rgba(255, 0, 85, 0.14) 50%,
    rgba(255, 0, 85, 0.06) 100%
  );
  background-size: 200% 100%;
  animation: skeletonLoad 1.5s ease-in-out infinite;
  border-radius: 8px;
}

@keyframes skeletonLoad {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ============================================================
   HERO BANNER (internal pages)
   ============================================================ */
.hero-banner {
  background: linear-gradient(160deg, #080810 0%, #140020 100%);
  border-bottom: 1px solid rgba(255, 0, 85, 0.2);
  padding: 56px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-banner::before,
.hero-banner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-banner::before {
  width: 700px; height: 700px;
  top: -40%; right: -10%;
  background: radial-gradient(circle, rgba(255,0,85,0.14) 0%, transparent 65%);
  animation: floatGlow 9s ease-in-out infinite;
}

.hero-banner::after {
  width: 600px; height: 600px;
  bottom: -40%; left: -10%;
  background: radial-gradient(circle, rgba(255,0,85,0.1) 0%, transparent 65%);
  animation: floatGlow 11s ease-in-out infinite reverse;
}

@keyframes floatGlow {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(18px, 18px); }
}

.hero-banner .hero-content { position: relative; z-index: 1; }

.hero-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  background: linear-gradient(135deg, #ff0055 0%, #ff8833 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  letter-spacing: -1.5px;
}

.hero-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0;
  line-height: 1.65;
  max-width: 560px;
  margin-inline: auto;
}

/* ============================================================
   PARTNERS PAGE
   ============================================================ */
.partners-hero {
  background: linear-gradient(160deg, #080810 0%, #140020 100%);
  padding: 72px 24px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 0, 85, 0.15);
}

.partners-hero-content { max-width: 800px; margin: 0 auto; }

.partners-hero h1 {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 900;
  background: linear-gradient(135deg, #ff0055 0%, #ff8833 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  letter-spacing: -1.5px;
}

.partners-hero .highlight { color: #ff0055; -webkit-text-fill-color: unset; background: none; }

.partners-hero-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.partners-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 32px 24px;
  background: linear-gradient(160deg, #0f0818 0%, #080810 100%);
  border-bottom: 1px solid rgba(255, 0, 85, 0.1);
}

.partners-stat {
  text-align: center;
  padding: 20px 12px;
}

.partners-stat span:first-child {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: #ff0055;
  margin-bottom: 5px;
  letter-spacing: -1px;
}

.partners-stat span:last-child {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 700;
}

.partner-highlights { padding: 48px 24px; }

.section-title-center {
  text-align: center;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.partner-highlights .highlight { color: #ff0055; }

.featured-partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px;
  max-width: 1200px;
  margin: 32px auto;
  padding: 0 24px;
}

.featured-partner-card {
  background: linear-gradient(145deg, #1a1a2c 0%, #0f0f1e 100%);
  border: 1px solid rgba(255, 0, 85, 0.15);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: block;
}

.featured-partner-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 0, 85, 0.45);
  box-shadow: 0 14px 40px rgba(255, 0, 85, 0.25);
}

.fp-logo { font-size: 22px; font-weight: 900; color: #fff; margin-bottom: 10px; }

.fp-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255, 0, 85, 0.14);
  color: #ff0055;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 8px;
  border: 1px solid rgba(255, 0, 85, 0.25);
}

.fp-videos { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 10px; }
.fp-cta { color: #ff0055; font-size: 13px; font-weight: 700; }

.all-partners-section { padding: 40px 24px; }

.partners-grid-full {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 14px;
  max-width: 1200px;
  margin: 28px auto;
  padding: 0 24px;
}

.partner-card {
  background: linear-gradient(145deg, #1a1a2c 0%, #0f0f1e 100%);
  border: 1px solid rgba(255, 0, 85, 0.12);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.partner-card:hover {
  border-color: rgba(255, 0, 85, 0.35);
  box-shadow: 0 8px 24px rgba(255, 0, 85, 0.15);
}

.partner-logo-text {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.partner-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
}

.partner-badge.official {
  background: rgba(0, 200, 100, 0.12);
  color: #00c864;
  border: 1px solid rgba(0, 200, 100, 0.25);
}

.partner-badge.exclusive {
  background: rgba(255, 0, 85, 0.12);
  color: #ff0055;
  border: 1px solid rgba(255, 0, 85, 0.25);
}

/* ============================================================
   CATEGORIES PAGE
   ============================================================ */
.categories-page-header {
  background: linear-gradient(160deg, #080810 0%, #140020 100%);
  padding: 64px 24px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 0, 85, 0.15);
}

.categories-hero h1 {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 900;
  background: linear-gradient(135deg, #ff0055 0%, #ff8833 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  letter-spacing: -1.5px;
}

.categories-hero .highlight { color: #ff0055; }

.categories-hero-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.category-filters {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px 24px;
  background: rgba(20, 0, 32, 0.5);
  flex-wrap: wrap;
}

.filter-group { display: flex; align-items: center; gap: 8px; }

.filter-group label { color: rgba(255,255,255,0.55); font-size: 13px; font-weight: 600; }

.filter-group select {
  background: #1a1a2c;
  color: #fff;
  border: 1px solid rgba(255, 0, 85, 0.25);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  transition: border-color 0.2s ease;
}

.filter-group select:focus {
  outline: none;
  border-color: rgba(255, 0, 85, 0.6);
}

.categories-grid-section { padding: 48px 24px; }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
}

.category-card {
  background: linear-gradient(145deg, #1a1a2c 0%, #0f0f1e 100%);
  border: 1px solid rgba(255, 0, 85, 0.15);
  border-radius: 14px;
  padding: 24px;
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: block;
  position: relative;
}

.category-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 0, 85, 0.5);
  box-shadow: 0 16px 44px rgba(255, 0, 85, 0.25);
}

.category-icon { font-size: 30px; margin-bottom: 12px; }

.category-info h3 { font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 5px; }
.category-info p  { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 7px; line-height: 1.45; }
.category-count   { font-size: 11px; color: #ff0055; font-weight: 700; }

.category-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.category-badge.trending  { background: rgba(255,0,0,0.14); color: #ff3355; border: 1px solid rgba(255,0,0,0.25); }
.category-badge.ultra     { background: rgba(0,207,255,0.12); color: #00cfff; border: 1px solid rgba(0,207,255,0.25); }
.category-badge.new       { background: rgba(0,200,100,0.12); color: #00c864; border: 1px solid rgba(0,200,100,0.25); }

/* ============================================================
   PREMIUM PAGE
   ============================================================ */
.premium-hero {
  background: radial-gradient(ellipse 100% 80% at 50% 50%, #1a0030 0%, #080810 70%);
  padding: 88px 24px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 0, 85, 0.2);
}

.premium-hero-content { max-width: 800px; margin: 0 auto; }

.crown-badge { font-size: 60px; margin-bottom: 20px; filter: drop-shadow(0 4px 20px rgba(255, 201, 71, 0.5)); }

.premium-hero h1 {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 900;
  background: linear-gradient(135deg, #ff0055 0%, #ff8833 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  letter-spacing: -1.5px;
}

.premium-subtitle { font-size: 19px; color: rgba(255,255,255,0.6); margin-bottom: 20px; line-height: 1.6; }
.premium-notice { color: #ff0055; font-weight: 700; margin-bottom: 24px; font-size: 15px; }
.trial-timer { color: rgba(255,255,255,0.4); font-size: 14px; }
.trial-timer #countdown { color: #ff0055; font-weight: 800; }

.trial-banner-sticky {
  position: sticky;
  top: 64px;
  background: rgba(255, 0, 85, 0.12);
  padding: 12px 24px;
  text-align: center;
  z-index: 99;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 0, 85, 0.2);
}

.trial-content-compact { color: #fff; font-size: 14px; font-weight: 600; }

.features-section { padding: 64px 24px; text-align: center; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 40px auto;
}

.feature-card {
  background: linear-gradient(145deg, #1a1a2c 0%, #0f0f1e 100%);
  border: 1px solid rgba(255, 0, 85, 0.15);
  border-radius: 16px;
  padding: 32px 22px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-9px);
  border-color: rgba(255, 0, 85, 0.5);
  box-shadow: 0 14px 40px rgba(255, 0, 85, 0.25);
}

.feature-icon  { font-size: 38px; margin-bottom: 14px; }
.feature-card h3 { font-size: 17px; color: #fff; margin-bottom: 8px; font-weight: 800; }
.feature-card p  { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.55; }

.partners-showcase { padding: 48px 24px; text-align: center; }
.partners-sub { color: rgba(255,255,255,0.5); margin-bottom: 28px; }

.premium-partners {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 14px;
  max-width: 1000px;
  margin: 0 auto;
}

.premium-content-preview { padding: 40px 24px; }
.section-sub { color: rgba(255,255,255,0.5); text-align: center; margin-bottom: 28px; }

.testimonials-section { padding: 48px 24px; text-align: center; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  max-width: 1000px;
  margin: 28px auto;
}

.testimonial-card {
  background: linear-gradient(145deg, #1a1a2c 0%, #0f0f1e 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 24px;
  text-align: left;
}

.testimonial-stars { margin-bottom: 12px; color: #ffc947; }

.testimonial-author { color: rgba(255,255,255,0.35); font-size: 12px; margin-top: 12px; }

.cta-premium {
  background: linear-gradient(135deg, rgba(255,0,85,0.15) 0%, rgba(255,68,136,0.08) 100%);
  border-top: 1px solid rgba(255, 0, 85, 0.15);
  border-bottom: 1px solid rgba(255, 0, 85, 0.15);
}

.btn-cta-large      { font-size: 17px; padding: 18px 40px; margin-top: 20px; }
.btn-cta-extra-large { font-size: 20px; padding: 22px 52px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .section-title    { font-size: 20px; }
  .hero-title       { font-size: 30px; }
  .hero-subtitle    { font-size: 14px; }
  .stats-bar        { gap: 20px; }
  .gif-showcase     { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
  .live-chat-panel  { max-height: 400px; }
  .partners-stats   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .section-title          { font-size: 18px; }
  .hero-title             { font-size: 26px; }
  .gif-showcase           { grid-template-columns: repeat(2, 1fr); }
  .stats-bar              { flex-direction: column; gap: 14px; align-items: center; }
  .video-card-enhanced    { border-radius: 10px; }
  .quality-badge          { top: 6px; right: 6px; }
  .video-badge            { font-size: 9px; padding: 3px 7px; }
  .partners-stats         { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .features-grid          { grid-template-columns: 1fr; }
}