/* =====================================================
   OLIMPBET APK - Main Stylesheet
   Colors: #CF1817, #1E1E1E, #000000, #FD9D22, #FFDC4C, #E35900, #8B43AA
   Buttons: #159B32 (download), #E16763 (login)
   ===================================================== */

:root {
  --red: #CF1817;
  --dark: #1E1E1E;
  --black: #000000;
  --orange: #FD9D22;
  --yellow: #FFDC4C;
  --deep-orange: #E35900;
  --purple: #8B43AA;
  --btn-green: #159B32;
  --btn-red: #E16763;
  --white: #ffffff;
  --gray-light: #2a2a2a;
  --gray-mid: #3a3a3a;
  --border-radius: 12px;
  --border-radius-lg: 18px;
  --transition: 0.3s ease;
}

/* ======= RESET & BASE ======= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background-color: var(--dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

/* ======= TYPOGRAPHY ======= */
h1, h2, h3, h4, h5 {
  font-weight: 800;
  line-height: 1.2;
}

h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.6rem); }
h4 { font-size: clamp(1rem, 2vw, 1.3rem); }

p {
  font-size: 1rem;
  line-height: 1.7;
  color: #cccccc;
}

/* ======= HEADER ======= */
.site-header {
  background: var(--black);
  border-bottom: 2px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-logo img {
  height: 40px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-nav a {
  color: #cccccc;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color var(--transition);
  white-space: nowrap;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--yellow);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* ======= BUTTONS ======= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
  line-height: 1;
}

.btn-download {
  background: var(--btn-green);
  color: var(--white);
}

.btn-download:hover {
  background: #1ab83c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(21, 155, 50, 0.45);
}

.btn-login {
  background: var(--btn-red);
  color: var(--white);
}

.btn-login:hover {
  background: #f07573;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(225, 103, 99, 0.45);
}

.btn-yellow {
  background: var(--yellow);
  color: var(--black);
}

.btn-yellow:hover {
  background: #ffe566;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 220, 76, 0.45);
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
}

.btn-orange:hover {
  background: #ffad40;
  transform: translateY(-2px);
}

.btn-red {
  background: var(--red);
  color: var(--white);
}

.btn-red:hover {
  background: #e02020;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.1rem;
  border-radius: 10px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-block {
  display: flex;
  width: 100%;
}

/* ======= HERO SECTION ======= */
.hero {
  background: linear-gradient(135deg, var(--black) 0%, #1a0000 40%, var(--red) 100%);
  position: relative;
  overflow: hidden;
  padding: 60px 20px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('../images/NF5y6V58.jpg') center/cover no-repeat;
  opacity: 0.15;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.hero-content h1 span {
  color: var(--yellow);
}

.hero-content p {
  font-size: 1.15rem;
  color: #dddddd;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-image {
  text-align: center;
}

.hero-image img {
  max-height: 420px;
  margin: 0 auto;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 20px 60px rgba(207, 24, 23, 0.4);
}

/* ======= CONTAINER ======= */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ======= SECTIONS ======= */
.section {
  padding: 60px 0;
}

.section-dark {
  background: var(--dark);
}

.section-black {
  background: var(--black);
}

.section-red {
  background: var(--red);
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.section-header h2 span {
  color: var(--yellow);
}

.section-header p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ======= CARD STYLES - with sharp-angle border like reference ======= */
.card {
  background: var(--gray-light);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(207, 24, 23, 0.3);
}

/* Olimpbet-style clipped corners */
.card-clipped {
  background: var(--gray-light);
  border-radius: 0;
  clip-path: polygon(12px 0%, 100% 0%, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0% 100%, 0% 12px);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.card-clipped:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(207, 24, 23, 0.35);
}

.card-clipped-red {
  background: var(--red);
  clip-path: polygon(12px 0%, 100% 0%, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0% 100%, 0% 12px);
}

/* ======= PROMO BANNERS ======= */
.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.promo-banner {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  min-height: 180px;
  cursor: pointer;
}

.promo-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.promo-banner:hover img {
  transform: scale(1.03);
}

.promo-banner-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  padding: 20px;
}

.promo-banner-overlay .btn {
  margin-top: 8px;
}

/* ======= STEPS ======= */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step-item {
  background: var(--gray-light);
  clip-path: polygon(12px 0%, 100% 0%, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0% 100%, 0% 12px);
  padding: 28px 20px;
  text-align: center;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--red);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step-item h3 {
  color: var(--yellow);
  margin-bottom: 8px;
  font-size: 1rem;
}

.step-item p {
  font-size: 0.9rem;
  color: #aaaaaa;
}

/* ======= FEATURES GRID ======= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--gray-light);
  clip-path: polygon(12px 0%, 100% 0%, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0% 100%, 0% 12px);
  padding: 28px 24px;
  transition: all var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(207, 24, 23, 0.3);
}

.feature-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  color: var(--yellow);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.feature-card p {
  font-size: 0.92rem;
  color: #aaaaaa;
}

/* ======= SPORTS LIST ======= */
.sports-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.sport-tab {
  background: var(--gray-light);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
  border: none;
}

.sport-tab.active,
.sport-tab:hover {
  background: var(--red);
  color: var(--white);
}

/* ======= MATCH CARDS ======= */
.matches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.match-card {
  background: var(--gray-light);
  clip-path: polygon(10px 0%, 100% 0%, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0% 100%, 0% 10px);
  padding: 16px;
}

.match-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.78rem;
  color: #888;
}

.match-card-header .match-time {
  color: var(--yellow);
  font-weight: 700;
}

.match-teams {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.match-teams-names {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
}

.match-odds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.odd-btn {
  background: var(--gray-mid);
  color: var(--white);
  padding: 8px 4px;
  border-radius: 6px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition);
  border: none;
  display: block;
  width: 100%;
  text-decoration: none;
}

.odd-btn:hover {
  background: var(--red);
  color: var(--white);
}

.odd-btn .odd-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: #888;
  margin-bottom: 2px;
}

/* ======= CYBER SECTION ======= */
.cyber-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.cyber-tab {
  background: var(--gray-light);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
  border: none;
}

.cyber-tab.active {
  background: var(--red);
}

/* ======= PROMO CARDS ======= */
.promo-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.promo-card {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
  min-height: 200px;
}

.promo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.promo-card:hover img {
  transform: scale(1.04);
}

.promo-card-footer {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.6);
  padding: 12px 16px;
  text-align: center;
}

.promo-card-footer span {
  font-weight: 700;
  color: var(--white);
}

/* ======= UPSL GAMES ======= */
.upsl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.upsl-card {
  background: var(--gray-light);
  clip-path: polygon(12px 0%, 100% 0%, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0% 100%, 0% 12px);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition);
}

