.elementor-35588 .elementor-element.elementor-element-e677b5d{width:var( --container-widget-width, 100.1% );max-width:100.1%;--container-widget-width:100.1%;--container-widget-flex-grow:0;}/* Start custom CSS for html, class: .elementor-element-e677b5d */.nbn-btn:hover {
  box-shadow:0 8px 20px rgba(241,83,0,0.35);
  transform:translateY(-3px);
}
.nbn-btn.secondary:hover {
  box-shadow:0 8px 20px rgba(12,38,141,0.25);
}
.nbn-center img {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.8s ease forwards;
}
.nbn-center img:nth-child(1){animation-delay:0.2s;}
.nbn-center img:nth-child(2){animation-delay:0.4s;}
.nbn-center img:nth-child(3){animation-delay:0.6s;}

@keyframes fadeUp {
  to { opacity:1; transform:translateY(0); }
}/* End custom CSS */
/* Start custom CSS *//* RESET */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #2e2a42;
  line-height: 1.6;
}

/* COLORS */
:root {
  --orange: #f15300;
  --blue: #0c268d;
  --dark: #2e2a42;
  --light: #f7f8fb;
}

/* BUTTONS */
.btn {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  margin: 8px auto;
  max-width: 280px;
  color: #fff;
  transition: all 0.2s ease;
}
.btn.primary { background: var(--orange); }
.btn.secondary { background: var(--blue); }
.btn.dark { background: var(--dark); }
.btn:hover { opacity: 0.9; transform: translateY(-1px); }

/* HERO */
/* ===== HERO SECTION ===== */


.hero {
  position: relative;
  height: auto;
  min-height: 45vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
  padding: 30px 0 45px 0;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 0 16px;
}

.hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  margin-bottom: 10px;
}

.hero .highlight {
  color: #f15300;
}

