 :root {
      --yellow: #f5c518;
      --yellow-dark: #e0b000;
      --dark: #111111;
      --dark2: #1a1a1a;
      --dark3: #222222;
      --gray: #888;
      --light-gray: #f5f5f5;
      --white: #ffffff;
      --text: #333;
      --border: #e0e0e0;
    }
    * { box-sizing: border-box; }
    body {
      font-family: 'Open Sans', sans-serif;
      color: var(--text);
      background: #fff;
      font-size: 14px;
    }
    h1,h2,h3,h4,h5,h6,.font-mont { font-family: 'Montserrat', sans-serif; }

    /* ========== TOP BAR ========== */
    .topbar {
      background: var(--dark);
      color: #aaa;
      font-size: 12px;
      padding: 6px 0;
    }
    .topbar a { color: #aaa; text-decoration: none; }
    .topbar a:hover { color: var(--yellow); }
    .topbar .divider { margin: 0 8px; opacity: 0.4; }

    /* Mobile info bar — shown only on mobile/tablet */
    .mobile-infobar {
      background: var(--dark);
      display: none;
      padding: 7px 0;
      border-bottom: 1px solid #2a2a2a;
    }
    .mobile-infobar .container {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 6px;
    }
    .mobile-infobar a {
      color: #aaa;
      font-size: 11px;
      text-decoration: none;
      font-family: 'Open Sans', sans-serif;
      letter-spacing: .2px;
      white-space: nowrap;
    }
    .mobile-infobar a:hover { color: var(--yellow); }
    .mobile-infobar .divider {
      color: #444;
      font-size: 11px;
    }
    @media (max-width: 991px) {
      .mobile-infobar { display: block; }
    }

    /* ========== NAVBAR ========== */
    .navbar-main {
      background: var(--dark2);
      border-bottom: 2px solid var(--yellow);
      position: sticky;
      top: 0;
      z-index: 1000;
      padding-top: 0;
      padding-bottom: 0;
    }

    /* Desktop navbar inner */
    .navbar-main .navbar-inner {
      display: flex;
      align-items: center;
      width: 100%;
      padding: 10px 0;
    }

    .navbar-brand-text {
      font-family: 'Montserrat', sans-serif;
      font-weight: 900;
      font-size: 22px;
      color: var(--yellow);
      letter-spacing: 1px;
      white-space: nowrap;
    }
    .navbar-brand-text span { color: #fff; }

    .navbar-main .nav-link {
      color: #ccc !important;
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      font-size: 12px;
      letter-spacing: .5px;
      text-transform: uppercase;
      padding: 8px 14px !important;
      transition: color .2s;
    }
    .navbar-main .nav-link:hover,
    .navbar-main .nav-link.active { color: var(--yellow) !important; }

    .btn-signin {
      background: transparent;
      border: 1.5px solid var(--yellow);
      color: var(--yellow);
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 12px;
      padding: 7px 18px;
      border-radius: 4px;
      transition: background .2s, color .2s;
      text-transform: uppercase;
      text-decoration: none;
      display: inline-block;
    }
    .btn-signin:hover { background: var(--yellow); color: #000; }

    .btn-register {
      background: var(--yellow);
      border: none;
      color: #000;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 12px;
      padding: 7px 18px;
      border-radius: 4px;
      transition: background .2s;
      text-transform: uppercase;
      text-decoration: none;
      display: inline-block;
    }
    .btn-register:hover { background: var(--yellow-dark); }

    .navbar-toggler {
      border-color: var(--yellow);
      padding: 4px 8px;
    }
    .navbar-toggler-icon { filter: invert(1); }

    /* ---- MOBILE NAVBAR LAYOUT ---- */
    /* On mobile: top row = logo + auth buttons + toggler */
    .navbar-mobile-toprow {
      display: none;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 10px 0;
      gap: 8px;
    }
    .navbar-mobile-toprow .mobile-auth-btns {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-left: auto;
      margin-right: 10px;
    }
    .navbar-mobile-toprow .btn-signin,
    .navbar-mobile-toprow .btn-register {
      font-size: 11px;
      padding: 6px 12px;
    }

    @media (max-width: 991px) {
      .navbar-desktop-layout { display: none !important; }
      .navbar-mobile-toprow { display: flex !important; }
    }
    @media (min-width: 992px) {
      .navbar-desktop-layout { display: flex !important; align-items: center; width: 100%; }
      .navbar-mobile-toprow { display: none !important; }
      .mobile-infobar { display: none !important; }
    }

    /* Collapsed nav menu on mobile */
    .navbar-collapse-menu {
      background: #161616;
      border-top: 1px solid #2a2a2a;
      padding: 10px 0;
    }
    .navbar-collapse-menu .nav-link {
      padding: 10px 16px !important;
      border-bottom: 1px solid #222;
      font-size: 13px !important;
    }
    .navbar-collapse-menu .nav-link:last-child { border-bottom: none; }

    /* ========== HERO ========== */
    .hero {
  background: linear-gradient(120deg, #111 60%, #1a1a1a 100%);
  color: #fff;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background: url('../images/main-background.webp') center center / cover no-repeat;
  opacity: .18;
  z-index: 0;
}
    .hero h1 {
      font-size: 42px;
      font-weight: 900;
      line-height: 1.15;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .hero h1 span { color: var(--yellow); }
    .hero .hero-bullets { list-style: none; padding: 0; margin: 22px 0; }
    .hero .hero-bullets li {
      display: flex; align-items: center; gap: 10px;
      margin-bottom: 0px; font-size: 15px; font-weight: 500;
    }
    .hero .hero-bullets li i { color: var(--yellow); font-size: 18px; }
    .btn-yellow {
      background: var(--yellow);
      color: #000;
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      font-size: 14px;
      padding: 13px 32px;
      border-radius: 5px;
      border: none;
      text-transform: uppercase;
      letter-spacing: .5px;
      transition: background .2s, transform .1s;
      display: inline-block;
      text-decoration: none;
    }
    .btn-yellow:hover { background: var(--yellow-dark); color: #000; transform: translateY(-1px); }
    .hero-right-img {
      position: relative; z-index: 1;
      text-align: right;
    }
    .hero-right-img img {
      max-width: 420px; width: 100%;
      border-radius: 8px;
      box-shadow: 0 30px 80px rgba(0,0,0,.5);
    }

    /* ========== STATS BAND ========== */
    .stats-band {
      background: #fff;
      border-bottom: 3px solid var(--yellow);
      padding: 28px 0;
    }
    .stat-item { text-align: center; padding: 10px 0; }
    .stat-num {
      font-family: 'Montserrat', sans-serif;
      font-weight: 900;
      font-size: 32px;
      color: var(--yellow);
      line-height: 1;
    }
    .stat-label {
      font-size: 12px;
      color: #555;
      margin-top: 4px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .5px;
    }

    /* ========== FEATURES ========== */
    .features-section { padding: 64px 0 48px; background: #fff; }
    .features-section .section-title {
      font-size: 28px; font-weight: 800; color: var(--dark);
      text-transform: uppercase; margin-bottom: 8px;
    }
    .features-section .section-sub {
      color: var(--gray); font-size: 15px; margin-bottom: 40px;
    }
    .feature-card {
      text-align: center; padding: 30px 20px;
      border-radius: 10px;
      transition: box-shadow .2s, transform .2s;
      height: 100%;
    }
    .feature-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.1); transform: translateY(-4px); }
    .feature-icon {
      width: 60px; height: 60px;
     /*background: var(--yellow);*/
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 18px;
      font-size: 26px; color: #000;
    }
    .feature-card h5 {
      font-size: 14px; font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .5px; margin-bottom: 10px;
    }
    .feature-card p { font-size: 13px; color: #666; line-height: 1.6; }

    /* ========== OFFICIAL PARTNERS ========== */
    .partners-section { background: var(--light-gray); padding: 60px 0; }
    .partners-section .section-title {
      font-size: 26px; font-weight: 800; margin-bottom: 18px;
      text-transform: uppercase;
    }
    .partners-section p { font-size: 14px; color: #555; line-height: 1.8; margin-bottom: 16px; }
    .btn-outline-yellow {
      border: 2px solid var(--yellow);
      color: #000;
      background: transparent;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 13px;
      padding: 10px 28px;
      border-radius: 4px;
      text-transform: uppercase;
      transition: background .2s;
      text-decoration: none;
      display: inline-block;
    }
    .btn-outline-yellow:hover { background: var(--yellow); color: #000; }

    /* ========== GEOGRAPHY MAP ========== */
    .geo-section { padding: 60px 0; background: #fff; }
    .geo-section .section-title { font-size: 26px; font-weight: 800; text-transform: uppercase; margin-bottom: 10px; }
    .geo-section .section-sub { font-size: 14px; color: #666; margin-bottom: 32px; }
    .world-map-container {
      background: #f8f8f8;
      border-radius: 12px;
      padding: 30px;
      text-align: center;
    }
    .world-map-container svg { max-width: 100%; }

    /* ========== FAQ ========== */
    .faq-section { background: var(--light-gray); padding: 60px 0; }
    .faq-section .section-title { font-size: 26px; font-weight: 800; text-transform: uppercase; margin-bottom: 40px; }
    .accordion-item {
      border: none; border-bottom: 1px solid var(--border);
      background: transparent;
    }
    .accordion-button {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700; font-size: 14px;
      background: transparent; color: var(--dark);
      box-shadow: none;
      padding: 18px 0;
    }
    .accordion-button:not(.collapsed) {
      color: var(--yellow-dark);
      background: transparent;
      box-shadow: none;
    }
    .accordion-button::after { filter: none; }
    .accordion-button:not(.collapsed)::after { filter: none; }
    .accordion-body {
      font-size: 13px; color: #555; line-height: 1.8;
      padding: 0 0 18px 0;
    }
    .accordion-body ul { padding-left: 20px; }
    .accordion-body li { margin-bottom: 6px; }

    /* ========== APP DOWNLOAD ========== */
    .app-section { background: var(--dark); padding: 60px 0; color: #fff; }
    .app-section .section-title { font-size: 26px; font-weight: 800; text-transform: uppercase; margin-bottom: 14px; color: #fff; }
    .app-section p { font-size: 14px; color: #aaa; line-height: 1.8; }
    .app-badges img { height: 44px; margin-right: 12px; margin-top: 20px; }
    .app-mockup { text-align: center; }
    .app-mockup img { max-width: 260px; width: 100%; border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }

    /* ========== NEWS ========== */
    .news-section { padding: 60px 0; background: #fff; }
    .news-section .section-title { font-size: 26px; font-weight: 800; text-transform: uppercase; margin-bottom: 32px; }
    .news-card {
      border-radius: 10px; overflow: hidden;
      box-shadow: 0 2px 16px rgba(0,0,0,.08);
      transition: box-shadow .2s, transform .2s;
      height: 100%;
    }
    .news-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.15); transform: translateY(-4px); }
    .news-card img { width: 100%; height: 180px; object-fit: cover; }
    .news-card-body { padding: 18px; }
    .news-card-body h6 { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
    .news-card-body p { font-size: 13px; color: #666; line-height: 1.6; margin: 0; }
    .news-tag {
      display: inline-block;
      background: var(--yellow);
      color: #000;
      font-size: 10px;
      font-weight: 700;
      padding: 2px 8px;
      border-radius: 3px;
      text-transform: uppercase;
      margin-bottom: 8px;
      letter-spacing: .5px;
    }
    .news-date { font-size: 11px; color: #999; margin-bottom: 8px; }

    /* ========== FOOTER ========== */
    footer {
      background: var(--dark);
      color: #aaa;
      padding: 40px 0 20px;
      font-size: 13px;
    }
    footer .footer-brand {
      font-family: 'Montserrat', sans-serif;
      font-weight: 900; font-size: 22px;
      color: var(--yellow); margin-bottom: 12px;
    }
    footer .footer-brand span { color: #fff; }
    footer a { color: #aaa; text-decoration: none; }
    footer a:hover { color: var(--yellow); }
    footer .footer-links { list-style: none; padding: 0; }
    footer .footer-links li { margin-bottom: 8px; }
    footer h6 { color: #fff; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 16px; }
    .footer-bottom {
      border-top: 1px solid #333;
      margin-top: 30px; padding-top: 18px;
      text-align: center; font-size: 12px; color: #555;
    }
    .payment-icons { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
    .payment-icons span {
      background: #333; border-radius: 4px;
      padding: 5px 10px; font-size: 11px; font-weight: 700; color: #ccc;
    }

    /* ========== COUNTERS ========== */
    .big-stats { background: var(--yellow); padding: 44px 0; }
    .big-stat-item { text-align: center; }
    .big-stat-num {
      font-family: 'Montserrat', sans-serif;
      font-weight: 900; font-size: 46px; color: #000;
      line-height: 1;
    }
    .big-stat-label { font-size: 13px; color: #333; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; margin-top: 6px; }

    /* ========== PARTNER STEPS ========== */
    .steps-section { padding: 60px 0; background: #fff; }
    .steps-section .section-title { font-size: 26px; font-weight: 800; text-transform: uppercase; margin-bottom: 40px; }
    .step-item { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 32px; }
    .step-num {
      min-width: 50px; height: 50px;
      background: var(--yellow); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Montserrat', sans-serif;
      font-weight: 900; font-size: 20px; color: #000;
      flex-shrink: 0;
    }
    .step-item h5 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
    .step-item p { font-size: 13px; color: #666; margin: 0; line-height: 1.7; }

    /* ========== PROMO BAR ========== */
    .promo-bar {
      background: var(--yellow);
      padding: 18px 0;
      text-align: center;
    }
    .promo-bar p { margin: 0; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px; color: #000; }

    /* RESPONSIVE */
    @media (max-width: 991px) {
      .hero h1 { font-size: 30px; }
      .hero-right-img { margin-top: 32px; text-align: center; }
      .big-stat-num { font-size: 34px; }
    }
    @media (max-width: 767px) {
      .hero { padding: 48px 0 36px; }
      .hero h1 { font-size: 26px; }
      .stats-band { padding: 20px 0; }
      .stat-num { font-size: 24px; }
      .features-section { padding: 40px 0; }
      .geo-section, .faq-section, .partners-section { padding: 40px 0; }
      .big-stat-num { font-size: 28px; }
    }

    /* Scroll animations */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity .5s ease, transform .5s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: none;
    }