.upsl-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(207, 24, 23, 0.3);
}

.upsl-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.upsl-card-body {
  padding: 16px;
}

.upsl-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.upsl-badge-top {
  background: var(--orange);
}

.upsl-badge-new {
  background: var(--btn-green);
}

.upsl-card-body h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 4px;
}

.upsl-card-body p {
  font-size: 0.85rem;
  color: #999;
}

/* ======= INFO BLOCK ======= */
.info-block {
  background: var(--gray-light);
  clip-path: polygon(16px 0%, 100% 0%, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0% 100%, 0% 16px);
  padding: 32px;
  margin-bottom: 24px;
}

.info-block h2,
.info-block h3 {
  color: var(--yellow);
  margin-bottom: 16px;
}

.info-block p {
  margin-bottom: 14px;
  font-size: 0.97rem;
}

.info-block ul {
  list-style: none;
  padding: 0;
}

.info-block ul li {
  padding: 6px 0 6px 24px;
  position: relative;
  color: #cccccc;
  font-size: 0.95rem;
}

.info-block ul li::before {
  content: '▸';
  color: var(--red);
  position: absolute;
  left: 0;
  font-weight: 700;
}

/* ======= CRYPTO SECTION ======= */
.crypto-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 32px 0;
}

.crypto-card {
  background: var(--gray-light);
  clip-path: polygon(10px 0%, 100% 0%, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0% 100%, 0% 10px);
  padding: 24px 16px;
  text-align: center;
  transition: transform var(--transition);
}

.crypto-card:hover {
  transform: translateY(-4px);
}

.crypto-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.crypto-card h4 {
  color: var(--yellow);
  margin-bottom: 6px;
}

.crypto-card p {
  font-size: 0.85rem;
  color: #999;
}

/* ======= PARTNERS ======= */
.partners-strip {
  background: var(--black);
  padding: 20px 0;
  overflow: hidden;
}

.partners-strip img {
  width: 100%;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(1) brightness(0.8);
  opacity: 0.6;
  transition: all var(--transition);
}

