:root{--brand:#FF3B30;--brand-2:#D70015;--brand-3:#B30000;--bg:#0a0b10;--panel:#1C1C1E;--line:#38383A;--text:#FFFFFF;--muted:#8E8E93;--secondary:#636366;--stroke:rgba(255,255,255,0.12);--accent:#30D158;--warning:#FF9500;--success:#30D158;--destructive:#FF3B30;
  
  /* iOS Design System */
  --ok: #30D158; 
  --shadow: 0 4px 16px rgba(0,0,0,0.3);
  --radius: 12px; 
  --w: 1100px; /* tightened max content width */
  --stickyH: 56px; /* iOS 26 ultra compact header height */
  
  /* iOS 26 Specific */
  --blur-bg: rgba(28,28,30,0.8);
  --card-bg: rgba(28,28,30,0.6);
  --button-bg: rgba(255,255,255,0.1);
  --button-hover: rgba(255,255,255,0.2);
}

*{box-sizing:border-box;margin:0;padding:0} 
html{scroll-behavior:smooth;width:100%}

/* Kanit Typography */
:root{ 
  --font-sans: 'Kanit', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif; 
  --font-mono: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
}
html, body{ 
  margin:0;
  padding:0;
  font-family: var(--font-sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100%;
  background: var(--bg);
}
:where(button, input, select, textarea, a, p, h1,h2,h3,h4,h5,h6, small, b, strong, em, i, table, th, td, li){ 
  font-family: var(--font-sans) !important; 
}

body{
  font-family:var(--font-sans);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x:hidden;
}
main{
  width:100%;
}

/* Mobile: Remove top margin from main */
@media (max-width: 768px) {
  /* Global mobile adjustments */
  
  /* Ensure all sections have proper padding and centering */
  section {
    padding-left: 16px !important;
    padding-right: 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 auto !important;
    text-align: center !important;
  }
  
  /* Ensure all containers are properly sized and centered */
  .container, .hero .container, main .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }
  
  /* Hero section specific mobile adjustments */
  .hero .container {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }
  
  /* Hero section mobile padding */
  .hero {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }
  
  /* Device frame mobile adjustments */
  .device-frame, .device-frame.tablet {
    width: 180px !important;
    height: 105px !important;
    max-width: 60vw !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }
  
  /* Prevent overflow on mobile */
  .hero-right-column {
    overflow: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .hero-image {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }
  
  /* Center all text content */
  h1, h2, h3, h4, h5, h6, p, span, div {
    text-align: center !important;
  }
  
  /* Mobile text sizing adjustments */
  .hero h1 {
    font-size: 2.2rem !important;
    line-height: 1.2 !important;
    margin-bottom: 16px !important;
  }
  
  .hero h2 {
    font-size: 1.8rem !important;
    line-height: 1.3 !important;
    margin-bottom: 12px !important;
  }
  
  .hero p {
    font-size: 14px !important;
    line-height: 1.5 !important;
    margin-bottom: 20px !important;
  }
  
  /* Mobile button adjustments */
  .hero-cta-container {
    flex-direction: column !important;
    gap: 12px !important;
    margin-top: 20px !important;
  }
  
  .hero-cta-container .btn {
    width: 100% !important;
    max-width: 280px !important;
    margin: 0 auto !important;
    padding: 12px 20px !important;
    font-size: 14px !important;
  }
  
  /* Center buttons and form elements */
  button, input, select, textarea {
    margin: 0 auto !important;
    display: block !important;
    text-align: center !important;
  }
  
  /* Center button groups */
  .btn-group, .button-group {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
  }
  
  /* Center form groups */
  .form-group, .input-group {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
  }
  
  /* Center flex containers */
  .flex, .flex-container, .hero-single-column, .hero-two-column {
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
  }
  
  /* Center all content containers */
  .content, .main-content, .page-content {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    margin: 0 auto !important;
  }
  
  /* Center cards and components */
  .card, .component, .widget {
    margin: 0 auto !important;
    text-align: center !important;
  }
  
  /* Center text elements */
  .text-center, .center-text {
    text-align: center !important;
  }
  
  /* Center images */
  img {
    display: block !important;
    margin: 0 auto !important;
  }
  /* Prevent horizontal scroll and keep content inside safe area */
  html, body { 
    overflow-x: hidden; 
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
  }
  
  .container { 
    padding: 0 16px; 
    box-sizing: border-box; 
    max-width: 100%;
    margin: 0 auto;
  }
  
  .hero .container { 
    padding: 0 16px; 
    max-width: 100%;
  }
  
  .hero-left-column, .hero-right-column { 
    padding-left: 16px; 
    padding-right: 16px; 
    margin-left: 0;
    margin-right: 0;
  }
  
  main {
    margin-top: 0;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }
  
  /* Add small spacing from header */
  .hero {
    position: relative;
    top: 0;
    margin-top: 0;
    padding-top: 20px;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
  }
  
  .hero-background,
  .hero-image,
  .background-img {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
  }
}

a{color:inherit;text-decoration:none}
.container{width:100%;max-width:var(--w);padding:0 20px;margin:0 auto;box-sizing:border-box}
.hero .container{padding:0;margin:0;max-width:100%;width:100%}
/* iOS 26 Button Styles */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:16px 32px;
  border-radius:var(--radius);
  border:none;
  background:var(--button-bg);
  color:var(--text);
  font-weight:700;
  font-size:18px;
  cursor:pointer;
  transition:all 0.2s ease;
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
}
/* Removed - handled by universal system */
.btn:active{
  transform:scale(0.98);
}
.btn-primary{
  background:var(--brand-2);
  color:#fff;
  font-weight:600;
}
/* Removed - handled by universal system */
.btn-outline{
  background:rgba(255,255,255,0.02);
  border:0.5px solid rgba(255,255,255,0.05);
  color:var(--text);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  position:relative;
  overflow:hidden;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* LINE Button Style */
.btn-line {
  background: #00C300;
  border: 2px solid #00C300;
  color: white;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  position: relative;
  overflow: hidden;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 600;
  width: 80px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 195, 0, 0.3);
}

/* Removed - handled by universal system */

.btn-line:active {
  transform: translateY(0) scale(1);
}

.btn-outline::before{
  content:'';
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  border-radius:16px;
  transition:left 0.6s ease;
  z-index:1;
}

/* Removed - handled by universal system */

/* Removed - handled by universal system */

/* Removed - handled by universal system */

/* Header CSS moved to css/header.css for better performance */

/* Anchor helpers */
[id]{scroll-margin-top:calc(var(--stickyH) + 14px)}
.target{position:relative}
.target:target{outline:2px solid rgba(255,90,102,.65);box-shadow:0 0 0 6px rgba(255,90,102,.15) inset}
.card.target:target{animation:glow .9s ease}
@keyframes glow{from{box-shadow:0 0 0 0 rgba(255,90,102,.35)}to{box-shadow:0 0 0 18px rgba(255,90,102,0)}}

/* Sections */
section{padding:56px 0;width:100%;box-sizing:border-box}
.section-head{margin-bottom:20px}
h1{font-size:clamp(32px,4.5vw,48px);line-height:1.2;margin:20px 0;font-weight:800}

/* Desktop H1 adjustments */
@media (min-width: 1024px) {
  h1 {
    font-size: 42px;
    line-height: 1.3;
  }
}
h2{font-size:clamp(24px,3vw,34px);margin:0 0 10px}
.muted{color:var(--muted)}
.grid{display:grid;gap:18px}
/* Pricing Section - Proper spacing */
#pricing {
  padding: 0 0 60px 0;
  margin-top: 0;
}

.grid.pricing{grid-template-columns:repeat(4,minmax(0,1fr))}
@media (max-width:1080px){.grid.pricing{grid-template-columns:repeat(2,1fr)}}
@media (max-width:640px){.grid.pricing{grid-template-columns:1fr}}

.card{
  background:rgba(28,28,30,0.8);
  border:0.5px solid rgba(255,255,255,0.1);
  border-radius:20px;
  box-shadow:0 4px 16px rgba(0,0,0,0.15), 0 1px 0 rgba(255,255,255,0.05) inset;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  backdrop-filter:blur(30px);
  -webkit-backdrop-filter:blur(30px);
  position:relative;
}
.plan{padding:24px 24px 20px;border-bottom:0.5px solid rgba(255,255,255,0.1);display:flex;justify-content:space-between;align-items:center;background:linear-gradient(135deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01))}
.plan .name{font-weight:800;font-size:16px}
.plan .chip{
  font-size:11px;
  color:var(--brand-2);
  border:0.5px solid rgba(215,0,21,0.4);
  padding:6px 12px;
  border-radius:16px;
  background:rgba(215,0,21,0.15);
  font-weight:600;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}
.price{padding:20px 24px 18px;display:flex;align-items:flex-end;gap:8px;background:linear-gradient(135deg, rgba(255,255,255,0.01), transparent)}
.price b{font-size:28px}
.features{padding:0 24px 24px;display:grid;gap:12px}
.features li{list-style:none;display:flex;align-items:flex-start;gap:10px;color:#dce0e7;font-size:13px}
.features svg{flex:0 0 18px}
.card .cta{margin:18px 24px 24px;display:flex;gap:8px;flex-direction:row;align-items:center}
.card .cta .btn{flex:1;min-width:0;padding:8px 12px;font-size:12px;border-radius:10px;height:32px;display:flex;align-items:center;justify-content:center;position:relative;overflow:hidden;transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);border:0.5px solid rgba(255,255,255,0.1)}

/* iOS 26 Pricing Button Hover Effects */
.card .cta .btn::before{
  content:'';
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  border-radius:10px;
  transition:left 0.6s ease;
  z-index:1;
}

.card .cta .btn:hover::before{
  left:100%;
}

.card .cta .btn:hover{
  background:rgba(255,255,255,0.05);
  border-color:rgba(255,255,255,0.2);
  color:var(--text);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  transform:translateY(-2px) scale(1.02);
  box-shadow:0 8px 25px rgba(0,0,0,0.15), 0 4px 12px rgba(0,0,0,0.1);
}

.card .cta .btn > *{
  position:relative;
  z-index:3;
}


/* iOS 26 Card Hover Effect */
.card:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 20px rgba(0,0,0,0.2), 0 1px 0 rgba(255,255,255,0.08) inset;
  border-color:rgba(255,255,255,0.15);
  transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Universal Button Hover System */
.btn, .btn-primary, .btn-outline, .btn-line, button, input[type="button"], input[type="submit"], a[role="button"] {
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.btn::before, .btn-primary::before, .btn-outline::before, .btn-line::before, 
button::before, input[type="button"]::before, input[type="submit"]::before, 
a[role="button"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
  z-index: 1;
}

.btn:hover::before, .btn-primary:hover::before, .btn-outline:hover::before, .btn-line:hover::before,
button:hover::before, input[type="button"]:hover::before, input[type="submit"]:hover::before,
a[role="button"]:hover::before {
  left: 100%;
}

.btn:hover, .btn-primary:hover, .btn-outline:hover, .btn-line:hover,
button:hover, input[type="button"]:hover, input[type="submit"]:hover,
a[role="button"]:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn:active, .btn-primary:active, .btn-outline:active, .btn-line:active,
button:active, input[type="button"]:active, input[type="submit"]:active,
a[role="button"]:active {
  transform: translateY(0) scale(1);
  transition: transform 0.1s ease;
}

/* Ensure text stays above the light effect */
.btn > *, .btn-primary > *, .btn-outline > *, .btn-line > *,
button > *, input[type="button"] > *, input[type="submit"] > *,
a[role="button"] > * {
  position: relative;
  z-index: 2;
}

/* iOS 26 Hero - Full Background Layout */
.hero{
  padding:0;
  margin:0;
  border:none;
  background:var(--bg);
  position:relative;
  height:auto;
  display:flex;
  align-items:center;
  overflow:hidden;
  margin-top:0;
  isolation: isolate;
}

/* Mobile: Attach to header */
@media (max-width: 768px) {
  .hero {
    margin-top: -25px !important;
    padding-top: 0;
    position: relative;
    top: 0;
  }
  
  .hero-background {
    top: 0;
  }
  
  .hero-image {
    top: 0;
  }
  
  .background-img {
    top: 0;
  }
}
.hero-single-column{
  display:flex;
  flex-direction:column;
  gap:0;
  align-items:center;
  width:100%;
  height:80vh;
  position:relative;
  margin:0;
  padding:0;
}

.hero-two-column {
  display: grid;
  grid-template-columns: 1fr 360px; /* reduce right column width */
  gap: 40px; /* tighter spacing */
  align-items: start;
  min-height: auto;
  position: relative;
  z-index: 2;
  padding: 60px 0; /* reduce vertical padding */
}

@media (max-width: 768px) {
  /* Ensure page content clears the sticky header */
  main { padding-top: calc(var(--stickyH) + 0px); }

  .hero-two-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
    min-height: auto;
  }
  
  .hero-left-column {
    padding-right: 0;
    order: 2;
    display: flex;
    flex-direction: column;
  }
  
  .hero-right-column {
    order: 1;
  }
}

.hero-left-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 20px;
}

.hero-right-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 398px;
  height: 398px;
  width: 500px;
  max-width: 500px;
  position: relative;
}

/* Hero Image Styles */
.hero-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  max-width: 100%;
  overflow: hidden;
  background: transparent;
  border-radius: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  margin-bottom: 0;
}

.hero-image {
  max-width: 100%;
  width: 100%;
  height: 100%;
  max-height: 380px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.15),
    0 2px 8px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  object-fit: cover;
  display: block;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: pixelated;
}

/* Hover effect disabled */

