 :root {
   --navy: #022A99;
   --navy-2: #03369f;
   --orange: #ff7f00;
   --blue: #2a6cff;
   --bg: #f3f5fa;
   --ink: #010d2e;
   --ink-soft: #5b6486;
   --ink-muted: #8b93b0;
   --line: #e6eaf4;
   --shadow: 0 8px 24px -10px rgba(2, 42, 153, 0.18);
   --maxw: 1200px;
 }

 * {
   box-sizing: border-box;
 }

 html,
 body {
   margin: 0;
   padding: 0;
 }

 body {
   font-family: 'Inter', system-ui, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.5;
   -webkit-font-smoothing: antialiased;
 }

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

 button {
   font-family: inherit;
   cursor: pointer;
   border: none;
 }

 .container {
   max-width: var(--maxw);
   margin: 0 auto;
   padding: 0 32px;
 }

 /* NAV */
 .nav-wrap {
   background: transparent;
   color: #fff;
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   z-index: 100;
   transition: background 0.35s, box-shadow 0.35s;
 }

 .nav-wrap.scrolled {
   background: var(--ink);
   box-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
 }

 
.nav {
    display: flex;
    align-items: center;
    padding: 0px 0;
    gap: 20px;
}

 .logo {
   display: inline-flex;
   align-items: baseline;
   font-weight: 800;
   font-size: 26px;
   letter-spacing: -0.02em;
   color: #fff;
 }

 .logo .accent {
   color: var(--orange);
 }

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 900;
    flex: 1;
    justify-content: center;
}

 .nav-links a {
   opacity: 0.85;
   padding: 4px 0;
   position: relative;
   color: #fff;
 }

 .nav-links a:hover {
   opacity: 1;
   color: #fff;
 }

 .nav-links a.active {
   opacity: 1;
 }

 .nav-links a.active::after {
   content: '';
   position: absolute;
   left: 0;
   right: 0;
   bottom: -8px;
   height: 2px;
   background: var(--orange);
 }

 .nav-actions {
   display: flex;
   align-items: center;
   gap: 10px;
 }

 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 6px;
   font-weight: 600;
   font-size: 13px;
      padding: 11px 28px;
   border-radius: 6px;
   transition: all 0.2s;
   white-space: nowrap;
 }

 .btn-outline {
   background: transparent;
   border: 1px solid rgba(255, 255, 255, 0.25);
   color: #fff;
 }

 .btn-outline:hover {
   background: rgba(255, 255, 255, 0.08);
 }

 .btn-primary {
   background: var(--orange);
   color: #fff;
 }

 .btn-primary:hover {
   background: #e67200;
 }

 /* LANG DROPDOWN */
 .lang-dropdown {
   position: relative;
 }

 .lang {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   background: transparent;
   border: none;
   padding: 4px 2px;
   cursor: pointer;
   line-height: 1;
 }

 .lang-flag-img {
   width: 32px;
   height: 32px;
   display: block;
   flex-shrink: 0;
   border-radius: 50%;
   background: #fff;
   padding: 2px;
   box-sizing: border-box;
 }

 .lang-chevron {
   display: inline-block;
   width: 7px;
   height: 7px;
   border-right: 1.5px solid rgba(255, 255, 255, 0.85);
   border-bottom: 1.5px solid rgba(255, 255, 255, 0.85);
   transform: rotate(45deg) translateY(-2px);
   flex-shrink: 0;
 }

.lang-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    padding: 16px 20px;
    min-width: 233px;
  }

 .lang-menu.open {
   display: block;
 }

 .lang-item {
   display: flex;
   align-items: center;
   gap: 12px;
 }

 .lang-item-flag-img {
    width: 36px;
    height: 36px;
    display: block;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
}
 .lang-item-country {
   font-size: 15px;
   font-weight: 700;
   color: var(--ink);
   margin-bottom: 6px;
 }

.lang-item-options {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
}
 .lang-opt {
   color: var(--ink-soft);
   text-decoration: none;
   transition: color 0.15s;
 }

 .lang-opt:hover {
   color: var(--navy);
 }

 .lang-opt.active {
   color: var(--navy);
   font-weight: 600;
 }

 .lang-sep {
   color: #d0d5e8;
 }

 .nav-menu-actions {
   display: none;
 }

 /* NAV BURGER */
.nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 41px;
    height: 36px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 8px;
}

 .nav-burger span {
   display: block;
   height: 2px;
   background: #fff;
   border-radius: 2px;
   transition: transform 0.25s, opacity 0.2s;
 }

 .nav-burger.open span:nth-child(1) {
   transform: translateY(7px) rotate(45deg);
 }

 .nav-burger.open span:nth-child(2) {
   opacity: 0;
 }

 .nav-burger.open span:nth-child(3) {
   transform: translateY(-7px) rotate(-45deg);
 }

 /* HERO */
 .hero {
   background:
     linear-gradient(to right, rgba(1, 13, 46, 0.92) 0%, rgba(1, 13, 46, 0.72) 45%, rgba(1, 13, 46, 0.15) 100%),
     url('../image/Global_Banner.jpg') center / cover no-repeat;
   color: #fff;
   padding: 160px 0 140px;
   min-height: 90vh;
   display: flex;
   align-items: center;
   position: relative;
   overflow: hidden;
 }

 .hero::before {
   content: '';
   position: absolute;
   top: 80px;
   right: -80px;
   width: 520px;
   height: 520px;
   background: radial-gradient(circle, rgba(255, 127, 0, 0.14), transparent 70%);
   pointer-events: none;
 }

 .hero::after {
   content: '';
   position: absolute;
   bottom: -120px;
   left: -60px;
   width: 400px;
   height: 400px;
   background: radial-gradient(circle, rgba(42, 108, 255, 0.15), transparent 70%);
   pointer-events: none;
 }

 .hero-inner {
   position: relative;
   z-index: 1;
   width: 100%;
 }

 .hero-inner > * {
   max-width: 580px;
 }


.hero-eyebrow {
    display: block;
    font-size: 35px;
   line-height: 1.12;
   font-weight: 800;

   text-transform: uppercase;
}

.hero-trust{
   display: block;
    font-size: 35px;
   font-weight: 800;
   color:orange;
   text-transform: uppercase;
}
.hero-orange{
   display: block;
    font-size: 35px;
   font-weight: 800;

   text-transform: uppercase;
}


   



 .hero p {
   font-size: 17px;
   color: rgba(255, 255, 255, 0.75);
   max-width: 380px;
   margin: 0 0 28px;
 }

 .join-btn {
   background: var(--orange);
   color: #fff;
   padding: 13px 28px;
   border-radius: 6px;
   font-weight: 700;
   font-size: 14px;
   display: inline-flex;
   align-items: center;
   gap: 8px;
   border: none;
   cursor: pointer;
 }

 .join-btn:hover {
   background: #e67200;
 }

 .region-badge {
   margin-top: 28px;
   background: #fff;
   color: var(--ink);
   padding: 8px 14px;
   border-radius: 8px;
   display: inline-flex;
   align-items: center;
   gap: 8px;
   font-size: 12px;
   font-weight: 600;
 }

 .flag-my {
   width: 24px;
   height: 16px;
   border-radius: 2px;
   overflow: hidden;
   position: relative;
   flex-shrink: 0;
   font-size: 18px;
   display: flex;
   align-items: center;
   justify-content: center;
 }

 .hero h2 {
   font-size: 35px;
   line-height: 1.12;
   font-weight: 800;
   letter-spacing: -0.01em;
   margin: 0 0 18px;
   text-transform: uppercase;
 }
 /* FEATURES */
 .features-section {
   background: var(--bg);
   padding: 64px 0 44px;
 }

.features-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 32px;
    letter-spacing: -0.01em;
}

 .features-title .navy {
   color: var(--navy);
 }

 .features-title .orange {
   color: var(--orange);
 }

 .features-title .blue {
   color: var(--blue);
 }


 .logo-img{
width: 10%;
 }

 .features {
   display: grid;
   grid-template-columns: repeat(5, 1fr);
   gap: 16px;
 }

 .feature {
   background: #fff;
   border-radius: 12px;
   padding: 28px 16px;
   text-align: center;
   box-shadow: var(--shadow);
   transition: transform 0.2s, box-shadow 0.2s;
 }

 .feature:hover {
   transform: translateY(-3px);
   box-shadow: 0 14px 30px -10px rgba(2, 42, 153, 0.22);
 }

 .feature-icon {
   width: 52px;
   height: 52px;
   margin: 0 auto 16px;
   border-radius: 50%;
   display: grid;
   place-items: center;
   color: #fff;
 }

 .feature-icon.navy {
   background: var(--navy);
 }

 .feature-icon.orange {
   background: var(--orange);
 }

 .feature-icon svg {
   width: 22px;
   height: 22px;
 }

 .feature h3 {
   font-size: 14px;
   font-weight: 700;
   margin: 0 0 10px;
   color: var(--ink);
   line-height: 1.3;
 }

 .feature p {
   font-size: 12px;
   color: var(--ink-soft);
   margin: 0;
   line-height: 1.5;
 }

 /* GAME SELECTION */
 .selection-section {
   background: var(--bg);
   padding: 44px 0 64px;
 }