.partners-strip img:hover {
  filter: none;
  opacity: 1;
}

/* ======= FAQ ======= */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--gray-light);
  clip-path: polygon(10px 0%, 100% 0%, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0% 100%, 0% 10px);
  overflow: hidden;
}

.faq-question {
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  color: var(--white);
  font-size: 0.97rem;
  transition: color var(--transition);
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}

.faq-question:hover {
  color: var(--yellow);
}

.faq-question .faq-arrow {
  color: var(--red);
  font-size: 1.2rem;
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 10px;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 600px;
}

.faq-answer-inner {
  padding: 0 20px 18px;
  color: #aaaaaa;
  font-size: 0.93rem;
  line-height: 1.7;
}

/* ======= BREADCRUMBS ======= */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  font-size: 0.85rem;
  color: #888;
  flex-wrap: wrap;
}

.breadcrumbs a {
  color: #888;
  transition: color var(--transition);
}

.breadcrumbs a:hover {
  color: var(--yellow);
}

.breadcrumbs span {
  color: #555;
}

/* ======= TEXT CONTENT ======= */
.text-content h2 {
  color: var(--yellow);
  margin-top: 32px;
  margin-bottom: 14px;
  font-size: 1.4rem;
}

.text-content h3 {
  color: var(--orange);
  margin-top: 24px;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.text-content p {
  margin-bottom: 16px;
  font-size: 0.97rem;
  color: #cccccc;
}

.text-content ul {
  padding-left: 0;
  margin-bottom: 16px;
}

.text-content ul li {
  padding: 5px 0 5px 24px;
  position: relative;
  color: #cccccc;
  font-size: 0.95rem;
}

.text-content ul li::before {
  content: '◆';
  color: var(--red);
  font-size: 0.7rem;
  position: absolute;
  left: 0;
  top: 8px;
}

/* ======= HIGHLIGHT BOXES ======= */
.highlight-box {
  background: linear-gradient(135deg, rgba(207,24,23,0.15) 0%, rgba(139,67,170,0.1) 100%);
  border-left: 4px solid var(--red);
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
}

.highlight-box-orange {
  background: linear-gradient(135deg, rgba(253,157,34,0.15) 0%, rgba(227,89,0,0.1) 100%);
  border-left: 4px solid var(--orange);
}

.highlight-box-green {
  background: linear-gradient(135deg, rgba(21,155,50,0.15) 0%, rgba(21,155,50,0.05) 100%);
  border-left: 4px solid var(--btn-green);
}

.highlight-box h4 {
  color: var(--yellow);
  margin-bottom: 8px;
}

.highlight-box p {
  color: #bbbbbb;
  font-size: 0.95rem;
}

/* ======= STATS ROW ======= */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.stat-item {
  text-align: center;
  padding: 24px 16px;
  background: var(--gray-light);
  clip-path: polygon(10px 0%, 100% 0%, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0% 100%, 0% 10px);
}

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--yellow);
  display: block;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.85rem;
  color: #888;
}

/* ======= APP DOWNLOAD BOX ======= */
.app-download-box {
  background: linear-gradient(135deg, var(--black) 0%, #200000 100%);
  border: 1px solid rgba(207,24,23,0.4);
  clip-path: polygon(16px 0%, 100% 0%, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0% 100%, 0% 16px);
  padding: 40px;
  text-align: center;
}

.app-download-box h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.app-download-box h2 span {
  color: var(--yellow);
}

.app-download-box p {
  margin-bottom: 24px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.download-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.download-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gray-mid);
  padding: 12px 20px;
  border-radius: 10px;
  transition: all var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}

.download-badge:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-3px);
}

/* ======= TABLE ======= */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
}

.data-table thead th {
  background: var(--black);
  color: var(--yellow);
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.data-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background var(--transition);
}

.data-table tbody tr:hover {
  background: rgba(207,24,23,0.08);
}

.data-table tbody td {
  padding: 12px 16px;
  color: #cccccc;
}

