/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: #060b14;
  color: #ffffff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Top Header Bar */
.v121 {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 11, 20, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.v51 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.v52 {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: contain;
}

.v54 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}

.v50 {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 20px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.v50:hover {
  background: rgba(6, 182, 212, 0.1);
  border-color: rgba(6, 182, 212, 0.5);
}

.v53 {
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.v81 {
  height: 100%;
  width: 30%;
  background: linear-gradient(to right, #a855f7, #ffffff, #ec4899);
  animation: progress-slide 3s ease-in-out infinite;
}

@keyframes progress-slide {
  0%, 100% { width: 30%; }
  50% { width: 70%; }
}

/* Gradient Text */
.v44 {
  background: linear-gradient(135deg, #a855f7, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.v2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(to right, #9333ea, #ec4899);
  color: white;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
  font-size: 14px;
}

.v2:hover {
  background: linear-gradient(to right, #a855f7, #d946ef);
}

.v1 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(to right, #ec4899, #a855f7);
  color: white;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 14px;
  border: none;
  cursor: pointer;
}

.v1:hover {
  background: linear-gradient(to right, #f472b6, #c084fc);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  padding: 40px 16px 32px;
}

.v55 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8, 145, 178, 0.2), transparent);
}

.v55::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: rgba(8, 145, 178, 0.1);
  border-radius: 50%;
  filter: blur(80px);
}

.v56 {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  padding: 6px 16px;
  margin-bottom: 16px;
}

.badge span {
  font-size: 12px;
  color: #cbd5e1;
}

.v82 {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.v58 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}

.v58 .subtitle {
  font-size: 18px;
  color: #94a3b8;
  font-weight: 400;
}

.v57 {
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto 24px;
  font-size: 14px;
}

.v107 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.v104 {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px;
  backdrop-filter: blur(8px);
}

.v106 {
  font-size: 20px;
  font-weight: 700;
}

.v105 {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 4px;
}

/* Features Section */
.v36 {
  padding: 24px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
}

.v35 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.v29 {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 0.3s;
}

.v29:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(6, 182, 212, 0.3);
  transform: translateY(-2px);
}

.v33 {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(16, 185, 129, 0.2));
  border: 1px solid rgba(6, 182, 212, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a855f7;
  flex-shrink: 0;
}

.v29 span {
  font-size: 13px;
  color: #cbd5e1;
  font-weight: 500;
}

/* Install Card */
.v60 {
  padding: 40px 16px;
}

.v59 {
  max-width: 500px;
  margin: 0 auto;
  background: linear-gradient(to bottom, rgba(24, 24, 27, 0.8), rgba(24, 24, 27, 0.4));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.v66 {
  text-align: center;
  padding: 32px 24px 24px;
}

.v67 {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, #9333ea, #ec4899);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
}

.v66 h2 {
  font-size: 28px;
  margin-bottom: 8px;
}

.v68 {
  font-size: 14px;
  color: #94a3b8;
}

.v62 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.v63 {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin: 0 24px;
}

.v65 {
  padding: 24px;
}

.v64 {
  text-align: center;
  padding: 16px 0;
}

.v32 {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 20px;
}

.v32.purple {
  background: rgba(8, 145, 178, 0.2);
  border: 1px solid rgba(8, 145, 178, 0.3);
}

.v32.orange {
  background: rgba(234, 88, 12, 0.2);
  border: 1px solid rgba(234, 88, 12, 0.3);
}

.v32.indigo {
  background: rgba(79, 70, 229, 0.2);
  border: 1px solid rgba(79, 70, 229, 0.3);
}

.v32.pink {
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.v64 h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.v64 p {
  font-size: 12px;
  color: #94a3b8;
}

.v61 {
  padding: 24px;
  text-align: center;
}

/* Share VIP Section */
.v99 {
  padding: 1.5rem 1rem;
}

.v97 {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
}

.v100 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fbbf24;
}

.v98 {
  font-size: 0.95rem;
  color: #94a3b8;
  margin-bottom: 1.5rem;
}

.v93 {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.v95 {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 0.75rem;
}

.v92 {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.v94 {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  border-radius: 4px;
  transition: width 0.5s ease;
}

.v96 {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fbbf24;
}

.v88 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.v87 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #fff;
}

.v87:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.v120 {
  background: linear-gradient(135deg, #0088cc, #00a8e8);
}

.v9 {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.v9:hover {
  background: rgba(255, 255, 255, 0.15);
}

.v89 {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  padding: 0.75rem;
  font-size: 0.8rem;
}

.v90 {
  color: #94a3b8;
  margin-right: 0.25rem;
}

.v91 {
  color: #fbbf24;
  word-break: break-all;
}

@media (max-width: 640px) {
  .v97 {
    padding: 1.5rem 1rem;
  }
  
  .v100 {
    font-size: 1.25rem;
  }
  
  .v88 {
    grid-template-columns: 1fr;
  }
}

/* Content Sections */
.v8 {
  padding: 40px 0;
}

.v85 {
  padding: 0 16px;
  margin-bottom: 16px;
}

.v85 h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.v85 p {
  font-size: 13px;
  color: #94a3b8;
}

.v83 {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  padding: 0 16px 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.v83::-webkit-scrollbar {
  display: none;
}

.v83 {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Auto Scroll Animation */
.v84 {
  overflow: hidden;
  position: relative;
  padding: 0 16px 8px;
}

.v84 .v83 {
  padding: 0;
  animation: scroll-left 15s linear infinite;
  width: max-content;
}

.v84:hover .v83 {
  animation-play-state: paused;
}

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

/* Cards */
.v7 {
  flex-shrink: 0;
  width: 160px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  transition: transform 0.3s, box-shadow 0.3s;
  scroll-snap-align: start;
}

.v7:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 24px rgba(6, 182, 212, 0.2);
}

.v3 {
  height: 100px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.v3 .v15 {
  font-size: 32px;
  opacity: 0.3;
}

.v5 {
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  gap: 4px;
}

.tag {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  color: white;
}

.v114 { background: #f97316; }
.v110 { background: #3b82f6; }
.v116 { background: #ef4444; }
.v113 { background: #22c55e; }
.v117 { background: #a855f7; }
.v118 { background: #0ea5e9; }
.v115 { background: #ec4899; }
.v119 { background: #4b5563; }
.v109 { background: #dc2626; }
.v111 { background: #dc2626; }
.v112 { background: rgba(255, 255, 255, 0.2); }

.v4 {
  padding: 12px;
}

.v4 h4 {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.v4 p {
  font-size: 11px;
  color: #94a3b8;
  margin-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Sport Card */
.v101 {
  flex-shrink: 0;
  width: 160px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  transition: transform 0.3s, box-shadow 0.3s;
  scroll-snap-align: start;
}

.v101:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 24px rgba(6, 182, 212, 0.2);
}

.v102 {
  height: 100px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.v102 .v15 {
  font-size: 40px;
}

.v69 {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #ef4444;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  color: white;
  display: flex;
  align-items: center;
  gap: 4px;
}

.v70 {
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.v103 {
  padding: 12px;
}

.v103 h4 {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.v103 p {
  font-size: 11px;
  color: #94a3b8;
  margin-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Why Section */
.v122 {
  padding: 56px 16px;
}

.v122 h2 {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
}

.v34 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.v30 {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  backdrop-filter: blur(8px);
  transition: transform 0.3s, box-shadow 0.3s;
}

.v30:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 24px rgba(6, 182, 212, 0.2);
}

.v31 {
  font-size: 28px;
  margin-bottom: 12px;
}

.v30 h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.v30 p {
  font-size: 12px;
  color: #94a3b8;
}

/* Compare Section */
.v6 {
  padding: 40px 16px;
}

.v6 h2 {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
}

.v108 {
  max-width: 600px;
  margin: 0 auto;
  overflow-x: auto;
}

table {
  width: 100%;
  font-size: 13px;
  border-collapse: collapse;
}

th, td {
  padding: 12px 16px;
  text-align: left;
}

th {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 500;
  color: #94a3b8;
}

th.purple {
  color: #a855f7;
  text-align: center;
  font-weight: 600;
}

th:last-child {
  text-align: center;
}

td:nth-child(2) {
  text-align: center;
  color: #4ade80;
  font-weight: 500;
}

td:last-child {
  text-align: center;
  color: #64748b;
}

tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

/* CTA Section */
.v13 {
  padding: 56px 16px;
}

.v12 {
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.3), rgba(13, 148, 136, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
}

.v12 h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.v12 p {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 24px;
}

.v14 {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
}

.v14 > div {
  text-align: center;
}

.v14 .v44 {
  font-size: 24px;
  font-weight: 700;
}

.v14 > div > div:last-child {
  font-size: 12px;
  color: #94a3b8;
}

/* Guide Section */
.v48 {
  padding: 40px 16px;
}

.v48 h2 {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
}

.v46 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 32px;
}

.v45 {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.v45:hover {
  transform: translateY(-2px);
  border-color: rgba(6, 182, 212, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.v47 {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  background: linear-gradient(to right, #9333ea, #ec4899);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
}

.v45 h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.v45 p {
  font-size: 12px;
  color: #94a3b8;
}

.v0 {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

.v0 table {
  width: 100%;
  font-size: 13px;
}

.v0 td {
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.v0 td:first-child {
  color: #94a3b8;
}

.v0 td:last-child {
  color: white;
  font-weight: 500;
  text-align: left;
}

.v0 tr:last-child td {
  border-bottom: none;
}

/* FAQ Section */
.v28 {
  padding: 40px 16px;
}

.v28 h2 {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
}

.v26 {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.v25 {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.v27 {
  width: 100%;
  padding: 12px 16px;
  background: transparent;
  border: none;
  color: white;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s;
}

.v27:hover {
  background: rgba(255, 255, 255, 0.05);
}

.v27 .arrow {
  color: #94a3b8;
  transition: transform 0.3s;
  font-size: 12px;
}

.v25.active .v27 .arrow {
  transform: rotate(180deg);
}

.v24 {
  padding: 0 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
  font-size: 13px;
  color: #94a3b8;
}

.v25.active .v24 {
  padding: 0 16px 12px;
  max-height: 200px;
}

/* Footer */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 32px 16px;
  text-align: center;
}

.v40 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.v42 {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 16px;
}

.v43 {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 12px;
  color: #64748b;
  margin-bottom: 24px;
}

.v41 {
  font-size: 12px;
  color: #475569;
}

/* Tablet */
@media (min-width: 640px) {
  .v58 {
    font-size: 36px;
  }
  
  .v58 .subtitle {
    font-size: 20px;
  }
  
  .v107 {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .v35 {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .v7, .v101 {
    width: 180px;
  }
  
  .v3, .v102 {
    height: 120px;
  }
  
  .v46 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .v58 {
    font-size: 48px;
  }
  
  .v58 .subtitle {
    font-size: 24px;
  }
  
  .v85 h2 {
    font-size: 24px;
  }
  
  .v7, .v101 {
    width: 200px;
  }
  
  .v3, .v102 {
    height: 140px;
  }
  
  .v34 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Download Modal */
.v73 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.v73.active {
  display: flex;
  opacity: 1;
}

.v72 {
  background: linear-gradient(145deg, #0e2b36, #0a1722);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px 24px;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.v73.active .v72 {
  transform: scale(1);
}

.v74 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #22c55e;
  margin-bottom: 20px;
}

.v75 {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-green 1.5s infinite;
}

@keyframes pulse-green {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.v80 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
}

.v79 {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.v76 {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.v76:last-child {
  border-bottom: none;
}

.v77 {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #ec4899, #a855f7);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

.v78 {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
}

.v78 strong {
  color: #ffffff;
}

.v71 {
  width: 100%;
  padding: 16px;
  margin-top: 24px;
  background: linear-gradient(135deg, #ec4899, #a855f7);
  border: none;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.v71:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.35);
}

/* Fixed Bottom Download Bar */
.v37 {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(6, 11, 20, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 12px 16px 16px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.v37.visible {
  transform: translateY(0);
}

.v38 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, #ec4899, #a855f7);
  border: none;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.v38:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.35);
}

.v39 {
  text-align: center;
  font-size: 12px;
  color: #64748b;
  margin-top: 8px;
}

/* ============================================
   RTL Support (Arabic)
   ============================================ */
html[dir="rtl"] body {
  text-align: right;
}

html[dir="rtl"] .v51 {
  flex-direction: row-reverse;
}

html[dir="rtl"] .v49 {
  flex-direction: row-reverse;
}

html[dir="rtl"] .v58,
html[dir="rtl"] .v57,
html[dir="rtl"] .v85 h2,
html[dir="rtl"] .v85 p,
html[dir="rtl"] .v122 h2,
html[dir="rtl"] .v6 h2,
html[dir="rtl"] .v12 h2,
html[dir="rtl"] .v12 p,
html[dir="rtl"] .v48 h2,
html[dir="rtl"] .v28 h2,
html[dir="rtl"] .v100,
html[dir="rtl"] .v98,
html[dir="rtl"] .v68,
html[dir="rtl"] .v64 h3,
html[dir="rtl"] .v64 p {
  text-align: right;
}

html[dir="rtl"] .v29,
html[dir="rtl"] .v30,
html[dir="rtl"] .v104,
html[dir="rtl"] .v45 {
  text-align: right;
}

html[dir="rtl"] .v4 h4,
html[dir="rtl"] .v4 p,
html[dir="rtl"] .v103 h4,
html[dir="rtl"] .v103 p {
  text-align: right;
}

html[dir="rtl"] .v27 {
  text-align: right;
  flex-direction: row-reverse;
}

html[dir="rtl"] .v27 .arrow {
  transform: rotate(-90deg);
}

html[dir="rtl"] .v25.active .v27 .arrow {
  transform: rotate(0deg);
}

html[dir="rtl"] .v76 {
  flex-direction: row-reverse;
  text-align: right;
}

html[dir="rtl"] .v89 {
  flex-direction: row-reverse;
}

html[dir="rtl"] .v2,
html[dir="rtl"] .v1,
html[dir="rtl"] .v38,
html[dir="rtl"] .v50 {
  flex-direction: row-reverse;
}

html[dir="rtl"] table {
  direction: rtl;
}

html[dir="rtl"] .v108 {
  direction: rtl;
}

html[dir="rtl"] .v69 {
  right: auto;
  left: 8px;
}

html[dir="rtl"] .v5 {
  right: auto;
  left: 8px;
}

/* RTL scrollbar subtle adjustment */
html[dir="rtl"] .v83 {
  direction: ltr; /* Keep horizontal scroll direction natural */
}

html[dir="rtl"] .v83 > * {
  direction: rtl;
}


/* ============================================
   Emerald Theme — Layout & Style polish
   ============================================ */
:root{
  --teal:#a855f7; --emerald:#ec4899; --gold:#fbbf24;
  --muted:#94a3b8; --line:rgba(255,255,255,.08);
}

/* Aurora base backdrop */
body{
  background:
    radial-gradient(1200px 620px at 12% -8%, rgba(6,182,212,.18), transparent 60%),
    radial-gradient(1000px 540px at 90% 6%, rgba(16,185,129,.13), transparent 55%),
    radial-gradient(900px 600px at 62% 108%, rgba(251,191,36,.10), transparent 60%),
    linear-gradient(180deg,#05090f 0%,#0b1622 55%,#0a141f 100%);
  background-color:#060b14;
}

/* ---- Header ---- */
.v121{
  background:rgba(5,9,15,.78);
  backdrop-filter:blur(18px) saturate(140%);
  box-shadow:0 1px 0 rgba(6,182,212,.14);
}
.v121::after{
  content:""; position:absolute; left:0; right:0; bottom:-1px; height:1px;
  background:linear-gradient(90deg,transparent,rgba(6,182,212,.6),transparent);
}
.v54{ letter-spacing:-.01em; }
.v50{border-color:rgba(6,182,212,.35); background:rgba(6,182,212,.06);}
.v50:hover{border-color:rgba(6,182,212,.6); background:rgba(6,182,212,.12);}

/* ---- Hero ---- */
.hero{ padding:56px 16px 44px; }
.v55{
  background:
    radial-gradient(560px 440px at 50% -22%, rgba(6,182,212,.38), transparent 66%),
    radial-gradient(480px 360px at 16% 12%, rgba(16,185,129,.26), transparent 62%),
    radial-gradient(540px 400px at 84% 30%, rgba(251,191,36,.14), transparent 64%);
}
.v55::before{ display:none; }
.v56{ max-width:880px; }
.badge{
  background:rgba(6,182,212,.08);
  border:1px solid rgba(6,182,212,.28);
  backdrop-filter:blur(8px);
}
.badge span{ color:#c7e9fb; letter-spacing:.05em; }
.v58{ letter-spacing:-.02em; }
.v104{
  border-radius:18px;
  padding:18px 12px;
  background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.02));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.07), 0 14px 30px -22px rgba(6,182,212,.4);
}
.v106{ font-size:24px; }

/* ---- CTAs ---- */
.v2{
  padding:13px 30px; font-size:15px; border-radius:9999px;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.18),
    0 16px 40px -12px rgba(6,182,212,.65);
}
.v2:hover{ transform:translateY(-2px); }
.v1{ border-radius:14px; box-shadow:0 16px 40px -14px rgba(16,185,129,.65); }
.v1:hover{ transform:translateY(-3px); }

/* ---- Features bar ---- */
.v36{ background:linear-gradient(180deg,rgba(6,182,212,.05),transparent); }
.v29{ border-radius:16px; border:1px solid rgba(255,255,255,.06); }
.v29:hover{ border-color:rgba(6,182,212,.45); box-shadow:0 12px 28px -18px rgba(6,182,212,.55); }
.v33{ color:#c084fc; }

/* ---- Install card ---- */
.v59{
  border-radius:24px;
  background:linear-gradient(180deg,rgba(20,42,58,.9),rgba(11,23,34,.72));
  box-shadow:0 36px 80px -44px rgba(0,0,0,.9), 0 0 50px rgba(6,182,212,.08);
}
.v67{ box-shadow:0 0 0 1px rgba(6,182,212,.35), 0 14px 34px -12px rgba(6,182,212,.65); }

/* ---- Section headers ---- */
.v85{ margin-bottom:20px; }
.v85 h2{
  position:relative; padding-left:16px; font-size:22px; letter-spacing:-.01em;
}
.v85 h2::before{
  content:""; position:absolute; left:0; top:5px; bottom:5px; width:6px;
  border-radius:6px; background:linear-gradient(180deg,#a855f7,#ec4899);
  box-shadow:0 0 14px rgba(6,182,212,.8);
}
html[dir="rtl"] .v85 h2{ padding-left:0; padding-right:16px; }
html[dir="rtl"] .v85 h2::before{ left:auto; right:0; }

/* ---- Cards : cover-forward ---- */
.v7,.v101{
  border-radius:18px; border:1px solid rgba(255,255,255,.07);
  background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.02));
}
.v7:hover,.v101:hover{
  border-color:rgba(6,182,212,.5);
  box-shadow:0 0 0 1px rgba(6,182,212,.18), 0 22px 40px -20px rgba(0,0,0,.75), 0 0 34px rgba(6,182,212,.20);
  transform:translateY(-6px);
}
.v3,.v102{
  background:linear-gradient(180deg,rgba(6,182,212,.10),rgba(8,18,30,.4));
}
.v3 img,.v102 img{ transition:transform .5s ease; }
.v7:hover img,.v101:hover img{ transform:scale(1.06); }
.v4,.v103{ padding:12px; }

/* ---- Why / Guide / App cards ---- */
.v30{
  border-radius:20px; border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.02));
}
.v30:hover{ border-color:rgba(6,182,212,.45); box-shadow:0 18px 40px -20px rgba(6,182,212,.5); }
.v45{ border-radius:18px; }
.v45:hover{ border-color:rgba(6,182,212,.5); }
.v0{ border-radius:16px; }

/* ---- Compare table ---- */
th{ color:#cbd5e1; text-transform:uppercase; letter-spacing:.05em; font-size:12px; }
th.purple{ color:#c084fc; }

/* ---- CTA ---- */
.v12{
  border-radius:24px;
  border:1px solid rgba(6,182,212,.2);
  background:linear-gradient(135deg,rgba(6,182,212,.16),rgba(16,185,129,.1),rgba(251,191,36,.06));
  box-shadow:0 34px 80px -44px rgba(6,182,212,.55);
}

/* ---- FAQ ---- */
.v25{ border-radius:14px; border-color:rgba(255,255,255,.08); }
.v25.active{ border-color:rgba(6,182,212,.45); }
.v27{ font-size:14px; }
.v27:hover{ background:rgba(6,182,212,.05); }

/* ---- Footer ---- */
footer{ border-top:1px solid rgba(6,182,212,.18); }
.v40{
  background:linear-gradient(135deg,#f472b6,#c084fc);
  -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color:transparent;
}
.v43{ color:#64748b; }

/* ---- Modal / Fixed bar ---- */
.v72{
  border:1px solid rgba(6,182,212,.22);
  box-shadow:0 44px 100px -44px rgba(0,0,0,.95), 0 0 70px rgba(6,182,212,.14);
}
.v37{ background:rgba(5,9,15,.92); border-top:1px solid rgba(6,182,212,.2); }


/* ============================================
   TV WALL — Smart TV home presentation
   智能电视首页 / 频道墙风
   ============================================ */
body.counter-reset-none{}
body{ counter-reset: tvch 0; }

/* ---------- Header : set-top bar ---------- */
.v121{ border-bottom:0; }
.v49{ position:relative; }
.v52{border-radius:9px;}
.v49::after{
  content:"LIVE"; position:absolute; right:-6px; top:-6px;
  font-size:9px; font-weight:800; letter-spacing:.05em; color:#fff;
  background:linear-gradient(135deg,#ef4444,#f43f5e);
  padding:2px 6px; border-radius:6px; box-shadow:0 4px 12px rgba(239,68,68,.5);
  animation:tvBlink 2.2s infinite;
}
@keyframes tvBlink{0%,92%,100%{opacity:1}95%{opacity:.35}}

/* ---------- Hero : featured TV screen ---------- */
.hero{
  position:relative; overflow:hidden;
  background:
    radial-gradient(720px 480px at 50% -30%, rgba(6,182,212,.34), transparent 60%),
    linear-gradient(180deg,#0a1826 0%, #0b1622 100%);
}
.hero::before{ /* chyron : top sign-on bar */
  content:"LUMORA TV • 100% FREE"; position:absolute; top:0; left:0; right:0;
  padding:7px 14px; font-size:10px; font-weight:700; letter-spacing:.18em; color:#a5f3fc;
  background:rgba(3,10,18,.55); backdrop-filter:blur(6px); z-index:2;
  display:flex; align-items:center; gap:8px;
  border-bottom:1px solid rgba(6,182,212,.25);
  white-space:nowrap; overflow:hidden;
}
.hero::after{ /* screen scanline sheen */
  content:""; position:absolute; inset:0; pointer-events:none; z-index:1;
  background:repeating-linear-gradient(0deg, rgba(255,255,255,.02) 0 1px, transparent 1px 4px);
  mix-blend-mode:overlay;
}
.v55{
  background:
    radial-gradient(560px 420px at 24% -10%, rgba(16,185,129,.32), transparent 60%),
    radial-gradient(600px 460px at 84% 12%, rgba(6,182,212,.28), transparent 62%),
    radial-gradient(520px 420px at 60% 110%, rgba(251,191,36,.12), transparent 60%);
  opacity:1; z-index:0;
}
.v56{ position:relative; z-index:3; }
.hero > .v56{ }

/* ---------- EPG : now-playing channel guide ---------- */
.v18{
  margin:0 auto 10px; max-width:1240px; padding:8px 14px;
  display:flex; align-items:center; gap:12px; overflow:hidden;
  background:linear-gradient(180deg,rgba(6,182,212,.10),rgba(6,182,212,.03));
  border-top:1px solid rgba(6,182,212,.18);
  border-bottom:1px solid rgba(255,255,255,.07);
}
.v20{ flex:0 0 auto; display:flex; align-items:center; gap:7px;
  font-size:11px; font-weight:800; letter-spacing:.14em; color:#a5f3fc; }
.v17{ width:8px;height:8px;border-radius:50%;background:#ef4444; box-shadow:0 0 10px #ef4444; animation:tvBlink 1.6s infinite;}
.v21{ display:flex; gap:10px; overflow-x:auto; scrollbar-width:none; }
.v21::-webkit-scrollbar{ display:none; }
.v19{
  flex:0 0 auto; display:flex; align-items:center; gap:8px;
  font-size:11px; color:#cbd5e1; white-space:nowrap;
  padding:5px 10px; border-radius:9999px;
  background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.07);
}
.v23{ color:#64748b; font-weight:700; font-variant-numeric:tabular-nums;}
.v19.playing{ border-color:rgba(6,182,212,.5); background:rgba(6,182,212,.10);}
.v19.playing .v23{color:#c084fc;}
.v16{ font-weight:800; color:#fff; }
.v22{ color:#94a3b8; overflow:hidden; text-overflow:ellipsis; max-width:120px;}

/* ---------- Content sections : channel banners ---------- */
.v8{ counter-increment: tvch; position:relative; }
.v85{ display:flex; align-items:baseline; gap:14px; margin-bottom:16px; flex-wrap:wrap; }
.v85 h2{
  padding-left:8px; font-size:21px; display:flex; align-items:center; gap:10px; letter-spacing:-.01em;
}
/* channel number nameplate */
.v85 h2::before{
  content: counter(tvch, decimal-leading-zero);
  width:auto; height:auto; position:static; border-radius:9px;
  padding:3px 9px; font-size:13px; font-weight:800; letter-spacing:.04em;
  background:linear-gradient(135deg,#a855f7,#ec4899); color:#041018;
  box-shadow:0 6px 18px -6px rgba(6,182,212,.8);
  font-variant-numeric:tabular-nums;
}
html[dir="rtl"] .v85 h2{ padding-left:0; padding-right:8px; }
html[dir="rtl"] .v85 h2::before{ padding-left:9px; padding-right:9px; }

/* ---------- Cards : TV snapshot ---------- */
.v7,.v101{
  position:relative; overflow:hidden; border-radius:16px;
  background:linear-gradient(180deg,rgba(10,24,38,.7),rgba(6,12,20,.55));
}
.v3,.v102{ position:relative; overflow:hidden; aspect-ratio:3/4; }
.v3 img,.v102 img{ display:block; width:100%; height:100%; object-fit:cover; }
/* corner reception badge */
.v7::before,.v101::before{
  content:"●"; position:absolute; z-index:3; top:8px; left:8px;
  color:rgba(255,255,255,.85); font-size:16px; line-height:1;
  text-shadow:0 0 6px rgba(0,0,0,.6); transition:.2s;
}
/* play overlay on hover */
.v3::after,.v102::after{
  content:""; position:absolute; left:50%; top:50%; width:0; height:0; opacity:0;
  border-left:18px solid #fff; border-top:11px solid transparent; border-bottom:11px solid transparent;
  transform:translate(-50%,-50%) scale(.6); filter:drop-shadow(0 4px 12px rgba(0,0,0,.6));
  z-index:2; transition:.22s;
}
.v7:hover .v3::after,.v101:hover .v102::after{
  opacity:1; transform:translate(-50%,-50%) scale(1);
}
.v3::before,.v102::before{
  content:""; position:absolute; inset:0; z-index:1; background:rgba(0,0,0,.0);
  transition:.22s;
}
.v7:hover .v3::before,.v101:hover .v102::before{ background:rgba(0,0,0,.15); }

/* assistive : hidden badge counter native */
.v85 h2::after{ content:none; }

@media (min-width:1024px){
  .v85 h2{ font-size:24px; }
}


/* ============================================
   THEATER SEASON — Cinephile / film-festival curation
   剧场季刊 / 电影节策展墙风（覆盖 TV Wall 视觉）
   ============================================ */

/* --- drop TV-specific chrome --- */
.v18{ display:none; }              /* hide TV now-playing strip */
.hero::after{ display:none; }            /* remove TV scanlines */
.v7::before,.v101::before{ content:none; } /* remove TV ● badge */

/* --- header : film-festival season stamp --- */
.v49::after{
  content:"SEASON ’26";                   /* LIVE -> season edition */
  background:linear-gradient(135deg,#f59e0b,#fbbf24); color:#251505;
  animation:none; letter-spacing:.14em; padding:2px 7px; font-size:9px;
}

/* --- hero : dim theater + spotlight + cinematic chyron --- */
.hero{
  background:
    radial-gradient(760px 520px at 50% -26%, rgba(251,191,36,.16), transparent 58%),
    radial-gradient(680px 460px at 18% 4%, rgba(16,185,129,.18), transparent 60%),
    linear-gradient(180deg,#0a0d14 0%, #0b141d 100%);
}
.hero::before{  /* cinematic marquee chyron */
  content:"LUMORA TV CINEMA ● SEASON ’26 ● 100% FREE PREMIERE";
  background:rgba(4,7,12,.6); color:#fcd34d; letter-spacing:.2em; font-size:9px;
  border-bottom:1px solid rgba(251,191,36,.22); justify-content:center;
}

/* --- section headers : curated festival units --- */
.v8 .v85 h2::before{
  content: "UNIT " counter(tvch, decimal-leading-zero);
  font-size:10px; letter-spacing:.14em; padding:3px 10px; font-weight:800;
  background:transparent; color:#fbbf24; box-shadow:none;
  border:1px solid rgba(251,191,36,.38); border-radius:9999px;
  -webkit-text-fill-color:#fbbf24;
}
.v85 .v86{ color:#7c8aa0; }

/* --- cards : curated poster gallery (gallery rhythm + gold hairline) --- */
.v83{ gap:22px; padding-bottom:10px; }
.v7,.v101{
  border:1px solid rgba(251,191,36,.10);
  border-radius:14px;
  box-shadow:0 22px 44px -26px rgba(0,0,0,.85);
}
.v7:hover,.v101:hover{
  border-color:rgba(251,191,36,.38);
  box-shadow:0 0 0 1px rgba(251,191,36,.12), 0 24px 46px -24px rgba(0,0,0,.9);
}
.v3::before,.v102::before{ background:linear-gradient(180deg,rgba(0,0,0,.02),rgba(0,0,0,.28)) !important; }

/* --- hero content typography : bolder magazine title --- */
.v58{ font-size:clamp(30px,6.4vw,58px); letter-spacing:-.03em; }
.badge{ background:rgba(251,191,36,.08); border-color:rgba(251,191,36,.26); }

/* --- feature bar : hairline gallery dividers --- */
.v36{ border-top:1px solid rgba(251,191,36,.08); }

/* --- why / compare : letter-spaced kicks --- */
th{ letter-spacing:.14em; }

/* --- CTA : premiere ticket --- */
.v12{
  border-color:rgba(251,191,36,.22);
  background:radial-gradient(600px 320px at 50% -20%, rgba(251,191,36,.16), transparent 60%),#0b1621;
}

/* --- footer : cinema info plate --- */
footer{ border-top:1px solid rgba(251,191,36,.25); }


/* ============================================
   LARGER POSTER CARDS  (bigger showcase images)
   ============================================ */
.v3,.v102{ aspect-ratio:2/3; }
.v7,.v101{ width:186px; }
.v83{ gap:18px; }

@media (min-width:640px){
  .v7,.v101{ width:226px; }
}
@media (min-width:1024px){
  .v7,.v101{ width:282px; }
  .v83{ gap:24px; }
}


/* ============================================
   FIX: unlock poster image height
   (removes fixed 100px cap so posters actually grow)
   ============================================ */
.v3,.v102{ height:auto !important; }
.v3{ aspect-ratio:2/3; }
.v102{ aspect-ratio:16/11; }

/* ============================================
   NEON ORCHID — violet / fuchsia restyle
   matches the LUMORA TV app icon (colors only;
   layout & content untouched)
   ============================================ */

/* --- global text gradient & numeric sheen --- */
.v44{
  background:linear-gradient(135deg,#c084fc,#f472b6);
  -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color:transparent;
  color:transparent;
}
.v47{
  background:linear-gradient(135deg,#a855f7,#ec4899);
  box-shadow:0 8px 22px -8px rgba(168,85,247,.6);
  -webkit-text-fill-color:#fff; color:#fff;
}
.v67{
  background:linear-gradient(135deg,#a855f7,#ec4899);
  box-shadow:0 0 0 1px rgba(216,130,247,.45), 0 14px 34px -12px rgba(168,85,247,.7);
}
.v33{
  color:#e879f9;
  background:linear-gradient(135deg,rgba(168,85,247,.26),rgba(236,72,153,.26));
  border-color:rgba(216,130,247,.45);
}
.v31{ color:#c4a5ff; }

/* --- page backdrop : deep aubergine + orchid aurora --- */
body{
  background:
    radial-gradient(1200px 620px at 12% -8%, rgba(147,51,234,.20), transparent 60%),
    radial-gradient(1000px 540px at 90% 4%, rgba(236,72,153,.14), transparent 55%),
    radial-gradient(900px 600px at 55% 110%, rgba(217,70,239,.10), transparent 60%),
    linear-gradient(180deg,#0a0612 0%,#120a20 55%,#0e091c 100%);
  background-color:#0a0612;
  background-attachment:fixed;
}

/* --- primary & download CTAs : violet → fuchsia --- */
.v2{
  background:linear-gradient(to right,#a855f7,#ec4899);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 16px 40px -12px rgba(168,85,247,.7);
}
.v2:hover{
  background:linear-gradient(to right,#c084fc,#f472b6);
  box-shadow:0 20px 46px -12px rgba(217,70,239,.75);
  transform:translateY(-2px);
}
.v1{
  background:linear-gradient(to right,#ec4899,#a855f7);
  box-shadow:0 16px 40px -14px rgba(168,85,247,.7);
}
.v1:hover{ background:linear-gradient(to right,#f472b6,#c084fc); transform:translateY(-2px); }
.v50{
  border-color:rgba(168,85,247,.4); background:rgba(168,85,247,.10);
}
.v50:hover{ border-color:rgba(236,72,153,.7); background:rgba(168,85,247,.18); }

/* --- hero : orchid aurora --- */
.hero{
  background:
    radial-gradient(760px 520px at 50% -26%, rgba(168,85,247,.24), transparent 58%),
    radial-gradient(680px 460px at 18% 4%, rgba(236,72,153,.18), transparent 60%),
    linear-gradient(180deg,#0d0716 0%,#130b22 100%);
}
.v55{
  background:
    radial-gradient(560px 440px at 50% -22%, rgba(192,132,252,.42), transparent 66%),
    radial-gradient(480px 360px at 16% 12%, rgba(244,114,182,.28), transparent 62%),
    radial-gradient(540px 400px at 84% 30%, rgba(217,70,239,.16), transparent 64%);
}
.hero::before{ color:#f5e9ff; border-bottom:1px solid rgba(216,130,247,.4); }
.badge{ background:rgba(168,85,247,.12); border-color:rgba(216,130,247,.36); }
.v104{ box-shadow:inset 0 1px 0 rgba(255,255,255,.09), 0 14px 30px -22px rgba(168,85,247,.5); }

/* --- features bar --- */
.v36{ border-top:1px solid rgba(168,85,247,.12); }
.v29:hover{ border-color:rgba(236,72,153,.55); box-shadow:0 12px 28px -18px rgba(168,85,247,.6); }

/* --- install card : violet glass pane --- */
.v59{
  background:linear-gradient(180deg,rgba(35,18,60,.9),rgba(14,8,26,.74));
  box-shadow:0 36px 80px -44px rgba(0,0,0,.9), 0 0 50px rgba(168,85,247,.12);
}
.v68{ color:#c4a3ff; }

/* --- section header : orchid channel nameplate --- */
.v8 .v85 h2::before{
  color:#d3b4ff; border-color:rgba(216,130,247,.55);
  -webkit-text-fill-color:#d3b4ff;
}
.v85 h2::before{
  background:linear-gradient(135deg,#a855f7,#ec4899); color:#1a0b20;
  box-shadow:0 6px 18px -6px rgba(168,85,247,.85);
}
.v86{ color:#9d8bb3; }

/* --- cards : orchid hairline + hover glow --- */
.v7,.v101{
  border-color:rgba(168,85,247,.20);
  box-shadow:0 22px 44px -26px rgba(0,0,0,.85);
}
.v7:hover,.v101:hover{
  border-color:rgba(236,72,153,.6);
  box-shadow:0 0 0 1px rgba(216,130,247,.2), 0 24px 46px -24px rgba(0,0,0,.9), 0 0 34px rgba(168,85,247,.26);
}
.v3,.v102{
  background:linear-gradient(180deg,rgba(168,85,247,.12),rgba(10,7,18,.42));
}
.v30:hover{ border-color:rgba(236,72,153,.6); box-shadow:0 18px 40px -20px rgba(168,85,247,.6); }
.v45:hover{ border-color:rgba(236,72,153,.65); }
.v0{ border-color:rgba(168,85,247,.28); }

/* --- compare table highlight --- */
th{ color:#cbd5e1; }
th.purple{ color:#e879f9; }

/* --- CTA premiere ticket : orchid --- */
.v12{
  border-color:rgba(168,85,247,.32);
  background:radial-gradient(600px 320px at 50% -20%, rgba(168,85,247,.2), transparent 60%),#120a1e;
}

/* --- FAQ --- */
.v25.active{ border-color:rgba(236,72,153,.55); }
.v27:hover{ background:rgba(168,85,247,.08); }

/* --- footer --- */
footer{ border-top:1px solid rgba(168,85,247,.34); }
.v40{
  background:linear-gradient(135deg,#c084fc,#f472b6);
  -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* --- modal & fixed bar : orchid --- */
.v72{
  border-color:rgba(168,85,247,.34);
  background:linear-gradient(145deg,#1a0f2e,#120a1e);
  box-shadow:0 44px 100px -44px rgba(0,0,0,.95), 0 0 70px rgba(168,85,247,.18);
}
.v73{ background:rgba(10,4,16,.76); backdrop-filter:blur(6px); }
.v77{ background:linear-gradient(135deg,#a855f7,#ec4899); color:#fff; }
.v71{ background:linear-gradient(135deg,#a855f7,#ec4899); box-shadow:0 8px 24px rgba(168,85,247,.45); }
.v37{ background:rgba(12,6,20,.94); border-top:1px solid rgba(168,85,247,.3); }
.v38{ background:linear-gradient(135deg,#a855f7,#ec4899); box-shadow:0 8px 24px rgba(168,85,247,.45); }
.v38:hover{ background:linear-gradient(135deg,#c084fc,#f472b6); }
