/* ==========================================
   MOSTBET APK — MAIN STYLESHEET
   Colors: #074383, #013B76, #002347, #FFFFFF, #04386E
   Button primary: #D25915, Button secondary: #073361
   ========================================== */

:root {
  --color-bg-dark: #002347;
  --color-bg-med: #013B76;
  --color-bg-light: #074383;
  --color-accent: #04386E;
  --color-btn-primary: #D25915;
  --color-btn-secondary: #073361;
  --color-white: #FFFFFF;
  --color-gold: #F5C518;
  --color-neon: #00C8FF;
  --border-radius: 12px;
  --shadow-neon: 0 0 15px rgba(0, 200, 255, 0.3);
  --shadow-btn: 0 4px 20px rgba(210, 89, 21, 0.5);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--color-bg-dark);
  color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ======= TYPOGRAPHY ======= */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-white);
}
h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h2 { font-size: clamp(1.3rem, 3vw, 1.9rem); margin: 1.5rem 0 1rem; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); margin: 1.2rem 0 0.8rem; }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; color: #cdd8ea; }
a { color: var(--color-neon); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--color-gold); }

/* ======= LAYOUT ======= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ======= HEADER ======= */
.site-header {
  background: linear-gradient(135deg, #002347 0%, #013B76 50%, #074383 100%);
  border-bottom: 1px solid rgba(0, 200, 255, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  gap: 16px;
}
.site-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.main-nav {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-link {
  color: #a8c0e8;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-link:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.header-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.btn-header-login {
  background: var(--color-btn-secondary);
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  border: 1px solid rgba(255,255,255,0.2);
  white-space: nowrap;
  transition: all 0.2s;
}
.btn-header-login:hover { background: #0a4a8a; color: white; }
.btn-header-reg {
  background: var(--color-btn-primary);
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
  box-shadow: var(--shadow-btn);
  transition: all 0.2s;
}
.btn-header-reg:hover { background: #e86520; color: white; transform: translateY(-1px); }

.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ======= NEON BORDER ======= */
.neon-border {
  border: 1px solid rgba(0, 200, 255, 0.25);
  box-shadow: var(--shadow-neon);
  border-radius: var(--border-radius);
}

/* ======= BUTTONS ======= */
.btn-primary {
  display: inline-block;
  background: var(--color-btn-primary);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-btn);
  transition: all 0.3s;
  text-decoration: none;
}
.btn-primary:hover {
  background: #e86520;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(210, 89, 21, 0.7);
}
.btn-secondary {
  display: inline-block;
  background: var(--color-btn-secondary);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.3s;
  text-decoration: none;
}
.btn-secondary:hover { background: #0a4a8a; color: white; transform: translateY(-2px); }
.btn-large { padding: 16px 36px; font-size: 1.1rem; }
.btn-full { width: 100%; display: block; }
.btn-glow { animation: glow-pulse 2s infinite; }
.mt-1 { margin-top: 10px; }
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(210,89,21,0.5); }
  50% { box-shadow: 0 4px 35px rgba(210,89,21,0.9); }
}

/* ======= DOWNLOAD BUTTONS ======= */
.download-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 20px 0;
}
.btn-download {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s;
  text-decoration: none;
  color: white;
  min-width: 180px;
}
.btn-android {
  background: linear-gradient(135deg, #3ddc84, #2ea863);
  box-shadow: 0 4px 20px rgba(61,220,132,0.4);
}
.btn-android:hover { transform: translateY(-2px); color: white; box-shadow: 0 6px 25px rgba(61,220,132,0.6); }
.btn-ios {
  background: linear-gradient(135deg, #555, #333);
  box-shadow: 0 4px 20px rgba(80,80,80,0.4);
}
.btn-ios:hover { transform: translateY(-2px); color: white; box-shadow: 0 6px 25px rgba(80,80,80,0.6); }
.btn-icon { font-size: 1.8rem; }
.btn-sub { display: block; font-size: 0.75rem; opacity: 0.85; }
.btn-main { display: block; font-size: 1rem; }
.btn-download-sm {
  display: block;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 8px;
  transition: all 0.2s;
  color: white;
  text-decoration: none;
}
.btn-android-sm { background: linear-gradient(135deg, #3ddc84, #2ea863); }
.btn-ios-sm { background: linear-gradient(135deg, #555, #333); border: 1px solid rgba(255,255,255,0.2); }
.btn-android-sm:hover, .btn-ios-sm:hover { color: white; transform: translateY(-1px); }

/* ======= HERO ======= */
.hero-section {
  background: linear-gradient(135deg, #002347 0%, #013B76 60%, #074383 100%);
  padding: 60px 0;
  overflow: hidden;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  margin-bottom: 16px;
  background: linear-gradient(90deg, #fff, #aad4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc { font-size: 1rem; color: #b0c8e8; margin-bottom: 20px; }
.hero-img-wrap {
  display: flex;
  justify-content: center;
}
.hero-img {
  width: 100%;
  max-width: 580px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border: 1px solid rgba(0,200,255,0.2);
}

/* ======= BONUS CARD ======= */
.bonus-card {
  background: linear-gradient(135deg, #013B76, #074383);
  border: 2px solid #F5C518;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  margin-bottom: 24px;
  box-shadow: 0 0 30px rgba(245, 197, 24, 0.3);
}
.bonus-crown { font-size: 2.5rem; color: var(--color-gold); }
.bonus-label { font-size: 0.85rem; font-weight: 700; letter-spacing: 2px; color: #ccc; margin: 4px 0; }
.bonus-fs { font-size: 1.1rem; color: #cdd8ea; }
.bonus-amount { font-size: 2.2rem; font-weight: 900; color: var(--color-gold); margin: 4px 0 16px; }

/* ======= APP STATS ======= */
.app-stats {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num { display: block; font-size: 1.3rem; font-weight: 800; color: var(--color-gold); }
.stat-label { font-size: 0.75rem; color: #a0b8d0; }
.stat-sep { color: rgba(255,255,255,0.2); font-size: 1.5rem; }

/* ======= SECTION COMMON ======= */
.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  text-align: center;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #fff, #aad4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub {
  text-align: center;
  color: #b0c8e8;
  max-width: 700px;
  margin: 0 auto 30px;
}

/* ======= GAMES BANNER ======= */
.games-banner-section {
  padding: 20px 0;
  background: var(--color-bg-dark);
}
.games-strip-img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  max-height: 200px;
  border: 1px solid rgba(0,200,255,0.15);
}

/* ======= BANNERS SLIDER ======= */
.banners-section { padding: 30px 0; background: var(--color-bg-dark); }
.banners-slider { position: relative; border-radius: 16px; overflow: hidden; }
.banner-slide { display: none; }
.banner-slide.active { display: block; }
.banner-slide img {
  width: 100%;
  height: auto;
  max-height: 310px;
  object-fit: cover;
  border-radius: 16px;
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
}
.slider-dot.active { background: var(--color-btn-primary); transform: scale(1.3); }

/* ======= FEATURES GRID ======= */
.why-section { padding: 60px 0; background: linear-gradient(180deg, #002347 0%, #013B76 100%); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: linear-gradient(135deg, #013B76, #074383);
  padding: 24px;
  transition: transform 0.3s;
}
.feature-card:hover { transform: translateY(-4px); }
.feature-icon { font-size: 2.5rem; margin-bottom: 12px; display: block; }
.feature-card h3 { font-size: 1.1rem; color: var(--color-gold); margin-bottom: 10px; margin-top: 0; }
.feature-card p { color: #b0c8e8; font-size: 0.9rem; margin: 0; }

/* ======= CONTENT SECTION ======= */
.content-section { padding: 50px 0; }
.content-main { min-width: 0; }
.content-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 30px;
  align-items: start;
}
.seo-article {
  background: linear-gradient(135deg, #013B76 0%, #074383 100%);
  padding: 32px;
}
.seo-article h2 { margin-top: 0; }
.content-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 20px 0;
  border: 1px solid rgba(0,200,255,0.2);
}

/* ======= SPECS TABLE ======= */
.specs-table {
  border: 1px solid rgba(0,200,255,0.2);
  border-radius: 10px;
  overflow: hidden;
  margin: 16px 0;
}
.specs-row {
  display: flex;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.specs-row:last-child { border-bottom: none; }
.specs-row:nth-child(even) { background: rgba(255,255,255,0.03); }
.specs-label { font-weight: 600; color: var(--color-neon); width: 180px; flex-shrink: 0; }
.specs-val { color: #cdd8ea; }

/* ======= STEPS LIST ======= */
.steps-list { margin: 20px 0; }
.step-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  padding: 16px;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  border-left: 3px solid var(--color-btn-primary);
}
.step-num {
  width: 36px;
  height: 36px;
  background: var(--color-btn-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.step-text { flex: 1; }
.step-text strong { color: white; font-size: 1rem; display: block; margin-bottom: 6px; }
.step-text p { color: #b0c8e8; font-size: 0.9rem; margin: 0; }

/* ======= ASIDE WIDGETS ======= */
.content-aside { position: sticky; top: 90px; }
.aside-widget {
  background: linear-gradient(135deg, #013B76, #074383);
  padding: 20px;
  margin-bottom: 20px;
}
.aside-widget h3 { margin-top: 0; color: var(--color-gold); font-size: 1rem; margin-bottom: 14px; }
.aside-nav { list-style: none; }
.aside-nav li { border-bottom: 1px solid rgba(255,255,255,0.05); }
.aside-nav li:last-child { border-bottom: none; }
.aside-nav a {
  display: block;
  padding: 8px 0;
  color: #b0c8e8;
  transition: color 0.2s;
  font-size: 0.9rem;
}
.aside-nav a:hover { color: white; }
.aside-img { width: 100%; border-radius: 8px; margin: 10px 0; }
.stats-list { list-style: none; }
.stats-list li { padding: 6px 0; color: #b0c8e8; font-size: 0.9rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.stats-list li:last-child { border-bottom: none; }

/* ======= BONUS WIDGET ======= */
.bonus-widget {
  background: linear-gradient(135deg, #002347, #013B76);
  border: 1px solid var(--color-gold);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}
.bonus-widget.small { }
.bw-crown { font-size: 2rem; color: var(--color-gold); }
.bw-text { font-size: 0.75rem; color: #aaa; text-transform: uppercase; letter-spacing: 1px; }
.bw-fs { font-size: 1rem; color: #cdd8ea; }
.bw-amount { font-size: 1.8rem; font-weight: 900; color: var(--color-gold); }
.rating-stars { font-size: 1.5rem; color: var(--color-gold); }
.rating-num { font-size: 1.4rem; font-weight: 800; color: white; }

/* ======= DEEP SECTION ======= */
.deep-section { padding: 50px 0; background: var(--color-bg-dark); }
.deep-grid { display: flex; flex-direction: column; gap: 40px; }
.deep-item { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; }
.deep-item.reverse { grid-template-columns: 1fr 1fr; direction: rtl; }
.deep-item.reverse > * { direction: ltr; }
.deep-img { width: 100%; border-radius: 12px; border: 1px solid rgba(0,200,255,0.2); }
.deep-content { padding: 24px; background: linear-gradient(135deg, #013B76, #074383); }
.deep-content h3 { margin-top: 0; color: var(--color-gold); }
.deep-content p { color: #b0c8e8; margin-bottom: 12px; }

/* ======= PROMO BANNER ======= */
.promo-banner-section { padding: 20px 0; }
.promo-banners { }
.promo-img {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(0,200,255,0.15);
  transition: transform 0.3s;
}
.promo-img:hover { transform: scale(1.01); }

/* ======= MIRROR SECTION ======= */
.mirror-section { padding: 50px 0; }

/* ======= FAQ ======= */
.faq-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #013B76 0%, #002347 100%);
}
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: linear-gradient(135deg, #013B76, #074383);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  padding: 18px 20px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}
.faq-question::after { content: '▼'; font-size: 0.75rem; color: var(--color-neon); transition: transform 0.3s; }
.faq-question.open::after { transform: rotate(180deg); }
.faq-question:hover { background: rgba(255,255,255,0.05); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer.open { max-height: 400px; }
.faq-answer p { padding: 0 20px 18px; color: #b0c8e8; margin: 0; }

/* ======= CTA ======= */
.cta-section { padding: 60px 0; background: var(--color-bg-dark); }
.cta-box {
  background: linear-gradient(135deg, #013B76 0%, #074383 50%, #013B76 100%);
  padding: 48px;
  text-align: center;
}
.cta-box h2 { font-size: 2rem; margin-bottom: 16px; }
.cta-box p { color: #b0c8e8; max-width: 600px; margin: 0 auto 30px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-inline { text-align: center; margin: 30px 0; }

/* ======= PAGE HERO ======= */
.page-hero {
  background: linear-gradient(135deg, #002347, #013B76, #074383);
  padding: 50px 0;
  text-align: center;
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero-desc { color: #b0c8e8; max-width: 700px; margin: 0 auto 24px; }

/* ======= BREADCRUMB ======= */
.breadcrumb {
  font-size: 0.85rem;
  color: #a0b8d0;
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--color-neon); }
.breadcrumb span { margin: 0 8px; }

/* ======= INFO BOX ======= */
.info-box {
  background: linear-gradient(135deg, #002347, #013B76);
  border: 1px solid var(--color-neon);
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
}
.info-box h4 { color: var(--color-neon); margin: 0 0 10px; font-size: 1rem; }
.info-box p { color: #b0c8e8; margin: 0; }

/* ======= CONTENT LIST ======= */
.content-list { padding-left: 20px; margin: 16px 0; color: #b0c8e8; }
.content-list li { margin-bottom: 8px; }

/* ======= PROBLEMS LIST ======= */
.problems-list { margin: 16px 0; }
.problem-item {
  background: rgba(255,255,255,0.03);
  border-left: 3px solid var(--color-gold);
  padding: 16px;
  border-radius: 0 10px 10px 0;
  margin-bottom: 12px;
}
.problem-item h4 { color: var(--color-gold); font-size: 0.95rem; margin: 0 0 8px; }
.problem-item p { color: #b0c8e8; margin: 0; font-size: 0.9rem; }

/* ======= CRYPTO GRID ======= */
.crypto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 20px 0;
}
.crypto-item {
  background: linear-gradient(135deg, #013B76, #074383);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s;
}
.crypto-item:hover { transform: translateY(-4px); }
.crypto-icon { font-size: 2.5rem; color: var(--color-gold); margin-bottom: 8px; }
.crypto-name { font-weight: 700; color: white; margin-bottom: 8px; }
.crypto-desc { font-size: 0.85rem; color: #b0c8e8; }

/* ======= BONUS BREAKDOWN ======= */
.bonus-breakdown { margin: 20px 0; display: flex; flex-direction: column; gap: 12px; }
.bb-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255,255,255,0.03);
  padding: 16px;
  border-radius: 10px;
  border: 1px solid rgba(245,197,24,0.2);
}
.bb-icon { font-size: 2rem; flex-shrink: 0; }
.bb-content strong { display: block; color: var(--color-gold); margin-bottom: 4px; }
.bb-content p { color: #b0c8e8; margin: 0; font-size: 0.9rem; }

/* ======= FOOTER ======= */
.site-footer {
  background: linear-gradient(135deg, #001830, #002347);
  border-top: 1px solid rgba(0,200,255,0.15);
  padding: 50px 0 20px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}
.footer-col h4 {
  color: var(--color-gold);
  margin-bottom: 14px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { color: #a0b8d0; font-size: 0.9rem; }
.footer-col ul a:hover { color: white; }
.footer-desc { color: #a0b8d0; font-size: 0.9rem; margin-top: 12px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 20px;
  text-align: center;
}
.footer-bottom p { color: #6a8099; font-size: 0.8rem; margin-bottom: 6px; }
.footer-disclaimer { color: #5a7090; font-size: 0.75rem; }

/* ======= RESPONSIVE ======= */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .content-aside { position: static; }
}

@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-img-wrap { display: none; }
  .main-nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,35,71,0.97); flex-direction: column; justify-content: center; align-items: center; z-index: 999; gap: 8px; }
  .main-nav.open { display: flex; }
  .nav-link { font-size: 1.2rem; padding: 12px 24px; }
  .burger-btn { display: flex; z-index: 1001; position: relative; }
  .features-grid { grid-template-columns: 1fr; }
  .deep-item, .deep-item.reverse { grid-template-columns: 1fr; direction: ltr; }
  .crypto-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 30px 20px; }
  .cta-box h2 { font-size: 1.4rem; }
  .download-buttons { flex-direction: column; }
  .btn-download { justify-content: center; }
  .header-actions .btn-header-login { display: none; }
  .app-stats { justify-content: center; }
  .seo-article { padding: 20px; }
}

@media (max-width: 480px) {
  .crypto-grid { grid-template-columns: 1fr; }
  .specs-label { width: 130px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .bonus-card { padding: 16px; }
  .bonus-amount { font-size: 1.8rem; }
}