.hero-subtext {
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  line-height: 1.5;
  color: #f0f0f0;
  margin-bottom: 16px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FIBA LOGO CENTER ===== */
.fiba-center {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.fiba-center img {
  height: auto;
  max-width: 280px; /* cap size on desktop */
  width: 45%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.fiba-center img:hover {
  transform: scale(1.05);
}

/* ===== LOGO ROW ===== */
.hero-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
  margin-bottom: 18px;
}

.hero-logos img {
  height: clamp(35px, 4vw, 55px);
  width: auto;
  object-fit: contain;
  background: none !important;
  border: none !important;
  padding: 0;
}

/* ===== BUTTON ROW ===== */
/* ===== HERO BUTTONS ===== */
.hero-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.hero-buttons .btn {
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  color: #fff;
  transition: 0.3s;
  padding: 14px 26px;
  font-size: 1rem;
  text-align: center;
  line-height: 1.4;
  white-space: nowrap;
  min-width: 170px;
  max-width: 240px;
}

/* Make long text buttons auto-fit visually */
.hero-buttons .btn.dark {
  padding: 14px 22px;
  font-size: 0.95rem;
  max-width: 220px;
}

/* Colors */
.btn.orange { background: #f15300; }
.btn.orange:hover { background: #d94a00; transform: translateY(-2px); }
.btn.blue { background: #132674; }
.btn.blue:hover { background: #0f1f5a; transform: translateY(-2px); }
.btn.dark { background: #1e1b26; }
.btn.dark:hover { background: #15121b; transform: translateY(-2px); }

/* ===== RESPONSIVE SHRINK ===== */
@media (max-width: 900px) {
  .hero-buttons .btn {
    padding: 12px 22px;
    font-size: 0.95rem;
    min-width: 150px;
    max-width: 200px;
  }
}

@media (max-width: 650px) {
  .hero-buttons .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 6px;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .hero-buttons .btn {
    width: 85%;
    max-width: 280px;
    padding: 9px 18px;
    font-size: 0.85rem;
  }
}


/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (min-width: 768px) {
  .hero {
    min-height: 42vh;
    padding: 50px 0 60px 0;
  }

  .fiba-center img {
    max-width: 260px;
    width: 38%;
  }

  .hero-logos img {
    height: clamp(45px, 5vw, 60px);
  }

  .btn {
    font-size: 1rem;
    padding: 12px 26px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 25px 0 40px 0;
    min-height: 38vh;
  }

  .hero h1 {
    font-size: 1.4rem;
  }

  .hero-subtext {
    font-size: 0.85rem;
    margin-bottom: 10px;
  }

  .fiba-center img {
    max-width: 200px; /* shrink for mobile */
    width: 55%;
  }

  .hero-logos {
    gap: 10px;
  }

  .hero-logos img {
    height: 28px;
  }

  .hero-buttons {
    gap: 8px;
  }

  .btn {
    padding: 8px 14px;
    font-size: 0.8rem;
  }
}
/* ===== TRUST SECTION ===== */

.trust-section {
  text-align: center;
  background-color: #f7f8fb;
  padding: 60px 20px;
}

.trust-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0c2340;
  margin-bottom: 30px;
}

.trust-stats {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.trust-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 20px 35px;
  text-align: center;
  min-width: 120px;
}

.trust-box .highlight {
  color: #f15300;
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 35px;
  margin-top: 20px;
}

.trust-logos img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: brightness(0.95);
}

.trust-logos img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* FIBA logo pulse animation */
.trust-logos img[alt="FIBA"] {
  animation: pulse 6s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    filter: brightness(1);
  }
  50% {
    transform: scale(1.08);
    filter: brightness(1.2);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .trust-box {
    padding: 15px 25px;
  }

  .trust-logos {
    gap: 25px;
  }

  .trust-logos img {
    height: 36px;
  }

  .trust-stats {
    gap: 15px;
  }
}

/* ===== PARTNER LOGOS ===== */

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px;
  margin-top: 20px;
}

.trust-logos img {
  height: clamp(28px, 4vw, 45px);
  width: auto;
  object-fit: contain;
  filter: grayscale(0.2);
  opacity: 0.9;
  transition: transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
}

.trust-logos img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

/* ===== FIBA LOGO PULSE EFFECT ===== */

.trust-logos img.fiba-logo {
  animation: pulse 6s ease-in-out infinite;
}

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

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
  .trust-section {
    padding: 50px 15px;
  }

  .trust-stat {
    padding: 10px 18px;
  }

  .trust-logos {
    gap: 20px;
  }

  .trust-logos img {
    height: 32px;
  }
}

@media (max-width: 480px) {
  .trust-section {
    padding: 40px 10px;
  }

  .trust-stats {
    gap: 12px;
  }

  .trust-stat {
    padding: 8px 14px;
  }

  .trust-stat .number {
    font-size: 1.2rem;
  }

  .trust-logos {
    gap: 14px;
  }

  .trust-logos img {
    height: 26px;
  }
}


/* PRODUCTS */
.product {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 5%;
}
.product img {
  width: 70%;
  max-width: 400px;
  margin-bottom: 20px;
}
.product h2 { color: var(--blue); margin-bottom: 12px; }
.product ul { list-style: none; margin: 12px 0 20px; }
.product li { margin: 6px 0; }
.product.ingame { background: var(--light); }

/* FIBA ANNOUNCEMENT */
.fiba {
  padding: 60px 5%;
  text-align: center;
  background: #fff;
}
.fiba .ceo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
}
.fiba h2 { color: var(--blue); margin-bottom: 10px; }
.fiba p { margin-bottom: 16px; }

/* PARTNERS */
<style>
.partners {
  background: #0c0c0c;
  color: #fff;
  text-align: center;
  padding: 70px 5%;
}

.partners h2 {
  color: var(--orange, #f15300);
  font-size: 1.6rem;
  margin-bottom: 30px;
  text-transform: none;
}

/* Testimonials */
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial {
  background: #1a1a1a;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* White band for logo area */
.logo-band {
  background: #fff;
  padding: 16px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.partner-logo {
  max-height: 60px;
  width: auto;
  object-fit: contain;
}

/* Quote text */
.testimonial p {
  font-size: 0.92rem;
  color: #ddd;
  line-height: 1.55;
  margin: 20px;
}

.testimonial h4 {
  color: var(--orange, #f15300);
  font-size: 1rem;
  margin: 0 20px 4px;
}

.testimonial span {
  display: block;
  color: #999;
  font-size: 0.8rem;
  margin: 0 20px 20px;
}

/* CTA section */
.cta-final {
  background: linear-gradient(180deg, #fff 0%, #f4f4f4 100%);
  text-align: center;
  padding: 80px 20px;
}

.cta-final h2 {
  color: #0c0c0c;
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.cta-final p {
  color: #444;
  font-size: 1rem;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.btn {
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
}

.btn.orange {
  background: #f15300;
}

.btn.orange:hover {
  background: #d44900;
}

.btn.blue {
  background: #132674;
}

.btn.blue:hover {
  background: #0e1f5d;
}

/* Responsive layout */
@media (min-width: 768px) {
  .testimonials {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 24px;
  }

  .testimonial {
    width: 30%;
  }

  .cta-buttons {
    flex-direction: row;
  }
}
</style>/* End custom CSS */