/* Subscription Selector */
.subscription-selector {
  display: flex;
  gap: 12px;
  margin: 30px 0;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.selector-btn {
  flex: 1;
  padding: 12px 20px;
  background: transparent;
  border: none;
  margin-bottom: 0;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.selector-btn.active {
  background: var(--text);
  color: var(--bg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.selector-btn:hover:not(.active) {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

/* Feature Cards */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 185px);
  gap: 12px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .feature-cards {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    gap: 12px !important;
    margin: 20px auto !important;
    padding: 0 16px !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    width: calc(100% - 32px) !important;
    box-sizing: border-box !important;
    justify-content: flex-start !important;
    align-items: center !important;
  }
  
  .feature-cards .feature-card {
    flex: 0 0 185px !important;
    scroll-snap-align: start !important;
  }
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 6px 8px;
  text-align: center;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  width: 185px;
  height: 55px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.feature-number {
  font-size: 14px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 8px;
}

.feature-text {
  font-size: 9px;
  color: var(--muted);
  line-height: 1.4;
}

/* Recommended Package */
.recommended-package {
  background: transparent !important; /* solid panel */
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 30px;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  margin-top: 20px;
}

.package-header {
  margin-bottom: 20px;
}

.package-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.package-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 10px 0;
}

.package-description {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

.package-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 25px;
}

.package-price .price {
  font-size: 36px;
  font-weight: 700;
  color: var(--text);
}

.package-price .period {
  font-size: 16px;
  color: var(--muted);
}

.package-features {
  margin-bottom: 30px;
}

.package-features .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text);
}

.package-features .checkmark {
  color: var(--success);
  font-weight: bold;
  font-size: 16px;
}

.package-cta {
  width: 100%;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
}
.hero-background{
  width:100%;
  height:80vh;
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  z-index:1;
  margin:0;
  padding:0;
}
.hero-overlay{
  width:100%;
  height:100%;
  position:relative;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
}
.hero-image{
  width:100%;
  height:80%;
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  z-index:1;
  margin:0;
  padding:0;
}
.background-img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}
/* Hide hero collage background temporarily per request */
.hero-background, .hero-background .hero-image, .hero-background .background-img { display: none !important; height: 0 !important; }
.hero-content-section{
  width:100%;
  max-width:none;
  text-align:center;
  order:2;
  position:relative;
  z-index:2;
    padding:40px 20px;
    margin: 0 auto;
  background:linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.8) 100%);
  backdrop-filter:blur(10px);
    box-sizing: border-box;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
  -webkit-backdrop-filter:blur(10px);
  margin:0;
  min-height:80vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 16px;
  border:1px solid var(--line);
  border-radius:20px;
  color:var(--muted);
  background:var(--button-bg);
  font-size:14px;
  font-weight:500;
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
}
.lead{
  font-size:clamp(20px,3vw,24px);
  color:#e0e0e0;
  max-width:70ch;
  line-height:1.5;
  font-weight:500;
  text-shadow:1px 1px 2px rgba(0,0,0,0.8);
}
.hero-cta-container {
  display: flex;
  align-items: flex-end;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 8px !important;
}

.hero-cta{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}
.trust{
  display:flex;
  gap:24px;
  margin-top:32px;
  flex-wrap:wrap;
  color:var(--secondary);
  font-size:14px;
  font-weight:500;
}
.poster{
  position:relative;
  border-radius:0;
  overflow:hidden;
  background:transparent;
  box-shadow:none;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
  height:auto;
  padding:0;
  width:100%;
  height:100%;
}
.poster::after{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(400px 200px at 30% 0%,rgba(255,59,48,0.15),transparent 60%);
}
.poster-inner{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:30px;
  padding:60px 40px;
  height:100%;
  position:relative;
  z-index:2;
}
.poster h3{
  margin:0;
  font-size:clamp(32px,5vw,48px);
  font-weight:800;
  color:#fff;
  line-height:1.1;
  text-align:center;
  text-shadow:2px 2px 4px rgba(0,0,0,0.8);
}
.poster p{
  margin:0;
  color:#e0e0e0;
  font-size:clamp(18px,3vw,24px);
  line-height:1.3;
  text-align:center;
  text-shadow:1px 1px 2px rgba(0,0,0,0.8);
}

/* Compare table */
.table{width:100%;border-collapse:collapse;border:1px solid var(--line);border-radius:12px;overflow:hidden}
.table th,.table td{padding:14px;border-bottom:1px solid var(--line);text-align:left}
.table thead th{background:#12131a;color:#cbd0d9;font-weight:700}
.table tbody tr:hover td{background:#0f1016}
.center{text-align:center}

/* Steps / features */
.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
@media (max-width:960px){.steps{grid-template-columns:1fr}}
.step{background:var(--panel);border:1px solid #2a2a3e;border-radius:var(--radius);padding:18px;display:grid;gap:8px;transition:.2s}
.step:hover{transform:translateY(-2px)}
.step .num{width:36px;height:36px;display:grid;place-items:center;border-radius:10px;background:linear-gradient(135deg,var(--brand-2),var(--brand-3));font-weight:800}

/* Lucky Wheel - Prize Table Design */
.wheel-container{display:flex;flex-direction:column;align-items:center;gap:25px;margin:30px 0;position:relative}

.prize-table{width:100%;max-width:500px;background:var(--panel);border:1px solid var(--line);border-radius:var(--radius);box-shadow:var(--shadow);overflow:hidden}

.table-row{display:grid;grid-template-columns:1fr 100px;gap:0;transition:all .3s ease}

.table-row.header{background:linear-gradient(135deg, #1a1c25, #2a2d3a);border-bottom:2px solid var(--brand-2)}

.table-row.header .table-cell{color:var(--brand-2);font-weight:800;font-size:14px;padding:18px 16px;text-align:center;text-transform:uppercase;letter-spacing:1px}

.table-row:not(.header){border-bottom:1px solid var(--line);transition:all .3s ease}

.table-row:not(.header):hover{background:rgba(238,42,52,0.08);transform:translateX(3px)}

.table-row:not(.header).active{background:linear-gradient(135deg, rgba(215,0,21,0.15), rgba(179,0,0,0.08));border-left:3px solid var(--brand-2);transform:translateX(5px)}

.table-row:not(.header).winner{background:linear-gradient(135deg, rgba(49,208,170,0.15), rgba(31,159,122,0.08));border-left:3px solid #31d0aa;transform:translateX(5px);animation:winner-glow 2s ease-in-out infinite}

@keyframes winner-glow{
  0%, 100%{box-shadow:0 0 15px rgba(49,208,170,0.2)}
  50%{box-shadow:0 0 25px rgba(49,208,170,0.4)}
}

.table-cell{padding:16px 14px;display:flex;align-items:center;justify-content:center;font-weight:600}

.table-row:not(.header) .table-cell:first-child{justify-content:flex-start;padding-left:20px;font-weight:700;color:var(--text);font-size:15px}

.table-row:not(.header) .table-cell:last-child{font-weight:700;font-size:13px;justify-content:center}

.status{color:var(--muted)}

.status.active{color:var(--brand-2);animation:blink 0.8s ease-in-out infinite}

.status.winner{color:#31d0aa;font-weight:800}

@keyframes blink{
  0%, 100%{opacity:1}
  50%{opacity:0.6}
}

/* Code input container */
.code-input-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
  padding: 18px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.code-input {
  width: 100%;
  max-width: 280px;
  padding: 12px 16px;
  font-size: 14px;
  border: 2px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  color: var(--text);
  text-align: center;
  transition: all 0.3s ease;
  font-family: var(--font-sans);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
}

.code-input:focus {
  outline: none;
  border-color: var(--brand-2);
  box-shadow: 0 0 0 3px rgba(215, 0, 21, 0.1);
}

.code-input::placeholder {
  color: var(--muted);
}

/* Error Popup Styles */
.error-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(5px);
}

.error-popup-content {
  background: var(--panel);
  border: 2px solid var(--brand-2);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  animation: popupSlideIn 0.3s ease-out;
}

.error-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.error-message {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 25px;
  line-height: 1.5;
  font-weight: 500;
}

.error-close-btn {
  background: linear-gradient(135deg, var(--brand-2), var(--brand-3));
  color: white;
  border: none;
  margin-bottom: 0;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-sans);
}

.error-close-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(215, 0, 21, 0.4);
}

@keyframes popupSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Success Popup Styles */
.success-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(5px);
}

.success-popup-content {
  background: var(--panel);
  border: 2px solid var(--success);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  animation: popupSlideIn 0.3s ease-out;
}

.success-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.success-message {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 25px;
  line-height: 1.5;
  font-weight: 500;
}

.success-close-btn {
  background: linear-gradient(135deg, var(--success), #00A36C);
  color: white;
  border: none;
  margin-bottom: 0;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-sans);
}

.success-close-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 200, 81, 0.4);
}

/* Enhanced spin button - centered and prominent */
.spin-btn {
  background: linear-gradient(135deg, var(--brand-2), var(--brand-3));
  color: white;
  border: none;
  margin-bottom: 0;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 12px rgba(215, 0, 21, 0.4);
  position: relative;
  overflow: hidden;
  width: auto;
  min-width: 120px;
  max-width: 180px;
  align-self: center;
  letter-spacing: 0.3px;
}

.spin-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.spin-btn:hover::before {
  left: 100%;
}

.spin-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(215, 0, 21, 0.3);
}

.spin-btn:active {
  transform: translateY(0);
}

.spin-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Result Modal */
.result-modal{display:none;position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,0.3);z-index:1000;backdrop-filter:blur(20px)}
.result-content{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);background:rgba(255,255,255,0.05);border:1px solid rgba(255,255,255,0.1);border-radius:20px;padding:30px;text-align:center;max-width:400px;width:90%;backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);box-shadow:0 8px 32px rgba(0,0,0,0.3), 0 1px 0 rgba(255,255,255,0.05) inset}
.result-content h3{color:var(--brand-2);margin-bottom:15px}
.result-content p{margin-bottom:20px;color:var(--text)}
.result-content .btn{margin:0 auto}

/* FAQ (accordion) */
#faq .section-head{margin-bottom:16px}
#faq details{background:var(--panel);border:1px solid #2a2a3e;border-radius:14px;overflow:hidden;transition:box-shadow .2s, border-color .2s;margin:10px 0}
#faq details:hover{box-shadow:0 10px 20px rgba(0,0,0,.25)}
#faq summary{cursor:pointer;list-style:none;padding:16px 52px 16px 18px;font-weight:800;display:block;position:relative;border-bottom:1px solid transparent}
#faq summary::-webkit-details-marker{display:none}
#faq summary::after{content:"+";position:absolute;right:12px;top:50%;transform:translateY(-50%);width:26px;height:26px;border-radius:8px;background:#0f1016;color:#cbd0d9;display:grid;place-items:center;font-size:18px;font-weight:900}
#faq details[open] summary{background:#1a1a2e;border-bottom:1px solid var(--line)}
#faq details[open]{border-color:rgba(215,0,21,.45);box-shadow:0 10px 30px rgba(215,0,21,.08)}
#faq details[open] summary::after{content:"–";background:linear-gradient(135deg,var(--brand-2),var(--brand-3));color:#fff}
#faq details > .muted{display:block;padding:14px 18px 18px;line-height:1.7}

/* Footer */
footer{padding:36px 0;border-top:1px solid var(--line);color:#c5c8d0}
.cols{display:grid;grid-template-columns:2fr 1fr 1fr;gap:18px}
@media (max-width:880px){.cols{grid-template-columns:1fr}}
.legal{margin-top:18px;font-size:14px;color:#a6aabc}

/* Promo Banner Design */
.promo-banner{background:linear-gradient(135deg, #1a1a2e, #16213e);border:1px solid var(--line);border-radius:var(--radius);box-shadow:var(--shadow);overflow:hidden;margin:20px 0}

.promo-content{display:grid;grid-template-columns:1fr 300px;gap:0;min-height:200px}

.promo-text{padding:30px;display:flex;flex-direction:column;justify-content:center}

.promo-text h2{margin:0 0 16px 0;font-size:28px;color:#fff;font-weight:800}

.promo-text p{margin:0;line-height:1.7;color:var(--muted);font-size:16px}

.promo-image{background:linear-gradient(135deg, #16213e, #1a1a2e);display:flex;align-items:center;justify-content:center;position:relative;overflow:hidden}

.promo-image::before{content:"";position:absolute;top:0;left:0;right:0;bottom:0;background:radial-gradient(400px 200px at 70% 50%,rgba(255,90,102,.15),transparent 60%);z-index:1}

.image-placeholder{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:16px;z-index:2;position:relative;text-align:center;padding:20px}

.image-icon{font-size:48px;filter:drop-shadow(0 4px 8px rgba(0,0,0,0.3))}

.image-text{color:var(--muted);font-size:14px;font-weight:600;letter-spacing:0.5px}

/* Responsive design for promo banner */
@media (max-width:768px){
  .promo-content{grid-template-columns:1fr;min-height:auto}
  .promo-text{padding:24px}
  .promo-image{min-height:150px}
  .image-icon{font-size:36px}
}

/* TV & Annual Package Cards */
.tv-package-card, .annual-package-card{background:linear-gradient(135deg, #1a1a2e, #16213e);border:1px solid var(--line);border-radius:var(--radius);box-shadow:var(--shadow);overflow:hidden;transition:all .3s ease}

.tv-package-card:hover, .annual-package-card:hover{transform:translateY(-3px);box-shadow:0 15px 40px rgba(0,0,0,0.4);border-color:rgba(238,42,52,0.3)}

/* Card with text only (TV package) */
.tv-package-card .card-content{display:block;min-height:160px}

.tv-package-card .card-text{padding:24px;display:flex;flex-direction:column;justify-content:center;background:linear-gradient(135deg, #1a1a2e, #16213e);height:100%}

/* Card with text and image (Annual package) */
.annual-package-card .card-content{display:grid;grid-template-columns:1fr 160px;gap:0;min-height:160px}

.annual-package-card .card-text{padding:20px;display:flex;flex-direction:column;justify-content:center;background:linear-gradient(135deg, #1a1a2e, #16213e)}

.card-text h3{margin:0 0 16px 0;font-size:20px;color:#fff;font-weight:800;line-height:1.3}

.card-text p{margin:0 0 14px 0;line-height:1.6;color:var(--muted);font-size:14px}

.card-text p:last-child{margin-bottom:0}

/* Image section for annual package */
.card-image{background:linear-gradient(135deg, #0f0f23, #1a1a2e);display:flex;align-items:center;justify-content:center;position:relative;overflow:hidden;border-left:1px solid var(--line)}

.card-image::before{content:"";position:absolute;top:0;left:0;right:0;bottom:0;background:radial-gradient(300px 150px at 70% 50%,rgba(49,208,170,.12),transparent 70%);z-index:1}

.image-placeholder{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:10px;z-index:2;position:relative;text-align:center;padding:14px}

.image-icon{font-size:32px;filter:drop-shadow(0 3px 6px rgba(0,0,0,0.4))}

.image-text{color:#a6aabc;font-size:11px;font-weight:600;letter-spacing:0.5px;text-transform:uppercase}

/* Responsive design for package cards */
@media (max-width:768px){
  .annual-package-card .card-content{grid-template-columns:1fr;min-height:auto}
  .annual-package-card .card-text{padding:20px}
  .card-image{min-height:120px;border-left:none;border-top:1px solid var(--line)}
  .image-icon{font-size:28px}
  .image-text{font-size:11px}
}

/* Lucky Wheel - Square Buttons Design */
.lucky-wheel-container {
  margin-top: 30px;
  text-align: center;
  margin-left: 80px;
}

/* Center section heading for lucky wheel - PC only */
#lucky-wheel .section-head {
  text-align: center;
  margin-left: -40%; /* Keep original offset for PC */
}

#lucky-wheel .section-head h2 {
  text-align: center;
}

#lucky-wheel .section-head p {
  text-align: center;
}

/* Mobile centering for lucky wheel section */
@media (max-width: 768px) {
  #lucky-wheel .section-head {
    text-align: center;
    margin-left: 0; /* Remove offset for mobile */
  }
  
  #lucky-wheel .section-head h2 {
    text-align: center;
  }
  
  #lucky-wheel .section-head p {
    text-align: center;
  }
  
  /* Center the entire lucky wheel content on mobile */
  #lucky-wheel .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  #lucky-wheel .lucky-wheel-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  
  #lucky-wheel .input-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
  }
  
  #lucky-wheel .code-input {
    text-align: center;
    width: 100%;
    max-width: 300px;
  }
  
  #lucky-wheel .spin-btn {
    align-self: center;
  }
}

/* Ensure PC layout is not affected */
@media (min-width: 769px) {
  #lucky-wheel .section-head {
    text-align: center;
    margin-left: -40%; /* Keep original PC offset */
  }
  
  #lucky-wheel .container {
    display: block; /* Reset to original layout */
  }
  
  #lucky-wheel .lucky-wheel-container {
    display: block; /* Reset to original layout */
  }
  
  #lucky-wheel .input-group {
    display: flex; /* Keep original layout */
    justify-content: center;
  }
}

/* Center section heading for top referrers */
#top-referrers .section-head {
  text-align: center;
}

#top-referrers .section-head h2 {
  text-align: center;
}

#top-referrers .section-head p {
  text-align: center;
}

.prize-buttons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
  justify-content: center;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.prize-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 12px;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 120px;
  height: 120px;
}