.selection-title {
    color: var(--navy);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 18px;
    text-align: center;
}
 .cat-tabs {
   display: flex;
   gap: 10px;
   flex-wrap: wrap;
   margin-bottom: 24px;
 }

 .cat-tab {
   background: #fff;
   border: 1px solid var(--line);
   color: var(--ink-soft);
   padding: 12px 18px;
   border-radius: 10px;
   display: inline-flex;
   flex-direction: column;
   align-items: center;
   gap: 6px;
   font-size: 12px;
   font-weight: 600;
   min-width: 86px;
   transition: all 0.2s;
   cursor: pointer;
 }

 .cat-tab svg {
   width: 22px;
   height: 22px;
 }

 .cat-tab:hover {
   border-color: var(--orange);
   color: var(--orange);
 }

 .cat-tab.active {
   background: var(--orange);
   color: #fff;
   border-color: var(--orange);
 }

 .cards {
   display: grid;
   grid-template-columns: repeat(6, 1fr);
   gap: 14px;
 }

 .card {
   aspect-ratio: 3/4;
   border-radius: 10px;
   overflow: hidden;
   position: relative;
   cursor: pointer;
   transition: transform 0.25s;
 }

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

 .card-img {
   position: absolute;
   inset: 0;
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.35s;
 }

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

 .card-overlay {
   position: absolute;
   inset: 0;
   background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.1) 55%, transparent 100%);
   display: flex;
   flex-direction: column;
   justify-content: flex-end;
   align-items: center;
   padding: 14px 10px;
   z-index: 1;
   opacity: 0;
   transition: opacity 0.25s;
 }

 .card:hover .card-overlay {
   opacity: 1;
 }

 .card-name {
   color: #fff;
   font-size: 12px;
   font-weight: 700;
   margin-bottom: 8px;
   text-align: center;
   text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
 }

 .card-play-btn {
   background: var(--orange);
   color: #fff;
   border: none;
   border-radius: 5px;
   padding: 6px 14px;
   font-size: 11px;
   font-weight: 700;
   cursor: pointer;
   transition: background 0.2s, transform 0.15s;
 }

 .card-play-btn:hover {
   background: #e67200;
   transform: scale(1.05);
 }

 .card-art {
   position: absolute;
   inset: 0;
   display: grid;
   place-items: center;
   color: #fff;
   font-weight: 800;
   font-size: 15px;
   text-align: center;
   padding: 12px;
   text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
   letter-spacing: -0.01em;
   line-height: 1.3;
 }

 .card-badge {
   position: absolute;
   top: 10px;
   right: 10px;
   background: rgba(0, 0, 0, 0.45);
   backdrop-filter: blur(8px);
   color: #fff;
   font-size: 10px;
   font-weight: 700;
   padding: 4px 8px;
   border-radius: 20px;
   text-transform: uppercase;
   letter-spacing: 0.06em;
 }

 .a1 {
   background: linear-gradient(135deg, #ff8a3d 0%, #c2410c 100%);
 }

 .a2 {
   background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
 }

 .a3 {
   background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
 }

 .a4 {
   background: linear-gradient(135deg, #06b6d4 0%, #0e7490 100%);
 }

 .a5 {
   background: linear-gradient(135deg, #8b5cf6 0%, #5b21b6 100%);
 }

 .a6 {
   background: linear-gradient(135deg, #10b981 0%, #047857 100%);
 }

 .pagination {
   display: flex;
   justify-content: center;
   gap: 8px;
   margin-top: 28px;
 }

 .dot-page {
   width: 8px;
   height: 8px;
   border-radius: 50%;
   background: var(--line);
   cursor: pointer;
   transition: all 0.2s;
 }

 .dot-page.active {
   background: var(--orange);
   width: 22px;
   border-radius: 4px;
 }

 /* SPONSOR */
 .sponsor {
   background: linear-gradient(180deg, #011b6e 0%, var(--ink) 100%);
   color: #fff;
   text-align: center;
   padding: 64px 0;
   position: relative;
   overflow: hidden;
 }

 .sponsor::before {
   content: '';
   position: absolute;
   inset: 0;
   background: radial-gradient(circle at 25% 30%, rgba(255, 127, 0, 0.14), transparent 45%), radial-gradient(circle at 75% 70%, rgba(42, 108, 255, 0.15), transparent 45%);
   pointer-events: none;
 }

 .sponsor-inner {
   position: relative;
   z-index: 1;
 }

 .sponsor-eyebrow {
   color: var(--orange);
   font-size: 12px;
   font-weight: 700;
   letter-spacing: 0.1em;
   text-transform: uppercase;
   margin-bottom: 10px;
 }

 .sponsor h2 {
   font-size: 26px;
   font-weight: 700;
   margin: 0 0 10px;
   letter-spacing: -0.01em;
 }

 .sponsor-sub {
   color: rgba(255, 255, 255, 0.7);
   margin: 0 auto 32px;
   max-width: 520px;
   font-size: 14px;
 }

 .sponsor-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 16px;
   margin-bottom: 28px;
 }

 .sponsor-tile {
   aspect-ratio: 16/10;
   border-radius: 10px;
   overflow: hidden;
   position: relative;
   cursor: pointer;
   transition: transform 0.25s;
 }

 .sponsor-tile:hover {
   transform: scale(1.02);
 }

 .sponsor-tile::after {
   content: '';
   position: absolute;
   inset: 0;
   background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.55) 100%);
 }

 .sponsor-tile-tag {
   position: absolute;
   left: 16px;
   bottom: 14px;
   z-index: 1;
   color: #fff;
   font-weight: 600;
   font-size: 14px;
   letter-spacing: 0.04em;
 }

 .st1 {
   background: linear-gradient(135deg, #1e3a8a, #be185d);
 }

 .sponsor-tile img{
  width: 100%;
 }
 
 .st2 {
   background: linear-gradient(135deg, #065f46, #1e3a8a);
 }

 .st3 {
   background: linear-gradient(135deg, #7c2d12, #022A99);
 }

 .view-all-btn {
   background: var(--orange);
   color: #fff;
   padding: 12px 28px;
   border-radius: 6px;
   font-weight: 600;
   font-size: 13px;
   border: none;
   cursor: pointer;
 }

 .view-all-btn:hover {
   background: #e67200;
 }

 /* SOCIAL */
 .follow {
   background: var(--bg);
   padding: 44px 0;
 }

 .follow-flex {
   display: grid;
   grid-template-columns: 1fr auto;
   gap: 30px;
   align-items: center;
 }

 .follow-eyebrow {
   color: var(--orange);
   font-size: 26px;
   font-weight: 700;

   text-transform: uppercase;
   margin-bottom: 6px;
 }

 .follow h3 {
   font-size: 20px;
   margin: 0 0 6px;
   font-weight: 700;
   color: var(--ink);
 }

 .follow p {
   color: var(--ink-soft);
   margin: 0;
   font-size: 13px;
   max-width: 340px;
 }

 .social-tiles {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
 }

 .social-tile {
   background: #fff;
   border-radius: 14px;
   padding: 18px 16px 14px;
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 10px;
   min-width: 110px;
   border: 1px solid var(--line);
   transition: transform 0.2s, box-shadow 0.2s;
   cursor: pointer;
   text-align: center;
 }

 .social-tile:hover {
   transform: translateY(-2px);
   box-shadow: var(--shadow);
 }

 .social-icon {
   width: 52px;
   height: 52px;
   border-radius: 50%;
   display: grid;
   place-items: center;
   color: #fff;
   flex-shrink: 0;
 }

 .social-icon svg {
   width: 24px;
   height: 24px;
 }

 .si-fb {
   background: #1877f2;
 }

 .si-tg {
   background: #229ed9;
 }

 .si-ig {
   background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
 }

 .si-yt {
   background: #ff0000;
 }

 .social-tile-text {
   display: flex;
   flex-direction: column;
   align-items: center;
   line-height: 1.3;
 }

 .social-tile-text strong {
   font-size: 13px;
   color: var(--ink);
 }

 .social-tile-text span {
   font-size: 11px;
   color: var(--ink-muted);
 }

 /* FOOTER */
 footer {
   background: var(--ink);
   color: rgba(255, 255, 255, 0.7);
   padding: 52px 0 24px;
   font-size: 13px;
 }

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

 .footer-brand .logo {
   margin-bottom: 14px;
 }

 .footer-brand p {
   max-width: 260px;
   line-height: 1.6;
   margin: 0 0 18px;
   font-size: 12px;
 }

 .cert-row {
   display: flex;
   gap: 8px;
   align-items: center;
 }

 .cert-row .cert {
   height: 32px;
   padding: 0 12px;
   border-radius: 6px;
   background: #fff;
   display: inline-flex;
   align-items: center;
   font-size: 9px;
   font-weight: 700;
   letter-spacing: 0.06em;
   color: var(--ink);
   border: none;
 }

 .footer-col h4 {
   color: #fff;
   font-size: 12px;
   font-weight: 700;
   letter-spacing: 0.08em;
   text-transform: uppercase;
   margin: 0 0 14px;
 }

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

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

 .footer-col a {
   font-size: 13px;
   transition: color 0.2s;
 }

 .footer-col a:hover {
   color: var(--orange);
 }

 .partners-row {
   display: flex;
   gap: 8px;
   align-items: center;
   flex-wrap: wrap;
 }

 .partner {
 


   font-size: 11px;
   font-weight: 700;
   letter-spacing: 0.05em;
   color: rgba(255, 255, 255, 0.85);

   transition: background 0.2s;
   cursor: pointer;
 }

 .partner:hover {
   background: rgba(255, 127, 0, 0.2);
   border-color: rgba(255, 127, 0, 0.4);
   color: #fff;
 }

 .footer-bottom {
   border-top: 1px solid rgba(255, 255, 255, 0.1);
   padding-top: 20px;
   text-align: center;
   font-size: 12px;
   color: rgba(255, 255, 255, 0.5);
 }

 /* ANIMATIONS */
 @keyframes fadeUp {
   from {
     opacity: 0;
     transform: translateY(16px);
   }

   to {
     opacity: 1;
     transform: translateY(0);
   }
 }

 .hero-inner>* {
   animation: fadeUp 0.6s ease-out backwards;
 }

 .hero-inner>*:nth-child(1) {
   animation-delay: 0.05s;
 }

 .hero-inner>*:nth-child(2) {
   animation-delay: 0.15s;
 }

 .hero-inner>*:nth-child(3) {
   animation-delay: 0.25s;
 }

 .hero-inner>*:nth-child(4) {
   animation-delay: 0.35s;
 }

 .hero-inner>*:nth-child(5) {
   animation-delay: 0.42s;
 }
 .partner img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

 /* RESPONSIVE */
 @media (max-width: 1024px) {
   .features {
     gap: 10px;
   }

   .feature {
     padding: 20px 10px;
   }

   .cards {
     gap: 10px;
   }

   .nav-links {
     gap: 20px;
   }
 }

 /* TABLET */
 @media (max-width: 880px) {
       .nav {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        padding: 12px 20px;
        gap: 0;
    }

   .nav-burger {
     justify-self: start;
   }

   .logo-img {
     justify-self: center;
   }

   .nav-actions {
     justify-self: end;
     position: static;
   }



   .nav-links {
     display: none;
     position: fixed;
     top: 56px;
     left: 0;
     right: 0;
     flex-direction: column;
     gap: 0;
     background: var(--ink);
     padding: 8px 0;
     border-top: 1px solid rgba(255, 255, 255, 0.08);
     box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
     z-index: 99;
   
   }

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

   .nav-links li {
     border-bottom: 1px solid rgba(255, 255, 255, 0.06);
   }

   .nav-links a {
     display: block;
     padding: 13px 28px;
   }

   .nav-links a.active::after {
     display: none;
   }

   .nav-burger {
     display: flex;
   }

   .nav-desktop-btn {
     display: none;
   }

   .nav-menu-actions {
     display: flex;
     gap: 10px;
     padding: 16px 24px;
     border-bottom: none;
   }

   .nav-menu-actions .btn {
     flex: 1;
     font-size: 13px;
     padding: 11px 16px;
   }

.logo-img {
    height: 77px;
    width: auto;
}
   .hero {
     background:
       linear-gradient(rgba(1, 13, 46, 0.78), rgba(1, 13, 46, 0.78)),
       url('../image/Global_Banner.jpg') 65% center / cover no-repeat;
     text-align: center;
     padding: 130px 0 80px;
   }

   .hero-inner > * {
     max-width: 100%;
     margin-left: auto;
     margin-right: auto;
   }

   .hero h1 {
     font-size: 32px;
   }

      .hero p {
        max-width: 359px;
        margin: 0 auto 28px;
    }

   .features {
     grid-template-columns: repeat(3, 1fr);
   }

   .cards {
     grid-template-columns: repeat(4, 1fr);
     gap: 12px;
   }
   
   .cat-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    justify-content: center;
}
   .cat-tab {
 
     min-width: 80px;
     padding: 10px 10px;
     font-size: 11px;
   }

   .cat-tab svg {
     width: 18px;
     height: 18px;
   }

   .sponsor-grid {
     grid-template-columns: repeat(2, 1fr);
   }

   .selection-title {
    color: var(--navy);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 18px;
    text-align: center;
}
   

   .follow-flex {
     grid-template-columns: 1fr;
   }

   .footer-grid {
     grid-template-columns: 1fr 1fr;
   }


 }

 /* MOBILE */
 @media (max-width: 540px) {
   .container {
     padding: 0 16px;
   }

    .nav {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        padding: 10px 11px;
        gap: 0;
    }

   .nav-burger {
     justify-self: start;
     width: 34px;
     height: 34px;
   }

   .logo-img {
     justify-self: center;
   }

   .nav-actions {
     justify-self: end;
     position: static;
     gap: 6px;
   }

   .nav-links {
     top: 52px;
   }

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

   .btn {
     font-size: 11px;
     padding: 7px 12px;
   }

    .lang {
        font-size: 19px;
        padding: 5px 8px;
    }

   .hero {
     background:
       linear-gradient(rgba(1, 13, 46, 0.82), rgba(1, 13, 46, 0.82)),
       url('../image/Global_Banner.jpg') 65% center / cover no-repeat;
     padding: 100px 0 60px;
     min-height: 70vh;
     text-align: center;
   }

   .hero-eyebrow {
    display: block;
    font-size: 30px;
    line-height: 1.12;
    font-weight: 800;
    text-transform: uppercase;
}

   .hero-trust {
    display: block;
    font-size: 29px;
    font-weight: 800;
    color: orange;
    text-transform: uppercase;
}

.hero-orange {
    display: block;
    font-size: 29px;
    font-weight: 800;
    text-transform: uppercase;
}

    .hero p {
        font-size: 13px;
        max-width: 85%;
        margin: 0 auto 27px;
    }

   .hero-inner > * {
     max-width: 100%;
     margin-left: auto;
     margin-right: auto;
   }

   .features-section {
     padding: 44px 0 28px;
   }

   .features {
     grid-template-columns: repeat(2, 1fr);
   }

   .selection-title {

    text-align: center;
}


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

   .card {
     aspect-ratio: 4/5;
   }

   .card-overlay {
     padding: 10px 8px;
   }

   .card-name {
     font-size: 10px;
     margin-bottom: 5px;
   }

   .card-play-btn {
     padding: 4px 10px;
     font-size: 10px;
   }

   .cat-tabs {
     overflow-x: auto;
     flex-wrap: nowrap;
     padding-bottom: 6px;
     gap: 6px;
      justify-content: left;
   }

   .cat-tab {
     flex-shrink: 0;
     min-width: 62px;
     padding: 8px 8px;
     font-size: 10px;
   }

   .cat-tab svg {
     width: 16px;
     height: 16px;
   }



   .sponsor-grid {
     grid-template-columns: 1fr;
   }

   .social-tiles {
     display: grid;
     grid-template-columns: 1fr 1fr;
     width: 100%;
   }

   .social-tile {
     min-width: 0;
   }

   .footer-grid {
     grid-template-columns: 1fr;
   }

   .follow h3 {
     font-size: 17px;
   }

   .follow-flex > div:first-child {
     text-align: center;
   }

   .follow p {
     max-width: 100%;
     margin: 0 auto;
   }
 }

 /* SMALL MOBILE */
 @media (max-width: 380px) {
   .logo-img {
     height: 26px;
   }

   .hero h1 {
     font-size: 22px;
   }

   .nav-actions .btn-primary {
     font-size: 11px;
     padding: 7px 10px;
   }

   .social-tiles {
     grid-template-columns: 1fr;
   }
 }