/* ======= NOTICE BOX ======= */
.notice-box {
  background: rgba(253,157,34,0.12);
  border: 1px solid rgba(253,157,34,0.3);
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.notice-box .notice-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.notice-box p {
  color: #cccccc;
  font-size: 0.93rem;
}

/* ======= FOOTER ======= */
.site-footer {
  background: var(--black);
  border-top: 2px solid rgba(207,24,23,0.4);
  padding: 40px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-brand img {
  height: 36px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: #777;
  max-width: 280px;
}

.footer-col h4 {
  color: var(--yellow);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #777;
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: #555;
}

.footer-age {
  background: rgba(207,24,23,0.2);
  border: 1px solid var(--red);
  color: var(--red);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
}

/* ======= MOBILE MENU ======= */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

.mobile-nav {
  display: none;
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 20px;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  color: #cccccc;
  font-weight: 600;
  font-size: 0.97rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color var(--transition);
}

.mobile-nav a:hover {
  color: var(--yellow);
}

/* ======= TWO COLUMN LAYOUT ======= */
.two-col {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: start;
}

.two-col-equal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

/* ======= SIDEBAR ======= */
.sidebar-sticky {
  position: sticky;
  top: 80px;
}

.sidebar-box {
  background: var(--gray-light);
  clip-path: polygon(12px 0%, 100% 0%, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0% 100%, 0% 12px);
  padding: 24px;
  margin-bottom: 20px;
}

.sidebar-box h3 {
  color: var(--yellow);
  margin-bottom: 16px;
  font-size: 1rem;
}

/* ======= BADGE ======= */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.badge-red { background: var(--red); color: var(--white); }
.badge-yellow { background: var(--yellow); color: var(--black); }
.badge-green { background: var(--btn-green); color: var(--white); }
.badge-orange { background: var(--orange); color: var(--white); }
.badge-purple { background: var(--purple); color: var(--white); }

/* ======= PAGINATION ======= */
.section-cta {
  text-align: center;
  padding-top: 32px;
}

/* ======= IMAGE WITH OVERLAY ======= */
.img-overlay-wrap {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.img-overlay-wrap img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

/* ======= COMPARISON TABLE ======= */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 6px;
}

.compare-table thead th {
  background: var(--red);
  color: var(--white);
  padding: 14px 20px;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

.compare-table thead th:first-child {
  text-align: left;
  border-radius: 8px 0 0 0;
}

.compare-table thead th:last-child {
  border-radius: 0 8px 0 0;
}

.compare-table tbody tr td {
  background: var(--gray-light);
  padding: 12px 20px;
  color: #cccccc;
  font-size: 0.9rem;
  text-align: center;
}

.compare-table tbody tr td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--white);
}

/* ======= SCROLLBAR ======= */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: rgba(207,24,23,0.5);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--red);
}

/* ======= SELECTION ======= */
::selection {
  background: rgba(207,24,23,0.4);
  color: var(--white);
}

/* ======= UTILITIES ======= */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-yellow { color: var(--yellow); }
.text-red { color: var(--red); }
.text-orange { color: var(--orange); }
.text-gray { color: #888; }
.text-white { color: var(--white); }
.text-green { color: var(--btn-green); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.flex-wrap { flex-wrap: wrap; }
.fw-bold { font-weight: 700; }
.fw-black { font-weight: 900; }

/* ======= RESPONSIVE ======= */
@media (max-width: 1200px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .crypto-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-buttons { justify-content: center; }
  .hero-image { display: none; }
  .matches-grid { grid-template-columns: repeat(2, 1fr); }
  .upsl-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; }
  .two-col-equal { grid-template-columns: 1fr; }
  .promo-cards-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .promo-grid { grid-template-columns: 1fr; }
  .matches-grid { grid-template-columns: 1fr; }
  .upsl-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .crypto-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 40px 0; }
  .app-download-box { padding: 24px; }
  .info-block { padding: 20px; }

  .btn-lg {
    padding: 14px 24px;
    font-size: 1rem;
  }

  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.4rem; }
}

@media (max-width: 480px) {
  .hero { padding: 40px 16px; }
  .container { padding: 0 14px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .header-actions .btn-login { display: none; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .crypto-grid { grid-template-columns: 1fr 1fr; }
  .promo-grid { grid-template-columns: 1fr; }
  .download-badges { flex-direction: column; }
  .download-badges .btn { width: 100%; }
}

/* ======= GENERIC GRIDS ======= */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

@media (max-width: 992px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* ======= SECTION LIGHT ======= */
.section-light {
  background: #0f0f0f;
}

/* ======= ANIMATIONS ======= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeInUp 0.5s ease forwards;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* ======= LIVE INDICATOR ======= */
.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: livePulse 1.5s ease-in-out infinite;
  margin-right: 4px;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