.prize-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.5s ease;
}

.prize-btn:hover::before {
  left: 100%;
}

.prize-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
}

.prize-btn:active {
  transform: translateY(-2px);
  transition: transform 0.1s ease;
}

.prize-btn.selected {
  border-color: var(--brand-2);
  background: rgba(220, 38, 38, 0.05);
  box-shadow: 0 8px 32px rgba(220, 38, 38, 0.2);
}

.prize-icon {
  font-size: 42px;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

.prize-icon-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

.prize-name {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
  position: relative;
  z-index: 2;
}

.prize-status {
  font-size: 11px;
  color: var(--muted);
  position: relative;
  z-index: 2;
}

/* Top Referrers Section */
#top-referrers {
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(15,15,20,0.8), rgba(25,25,35,0.6));
}

.referrers-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 40px 0;
  align-items: start;
}

.referrers-column {
  display: flex;
  flex-direction: column;
}

.referrers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.chart-column {
  display: flex;
  justify-content: center;
  align-items: center;
}

.chart-container {
  background: rgba(28,28,30,0.8);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  text-align: center;
  width: 100%;
  max-width: 400px;
}

.chart-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 30px;
}

.pie-chart {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 30px;
  border-radius: 50%;
  background: conic-gradient(
    #FFD700 0deg 151.2deg,
    #C0C0C0 151.2deg 266.4deg,
    #CD7F32 266.4deg 360deg
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.pie-chart::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgba(15,15,20,0.9);
  border-radius: 50%;
  z-index: 1;
}

.chart-segment {
  position: absolute;
  z-index: 2;
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.segment-1 {
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.segment-2 {
  bottom: 20px;
  left: 20px;
}

.segment-3 {
  bottom: 20px;
  right: 20px;
}

.segment-label {
  font-size: 10px;
  margin-bottom: 2px;
}

.segment-value {
  font-size: 8px;
  color: var(--muted);
}

.chart-legend {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}

.legend-color {
  width: 16px;
  height: 16px;
  border-radius: 4px;
}

.color-1 {
  background: #FFD700;
}

.color-2 {
  background: #C0C0C0;
}

.color-3 {
  background: #CD7F32;
}

.referrer-card {
  background: rgba(28,28,30,0.8);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 25px 20px;
  text-align: center;
  position: relative;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: visible;
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
}

/* Removed hover effects to fix light bug */

.rank-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  color: #fff;
  z-index: 2;
}

.rank-1 .rank-badge {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.rank-2 .rank-badge {
  background: linear-gradient(135deg, #C0C0C0, #A0A0A0);
  box-shadow: 0 4px 20px rgba(192, 192, 192, 0.4);
}

.rank-3 .rank-badge {
  background: linear-gradient(135deg, #CD7F32, #B8860B);
  box-shadow: 0 4px 20px rgba(205, 127, 50, 0.4);
}

.rank-4 .rank-badge {
  background: linear-gradient(135deg, #4A90E2, #357ABD);
  box-shadow: 0 4px 20px rgba(74, 144, 226, 0.4);
}

.rank-5 .rank-badge {
  background: linear-gradient(135deg, #7B68EE, #6A5ACD);
  box-shadow: 0 4px 20px rgba(123, 104, 238, 0.4);
}

.rank-6 .rank-badge {
  background: linear-gradient(135deg, #20B2AA, #008B8B);
  box-shadow: 0 4px 20px rgba(32, 178, 170, 0.4);
}

.referrer-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.2);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.referrer-info {
  flex: 1;
  text-align: left;
  min-width: 0;
  padding-right: 10px;
}

.referrer-info h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 6px 0;
  color: var(--text);
  position: relative;
  z-index: 2;
}

.referral-count {
  font-size: 12px;
  color: var(--brand-2);
  font-weight: 700;
  margin: 0 0 10px 0;
  position: relative;
  z-index: 2;
  white-space: nowrap;
  overflow: visible;
  padding: 2px 4px;
  min-width: fit-content;
}

.reward-badge {
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid var(--brand-2);
  border-radius: 12px;
  padding: 6px 12px;
  font-size: 12px;
  color: var(--brand-2);
  font-weight: 600;
  position: relative;
  z-index: 2;
  display: inline-block;
}

.referrers-cta {
  text-align: center;
  margin-top: 40px;
}

/* Package Modal Styles */
.package-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.package-modal-content {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 0;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 255, 255, 0.05) inset;
  position: relative;
}

.package-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.package-modal-header h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
}

.close-btn {
  background: none;
  border: none;
  margin-bottom: 0;
  font-size: 28px;
  color: var(--muted);
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.package-modal-body {
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.package-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.package-info h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 15px 0;
}

.package-price {
  margin-bottom: 20px;
}

.package-price span:first-child {
  font-size: 32px;
  font-weight: 700;
  color: var(--brand-2);
}

.package-price span:last-child {
  font-size: 16px;
  color: var(--muted);
  margin-left: 5px;
}

.package-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}

.checkmark {
  color: #4CAF50;
  font-weight: bold;
  font-size: 16px;
}

.qr-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

.qr-code {
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  margin-bottom: 0;
  flex-shrink: 0;
}

.qr-placeholder {
  width: 120px;
  height: 120px;
  background: #fff;
  border: 2px solid #000;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  width: 100px;
  height: 100px;
}

.qr-square {
  background: #000;
  border-radius: 1px;
}

.qr-square:nth-child(2n) {
  background: #fff;
}

.qr-text {
  text-align: center;
  font-size: 12px;
  color: #666;
  margin: 0;
}

.bank-info {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(220, 38, 38, 0.05));
  border: 2px solid var(--brand-2);
  border-radius: 16px;
  padding: 25px;
  margin-top: 0;
  width: 100%;
  flex: 1;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(220, 38, 38, 0.2);
}

.bank-info h5 {
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 25px 0;
  text-align: center;
  position: relative;
}

.bank-info h5::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-2), var(--brand-3));
  border-radius: 1px;
}

.bank-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: stretch;
}

.bank-item:last-child {
  grid-column: 1 / -1;
}

.bank-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-height: 60px;
}

.bank-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.bank-item:hover::before {
  left: 100%;
}

.bank-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.bank-label {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
  min-width: 140px;
  flex-shrink: 0;
}

.bank-value {
  font-size: 16px;
  color: var(--text);
  font-weight: 700;
  text-align: right;
  line-height: 1.4;
  word-break: break-word;
  position: relative;
  z-index: 2;
  flex: 1;
  writing-mode: horizontal-tb;
  text-orientation: mixed;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-left: 16px;
}

.payment-note {
  margin-top: 25px;
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.15), rgba(220, 38, 38, 0.08));
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.payment-note::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.8s ease;
}

.payment-note:hover::before {
  left: 100%;
}

.payment-note p {
  margin: 0;
  font-size: 13px;
  color: var(--brand-2);
  text-align: center;
  line-height: 1.5;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.package-modal-footer {
  display: flex;
  gap: 15px;
  padding: 20px 30px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.package-modal-footer .btn {
  flex: 1;
  justify-content: center;
}

/* Responsive adjustments for Package Modal */
@media (max-width: 768px) {
  .package-modal {
    padding: 10px;
  }
  
  .package-modal-content {
    max-width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 255, 255, 0.05) inset;
  }
  
  .package-details {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .package-modal-header {
    padding: 20px 20px 15px;
  }
  
  .package-modal-header h3 {
    font-size: 20px;
  }
  
  .card .cta .btn {
    padding: 6px 10px;
    font-size: 11px;
    height: 28px;
    border-radius: 8px;
  }
  
  .card .cta {
    gap: 6px;
    margin: 15px 20px 20px;
  }
  
  .package-modal-body {
    padding: 20px;
  }
  
  .package-modal-footer {
    padding: 15px 20px 20px;
    flex-direction: column;
  }
  
  .qr-code {
    padding: 15px;
  }
  
  .qr-placeholder {
    width: 120px;
    height: 120px;
  }
  
  .qr-grid {
    width: 100px;
    height: 100px;
  }
  
  .bank-info {
    padding: 15px;
    margin-top: 0;
    flex: 1;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(220, 38, 38, 0.05));
    border: 2px solid var(--brand-2);
    box-shadow: 0 8px 32px rgba(220, 38, 38, 0.2);
  }
  
  .bank-info h5 {
    font-size: 14px;
    margin-bottom: 15px;
  }
  
  .bank-details {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  
  .bank-item:last-child {
    grid-column: 1 / -1;
  }
  
  .bank-item {
    padding: 14px 18px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-height: 50px;
  }
  
  .bank-label {
    font-size: 12px;
    margin-bottom: 0;
    min-width: 90px;
    flex-shrink: 0;
  }
  
  .bank-value {
    font-size: 14px;
    text-align: right;
    margin-left: 12px;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .payment-note {
    margin-top: 12px;
    padding: 10px;
  }
  
  .payment-note p {
    font-size: 11px;
  }
}

/* Lucky Wheel Grid Layout - Original */
.lucky-wheel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 30px 0;
  margin-left: 80px;
}

.prize-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.promo-section {
  display: flex;
  flex-direction: column;
}

.promo-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 255, 255, 0.05) inset;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.promo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  border-radius: 20px;
  transition: left 0.6s ease;
  z-index: 1;
}

.promo-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}

/* Promo icon color adjustment */
.promo-icon {
  font-size: 24px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.promo-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
}

.promo-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.promo-item {
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.promo-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  border-radius: 12px;
  transition: left 0.6s ease;
  z-index: 1;
}

.promo-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 255, 255, 0.05) inset;
  border-color: rgba(255, 255, 255, 0.12);
}

.promo-item:hover::before {
  left: 100%;
}

/* Promo badge color adjustment */
.promo-badge {
  display: inline-block;
  padding: 4px 8px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: white;
  font-size: 11px;
  font-weight: 600;
  border-radius: 12px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 2;
}

.promo-item h4,
.promo-item-text h4 {
  margin: 0 0 6px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  position: relative;
  z-index: 2;
}

.promo-item p,
.promo-item-text p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
  position: relative;
  z-index: 2;
}

.promo-item {
  display: flex;
  flex-direction: column;
}

.promo-item-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
}

.promo-item-text {
  flex: 1;
}

.promo-get-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  z-index: 2;
  width: auto;
  min-width: 80px;
  box-sizing: border-box;
  flex-shrink: 0;
}

.promo-get-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.promo-get-btn:active {
  transform: translateY(0);
  background: rgba(255, 255, 255, 0.05);
}

.promo-cta {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  text-align: center;
  position: relative;
  z-index: 2;
}


.promo-cta .btn {
  width: 100%;
  justify-content: center;
}

/* Responsive adjustments for Lucky Wheel */
@media (max-width: 1024px) {
  .prize-buttons-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 280px;
  }
  
  .prize-btn {
    width: 120px;
    height: 120px;
    padding: 12px;
  }
  
  .prize-icon {
    font-size: 28px;
  }
  
  .prize-icon-img {
    width: 42px;
    height: 52px;
  }
  
  .prize-name {
    font-size: 12px;
  }
  
  .prize-status {
    font-size: 10px;
  }
}

@media (max-width: 768px) {
  .prize-buttons-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 300px;
  }
  
  .prize-btn {
    width: 140px;
    height: 140px;
    padding: 16px;
  }
  
  .prize-icon {
    font-size: 44px;
  }
  
  .prize-btn .prize-text {
    font-size: 18px;
    font-weight: 600;
  }
  
  .prize-icon-img {
    width: 48px;
    height: 48px;
  }
  
  .prize-name {
    font-size: 16px;
  }
  
  .prize-status {
    font-size: 10px;
  }
  
  .lucky-wheel-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 20px 0;
  }
}

@media (max-width: 480px) {
  .prize-buttons-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 280px;
  }
  
  .prize-btn {
    width: 130px;
    height: 130px;
    padding: 14px;
  }
  
  .prize-icon {
    font-size: 40px;
  }
  
  .prize-btn .prize-text {
    font-size: 17px;
    font-weight: 600;
  }
  
  .prize-icon-img {
    width: 44px;
    height: 44px;
  }
  
  .prize-name {
    font-size: 14px;
  }
  
  .prize-status {
    font-size: 8px;
  }
}

