/* 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 */
.top-header {
  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);
}

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

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

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

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

.header-btn {
  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;
}

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

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

.progress-fill {
  height: 100%;
  width: 30%;
  background: linear-gradient(to right, #06b6d4, #ffffff, #10b981);
  animation: progress-slide 3s ease-in-out infinite;
}

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

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, #06b6d4, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(to right, #0891b2, #10b981);
  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;
}

.btn-primary:hover {
  background: linear-gradient(to right, #06b6d4, #2dd4bf);
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(to right, #10b981, #06b6d4);
  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;
}

.btn-download:hover {
  background: linear-gradient(to right, #34d399, #22d3ee);
  transform: translateY(-2px);
}

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

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

.hero-bg::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);
}

.hero-content {
  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;
}

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

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

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

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

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

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

.stat-card {
  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);
}

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

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

/* Features Section */
.features-section {
  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);
}

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

.feature-box {
  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;
}

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

.feature-icon-new {
  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: #06b6d4;
  flex-shrink: 0;
}

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

/* Install Card */
.install-card-section {
  padding: 40px 16px;
}

.install-card {
  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);
}

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

.install-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, #0891b2, #10b981);
  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);
}

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

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

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

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

.install-features {
  padding: 24px;
}

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

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

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

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

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

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

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

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

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

/* Share VIP Section */
.share-vip-section {
  padding: 1.5rem 1rem;
}

.share-vip-card {
  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;
}

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

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

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

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

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

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

.share-progress-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fbbf24;
}

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

.share-btn {
  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;
}

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

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

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

.copy-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

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

.share-link-label {
  color: #94a3b8;
  margin-right: 0.25rem;
}

.share-link-url {
  color: #fbbf24;
  word-break: break-all;
}

@media (max-width: 640px) {
  .share-vip-card {
    padding: 1.5rem 1rem;
  }
  
  .share-vip-title {
    font-size: 1.25rem;
  }
  
  .share-buttons {
    grid-template-columns: 1fr;
  }
}

/* Content Sections */
.content-section {
  padding: 40px 0;
}

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

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

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

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

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

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

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

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

.scroll-wrapper:hover .scroll-row {
  animation-play-state: paused;
}

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

/* Cards */
.content-card {
  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;
}

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

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

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

.card-image .emoji {
  font-size: 32px;
  opacity: 0.3;
}

.card-tags {
  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;
}