/* Responsive adjustments for Top Referrers */
@media (max-width: 1024px) {
  .referrers-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .referrers-column {
    order: 2;
  }
  
  .chart-column {
    order: 1;
  }
  
  .referrers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .chart-container {
    max-width: 350px;
  }
  
  .pie-chart {
    width: 180px;
    height: 180px;
  }
  
  .pie-chart::before {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 768px) {
  .referrers-layout {
    gap: 25px;
  }
  
  .referrers-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .referrer-card {
    padding: 20px 15px;
    gap: 15px;
  }
  
  .referrer-avatar {
    width: 50px;
    height: 50px;
  }
  
  .referrer-info h3 {
    font-size: 16px;
  }
  
  .referral-count {
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
    overflow: visible;
    padding: 2px 4px;
    min-width: fit-content;
  }
  
  .reward-badge {
    font-size: 11px;
    padding: 5px 10px;
  }
  
  .chart-container {
    padding: 25px;
    max-width: 300px;
  }
  
  .pie-chart {
    width: 160px;
    height: 160px;
  }
  
  .pie-chart::before {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 480px) {
  #top-referrers {
    padding: 40px 0;
  }
  
  .referrers-layout {
    gap: 20px;
  }
  
  .referrers-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .referrer-card {
    padding: 15px 12px;
    gap: 12px;
  }
  
  .referrer-avatar {
    width: 45px;
    height: 45px;
  }
  
  .referrer-info h3 {
    font-size: 14px;
  }
  
  .referral-count {
    font-size: 9px;
    font-weight: 700;
    white-space: nowrap;
    overflow: visible;
    padding: 2px 4px;
    min-width: fit-content;
  }
  
  .reward-badge {
    font-size: 10px;
    padding: 4px 8px;
  }
  
  .rank-badge {
    width: 25px;
    height: 25px;
    font-size: 12px;
  }
  
  .chart-container {
    padding: 20px;
    max-width: 250px;
  }
  
  .pie-chart {
    width: 140px;
    height: 140px;
  }
  
  .pie-chart::before {
    width: 80px;
    height: 80px;
  }
  
  .chart-title {
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .legend-item {
    font-size: 12px;
  }
  }
  
  .promo-card {
    padding: 20px;
    border-radius: 16px;
  }
  
  .promo-header {
    margin-bottom: 12px;
    padding-bottom: 10px;
    padding: 0 16px 10px;
  }
  
  .promo-header h3 {
    font-size: 18px;
  }
  
  .promo-content {
    gap: 8px;
    padding: 0 16px;
  }
  
  .promo-item {
    padding: 16px;
  }
  
  .promo-item h4 {
    font-size: 15px;
  }
  
  .promo-item p {
    font-size: 13px;
  }
  
  .promo-item-content {
    flex-direction: column !important;
    gap: 8px !important;
    align-items: flex-start !important;
  }
  
  .promo-get-btn {
    padding: 6px 12px;
    font-size: 11px;
    min-width: 80px;
    align-self: flex-end;
    margin-top: -4px;
  }
}

/* Responsive Design - Mobile & Tablet */
@media (max-width: 1200px) {
  .container { padding: 0 8px; }
  
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  
  .grid.pricing { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  
  .steps { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  
  .cols { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 768px) {
  /* Header adjustments */
  .nav { padding: 10px 0; }
  
  .brand span { display: none; }
  
  .menu { gap: 0.5rem; }
  
  .menu a { padding: 0.5rem 0.7rem; font-size: 13px; }
  
  /* Hide Packages and FAQ buttons on mobile */
  .menu a[href="#top"], .menu a[href="#faq"] { display: none; }
  
  /* Hero section */
  .hero { 
    padding: 20px; 
    margin-top: 0; 
    margin-bottom: 20px; 
    transform: none;
    width: 100%;
    box-sizing: border-box;
  }
  
  .hero-single-column { 
    gap: 20px; 
    padding: 0 16px;
    width: 100%;
    box-sizing: border-box;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
  }
  
  .hero-two-column {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 16px;
    width: 100%;
    box-sizing: border-box;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
  }
  
  .hero-left-column {
    padding-right: 0;
    width: 100% !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
  }
  
  .feature-cards {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 12px;
    margin-top: 20px;
    padding: 0 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  
  .feature-cards .feature-card {
    flex: 0 0 185px;
    scroll-snap-align: start;
  }
  
  .subscription-selector {
    flex-direction: column;
    gap: 8px;
  }
  
  .hero-image-section { max-width: 100%; }
  
  .hero-content-section { max-width: 100%; }
  
  .eyebrow { font-size: 11px; padding: 4px 8px; }
  
  /* Override H1 font size for mobile with higher specificity */
  .hero h1,
  .hero-grid h1,
  main h1,
  section.hero h1,
  h1 {
    font-size: 28px !important;
    line-height: 1.3 !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  
  .lead { 
    font-size: 15px; 
    line-height: 1.5; 
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .hero-cta { 
    gap: 0.6rem; 
    flex-wrap: wrap;
  }
  
  .btn { 
    padding: 0.8rem 1.5rem; 
    font-size: 13px; 
    white-space: nowrap;
  }
  
  .hero-left-column {
    padding-right: 0;
  }
  
  .hero-two-column {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .hero-right-column {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: -16px auto 0 auto !important;
    min-height: 238px !important;
    height: 238px !important;
    position: relative !important;
  }
  
  .hero-image-container {
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    background: rgba(0,0,0,0.12) !important;
    border-radius: 16px !important;
    aspect-ratio: 16 / 9 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    margin: 0 auto 12px auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    box-sizing: border-box !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: none !important;
  }
  
  .hero-image-container::before { content: none !important; }
  
  .hero-image {
    width: 382px !important;
    height: 222px !important;
    border-radius: 20px !important;
    object-fit: cover !important;
    border: none !important;
    box-shadow: none !important;
    background: rgba(255, 255, 255, 0.02) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    image-rendering: -webkit-optimize-contrast !important;
    image-rendering: crisp-edges !important;
    image-rendering: pixelated !important;
    position: relative !important;
    z-index: 2 !important;
  }
  
  .hero-content {
    padding: 0 16px;
    max-width: 100%;
    overflow: hidden;
  }
  
  .hero {
    padding: 20px 0;
    min-height: auto;
  }
  
  .hero-two-column {
    padding: 20px 0;
    min-height: auto;
  }
  
  .hero h1 {
    font-size: 22px !important;
    line-height: 1.3 !important;
    margin-bottom: 16px;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  
  .lead {
    font-size: 14px !important;
    line-height: 1.5 !important;
    margin-bottom: 20px;
  }
  
  .compact-plan-toggle {
    margin: 20px 0;
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  
  .compact-plan-toggle .toggle-label {
    font-size: 11px;
    white-space: nowrap;
    text-align: center;
    min-width: 0;
    flex-shrink: 0;
  }
  
  .compact-plan-toggle .saving {
    font-size: 9px;
    white-space: nowrap;
  }
  
  .compact-plan-toggle {
    flex-wrap: nowrap;
    justify-content: center;
    padding: 0 8px;
  }
  
  .hero-cta {
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin: 20px 0;
    width: 100%;
  }
  
  .hero-cta .btn {
    padding: 8px 16px;
    font-size: 12px;
    flex: 1;
    width: auto;
    max-width: 220px;
    height: 36px;
    min-height: 36px;
  }
  
  .feature-cards {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    gap: 12px !important;
    margin-top: 20px !important;
    padding: 0 16px !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
  }
  
  .feature-cards .feature-card {
    flex: 0 0 185px !important;
    scroll-snap-align: start !important;
  }
  
  .feature-card {
    width: 100%;
    max-width: none;
    margin: 0;
  }
  
  .trust { gap: 16px; font-size: 13px; }
  
  /* Pricing section mobile fixes */
  .pricing .grid {
    grid-template-columns: 1fr;
    gap: 16px;
    display: grid !important;
  }
  
  .card {
    margin: 0;
    width: 100%;
    max-width: none;
  }
  
  .pricing {
    padding: 20px 0;
  }
  
  /* Section spacing */
  section {
    padding: 40px 0;
  }
  
  .section-head h2 {
    font-size: 24px !important;
    line-height: 1.3 !important;
    text-align: center !important;
  }
  
  .section-head p {
    font-size: 14px !important;
    text-align: center !important;
  }
  
  /* Reviews section mobile */
  .reviews-faq-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .review-card {
    margin: 0;
    padding: 16px;
    min-height: auto;
  }
  
  /* Lucky wheel section mobile */
  .lucky-wheel-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .prize-buttons-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  /* Referrers section mobile */
  .referrers-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .referrers-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .referrer-card {
    margin: 0;
  }
  
  /* Poster adjustments */
  .poster-inner { padding: 20px; }
  
  .poster .badge { font-size: 11px; padding: 4px 8px; }
  
  .poster h3 { font-size: 18px; line-height: 1.3; }
  
  .poster p { font-size: 13px; line-height: 1.4; }
  
  /* Pricing grid */
  .grid.pricing { grid-template-columns: 1fr; gap: 16px; max-width: 280px; margin: 0 auto; }
  
  .card { margin-bottom: 0; }
  
  .plan { padding: 18px 20px; }
  
  .price { padding: 16px 20px; }
  
  .price b { font-size: 22px; }
  
  .features { padding: 0 20px 18px; }
  
  .cta { margin: 14px 20px 18px; }
  
  /* Steps/Features */
  .steps { grid-template-columns: 1fr; gap: 14px; }
  
  .step { padding: 16px; }
  
  .step .num { width: 32px; height: 32px; font-size: 13px; }
  
  /* Lucky Wheel */
  .wheel-container { gap: 20px; margin: 30px 0; }
  
  .prize-table { max-width: 100%; }
  
  .table-row { grid-template-columns: 1fr 80px; }
  
  .table-row.header .table-cell { padding: 16px 12px; font-size: 12px; }
  
  .table-cell { padding: 14px 12px; }
  
  .table-row:not(.header) .table-cell:first-child { padding-left: 16px; font-size: 13px; }
  
  .table-row:not(.header) .table-cell:last-child { font-size: 11px; }
  
  .spin-btn { font-size: 11px; padding: 0.5rem 1rem; }
  
  /* Promo banner */
  .promo-content { grid-template-columns: 1fr; min-height: auto; }
  
  .promo-text { padding: 20px; }
  
  .promo-text h2 { font-size: 22px; line-height: 1.3; }
  
  .promo-text p { font-size: 14px; line-height: 1.4; }
  
  .promo-image { min-height: 120px; border-left: none; border-top: 1px solid var(--line); }
  
  /* TV & Annual cards */
  .tv-package-card .card-content, .annual-package-card .card-content { 
    grid-template-columns: 1fr; 
    min-height: auto; 
  }
  
  .card-text { padding: 20px; }
  
  .card-text h3 { font-size: 17px; line-height: 1.3; }
  
  .card-text p { font-size: 12px; line-height: 1.4; }
  
  .card-image { min-height: 100px; border-left: none; border-top: 1px solid var(--line); }
  
  /* Highlights section - horizontal scroll on mobile */
  .grid[style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: repeat(3, 280px) !important;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }
  
  .grid[style*="grid-template-columns:repeat(3,1fr)"] .target {
    scroll-snap-align: start;
    min-width: 280px;
    width: 280px;
  }
  
  /* Reviews */
  .grid[style*="grid-template-columns:repeat(4,1fr)"] { 
    grid-template-columns: repeat(2, 1fr) !important; 
    gap: 16px; 
  }
  
  /* FAQ */
  #faq details { margin: 8px 0; }
  
  #faq summary { padding: 14px 40px 14px 16px; font-size: 14px; }
  
  #faq details > .muted { padding: 12px 16px 16px; font-size: 13px; line-height: 1.4; }
  
  /* Footer */
  footer { padding: 24px 0; }
  
  .cols { grid-template-columns: 1fr; gap: 16px; }
  
  .legal { margin-top: 16px; font-size: 12px; }
}

/* Footer CSS moved to css/footer.css for optimized loading */

/* Mobile Footer CSS moved to css/footer.css for optimized loading */






/* Footer Responsive CSS moved to css/footer.css for optimized loading */

/* Ensure mobile footer shows on mobile devices */
@media (max-width: 768px) {
  .mobile-footer {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

/* Hide mobile footer on desktop (769px and above) */
@media (min-width: 769px) {
  .mobile-footer {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
  
  .desktop-footer {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

/* Mobile footer navigation items */
@media (max-width: 1024px) {
.nav-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 3px 2px !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    min-width: 0 !important;
    max-width: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
    justify-self: center !important;
    border-radius: 10px !important;
    margin: 0.5px !important;
  }
  
  .nav-item:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    transform: scale(1.05) !important;
    backdrop-filter: blur(10px) !important;
  }
  
  /* Disable hover for non-cart items in mobile footer */
  .mobile-footer .nav-item:not(.cart-item):hover {
    background: transparent !important;
    transform: none !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
  }
  
  .nav-item.active {
    background: transparent !important;
    transform: scale(1.05) !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    border: none !important;
  }
  
  .cart-item {
    background: rgba(255, 255, 255, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    border-radius: 12px !important;
    padding: 3px 2px !important;
    margin: 0.5px !important;
    position: relative !important;
    width: 100% !important;
    max-width: none !important;
    box-sizing: border-box !important;
    justify-self: center !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
  }
  
  .cart-item:hover {
    transform: scale(1.08) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25) !important;
    background: rgba(255, 255, 255, 0.5) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
  }
  
  .nav-text {
    font-size: 14px !important;
    font-weight: 300 !important;
    text-align: center !important;
    margin-top: 4px !important;
    line-height: 1.3 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    letter-spacing: -0.1px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 300 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
  }
  
  .nav-item.active .nav-text {
    color: rgba(255, 255, 255, 1) !important;
    font-weight: 400 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4) !important;
}

.cart-item .nav-text {
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 300 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
  }
  
  .nav-icon {
    width: 18px !important;
    height: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    color: rgba(255, 255, 255, 0.9) !important;
  }
  
  .nav-item:hover .nav-icon {
    transform: scale(1.1) !important;
  }
  
  /* Prevent icon scale on hover for non-cart items */
  .mobile-footer .nav-item:not(.cart-item):hover .nav-icon {
    transform: none !important;
  }
  
  /* Force all icons to white translucent */
  .nav-item .nav-icon { color: rgba(255, 255, 255, 0.9) !important; }
  .nav-item .nav-icon svg,
  .nav-item .nav-icon svg *,
  .nav-item .nav-icon svg path,
  .nav-item .nav-icon svg circle,
  .nav-item .nav-icon svg rect,
  .nav-item .nav-icon svg line,
  .nav-item .nav-icon svg polyline,
  .nav-item .nav-icon svg polygon {
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 2px !important;
    filter: none !important;
  }
  
  /* Override inline attributes explicitly */
  .nav-item .nav-icon svg [fill] { fill: none !important; }
  .nav-item .nav-icon svg [stroke] { stroke: currentColor !important; }
  
  /* Active icon slightly brighter white */
  .nav-item.active .nav-icon { color: rgba(255, 255, 255, 1) !important; }
  .nav-item.active .nav-icon svg,
  .nav-item.active .nav-icon svg * { filter: none !important; }

  /* Home icon neutralized to same style */
  .mobile-nav .nav-item:first-child .nav-icon { color: rgba(255, 255, 255, 0.9) !important; }
  .mobile-nav .nav-item:first-child .nav-icon svg,
  .mobile-nav .nav-item:first-child .nav-icon svg * { filter: none !important; }
  
  .cart-item .nav-icon { color: rgba(255, 255, 255, 0.9) !important; }
  .cart-item .nav-icon svg,
  .cart-item .nav-icon svg * { filter: none !important; }
  
  .badge {
    position: absolute !important;
    top: -3px !important;
    right: -3px !important;
    background: rgba(229, 9, 20, 0.9) !important;
    color: #ffffff !important;
    border-radius: 50% !important;
    width: 14px !important;
    height: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 10px !important;
    font-weight: 300 !important;
    min-width: 14px !important;
    box-shadow: 0 1px 6px rgba(229, 9, 20, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    animation: pulse 2s infinite !important;
  }
  
  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
  }
  
  .countdown-timer {
    font-size: 9px !important;
    color: rgba(0, 0, 0, 0.9) !important;
    font-weight: 300 !important;
    text-align: center !important;
    margin-top: 2px !important;
    line-height: 1.0 !important;
    letter-spacing: 0.3px !important;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.9) !important;
    animation: glow 1.5s ease-in-out infinite alternate !important;
    background: rgba(255, 255, 255, 0.3) !important;
    padding: 1px 4px !important;
    border-radius: 4px !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
  }
  
  @keyframes glow {
    from { opacity: 0.8; }
    to { opacity: 1; }
  }
  
  /* Force all 5 items to be visible */
  .mobile-nav > * {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  body {
    padding-bottom: 55px !important;
  }
  
  /* iOS white hard override for ALL icons - force white translucent */
  .mobile-nav .nav-item .nav-icon,
  .mobile-nav .nav-item .nav-icon *,
  .mobile-nav .nav-item .nav-icon svg,
  .mobile-nav .nav-item .nav-icon svg *,
  .mobile-nav .nav-item .nav-icon svg path,
  .mobile-nav .nav-item .nav-icon svg circle,
  .mobile-nav .nav-item .nav-icon svg rect,
  .mobile-nav .nav-item .nav-icon svg line,
  .mobile-nav .nav-item .nav-icon svg polyline,
  .mobile-nav .nav-item .nav-icon svg polygon {
    color: rgba(255,255,255,0.85) !important;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 2px !important;
  }
  
  /* Override any inline styles and attributes */
  .mobile-nav .nav-item .nav-icon svg [fill],
  .mobile-nav .nav-item .nav-icon svg [style*="fill"],
  .mobile-nav .nav-item .nav-icon svg [stroke],
  .mobile-nav .nav-item .nav-icon svg [style*="stroke"],
  .mobile-nav .nav-item .nav-icon svg path[fill],
  .mobile-nav .nav-item .nav-icon svg path[stroke],
  .mobile-nav .nav-item .nav-icon svg circle[fill],
  .mobile-nav .nav-item .nav-icon svg circle[stroke],
  .mobile-nav .nav-item .nav-icon svg rect[fill],
  .mobile-nav .nav-item .nav-icon svg rect[stroke] {
    fill: none !important;
    stroke: currentColor !important;
  }
  
  /* Force all SVG elements to use currentColor */
  .mobile-nav .nav-item .nav-icon svg * {
    fill: none !important;
    stroke: currentColor !important;
  }
  
  /* Active state - brighter white */
  .mobile-nav .nav-item.active .nav-icon,
  .mobile-nav .nav-item.active .nav-icon *,
  .mobile-nav .nav-item.active .nav-icon svg,
  .mobile-nav .nav-item.active .nav-icon svg * {
    color: rgba(255,255,255,1) !important;
  }
  
  /* Cart item special handling */
  .mobile-nav .nav-item.cart-item .nav-icon,
  .mobile-nav .nav-item.cart-item .nav-icon *,
  .mobile-nav .nav-item.cart-item .nav-icon svg,
  .mobile-nav .nav-item.cart-item .nav-icon svg * {
    color: rgba(255,255,255,0.9) !important;
    fill: none !important;
    stroke: currentColor !important;
  }
}

@media (max-width: 480px) {
  /* Extra small devices */
  .container { padding: 0 8px; }
  
  .hero { padding: 0px 0 5px; margin-top: 0; margin-bottom: 0; transform: translateY(-40px); }
  
  #pricing {
    padding-top: 40px !important;
    margin-top: 30px !important;
  }
  
  /* Override H1 font size for extra small mobile with higher specificity */
  .hero h1,
  .hero-grid h1,
  main h1,
  section.hero h1,
  h1 {
    font-size: 24px !important;
    line-height: 1.3 !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  
  .lead { 
    font-size: 14px; 
    line-height: 1.5; 
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .btn { 
    padding: 0.7rem 1.2rem; 
    font-size: 12px; 
    white-space: nowrap;
  }
  
  /* Extra small mobile improvements */
  .hero h1 {
    font-size: 20px !important;
    line-height: 1.3 !important;
  }
  
  .lead {
    font-size: 13px !important;
    line-height: 1.4 !important;
  }
  
  .section-head h2 {
    font-size: 20px !important;
  }
  
  .section-head p {
    font-size: 13px !important;
  }
  
  .container {
    padding: 0 12px;
  }
  
  .hero-content {
    padding: 0 8px;
  }
  
  .feature-cards {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    gap: 8px !important;
    padding: 0 16px !important;
    margin-top: 20px !important;
    margin-bottom: 20px !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
  }
  
  .feature-cards .feature-card {
    flex: 0 0 160px !important;
    scroll-snap-align: start !important;
  }
  
  .feature-card {
    padding: 12px 8px;
    height: auto;
    min-height: 50px;
    width: 100%;
    margin: 0;
  }
  
  .compact-plan-toggle .toggle-label {
    font-size: 10px;
  }
  
  .compact-plan-toggle .saving {
    font-size: 8px;
  }
  
  .feature-number {
    font-size: 12px;
  }
  
  .feature-text {
    font-size: 8px;
  }
  
  .poster-inner { padding: 16px; }
  
  .poster h3 { font-size: 16px; line-height: 1.3; }
  
  .poster p { font-size: 12px; line-height: 1.4; }
  
  .plan { padding: 16px 18px; }
  
  .price { padding: 14px 18px; }
  
  .price b { font-size: 18px; }
  
  .features { padding: 0 18px 16px; }
  
  .cta { margin: 12px 18px 16px; }
  
  .prize-table { border-radius: 8px; }
  
  .table-row { grid-template-columns: 1fr 70px; }
  
  .table-row.header .table-cell { padding: 14px 10px; font-size: 11px; }
  
  .table-cell { padding: 12px 10px; }
  
  .table-row:not(.header) .table-cell:first-child { padding-left: 14px; font-size: 12px; }
  
  .table-row:not(.header) .table-cell:last-child { font-size: 10px; }
  
  .spin-btn { font-size: 10px; padding: 0.4rem 0.8rem; }
  
  .promo-text { padding: 16px; }
  
  .promo-text h2 { font-size: 18px; line-height: 1.3; }
  
  .promo-text p { font-size: 13px; line-height: 1.4; }
  
  .card-text { padding: 16px; }
  
  .card-text h3 { font-size: 15px; line-height: 1.3; }
  
  .card-text p { font-size: 11px; line-height: 1.4; }
  
  .grid[style*="grid-template-columns:repeat(4,1fr)"] { 
    grid-template-columns: 1fr !important; 
    gap: 14px; 
  }
}

/* Table responsive adjustments for mobile */
@media (max-width: 768px) {
  .table {
    font-size: 12px;
    line-height: 1.3;
  }
  
  .table th,
  .table td {
    padding: 8px 6px;
    font-size: 12px;
  }
  
  .table th {
    font-size: 13px;
    font-weight: 600;
  }
  
  /* Make table scroll horizontally on mobile */
  .card[style*="padding:0"] {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  
  .table {
    min-width: 600px;
    scroll-snap-align: start;
  }
  
  /* Adjust table header links */
  .table th a {
    font-size: 12px;
    padding: 4px 6px;
    white-space: nowrap;
  }
  
  /* Ensure all content fits */
  .table td,
  .table th {
    white-space: nowrap;
    min-width: 80px;
  }
  
  .table th:first-child,
  .table td:first-child {
    min-width: 120px;
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .table {
    font-size: 11px;
    line-height: 1.2;
  }
  
  .table th,
  .table td {
    padding: 6px 4px;
    font-size: 11px;
  }
  
  .table th {
    font-size: 12px;
  }
  
  .table th a {
    font-size: 11px;
    padding: 3px 4px;
  }
  
  .table {
    min-width: 550px;
  }
}

/* Poster section with image */
.poster-inner {
  background: linear-gradient(135deg, #16213e, #1a1a2e);
  padding: 24px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 300px;
}

.poster-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.poster-inner .badge,
.poster-inner h3,
.poster-inner p,
.poster-image {
  position: relative;
  z-index: 2;
}

.poster-inner .badge {
  background: var(--brand);
  color: white;
  padding: 12px 20px;
  border-radius: 24px;
  font-size: 16px;
  font-weight: 600;
  align-self: flex-start;
}

.poster-inner h3 {
  color: white;
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

.poster-inner p {
  color: #e0e0e0;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

.poster-image {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.poster-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.poster-image:hover img {
  transform: scale(1.05);
}

/* Review Cards with Avatar */
.review-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  height: auto;
  overflow: visible;
  min-width: 0;
  word-wrap: break-word;
  contain: layout style;
  will-change: auto;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--line);
  background: var(--panel);
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.reviewer-details {
  flex: 1;
}

.reviewer-details b {
  font-size: 14px;
  color: var(--text);
  line-height: 1.3;
}

.review-text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
  font-style: italic;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Responsive adjustments for review cards */
@media (max-width: 768px) {
  .reviewer-avatar {
    width: 40px;
    height: 40px;
  }
  
  .reviewer-details b {
    font-size: 14px;
  }
  
  .review-text {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .reviewer-avatar {
    width: 36px;
    height: 36px;
  }
  
  .reviewer-details b {
    font-size: 13px;
  }
  
  .review-text {
    font-size: 14px;
    margin-top: -12px;
  }
}

/* Scrolling Features Bar */
.scrolling-features {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 4px !important;
  border-radius: 12px;
  padding: 6px 12px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex: 1;
  min-width: 300px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.scrolling-icon {
  color: var(--brand-2);
  font-size: 14px;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

.scrolling-content {
  display: inline-flex;
  align-items: center;
  animation: scroll 20s linear infinite;
  gap: 8px;
}

.feature-item {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.feature-separator {
  color: var(--muted);
  font-size: 14px;
  font-weight: 300;
  margin: 0 4px;
}

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

/* Device Mockup Styles - iOS 26 Style */
.device-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  gap: 20px;
  flex-wrap: wrap;
}

.device-frame {
  position: relative;
  width: 200px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 1px 0 rgba(255, 255, 255, 0.05) inset;
}

.device-frame.tablet {
  width: 300px;
  height: 200px;
  border-radius: 20px;
  padding: 15px;
}

.device-screen {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 20px;
  padding: 8px;
  position: relative;
  overflow: hidden;
}

.device-frame.tablet .device-screen {
  border-radius: 15px;
  padding: 6px;
}

.device-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.device-frame.tablet .device-image {
  border-radius: 9px;
}

.device-shadow {
  display: none;
}

/* Background Image Styles */
.background-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px);
}

/* Responsive adjustments for background image */
@media (max-width: 768px) {
  .hero {
    height: auto;
    margin-top: -25px !important;
    padding-top: 20px;
  }
  
  .hero-single-column {
    height: 75vh;
  }
  
  .hero-background {
    height: 75vh;
    top: 20px;
  }
  
  .hero-image {
    height: 75vh;
    top: 20px;
  }
  
  .background-img {
    height: 75vh;
    top: 20px;
  }
  
  .hero-content-section {
    padding: 5px 20px 10px 20px;
    min-height: 40vh;
    margin-top: 0;
  }
  
  /* Mobile H1 adjustments */
  h1 {
    font-size: clamp(28px, 6vw, 36px);
    line-height: 1.3;
    margin: 15px 0;
  }
  
  /* Mobile lead text */
  .lead {
    font-size: clamp(16px, 3.5vw, 20px);
    line-height: 1.4;
    margin: 20px 0;
  }
  
  /* Hide plan toggle on mobile */
  .compact-plan-toggle {
    display: none !important;
  }
  
  /* Mobile buttons */
  .hero-cta {
    gap: 6px;
    margin-top: 6px !important;
    flex-direction: row;
    align-items: center;
  }
  
  .hero-cta .btn {
    padding: 8px 16px;
    font-size: 12px;
    flex: 1;
    width: auto;
    max-width: 220px;
    height: 36px;
    min-height: 36px;
  }
  
  .device-mockup {
    flex-direction: column;
    gap: 15px;
  }
  
  .device-frame {
    width: 320px;
    height: 190px;
    max-width: 90vw;
  }
  
  .device-frame.tablet {
    width: 320px;
    height: 190px;
    max-width: 90vw;
  }
  
  .device-screen {
    border-radius: 15px;
    padding: 6px;
  }
  
  .device-frame.tablet .device-screen {
    border-radius: 12px;
    padding: 4px;
  }
  
  .hero-cta-container {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 6px !important;
  }
  
  .scrolling-features {
    padding: 6px 16px;
    min-width: auto;
    margin-top: 4px !important;
    margin-bottom: 15px !important;
    order: -1;
    position: relative;
    top: 0;
    left: 8px;
    right: 8px;
    z-index: 10;
    transform: translateY(0px);
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    font-size: 16px !important;
  }
  
  .hero-content {
    order: 1;
  }
  
  .hero-cta-container {
    order: 2;
  }
  
  .hero-cta-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  
  .scrolling-icon {
    font-size: 12px;
  }
  
  .feature-item {
    font-size: 12px;
  }
  
  .feature-separator {
    font-size: 12px;
  }
  
  /* Mobile trust badges */
  .trust {
    margin-top: 25px;
  gap: 8px;
    flex-direction: column;
    align-items: center;
  }
  
  .trust .item {
    font-size: 14px;
  }
  
  /* Mobile eyebrow */
  .eyebrow {
    font-size: 12px;
    padding: 6px 12px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: auto;
    margin-top: 0;
    padding-top: 15px;
  }
  
  .hero-single-column {
    height: 70vh;
  }
  
  .hero-background {
    height: 70vh;
    top: 15px;
  }
  
  /* Larger device mockup for very small screens */
  .device-frame {
    width: 320px;
    height: 190px;
    max-width: 90vw;
  }
  
  .device-frame.tablet {
    width: 320px;
    height: 190px;
    max-width: 90vw;
  }
  
  .hero-image {
    height: 70vh;
    top: 15px;
  }
  
  .background-img {
    height: 70vh;
    top: 15px;
  }
  
  .hero-content-section {
    padding: 5px 15px 8px 15px;
    min-height: 35vh;
    margin-top: 0;
  }
  
  /* Small mobile H1 */
  h1 {
    font-size: clamp(24px, 7vw, 32px);
    line-height: 1.2;
    margin: 12px 0;
  }
  
  /* Small mobile lead text */
  .lead {
    font-size: clamp(14px, 4vw, 18px);
    line-height: 1.3;
    margin: 15px 0;
  }
  
  /* Small mobile buttons */
  .btn {
    padding: 12px 24px;
    font-size: 15px;
    width: 100%;
    max-width: 260px;
  }
  
  /* Small mobile trust badges */
  .trust .item {
    font-size: 13px;
  }
  
  /* Small mobile eyebrow */
  .eyebrow {
    font-size: 11px;
    padding: 5px 10px;
  }
  
  /* Small mobile features */
  .features-section {
    padding: 30px 0 50px 0;
    margin-top: 15px;
  }
  
  .features-grid {
    padding: 0 15px;
    gap: 12px;
  }
  
  .feature-card {
    padding: 20px 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }
  
  .feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  }
  
  .feature-icon {
    font-size: 36px;
    margin-bottom: 12px;
  }
  
  .feature-card h3 {
    font-size: 16px;
  }
  
  .feature-card p {
    font-size: 12px;
  }
}

/* Features Section - iOS 26 Style */
.features-section {
  padding: 80px 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}

/* Hide mobile swipe on desktop */
.mobile-features-swipe {
  display: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 59, 48, 0.05), rgba(255, 59, 48, 0.02));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: var(--radius);
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: var(--radius);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 59, 48, 0.3);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover::after {
  left: 100%;
}

.feature-icon {
  font-size: 42px;
  margin-bottom: 16px;
  display: block;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.feature-card p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}

/* Responsive Features */
@media (max-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .features-section {
    padding: 40px 16px 60px 16px;
    margin-top: 20px;
    width: 100%;
    box-sizing: border-box;
  }
  
  /* Hide desktop grid on mobile */
  .features-grid {
    display: none;
  }
  
  /* Show mobile swipe */
  .mobile-features-swipe {
    display: block;
  }
  
  .swipe-container {
    overflow: hidden;
    margin: 0 16px;
    border-radius: 12px;
    width: calc(100% - 32px);
    box-sizing: border-box;
  }
  
  .swipe-track {
    display: flex;
    transition: transform 0.3s ease;
    width: 500%; /* 5 cards * 100% */
  }
  
  .swipe-card {
    width: 20%; /* 100% / 5 cards */
    flex-shrink: 0;
    background: var(--card-bg);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 20px 14px;
    text-align: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-right: 8px;
  }
  
  .swipe-card:last-child {
    margin-right: 0;
  }
  
  .swipe-card .feature-icon {
    font-size: 36px;
    margin-bottom: 12px;
    display: block;
  }
  
  .swipe-card h3 {
    font-size: 16px;
    font-weight: 400;
    color: var(--text);
    margin: 0 0 8px 0;
    line-height: 1.3;
  }
  
  .swipe-card p {
    font-size: 12px;
    color: var(--muted);
    margin: 0;
    line-height: 1.3;
  }
  
  .swipe-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }
  
  .indicator {
    width: 20px;
    height: 3px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .indicator.active {
    background: var(--brand);
    transform: scaleY(1.5);
  }
}

/* LINE Contact Sticky Button */
.line-contact-sticky {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  transition: all 0.3s ease;
}

.line-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #00C300;
  color: white;
  padding: 12px 16px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 20px rgba(0, 195, 0, 0.4);
  transition: all 0.3s ease;
  border: 2px solid #00C300;
}

.line-btn:hover {
  background: #00A000;
  border-color: #00A000;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 195, 0, 0.5);
}

.line-btn:active {
  transform: translateY(0);
}

.line-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.line-icon svg {
  width: 20px;
  height: 20px;
}

.line-text {
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Responsive adjustments for LOGO */
@media (max-width: 768px) {
  .brand-mark {
    width: 100px;
    height: 40px;
    border-radius: 0;
  }
  
  .brand-mark img {
    width: 100px;
    height: 40px;
  }
  
  .brand {
    gap: 0.6rem;
    font-size: 14px;
  }
  
  .nav {
    padding: 8px 12px;
  }
  
  .menu {
    gap: 8px;
  }
  
  .menu a {
    padding: 6px 10px;
    font-size: 11px;
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .brand-mark {
    width: 80px;
    height: 32px;
    border-radius: 0;
  }
  
  .brand-mark img {
    width: 80px;
    height: 32px;
  }
  
  .brand {
    gap: 0.5rem;
    font-size: 12px;
  }
  
  .nav {
    padding: 6px 8px;
  }
  
  .menu {
    gap: 4px;
  }
  
  .menu a {
    padding: 4px 8px;
    font-size: 10px;
    border-radius: 10px;
  }
  .hero-cta .btn { min-height: 36px; }
  .card { padding: 14px; }
  
  .user-profile-btn {
    padding: 3px 6px;
    font-size: 9px;
  }
  
  .user-avatar {
    width: 18px;
    height: 18px;
    font-size: 9px;
  }
}

/* Responsive adjustments for LINE button */
@media (max-width: 768px) {
  .line-contact-sticky {
    bottom: 20px;
    right: 20px;
  }
  
  .line-btn {
    padding: 10px 14px;
    font-size: 13px;
  }
  
  .line-icon {
    width: 20px;
    height: 20px;
  }
  
  .line-icon svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .line-contact-sticky {
    bottom: 15px;
    right: 15px;
  }
  
  .line-btn {
    padding: 8px 12px;
    font-size: 12px;
    gap: 6px;
  }
  
  .line-icon {
    width: 18px;
    height: 18px;
  }
  
  .line-icon svg {
    width: 16px;
    height: 16px;
  }
}

/* Hide LINE button on very small screens */
@media (max-width: 360px) {
  .line-contact-sticky {
    display: none;
  }
}

/* Why BIZ-G Movies Section */
.why-bizg-section {
  padding: 30px 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,0,0,0.9));
  text-align: center;
  margin-top: -30px;
}

.bizg-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 20px;
}

/* Center section heading for why-bizg */
.why-bizg-section .section-head {
  text-align: center;
}

.why-bizg-section .section-head h2 {
  text-align: center;
}

.why-bizg-section .section-head p {
  text-align: center;
}

.bizg-feature-card {
  background: rgba(28,28,30,0.8);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 12px 2px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.bizg-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  border-radius: 6px;
  transition: left 0.6s ease;
  z-index: 1;
}

.bizg-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4), 0 1px 0 rgba(255,255,255,0.08) inset;
  border-color: rgba(255,255,255,0.15);
}

.bizg-feature-card:hover::before {
  left: 100%;
}

.bizg-feature-card h3 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 4px 0;
  color: var(--text);
  position: relative;
  z-index: 2;
}

.bizg-feature-card p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}

/* Mobile responsive for BIZ-G features */
@media (max-width: 1024px) {
  .bizg-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
  
  .bizg-feature-card {
    padding: 10px 1px;
  }
  
  .bizg-feature-card h3 {
    font-size: 13px;
  }
  
  .bizg-feature-card p {
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  .why-bizg-section {
    padding: 20px 0;
    margin-top: -50px;
  }
  
  .bizg-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    margin-top: 15px;
  }
  
  .bizg-feature-card {
    padding: 12px 6px;
    border-radius: 8px;
    min-height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .bizg-feature-card h3 {
    font-size: 14px;
    margin-bottom: 6px;
  }
  
  .bizg-feature-card p {
    font-size: 11px;
    line-height: 1.3;
  }
}

@media (max-width: 480px) {
  .why-bizg-section {
    padding: 15px 0;
    margin-top: -40px;
  }
  
  .bizg-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    margin-top: 12px;
  }
  
  .bizg-feature-card {
    padding: 10px 4px;
    border-radius: 8px;
    min-height: 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .bizg-feature-card h3 {
    font-size: 12px;
    margin-bottom: 4px;
    font-weight: 600;
  }
  
  .bizg-feature-card p {
    font-size: 10px;
    line-height: 1.3;
    text-align: center;
  }
}

/* Reviews and FAQ - Side by Side Layout */
.reviews-faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 30px;
  margin-bottom: 80px;
  align-items: start;
  width: 100%;
  max-width: 100%;
  overflow: visible;
  height: auto;
}

.reviews-column {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: visible;
  height: auto;
  padding: 20px 0;
}

.faq-column {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 1px 0 rgba(255,255,255,0.05) inset;
  position: relative;
  overflow: visible;
  width: 100%;
  height: auto;
}

.faq-column::before {
  display: none;
}

.faq-content {
  margin-top: 20px;
  width: 100%;
  max-width: 100%;
  overflow: visible;
  height: auto;
  position: relative;
  z-index: 2;
}

.faq-content details {
  background: rgba(15,15,20,0.4);
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  margin-bottom: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: relative;
  height: auto;
  cursor: pointer;
}

.faq-content details::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  border-radius: 12px;
  transition: left 0.6s ease;
  z-index: 1;
}

.faq-content details:hover::before {
  left: 100%;
}

.faq-content details:hover {
  border-color: rgba(255,255,255,0.15);
  background: rgba(15,15,20,0.6);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3), 0 1px 0 rgba(255,255,255,0.05) inset;
  z-index: 2;
}

.faq-content details[open] {
  border-color: var(--brand-2);
  background: rgba(15,15,20,0.7);
  box-shadow: 0 2px 4px rgba(220, 38, 38, 0.1);
  z-index: 2;
}

.faq-content details summary {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-content details summary::after {
  content: '+';
  font-size: 16px;
  font-weight: bold;
  color: var(--brand-2);
  transition: all 0.3s ease;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.1);
  z-index: 4;
  box-shadow: none;
}

.faq-content details[open] summary::after {
  content: '−';
  background: var(--brand-2);
  color: #fff;
  transform: rotate(180deg);
  z-index: 4;
  box-shadow: none;
  opacity: 0.8;
  font-size: 16px;
  width: 20px;
  height: 20px;
}

.faq-content details summary:hover {
  color: var(--brand-2);
  z-index: 4;
  text-shadow: none;
  background: none;
}

.faq-content details div {
  padding: 0 20px 16px 20px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 13px;
  position: relative;
  z-index: 2;
  animation: fadeIn 0.3s ease;
  overflow: visible;
  height: auto;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reviews Grid - 2 columns - Performance Optimized */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
  width: 100%;
  overflow: visible;
  transform: none !important;
  transition: none !important;
  height: auto;
  contain: layout style;
  will-change: transform;
}

/* Reviews Slider - Original (for fallback) */
.reviews-slider {
  position: relative;
  margin-top: 30px;
  overflow: hidden;
}

.reviews-container {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 20px;
}

.review-card {
  flex: 0 0 calc(25% - 15px);
  min-width: 200px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2), 0 1px 0 rgba(255,255,255,0.05) inset;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 12px;
}

.review-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border-color: rgba(255,255,255,0.1);
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: -10px;
}

.reviewer-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviewer-details b {
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
}

.review-text {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.3;
  font-style: italic;
  margin-top: -25px;
}

.slider-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 2;
}

.slider-btn {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--text);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  pointer-events: all;
  font-size: 18px;
  font-weight: bold;
}

.slider-btn:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.3);
  transform: scale(1.1);
}

.slider-btn:active {
  transform: scale(0.95);
}

.prev-btn {
  margin-left: -20px;
}

.next-btn {
  margin-right: -20px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dot.active {
  background: var(--brand-2);
  transform: scale(1.2);
}

.dot:hover {
  background: rgba(255,255,255,0.5);
}

/* Mobile responsive for reviews-faq layout */
@media (max-width: 1024px) {
  .reviews-faq-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 80px;
    align-items: start;
  }
  
  .reviews-column {
    padding: 15px 0;
  }
  
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    transform: none !important;
    transition: none !important;
    overflow: visible;
    height: auto;
  }
  
  .faq-column {
    padding: 25px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 1px 0 rgba(255,255,255,0.05) inset;
  }
  
  .faq-content details summary {
    padding: 18px 20px;
    font-size: 14px;
  }
  
  .faq-content details div {
    padding: 0 18px 16px 18px;
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .reviews-faq-layout {
    gap: 25px;
    margin-bottom: 70px;
    align-items: start;
  }
  
  .reviews-column {
    padding: 15px 0;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    transform: none !important;
    transition: none !important;
    overflow: visible;
    height: auto;
  }
  
  .review-card {
    min-width: auto;
  }
  
  .faq-column {
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 1px 0 rgba(255,255,255,0.05) inset;
  }
  
  .faq-content details {
    margin-bottom: 10px;
  }
  
  .faq-content details summary {
    padding: 16px 18px;
    font-size: 14px;
  }
  
  .faq-content details div {
    padding: 0 16px 14px 16px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .reviews-faq-layout {
    gap: 20px;
    margin-bottom: 60px;
    align-items: start;
  }
  
  .reviews-column {
    padding: 15px 0;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    transform: none !important;
    transition: none !important;
    overflow: visible;
    height: auto;
  }
  
  .reviewer-info {
    gap: 10px;
  }
  
  .reviewer-avatar {
    width: 24px;
    height: 24px;
  }
  
  .reviewer-details b {
    font-size: 13px;
  }
  
  .review-text {
    font-size: 14px;
    margin-top: -12px;
  }
  
  .faq-column {
    padding: 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 1px 0 rgba(255,255,255,0.05) inset;
  }
  
  .faq-content details {
    margin-bottom: 8px;
  }
  
  .faq-content details summary {
    padding: 14px 16px;
    font-size: 13px;
  }
  
  .faq-content details summary::after {
    width: 20px;
    height: 20px;
    font-size: 16px;
  }
  
  .faq-content details div {
    padding: 0 14px 12px 14px;
    font-size: 11px;
  }
}

/* Mobile responsive for reviews - Original slider */
@media (max-width: 1024px) {
  .review-card {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 250px;
  }
}

@media (max-width: 768px) {
  .review-card {
    flex: 0 0 calc(50% - 10px);
    min-width: 200px;
  }
  
  .reviews-container {
    gap: 15px;
  }
  
  .slider-btn {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  
  .prev-btn {
    margin-left: -15px;
  }
  
  .next-btn {
    margin-right: -15px;
  }
}

@media (max-width: 480px) {
  .review-card {
    flex: 0 0 calc(100% - 10px);
    min-width: 280px;
  }
  
  .reviews-container {
    gap: 12px;
  }
  
  .reviewer-info {
    gap: 10px;
  }
  
  .reviewer-avatar {
    width: 24px;
    height: 24px;
  }
  
  .reviewer-details b {
    font-size: 13px;
  }
  
  .review-text {
    font-size: 14px;
    margin-top: -12px;
  }
}

/* Series Layout - Side by side */
.series-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
  gap: 20px;
}

/* Center section heading for recommended series */
#recommended-series .section-head {
  text-align: center;
}

.series-horizontal-scroll {
  flex: 1;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 10px;
  max-width: calc(4 * 216px); /* Show only 4 items */
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  margin: 0 auto;
}

/* Series Categories - Below Images */
.series-categories-below {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 0 20px;
}

.category-btn-small {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.category-btn-small:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.category-btn-small .btn-icon {
  font-size: 12px;
}

.btn-text {
  white-space: nowrap;
}

.category-grid-inline {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

/* Series Categories - Original (for fallback) */
.series-categories {
  margin-top: 30px;
  padding: 20px 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  max-width: 1000px;
  margin: 0 auto;
}

.category-btn {
  background: rgba(28,28,30,0.8);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 20px 24px;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 120px;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.category-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.5s ease;
}

.category-btn:hover::before {
  left: 100%;
}

.category-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  border-color: rgba(255,255,255,0.2);
  background: rgba(28,28,30,0.9);
}

.category-btn:active {
  transform: translateY(-2px);
  transition: transform 0.1s ease;
}

.category-btn.active {
  background: var(--brand-2);
  border-color: var(--brand-3);
  color: #fff;
  box-shadow: 0 8px 32px rgba(220, 38, 38, 0.4);
  transform: translateY(-2px);
}

.category-btn.active:hover {
  background: var(--brand-3);
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
  transform: translateY(-2px);
}

.category-icon {
  font-size: 32px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  margin-bottom: 8px;
}

.category-text {
  font-size: 16px;
  font-weight: 600;
  position: relative;
  z-index: 2;
  line-height: 1.3;
  text-align: center;
}

/* Mobile responsive for series layout */
@media (max-width: 1024px) {
  .series-layout {
    flex-direction: column;
    gap: 20px;
  }
  
  .series-categories-inline {
    flex: none;
    width: 100%;
    padding: 20px 0;
  }
  
  .category-grid-inline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
  }
  
  .category-btn {
    min-height: 100px;
    padding: 16px 20px;
  }
  
  .category-icon {
    font-size: 28px;
  }
  
  .category-text {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .series-layout {
    gap: 15px;
  }
  
  .category-grid-inline {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .category-btn {
    min-height: 90px;
    padding: 14px 16px;
  }
  
  .category-icon {
    font-size: 24px;
  }
  
  .category-text {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .category-grid-inline {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .category-btn {
    min-height: 80px;
    padding: 12px 14px;
  }
  
  .category-icon {
    font-size: 20px;
  }
  
  .category-text {
    font-size: 13px;
  }
}

/* Mobile responsive for categories - Original */
@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .category-btn {
    padding: 14px 16px;
    gap: 10px;
  }
  
  .category-icon {
    font-size: 18px;
  }
  
  .category-text {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .category-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .category-btn {
    padding: 12px 14px;
    gap: 8px;
  }
  
  .category-icon {
    font-size: 16px;
  }
  
  .category-text {
    font-size: 12px;
  }
}

/* Recommended Series Section - Horizontal Scroll */
.series-horizontal-scroll {
  margin-top: 30px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 10px;
}

.series-horizontal-scroll::-webkit-scrollbar {
  height: 6px;
}

.series-horizontal-scroll::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
}

.series-horizontal-scroll::-webkit-scrollbar-thumb {
  background: var(--brand-2);
  border-radius: 3px;
}

.series-scroll-container {
  display: flex;
  gap: 16px;
  padding: 0 4px;
  min-width: max-content;
  width: calc(5 * 216px); /* 5 items total for scrolling */
  scroll-snap-type: x mandatory;
}

  .series-item {
    flex: 0 0 200px;
    position: relative;
    scroll-snap-align: start;
  }
}

/* Mobile responsive for series */
@media (max-width: 768px) {
  .series-horizontal-scroll {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: thin;
    scrollbar-color: var(--brand-2) rgba(255,255,255,0.1);
  }
  
  .series-horizontal-scroll::-webkit-scrollbar {
    height: 4px;
  }
  
  .series-horizontal-scroll::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
  }
  
  .series-horizontal-scroll::-webkit-scrollbar-thumb {
    background: var(--brand-2);
    border-radius: 2px;
  }
  
  .series-scroll-container {
    width: calc(5 * 176px) !important; /* 5 items total for scrolling */
    scroll-snap-type: x mandatory !important;
    min-width: max-content !important;
  }
  
  .series-horizontal-scroll {
    max-width: calc(4 * 176px) !important; /* Show only 4 items */
  }
  
  .series-item {
    flex: 0 0 160px !important;
    scroll-snap-align: start !important;
  }
  
  .series-categories-below {
    margin-top: 15px;
    padding: 0 15px;
  }
  
  .category-btn-small {
    padding: 5px 10px;
    font-size: 10px;
  }
  
  .category-btn-small .btn-icon {
    font-size: 11px;
  }
}

/* Mobile responsive for series - Small screens */
@media (max-width: 480px) {
  .series-horizontal-scroll {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-snap-type: x mandatory !important;
  }
  
  .series-scroll-container {
    width: calc(5 * 156px) !important; /* 5 items total for scrolling */
    scroll-snap-type: x mandatory !important;
    min-width: max-content !important;
  }
  
  .series-horizontal-scroll {
    max-width: calc(4 * 156px) !important; /* Show only 4 items */
  }
  
  .series-item {
    flex: 0 0 140px !important;
    scroll-snap-align: start !important;
  }
  
  .series-categories-below {
    margin-top: 12px;
    padding: 0 10px;
  }
  
  .category-btn-small {
    padding: 4px 8px;
    font-size: 9px;
  }
  
  .category-btn-small .btn-icon {
    font-size: 10px;
  }
}

.series-poster {
  position: relative;
  aspect-ratio: 2/3;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.series-item:hover .series-poster {
  transform: scale(1.05);
}

.series-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.series-number {
  position: absolute;
  top: 6px;
  left: 6px;
  background: rgba(0,0,0,0.9);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  border: 2px solid white;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.netflix-logo {
  position: absolute;
  top: 6px;
  right: 6px;
  background: #E50914;
  color: white;
  width: 22px;
  height: 22px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 11px;
  font-family: 'Arial', sans-serif;
}

.series-title {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Mobile responsive for series horizontal scroll */
@media (max-width: 768px) {
  .series-item {
    flex: 0 0 150px;
  }
  
  .series-title {
    font-size: 12px;
  }
  
  .series-number {
    width: 26px;
    height: 26px;
    font-size: 13px;
  }
  
  .netflix-logo {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .series-item {
    flex: 0 0 130px;
  }
  
  .series-title {
    font-size: 11px;
  }
  
  .series-number {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }
  
  .netflix-logo {
    width: 18px;
    height: 18px;
    font-size: 9px;
  }
}

/* TV & Annual block responsive adjustments */
@media (max-width: 768px) {
  #tv-annual .grid[style*="grid-template-columns:repeat(2,1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  
  .tv-package-card,
  .annual-package-card {
    margin-bottom: 0;
  }
}

@media (max-width: 480px) {
  #tv-annual .grid[style*="grid-template-columns:repeat(2,1fr)"] {
    gap: 14px;
  }
}

/* Pricing CTA Button - Smaller and Smoother */
.cta .btn {
  padding: 0.6rem 1.2rem;
  font-size: 13px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
  min-width: 120px;
  text-align: center;
  display: inline-block;
}

/* Removed - handled by universal system */

.cta .btn:active {
  transform: translateY(0);
}

/* Responsive adjustments for CTA buttons */
@media (max-width: 768px) {
  .cta .btn {
    padding: 0.5rem 1rem;
    font-size: 12px;
    min-width: 100px;
  }
  
  .code-input-container {
    margin: 15px auto;
    padding: 15px;
    max-width: 85%;
  }
  
  .code-input {
    max-width: 250px;
    padding: 10px 14px;
    font-size: 13px;
  }
  
  .spin-btn {
    min-width: 100px;
    padding: 6px 12px;
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .cta .btn {
    padding: 0.4rem 0.8rem;
    font-size: 11px;
    min-width: 90px;
  }
  
  .code-input-container {
    margin: 10px auto;
    padding: 12px;
    max-width: 95%;
  }
  
  .code-input {
    padding: 8px 12px;
    font-size: 12px;
  }
  
  .spin-btn {
    min-width: 80px;
    padding: 6px 10px;
    font-size: 10px;
  }
}

/* Constrain hero container to site width and add side padding */
section.hero > .container {
  max-width: var(--w) !important;
  width: 100%;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Blob background system */
.blobs-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.blob {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.18; /* was 0.35 */
  mix-blend-mode: normal; /* avoid screen blending artifacts */
}

/* Variants */
.blob.b1 {
  background:
    radial-gradient(closest-side, #b517ff 0%, transparent 70%),
    radial-gradient(closest-side, #1ec8ff 0%, transparent 70%);
}
.blob.b2 {
  background:
    radial-gradient(closest-side, #ff0037 0%, transparent 70%),
    radial-gradient(closest-side, #ff8a00 0%, transparent 70%);
}
.blob.b3 {
  background:
    radial-gradient(closest-side, #00ffa3 0%, transparent 70%),
    radial-gradient(closest-side, #0099ff 0%, transparent 70%);
}

/* Suggested positions for hero */
.hero .blobs-wrap .b1 { left: -120px; top: -140px; }
.hero .blobs-wrap .b2 { right: -160px; top: 0; }
.hero .blobs-wrap .b3 { left: 30%; bottom: -200px; }

/* Ensure hero content stays above */
.hero { position: relative; }

/* Match pricing section background to hero (no extra fills) */
#pricing,
#pricing .container { background: #00000000 !important; }
#pricing::before,
#pricing::after { content: none !important; display: none !important; background: none !important; }

/* Make pricing cards fully transparent with glass effect */
#pricing .card {
  background: rgba(0, 0, 0, 0) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15) !important;
}
#pricing .card .plan,
#pricing .card .price,
#pricing .card .features,
#pricing .card .cta {
  background: transparent !important;
}
#pricing .card:hover { 
  background: rgba(255, 255, 255, 0.05) !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25) !important;
}

/* Mobile fixes for pricing cards - add proper background */
@media (max-width: 768px) {
  /* Ensure pricing section has solid background */
  #pricing {
    background: #00000000 !important;
    position: relative !important;
    z-index: 20 !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
    padding-bottom: 120px !important;
    margin-bottom: 60px !important;
  }
  
  #pricing .card {
    background: rgba(255, 255, 255, 0.02) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    margin-bottom: 16px !important;
  }
  
  #pricing .card .plan,
  #pricing .card .price,
  #pricing .card .features {
    background: transparent !important;
  }
  
  #pricing .card .cta {
    background: transparent !important;
    margin: 18px 20px 20px !important;
  }
  
  #pricing .card .cta .btn {
    background: rgba(229, 9, 20, 0.9) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
  }
  
  #pricing .card .cta .btn.btn-line {
    background: rgba(0, 195, 0, 0.9) !important;
    width: 80px !important;
    height: 30px !important;
    padding: 4px 8px !important;
    font-size: 11px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
  }
  
  /* Ensure proper spacing between cards */
  .grid.pricing {
    gap: 16px !important;
    padding: 0 16px !important;
  }
  
  /* Improve text readability on mobile */
  #pricing .card .plan .name {
    color: #ffffff !important;
    font-weight: 700 !important;
  }
  
  #pricing .card .price b {
    color: #ffffff !important;
    font-weight: 800 !important;
  }
  
  #pricing .card .features li {
    color: #dce0e7 !important;
    font-weight: 500 !important;
  }
  
  /* Ensure buttons are properly visible */
  #pricing .card .cta .btn {
    color: #ffffff !important;
    font-weight: 600 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
  }
}

/* Disable hero decorative layers to avoid residual glow */
.hero .blobs-wrap, .hero .blob { display: none !important; background: none !important; }
.hero::before, .hero::after { content: none !important; display: none !important; background: none !important; }

/* Global primary background color */
:root { --bg: #0a0b10; }
html, body { background: var(--bg) !important; }

/* Site-wide blob background overlay (primary aesthetic) */
body { position: relative; }
body::before {
  content: "";
  position: fixed;
  inset: -15% -15% -15% -15%;
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
  opacity: 0.35;
  background:
    /* b1 - purple/blue */
    radial-gradient(600px 600px at 18% 14%, rgba(181, 23, 255, 0.45), transparent 60%),
    radial-gradient(520px 520px at 30% 18%, rgba(30, 200, 255, 0.35), transparent 60%),
    /* b2 - red/orange */
    radial-gradient(600px 600px at 82% 18%, rgba(255, 0, 55, 0.45), transparent 60%),
    radial-gradient(520px 520px at 68% 26%, rgba(255, 138, 0, 0.35), transparent 60%),
    /* b3 - green/blue */
    radial-gradient(560px 560px at 46% 86%, rgba(0, 255, 163, 0.40), transparent 60%),
    radial-gradient(520px 520px at 56% 78%, rgba(0, 153, 255, 0.30), transparent 60%);
}
/* Ensure page content stays above the overlay */
body > * { position: relative; z-index: 1; }

/* Soften and enlarge global blob background for smoother blend */
body::before {
  content: "";
  position: fixed;
  inset: -25% -25% -25% -25%; /* larger canvas */
  pointer-events: none;
  z-index: 0;
  filter: blur(80px); /* more blur for smoother mix */
  opacity: 0.38; /* slightly stronger to merge sections */
  background:
    radial-gradient(700px 700px at 18% 14%, rgba(181, 23, 255, 0.45), transparent 62%),
    radial-gradient(600px 600px at 30% 18%, rgba(30, 200, 255, 0.35), transparent 62%),
    radial-gradient(700px 700px at 82% 18%, rgba(255, 0, 55, 0.45), transparent 62%),
    radial-gradient(600px 600px at 68% 26%, rgba(255, 138, 0, 0.35), transparent 62%),
    radial-gradient(680px 680px at 46% 86%, rgba(0, 255, 163, 0.40), transparent 62%),
    radial-gradient(600px 600px at 56% 78%, rgba(0, 153, 255, 0.30), transparent 62%);
}
/* Add subtle vignette so blobs blend into the base color */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(1200px 800px at 50% -10%, rgba(0,0,0,0.25), transparent 60%);
}