.tag-hit { background: #f97316; }
.tag-4k { background: #3b82f6; }
.tag-live { background: #ef4444; }
.tag-hd { background: #22c55e; }
.tag-new { background: #06b6d4; }
.tag-night { background: #0ea5e9; }
.tag-hot { background: #10b981; }
.tag-noir { background: #4b5563; }
.tag-18 { background: #dc2626; }
.tag-adult { background: #dc2626; }
.tag-free { background: rgba(255, 255, 255, 0.2); }

.card-info {
  padding: 12px;
}

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

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

/* Sport Card */
.sport-card {
  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;
}

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

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

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

.sport-image .emoji {
  font-size: 40px;
}

.live-badge {
  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;
}

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

.sport-info {
  padding: 12px;
}

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

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

/* Why Section */
.why-section {
  padding: 56px 16px;
}

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

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

.feature-card {
  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;
}

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

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

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

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

/* Compare Section */
.compare-section {
  padding: 40px 16px;
}

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

.table-wrapper {
  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: #06b6d4;
  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 */
.cta-section {
  padding: 56px 16px;
}

.cta-card {
  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;
}

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

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

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

.cta-stats > div {
  text-align: center;
}

.cta-stats .gradient-text {
  font-size: 24px;
  font-weight: 700;
}

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

/* Guide Section */
.guide-section {
  padding: 40px 16px;
}

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

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

.guide-card {
  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;
}

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

.guide-num {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  background: linear-gradient(to right, #0891b2, #10b981);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
}

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

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

.app-info {
  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;
}

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

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

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

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

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

/* FAQ Section */
.faq-section {
  padding: 40px 16px;
}

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

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

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

.faq-q {
  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;
}

.faq-q:hover {
  background: rgba(255, 255, 255, 0.05);
}

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

.faq-item.active .faq-q .arrow {
  transform: rotate(180deg);
}

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

.faq-item.active .faq-a {
  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;
}

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

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

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

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

/* Tablet */
@media (min-width: 640px) {
  .hero-title {
    font-size: 36px;
  }
  
  .hero-title .subtitle {
    font-size: 20px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .features-grid-new {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .content-card, .sport-card {
    width: 180px;
  }
  
  .card-image, .sport-image {
    height: 120px;
  }
  
  .guide-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .hero-title {
    font-size: 48px;
  }
  
  .hero-title .subtitle {
    font-size: 24px;
  }
  
  .section-header h2 {
    font-size: 24px;
  }
  
  .content-card, .sport-card {
    width: 200px;
  }
  
  .card-image, .sport-image {
    height: 140px;
  }
  
  .features-grid-6 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Download Modal */
.modal-overlay {
  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;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  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;
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-status {
  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;
}

.modal-status-dot {
  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; }
}

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

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

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

.modal-step:last-child {
  border-bottom: none;
}

.modal-step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #10b981, #06b6d4);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

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

.modal-step-text strong {
  color: #ffffff;
}

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

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

/* Fixed Bottom Download Bar */
.fixed-download-bar {
  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;
}

.fixed-download-bar.visible {
  transform: translateY(0);
}

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

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

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

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

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

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

html[dir="rtl"] .hero-title,
html[dir="rtl"] .hero-desc,
html[dir="rtl"] .section-header h2,
html[dir="rtl"] .section-header p,
html[dir="rtl"] .why-section h2,
html[dir="rtl"] .compare-section h2,
html[dir="rtl"] .cta-card h2,
html[dir="rtl"] .cta-card p,
html[dir="rtl"] .guide-section h2,
html[dir="rtl"] .faq-section h2,
html[dir="rtl"] .share-vip-title,
html[dir="rtl"] .share-vip-desc,
html[dir="rtl"] .install-subtitle,
html[dir="rtl"] .install-feature h3,
html[dir="rtl"] .install-feature p {
  text-align: right;
}

html[dir="rtl"] .feature-box,
html[dir="rtl"] .feature-card,
html[dir="rtl"] .stat-card,
html[dir="rtl"] .guide-card {
  text-align: right;
}

html[dir="rtl"] .card-info h4,
html[dir="rtl"] .card-info p,
html[dir="rtl"] .sport-info h4,
html[dir="rtl"] .sport-info p {
  text-align: right;
}

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

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

html[dir="rtl"] .faq-item.active .faq-q .arrow {
  transform: rotate(0deg);
}

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

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

html[dir="rtl"] .btn-primary,
html[dir="rtl"] .btn-download,
html[dir="rtl"] .fixed-download-btn,
html[dir="rtl"] .header-btn {
  flex-direction: row-reverse;
}

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

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

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

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

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

html[dir="rtl"] .scroll-row > * {
  direction: rtl;
}


/* ============================================
   Emerald Theme — Layout & Style polish
   ============================================ */
:root{
  --teal:#06b6d4; --emerald:#10b981; --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 ---- */
.top-header{
  background:rgba(5,9,15,.78);
  backdrop-filter:blur(18px) saturate(140%);
  box-shadow:0 1px 0 rgba(6,182,212,.14);
}
.top-header::after{
  content:""; position:absolute; left:0; right:0; bottom:-1px; height:1px;
  background:linear-gradient(90deg,transparent,rgba(6,182,212,.6),transparent);
}
.header-title{ letter-spacing:-.01em; }
.header-btn{border-color:rgba(6,182,212,.35); background:rgba(6,182,212,.06);}
.header-btn:hover{border-color:rgba(6,182,212,.6); background:rgba(6,182,212,.12);}

/* ---- Hero ---- */
.hero{ padding:56px 16px 44px; }
.hero-bg{
  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%);
}
.hero-bg::before{ display:none; }
.hero-content{ 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; }
.hero-title{ letter-spacing:-.02em; }
.stat-card{
  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);
}
.stat-value{ font-size:24px; }

/* ---- CTAs ---- */
.btn-primary{
  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);
}
.btn-primary:hover{ transform:translateY(-2px); }
.btn-download{ border-radius:14px; box-shadow:0 16px 40px -14px rgba(16,185,129,.65); }
.btn-download:hover{ transform:translateY(-3px); }

/* ---- Features bar ---- */
.features-section{ background:linear-gradient(180deg,rgba(6,182,212,.05),transparent); }
.feature-box{ border-radius:16px; border:1px solid rgba(255,255,255,.06); }
.feature-box:hover{ border-color:rgba(6,182,212,.45); box-shadow:0 12px 28px -18px rgba(6,182,212,.55); }
.feature-icon-new{ color:#22d3ee; }

/* ---- Install card ---- */
.install-card{
  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);
}
.install-icon{ box-shadow:0 0 0 1px rgba(6,182,212,.35), 0 14px 34px -12px rgba(6,182,212,.65); }

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

/* ---- Cards : cover-forward ---- */
.content-card,.sport-card{
  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));
}
.content-card:hover,.sport-card: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);
}
.card-image,.sport-image{
  background:linear-gradient(180deg,rgba(6,182,212,.10),rgba(8,18,30,.4));
}
.card-image img,.sport-image img{ transition:transform .5s ease; }
.content-card:hover img,.sport-card:hover img{ transform:scale(1.06); }
.card-info,.sport-info{ padding:12px; }

/* ---- Why / Guide / App cards ---- */
.feature-card{
  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));
}
.feature-card:hover{ border-color:rgba(6,182,212,.45); box-shadow:0 18px 40px -20px rgba(6,182,212,.5); }
.guide-card{ border-radius:18px; }
.guide-card:hover{ border-color:rgba(6,182,212,.5); }
.app-info{ border-radius:16px; }

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

/* ---- CTA ---- */
.cta-card{
  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 ---- */
.faq-item{ border-radius:14px; border-color:rgba(255,255,255,.08); }
.faq-item.active{ border-color:rgba(6,182,212,.45); }
.faq-q{ font-size:14px; }
.faq-q:hover{ background:rgba(6,182,212,.05); }

/* ---- Footer ---- */
footer{ border-top:1px solid rgba(6,182,212,.18); }
.footer-brand{
  background:linear-gradient(135deg,#34d399,#22d3ee);
  -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color:transparent;
}
.footer-links{ color:#64748b; }

/* ---- Modal / Fixed bar ---- */
.modal-content{
  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);
}
.fixed-download-bar{ 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 ---------- */
.top-header{ border-bottom:0; }
.header-brand{ position:relative; }
.header-logo{border-radius:9px;}
.header-brand::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:"SUDES SIGNAL • 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;
}
.hero-bg{
  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;
}
.hero-content{ position:relative; z-index:3; }
.hero > .hero-content{ }

/* ---------- EPG : now-playing channel guide ---------- */
.epg-guide{
  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);
}
.epg-label{ flex:0 0 auto; display:flex; align-items:center; gap:7px;
  font-size:11px; font-weight:800; letter-spacing:.14em; color:#a5f3fc; }
.epg-dot{ width:8px;height:8px;border-radius:50%;background:#ef4444; box-shadow:0 0 10px #ef4444; animation:tvBlink 1.6s infinite;}
.epg-scroll{ display:flex; gap:10px; overflow-x:auto; scrollbar-width:none; }
.epg-scroll::-webkit-scrollbar{ display:none; }
.epg-item{
  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);
}
.epg-time{ color:#64748b; font-weight:700; font-variant-numeric:tabular-nums;}
.epg-item.playing{ border-color:rgba(6,182,212,.5); background:rgba(6,182,212,.10);}
.epg-item.playing .epg-time{color:#22d3ee;}
.epg-ch{ font-weight:800; color:#fff; }
.epg-sh{ color:#94a3b8; overflow:hidden; text-overflow:ellipsis; max-width:120px;}

/* ---------- Content sections : channel banners ---------- */
.content-section{ counter-increment: tvch; position:relative; }
.section-header{ display:flex; align-items:baseline; gap:14px; margin-bottom:16px; flex-wrap:wrap; }
.section-header h2{
  padding-left:8px; font-size:21px; display:flex; align-items:center; gap:10px; letter-spacing:-.01em;
}
/* channel number nameplate */
.section-header 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,#06b6d4,#10b981); color:#041018;
  box-shadow:0 6px 18px -6px rgba(6,182,212,.8);
  font-variant-numeric:tabular-nums;
}
html[dir="rtl"] .section-header h2{ padding-left:0; padding-right:8px; }
html[dir="rtl"] .section-header h2::before{ padding-left:9px; padding-right:9px; }

/* ---------- Cards : TV snapshot ---------- */
.content-card,.sport-card{
  position:relative; overflow:hidden; border-radius:16px;
  background:linear-gradient(180deg,rgba(10,24,38,.7),rgba(6,12,20,.55));
}
.card-image,.sport-image{ position:relative; overflow:hidden; aspect-ratio:3/4; }
.card-image img,.sport-image img{ display:block; width:100%; height:100%; object-fit:cover; }
/* corner reception badge */
.content-card::before,.sport-card::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 */
.card-image::after,.sport-image::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;
}
.content-card:hover .card-image::after,.sport-card:hover .sport-image::after{
  opacity:1; transform:translate(-50%,-50%) scale(1);
}
.card-image::before,.sport-image::before{
  content:""; position:absolute; inset:0; z-index:1; background:rgba(0,0,0,.0);
  transition:.22s;
}
.content-card:hover .card-image::before,.sport-card:hover .sport-image::before{ background:rgba(0,0,0,.15); }

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

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


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

/* --- drop TV-specific chrome --- */
.epg-guide{ display:none; }              /* hide TV now-playing strip */
.hero::after{ display:none; }            /* remove TV scanlines */
.content-card::before,.sport-card::before{ content:none; } /* remove TV ● badge */

/* --- header : film-festival season stamp --- */
.header-brand::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:"SUDES 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 --- */
.content-section .section-header 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;
}
.section-header .section-sub{ color:#7c8aa0; }

/* --- cards : curated poster gallery (gallery rhythm + gold hairline) --- */
.scroll-row{ gap:22px; padding-bottom:10px; }
.content-card,.sport-card{
  border:1px solid rgba(251,191,36,.10);
  border-radius:14px;
  box-shadow:0 22px 44px -26px rgba(0,0,0,.85);
}
.content-card:hover,.sport-card: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);
}
.card-image::before,.sport-image::before{ background:linear-gradient(180deg,rgba(0,0,0,.02),rgba(0,0,0,.28)) !important; }

/* --- hero content typography : bolder magazine title --- */
.hero-title{ 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 --- */
.features-section{ border-top:1px solid rgba(251,191,36,.08); }

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

/* --- CTA : premiere ticket --- */
.cta-card{
  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)
   ============================================ */
.card-image,.sport-image{ aspect-ratio:2/3; }
.content-card,.sport-card{ width:186px; }
.scroll-row{ gap:18px; }

@media (min-width:640px){
  .content-card,.sport-card{ width:226px; }
}
@media (min-width:1024px){
  .content-card,.sport-card{ width:282px; }
  .scroll-row{ gap:24px; }
}


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