/* Force the 'Why BIZ-G' section to be transparent */
.why-bizg-section,
.why-bizg-section .container,
.why-bizg-section::before,
.why-bizg-section::after { background: transparent !important; box-shadow: none !important; }

/* Boxes in that section transparent with outline only */
.why-bizg-section .bizg-features-grid > *,
.why-bizg-section .bizg-feature-card,
.why-bizg-section .item-card {
  background: rgba(255,255,255,0.02) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

/* Hero bottom blend overlay to smooth into the next section */
body .hero { background: transparent !important; overflow: visible; isolation: isolate; }
body .hero::after {
  content: "" !important;
  display: none !important;
  position: absolute !important;
  left: -10vw; right: -10vw; bottom: -25vh; height: 60vh;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
  opacity: 0.35;
  background:
    radial-gradient(600px 600px at 20% 0%, rgba(181, 23, 255, 0.45), transparent 62%),
    radial-gradient(520px 520px at 35% 15%, rgba(30, 200, 255, 0.35), transparent 62%),
    radial-gradient(600px 600px at 80% 10%, rgba(255, 0, 55, 0.45), transparent 62%),
    radial-gradient(520px 520px at 65% 18%, rgba(255, 138, 0, 0.35), transparent 62%);
}

/* Space under sticky header so hero doesn't feel cramped */
.hero { padding: 0px 0 0 0 !important; margin-top: 15px !important; }

/* When clicking anchors, keep content clear of sticky header */
:target { scroll-margin-top: calc(var(--stickyH) + 12px); }

/* Make the Top Referrers section blend with global background */
#top-referrers,
#top-referrers .container,
#top-referrers::before,
#top-referrers::after { background: transparent !important; box-shadow: none !important; }

#top-referrers .referrers-layout,
#top-referrers .chart-container { background: transparent !important; box-shadow: none !important; }

#top-referrers .referrer-card,
#top-referrers .chart-container { 
  background: rgba(255,255,255,0.03) !important;
  border: 1px solid var(--stroke) !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

/* Hero heading accents per reference */
.accent-red { color: #ff3b3b; }
.accent-blue { color: #1ec8ff; }

/* Hero layout tweaks to match compact reference */
.hero .hero-content-section, .hero-left-column .hero-content { max-width: 600px; }

@media (max-width: 768px) {
  .hero .hero-content-section, .hero-left-column .hero-content { max-width: 420px; }
}

@media (max-width: 360px) {
  /* Extra small screens (360px and below) */
  .device-frame, .device-frame.tablet {
    width: 140px !important;
    height: 85px !important;
    max-width: 50vw !important;
    margin: 0 auto !important;
  }
  
  .hero .container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  
  .hero {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
}

@media (max-width: 480px) {
  .hero .hero-content-section, .hero-left-column .hero-content { 
    max-width: 350px; 
    width: 100%; 
    margin-bottom: 20px !important;
  }
  
  /* Hero image container for very small screens */
  .hero-image-container {
    padding: 0 !important;
    width: 382px !important;
    max-width: 382px !important;
    height: 222px !important;
    background: rgba(255, 255, 255, 0.02) !important;
    border-radius: 24px !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    margin: 0 auto 20px auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    box-sizing: border-box !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.3),
      0 4px 16px rgba(0, 0, 0, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.3),
      inset 0 -1px 0 rgba(0, 0, 0, 0.2) !important;
  }
  
  .hero-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 22px;
    z-index: 1;
    pointer-events: none;
  }
  
  /* Device frame for very small screens */
  .device-frame, .device-frame.tablet {
    width: 160px !important;
    height: 95px !important;
    max-width: 55vw !important;
    margin: 0 auto !important;
  }
  
  /* Extra small screen padding */
  .hero .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  
  .hero {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  
  /* Add more spacing for pricing section on very small screens */
  #pricing {
    padding-bottom: 140px !important;
    margin-bottom: 80px !important;
  }
  
  .hero-right-column {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
  }
  
  .hero-image {
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    border-radius: 16px !important;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    object-fit: cover !important;
    position: relative;
    z-index: 2;
  }
  
  /* Mobile recommended package */
  .recommended-package {
    width: 100% !important;
    max-width: 280px !important;
    height: 120px !important;
    margin: 20px auto 20px auto !important;
    border-radius: 12px !important;
    overflow: hidden !important;
  }
  
  .recommended-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 12px !important;
    display: block !important;
  }
}
.hero .hero-cta { margin-top: 4px !important; gap: 8px; }
.hero .trust { margin-top: 18px; }

/* Pricing card right column spacing similar to reference */
.recommended-package { margin-top: 20px; }

/* Compact hero typography */
.hero-left-column h1 { font-size: 40px; line-height: 1.2; }
.hero .lead { font-size: 16px; }

/* Inputs/tabs in plan selector smaller */
.subscription-selector .selector-btn,
.hero .plan-selector input,
.hero .plan-selector label { font-size: 14px; }

/* Buttons smaller and more rounded like header */
.btn, .btn-primary, .btn-outline, .btn-line, .hero .btn {
  padding: 8px 14px;
  font-size: 12.5px;
  border-radius: 999px;
}

/* Feature cards headings smaller */
.features .feature-title, .feature-number { font-size: 20px; }
.feature-text { font-size: 12px; }

/* Pricing/right card action smaller */
.package-cta { padding: 12px 18px; font-size: 14px; }

/* The three highlight tiles smaller */
.tiles .tile, .stat-tile { padding: 18px; }
.stat-tile h3, .stat-tile .value { font-size: 20px; }
.stat-tile .label { font-size: 11px; }

/* Compact plan toggle styles */
.compact-plan-toggle { display: flex; align-items: center; gap: 12px; margin: 8px 0 18px; }
.compact-plan-toggle .toggle-label { font-size: 14px; color: var(--text); opacity: .9; }
.compact-plan-toggle .saving { color: #30D158; font-weight: 600; }

.switch { position: relative; display: inline-block; width: 40px; height: 22px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; cursor: pointer; inset: 0; background: rgba(255,255,255,0.12); border-radius: 999px; transition: .2s; }
.slider:before { content: ""; position: absolute; height: 18px; width: 18px; left: 2px; top: 2px; background: #fff; border-radius: 50%; transition: .2s; }
.switch input:checked + .slider { background: rgba(48,209,88,0.4); }
.switch input:checked + .slider:before { transform: translateX(18px); }

/* Primary CTA glow like reference (toned down) */
.btn-primary, .hero .btn-primary { box-shadow: none; }
.btn-primary:hover { box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1); }

/* Compact secondary button */
.hero .btn-outline { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); }

/* Smaller stat tiles under hero */
.stat-tiles { gap: 12px !important; }
.stat-tile { padding: 12px 14px !important; border-radius: 12px !important; }
.stat-tile .value, .stat-tile h3 { font-size: 18px !important; }
.stat-tile .label { font-size: 10px !important; }

/* Keep feature cards white text and disable red hover */
.feature-cards .feature-card:hover { 
  background: rgba(255,255,255,0.03) !important; 
  border-color: var(--stroke) !important; 
  box-shadow: none !important;
}
.feature-cards .feature-card:hover .feature-number,
.feature-cards .feature-card:hover .feature-text { color: var(--text) !important; }

/* Exact size for hero feature cards */
.feature-cards { display: grid; grid-template-columns: repeat(3, 185px); gap: 12px; }
.feature-cards .feature-card { width: 185px; height: 55px; padding: 6px 8px; border-radius: 10px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.feature-cards .feature-number { font-size: 14px; color: var(--text) !important; }
.feature-cards .feature-text { font-size: 9px; }

/* Proper spacing between hero and pricing section */
.hero { 
  margin-bottom: 0 !important; 
  position: relative !important;
  z-index: 1 !important;
  padding-bottom: 0 !important;
}
#pricing { 
  padding-top: 0 !important; 
  margin-top: 0 !important; 
  position: relative !important;
  z-index: 20 !important;
  clear: both !important;
  background: #00000000 !important;
}
#pricing .section-head { 
  margin-top: 20px !important; 
  text-align: center !important;
}

/* Ensure pricing section starts properly after hero */
@media (max-width: 768px) {
  #pricing {
    padding-top: 0px !important;
    margin-top: 0 !important;
    position: relative !important;
    z-index: 20 !important;
    background: #00000000 !important;
    padding-bottom: 120px !important;
    margin-bottom: 60px !important;
  }
  
  #pricing .section-head { 
    margin-top: 0px !important; 
    margin-bottom: 20px !important;
    text-align: center !important;
  }
  
  /* Ensure hero section doesn't overlap */
  .hero {
    position: relative !important;
    z-index: 1 !important;
    overflow: hidden !important;
    height: auto !important;
    max-height: 100vh !important;
  }
  
  /* Ensure hero background doesn't extend beyond hero section */
  .hero-background,
  .hero .blobs-wrap,
  .hero .blob {
    display: none !important;
  }
  
  /* Force hero section to end properly */
  .hero::after {
    display: none !important;
  }
}

/* Fixed size for right recommended package card */
.recommended-package { width: 421px !important; height: 266px !important; padding: 0 !important; border: 1px solid var(--stroke); border-radius: 16px; background: rgba(255,255,255,0.03); box-shadow: 0 10px 40px rgba(0,0,0,0.35); overflow: hidden; }
.recommended-package .recommended-image { width: 100% !important; height: 100% !important; object-fit: cover !important; display: block !important; border-radius: 16px !important; }
.recommended-package .package-header { margin-bottom: 8px; }
.recommended-package .package-label { font-size: 12px; color: var(--muted); }
.recommended-package .package-content { display: flex; flex-direction: column; gap: 12px; flex: 1; }
.recommended-package .package-content h3 { margin: 0; font-size: 18px; }
.recommended-package .package-description { margin: 0; font-size: 13px; color: var(--muted); }
.recommended-package .package-price { display: flex; align-items: baseline; gap: 8px; margin: 4px 0 6px; }
.recommended-package .package-price .price { font-size: 40px; font-weight: 800; letter-spacing: .5px; }
.recommended-package .package-price .period { font-size: 14px; color: var(--muted); }
.recommended-package .package-features { display: grid; gap: 6px; }
.recommended-package .package-features .feature-item { display: flex; gap: 8px; align-items: flex-start; font-size: 14px; }
.recommended-package .package-features .checkmark { color: var(--success); }
.recommended-package .package-cta { margin-top: auto; width: 100%; padding: 12px 18px; border-radius: 999px; font-weight: 600; }

/* Global reusable background theme */
.app-bg { background: var(--bg); position: relative; min-height: 100vh; overflow-x: hidden; }
.app-bg::before { content: ""; position: fixed; inset: -25% -25% -25% -25%; pointer-events: none; z-index: 0; filter: blur(80px); opacity: .38; background:
  radial-gradient(700px 700px at 18% 14%, rgba(181, 23, 255, 0.45), transparent 62%),
  radial-gradient(600px 600px at 30% 18%, rgba(30, 200, 255, 0.35), transparent 62%),
  radial-gradient(700px 700px at 82% 18%, rgba(255, 0, 55, 0.45), transparent 62%),
  radial-gradient(600px 600px at 68% 26%, rgba(255, 138, 0, 0.35), transparent 62%),
  radial-gradient(680px 680px at 46% 86%, rgba(0, 255, 163, 0.40), transparent 62%),
  radial-gradient(600px 600px at 56% 78%, rgba(0, 153, 255, 0.30), transparent 62%);
}

/* ===== Final mobile overrides to force a clean rectangular hero frame ===== */
@media (max-width: 768px) {
  body section.hero { padding-left: 0 !important; padding-right: 0 !important; overflow: hidden !important; }
  body section.hero > .container { padding-left: 0 !important; padding-right: 0 !important; margin-left: 0 !important; margin-right: 0 !important; max-width: 100% !important; }
  body section.hero .hero-image-container {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    border-radius: 0 !important;
    border: none !important;
    overflow: visible !important;
    clip-path: none !important;
    background: transparent !important;
    box-shadow: none !important;
  }
  body section.hero .hero-image {
    display: block !important;
    width: 382px !important;
    height: 222px !important;
    max-width: 382px !important;
    max-height: 222px !important;
    border-radius: 20px !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25) !important;
    object-fit: cover !important;
    image-rendering: -webkit-optimize-contrast !important;
    image-rendering: crisp-edges !important;
    image-rendering: high-quality !important;
    image-rendering: auto !important;
    image-rendering: pixelated !important;
    filter: none !important;
    transform: translateZ(0) scale(1) !important;
    backface-visibility: hidden !important;
    -webkit-backface-visibility: hidden !important;
    will-change: transform !important;
    -webkit-transform: translateZ(0) scale(1) !important;
    -moz-transform: translateZ(0) scale(1) !important;
    -ms-transform: translateZ(0) scale(1) !important;
    -o-transform: translateZ(0) scale(1) !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    text-rendering: optimizeLegibility !important;
    -webkit-text-stroke: 0 !important;
    text-shadow: none !important;
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
  }
  body section.hero .hero-right-column {
    width: 100% !important;
    max-width: 100% !important;
    height: 238px !important;
    min-height: 238px !important;
    padding: 0 !important;
    margin: 0 auto !important;
  }
}
.app-bg::after { content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 0; background: radial-gradient(1200px 800px at 50% -10%, rgba(0,0,0,0.25), transparent 60%); }
