/* 1. Fade In */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  /* 2. Zoom In */
  @keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
  }

  /* 3. Bounce */
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-30px); }
    60% { transform: translateY(-15px); }
  }

  /* 4. Slide In from Left */
  @keyframes slideInLeft {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
  }

  /* 5. Slide In from Right */
  @keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
  }

  /* 6. Rotate */
  @keyframes rotateIn {
    from { transform: rotate(-180deg); opacity: 0; }
    to { transform: rotate(0); opacity: 1; }
  }

  /* 7. Flip */
  @keyframes flip {
    from { transform: rotateY(90deg); opacity: 0; }
    to { transform: rotateY(0); opacity: 1; }
  }

  /* 8. Pulse */
  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
  }

  /* 9. Floating */
  @keyframes floating {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
  }

  /* 10. Wiggle */
  @keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    75% { transform: rotate(-5deg); }
  }
  /* Light Move Left-Right */
@keyframes moveLeftRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(20px); }
  }

  /* Light Move Up-Down */
  @keyframes moveUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(20px); }
  }

  /* Diagonal Float */
  @keyframes floatDiagonal {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10px, -10px); }
  }

  /* Gentle Scale (Breathing Effect) */
  @keyframes gentleScale {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
  }

  /* Rotation Left-Right */
  @keyframes gentleRotate {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(20deg); }
  }
  img.mobile-hero-center-image {
    display: none;
}

  img.left-right {
    animation: moveLeftRight 2s ease-in-out infinite;
  }

  img.up-down {
    animation: moveUpDown 4s ease-in-out infinite;
  }

  img.diagonal {
    animation: floatDiagonal 4s ease-in-out infinite;
  }

  img.breathe {
    animation: gentleScale 3s ease-in-out infinite;
  }

  img.rotate-sway {
    animation: gentleRotate 2s ease-in-out infinite;
  }
  img.fade {
    animation: fadeIn 2s ease-in-out;
  }

  img.zoom {
    animation: zoomIn 1.5s ease-out;
  }

  img.bounce {
    animation: bounce 2s infinite;
  }

  img.slide-left {
    animation: slideInLeft 1s ease-out;
  }

  img.slide-right {
    animation: slideInRight 1s ease-out;
  }

  img.rotate {
    animation: rotateIn 1.5s ease-in-out;
  }

  img.flip {
    animation: flip 1s ease-in-out;
  }

  img.pulse {
    animation: pulse 2s infinite;
  }

  img.floating {
    animation: floating 3s ease-in-out infinite;
  }

  img.wiggle {
    animation: wiggle 1s ease-in-out infinite;
  }


:root {
      --accent: #00c6ff;
      --dark: #111;
      --card-bg: #fff;
      --radius: 12px;
    }
    *{box-sizing:border-box;}
    /* Remove global margin/padding reset to avoid affecting navbar spacing */
    /* *{margin:0;padding:0} */

	img {
    max-width: 100%;
}
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body{
	  font-family: "Inter", sans-serif;
}



 /* Navbar - Remove custom styles to match tournament page */
 /* .main_header .navbar {
    font-family: "Roboto", sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 2.5rem;
    background: #1F2522;
    color: #fff;
  } */

  /* Remove custom navbar styles to match tournament page */
  /* Search */
  /* header .search-box {
    position: relative;
  }

  header .search-box input {
    padding: 8px 35px 8px 15px;
    border: none;
    border-radius: 25px;
    background: #3E4541;
    color: #fff;
    outline: none;
    width: 170px;
    height: 52px;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
  }

  header .search-box i {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    height: 24px;
  }

  /* Menu */
  header .menu {
    display: flex;
    gap: 40px;
  }
  /* Remove navbar-brand override to match tournament page */
  /* a.navbar-brand {
    max-width: 170px;
    margin-bottom: -20px;
    flex: 1;
} */
  header .menu a {
    text-decoration: none;
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
  }

  header .menu a.active {
    font-weight: bold;
  }

  /* Buttons */
  header .buttons {
    display: flex;
    gap: 16px;
  }

    header .btn {
        align-items: center;
        font-size: 17px;
        color: #D5F40B;
        max-width: 181px;
        flex: 0 0 181px;
        display: flex;
        height: 50px;
        text-align: center;
        justify-content: center;
        line-height: 100%;
        text-transform: uppercase;
        padding: 0 0;
        border-radius: 25px;
        border: none;
        font-weight: 500;
        cursor: pointer;
        text-decoration: none;
    }
    .custom-registration-btn {
        background: linear-gradient(180deg, #2F3733 0%, #0A0C0B 100%);
    }

    .custom-login-btn {
        background: #0A92D1;
    } */

  /* Remove custom hamburger and responsive styles to match tournament page */
  /* Hamburger */
  /* header .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
  }

  header .hamburger div {
    width: 25px;
    height: 3px;
    background: #fff;
  }

  /* Responsive */
  @media (max-width: 700px) {
    header .menu {
      display: none;
      flex-direction: column;
      background: #2e3431;
      position: absolute;
      top: 60px;
      left: 0;
      right: 0;
      padding: 15px;
    }

    header .menu.active {
      display: flex;
    }

    header .hamburger {
display: flex;
        width: 32px;
        height: 32px;
        background: #1F2522;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 20px;
        left: 20px;
    }
header .hamburger div {
    width: 15px;
    height: 1px;
    background: #fff;
}


    header .navbar {
      justify-content: space-between;
    }
  } 


.hero-layerbg {
    position: absolute;
    top: 0;
}

.hero-left-lining-effect {
    left: 0;
}

.hero-right-lining-effect {
    right: 0;
}

    /* HERO */
	.hero {
    position: relative;
    background-image: url(../../images/bg.jpg);
    background-size: cover;
    background-position: top;
    background-attachment: fixed;
    overflow: hidden;
	}
    .hero-layer {
      position:absolute;
  transition: transform 0.5s ease-out;
  will-change: transform;
    }

    .hero-logo {position: absolute;z-index: 5;max-width: 220px;top: 75px;left: 0;right: 0;margin: 0 auto;}
.bg-center_image {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    height: 560px;
}

.bg-center_image .hero-center-image {
max-width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}


img.top-left {
    position: absolute;
    top: 75px;
    left: 194px;
    max-width: 210px;
}

.center-right {
    position: absolute;
    top: 34%;
    right: -55px;
    max-width: 280px;
}

.left-big {
    max-width: 453px;
    top: 124px;
    left: 0;
}

.pngtree-golf-ball-left-top {
    max-width: 50px;
    margin: 0 auto;
    position: absolute;
    top: 80px;
    left: -280px;
    right: 0;
	    -webkit-animation:spin 4s linear infinite;
    -moz-animation:spin 4s linear infinite;
    animation:spin 4s linear infinite;
}

.football {
    max-width: 125px;
    top: 160px;
    left: 335px;
}

.hero-center-image-layer {
    max-width: 285px;
    margin: 0 auto;
    bottom: 0;
    left: 0;
    right: 100px;
}

img.right2 {
    max-width: 170px;
    right: 300px;
    bottom: 0;
}

.right1 {
	max-width: 265px;
	right: 50px;
	bottom: 0;
	position: absolute;
}
img.right3 {
    max-width: 322px;
    right: -183px;
    bottom: -320px;
}

img.left1 {
    max-width: 480px;
    left: -252px;
    bottom: -106px;
    z-index: 1;
}

img.left2 {
    max-width: 336px;
    left: -224px;
    bottom: -333px;
    z-index: 2;
}

img.basketball {
    max-width: 480px;
    left: -100px;
    top: 100px;    position: absolute;
    z-index: 1;
}
a.blue-btn.btn {
    margin-top: 0px;
    font-family: Gilroy;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    border-radius: 50px;
    padding-top: 18px;
    padding-bottom: 18px;
    color: #D5F40B;
    box-shadow: 10px 16px 16px 0px #00000052;
    text-decoration: none;
    background: #0A92D1;
    width: 100%;
    display: block;
    text-align: center;
	    transform: scale(1);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

@-moz-keyframes spin {
    100% { -moz-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
    100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform:rotate(360deg);
    }
}


    /* Cards in hero */
.cards-section {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    display: flex;
    flex-wrap: wrap;
    gap:0 30px;
    justify-content: center;
    margin-top: 0;
}
.cards-bg-bottom {
    position: relative;
    top: -35px;
    max-width: 875px;
    z-index: -1;
}
    .card {
	  background: url(images/card-device-bg.png);
	  display:flex;
	  flex-direction:column;
	  align-items:center;
	  max-width: calc(20% - 50px);
	  flex: 0 0 calc(20% - 50px);
	  background-size: cover;
	  padding: 34px 7px 40px 7px;
	  }
    .card .screen {
      margin-bottom:12px;
    }
    .card a {
      font-family: inter;
      background:var(--accent);
      color:#fff;
      border:none;
      padding:8px 14px;
      border-radius:6px;
      cursor:pointer;
      font-weight:bold;
      text-decoration: none;
      display: block;
      width: 90%;
      text-align: center;
    }

    /* Phone card styles override for cards-section */
    .cards-section .phone-card {
        max-width: calc(20% - 30px);
        flex: 0 0 calc(20% - 30px);
    }

    /* Flags marquee */
    .flags-wrap {
    overflow: hidden;
    padding: 50px 0;
    display: flex;
    background: radial-gradient(50% 50% at 50% 50%, #1F2522 45.19%, #768b8000 100%);
    }
    .flags {
      display:flex;
      gap:24px;
      animation: scroll 20s linear infinite;
    }
    .flags img {
		width: 200px;
		height: 200px;
		padding: 36px;
		border-radius: 24px;
		flex: 0 0 auto;
		background: #2F3733;
    }
    @keyframes scroll {
      0%{transform:translateX(0)}
      100%{transform:translateX(-50%)}
    }

     /* CTA */
    .cta {
      font-family: Montserrat;
      background: url(images/cta-bg.jpg);
      color:#fff;
      padding: 50px 20px;
      text-align:center;
    }
    .cta h2 {
      margin: 0 auto 25px;
      max-width: 800px;
      font-family: Montserrat;
      font-weight: 900;
      font-size: 64px;
      line-height: 74px;
      letter-spacing: 0;
      text-align: center;
      text-transform: uppercase;
    }
	section.cta p {
		font-family: Montserrat;
		font-weight: 300;
		font-size: 24px;
		line-height: 32px;
		}
    .cta form {
      max-width: 717px;
      margin: 35px auto 0;
      display:flex;
      justify-content:center;
      gap:10px;
      height: 63px;
      flex-wrap:wrap;
      position: relative;
    }
    .cta input {
      font-size: 24px;
      line-height: 32px;
      padding: 14px 32px;
      width: 100%;
      border-radius: 50px;
      border: 1px solid #4E4B4B;
      background: #1F2522;
      height: 63px;
    }
    .cta button {
      position: absolute;
      top: 8px;
      right: 8px;
      color: #D5F40B;
      cursor:pointer;
      font-weight: bold;
      font-size: 17px;
      line-height: 32px;
      padding: 5px 40px;
      border-radius: 50px;
      border: 1px solid #0A92D1;
      background: #0A92D1;
      height: 46px;
    }
section.footer {
    background: #000;
    padding: 50px 0 0;
}
.footer-layer {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 10rem;
}
section.footer a {
    color: white;
    text-decoration: none;
}

section.footer .container {
    display: flex;
    padding: 0 5rem;
    justify-content: space-between;
}

.footer-col {
    display: flex;
    align-items: center;
}

.footer-col a.btn {
    align-items: center;
    display: flex;
    height: 50px;
    color: #D5F40B;
    cursor: pointer;
    font-weight: bold;
    font-size: 17px;
    line-height: 32px;
    padding: 14px 40px;
    border-radius: 50px;
    border: 1px solid #0A92D1;
    background: #0A92D1;
}

/* Tablet View */




@media only screen
  and (min-device-width: 1024px)
  and (max-device-width: 1366px)
  and (orientation: landscape)
  and (-webkit-min-device-pixel-ratio: 2) {
  /* iPad Pro 12.9" landscape */
}

@media (min-width:701px) and (max-width:1024px){

  header .btn {
    max-width: 120px;
    flex: 0 0 120px;
    font-size: 14px;
    height: 35px;
}
  .cards {gap:12px;}

  header .menu.active {
        background: none;
        z-index: 9;
        gap: 20px;
        padding: 25px;
        top: 0;
        text-align: center;
        justify-content: center;
        align-items: center;
        width: 100%;
        position: relative;
  }

  /* Remove navbar padding override to match tournament page */
  /* .main_header .navbar {
  padding: 10px 1rem;
  } */

  .cards-section.grid {
  flex-wrap: nowrap;
  overflow: scroll;
  justify-content: flex-start;
  gap: 0 25px;
  padding: 0 25px;
  }

  .card {
  max-width: calc(20% - 20px);
  flex: 0 0 calc(20% - 20px);
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top;
  }
  .card a {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 5px;
  width: 95%;
  font-family: "Roboto", sans-serif;
  }

  /* Phone card responsive for tablet */
  .cards-section.grid .phone-card {
    max-width: calc(20% - 20px);
    flex: 0 0 calc(20% - 20px);
  }

  .flags img {
        width: 140px;
        height: 140px;
        padding: 25px;
  }

  .cta h2 {
  font-size: 32px;
  line-height: 35px;
  }

  section.cta p {
  font-size: 20px;
  line-height: 28px;
  }

  section.footer .container {
  align-items: center;
  padding: 0 20px 20px;
  }

  .footer-layer {
  padding: 0 20px;
  }

  section.footer {
  padding: 25px 0 0 0;
  }

  .footer-col {
  justify-content: center;
  }

  .footer-col img {
  max-width: 101px;
  }

  .footer-col p a {display: block;line-height: 1;}

  .hero-layer {max-width: 225px;}

  .hero-logo {
  max-width: 250px;
  top: 50px;
  text-align: center;
  }

  a.blue-btn.btn {
  font-size: 17px;
  padding: 11px 35px;
  width: unset;
  display: inline-block;
  }

  .hero-logo img {max-width: 155px;margin: 0 auto 20px;display: block;}
  img.top-left {
  max-width: 150px;
  left: 55px;
  top: 55px;
  }

  img.center-right {
  max-width: 150px;
  right: -20px;
  top: 125px;
  }

  .pngtree-golf-ball-left-top {
  max-width: 35px;
  top: 62px;
  left: -180px;
  }

  img.hero-layer.football {
  display: none;
  }

  img.basketball {
  max-width: 70px;
  top: 120px;
  left: 20px;
  }

  section#hero {
  padding-top: 35px;
  }

  img.left-big.hero-layer {
  top: 150px;
  left: 20px;
  }
  img.right1, img.right2, img.left1 {
  display: none;
  }

  .bg-center_image {
  height: 335px;
  }

  img.hero-center-image-layer.hero-layer {
  max-width: 220px;
  right: 0;
  bottom: -25px;
  }

  img.left2, img.right3 {
  max-width: 225px;
  left: -50px;
  bottom: -110px;
  }

  img.right3 {
  left: auto;
  right: -20px;
  bottom: -120px;
  }
  /* Remove navbar-brand display override to match tournament page */
  /* a.navbar-brand {
    display: none;
} */

}


@media (min-width: 920px) and (max-width: 1024px) {
    .bg-center_image {
        height: 400px;
    }
    .hero-layer {
        max-width: 350px;
    }
    img.hero-center-image-layer.hero-layer {
        max-width: 288px;
        right: 0;
        bottom: 0;
    }
        img.left2, img.right3 {
        max-width: 270px;
    }
        img.top-left {
        max-width: 228px;
        left: 55px;
        top: 77px;
    }
        img.basketball {
        max-width: 100px;
        top: 140px;
        left: 20px;
    }
    .card a{
        padding: 10px 5px;
        width: 90%;
    }
}


    @media(max-width:700px){
      .m-hide{
        display: none;
      }
      .cards {gap:12px;}
      .cta form {
        height: auto;
        display: block;
    }
      .cta button{margin-top:10px}
      /* Remove all custom navbar overrides to match tournament page */
      /* header .search-box, a.navbar-brand {
        display: none;
    }

    header .menu.active {
        background: none;
        z-index: 9;
        gap: 20px;
        padding: 25px;
        top: 0;
        text-align: center;
        justify-content: center;
        align-items: center;
        width: 100%;
        position: relative;
    }
   header .search-box,  header .buttons {
      display: none;
    }
    header .menu a {
    font-size: 25px;
    line-height: 42px;
}
    nav.navbar:has(.menu.active)  .search-box, nav.navbar:has(.menu.active)  .buttons  {
    display: block;
    width: 100%;
    padding: 0 20px;
}
header .btn {
    margin-bottom: 20px;
    max-width: 100%;
    width: 100%;
}
header .search-box input {
    width: 100%;
}
header .search-box i{
  right:40px
}
    .main_header .navbar {
        padding: 0;
        position: absolute;
        z-index: 1;
    }
    nav.navbar:has(.menu.active) {
    background: #1F25228F;
    backdrop-filter: blur(14px);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
} */
    .cards-section.grid {
        flex-wrap: nowrap;
        overflow: scroll;
        justify-content:center;
        gap: 0 20px;
        padding: 0 20px;
    }

    .card {
        max-width: calc(50% - 20px);
        flex: 0 0 calc(50% - 20px);
        width: 100%;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: top;
    }
    .card a {
      max-width: 140px;
      font-size: 14px;
      font-weight: 500;
      padding: 8px 8px;
      font-family: "Roboto", sans-serif;
    }

    /* Phone card responsive for mobile */
    .cards-section.grid .phone-card {
        max-width: calc(50% - 20px);
        flex: 0 0 calc(50% - 20px);
    }

    .flags img {
        width: 100px;
        height: 100px;
        padding: 20px;
    }

    .cta h2 {
        font-size: 25px;
        line-height: 35px;
    }

    section.cta p {
        font-size: 20px;
        line-height: 28px;
    }

    .cta button {
        position: relative;
        left: 0;
        right: 0;
    }

    section.footer .container {
        flex-direction: column;
        padding: 0 20px 20px;
        justify-content: center;
    }

    .footer-layer {
        padding: 0 20px;
    }

    section.footer {
        padding: 25px 0 0 0;
    }

    .footer-col {
        justify-content: center;
    }

    .footer-col img {
        max-width: 101px;
    }

    .footer-col p a {display: block;line-height: 1;}


    .footer-col a.btn {
        margin-top: 20px;
        font-size: 14px;
        line-height: 22px;
        padding: 10px 32px;
        height: auto;
    }

    .hero-layer {max-width: 125px;}

    .hero-logo {
        max-width: 162px;
        top: 170px;
        text-align: center;
    }

    a.blue-btn.btn {
        font-size: 17px;
        padding: 15px 14px;
    }

    .hero-logo img {
        max-width: 100%;
        margin: 0 auto 10px;
        display: block;
    }
    img.top-left {
        max-width: 100px;
        left: 10px;
        top: 40px;
    }

    img.center-right {
        max-width: 120px;
        right: -20px;
        top: 100px;
    }

    .pngtree-golf-ball-left-top {
        max-width: 25px;
        top: 20px;
        left: -158px;
    }

    img.hero-layer.football {
        display: none;
    }

    img.basketball {
        max-width: 50px;
        top: 80px;
        left: 0;
    }

    section#hero {
        padding-top: 35px;
        background-image: url(images/mobile-header-bg.png);
        background-color: #000;

    }

    img.left-big.hero-layer {
        top: 81px;
        left: 20px;
    }
img.right1, img.right2, img.left1 {
    display: none;
}

.bg-center_image {
    height: 525px;
}

img.hero-center-image-layer.hero-layer {
    max-width: 170px;
    right: 0;
    bottom: 0;
}

img.left2, img.right3 {
    max-width: 155px;
    left: -50px;
    bottom: -70px;
}

img.right3 {
    left: auto;
    right: 0;
    bottom: -80px;
}
.cta input {
    font-size: 20px;
    line-height: 32px;
    padding: 10px 32px;
    width: 100%;
    border-radius: 50px;
    border: 1px solid #4E4B4B;
    background: #1F2522;
    height: 50px;
}
.bg-center_image .hero-center-image, .bg-center_image .hero-layer {
    display: none;
}
img.mobile-hero-center-image {
    display: block;
}

    }
    /* Remove custom active states to match tournament page */
    /* .onactive {
    display: none;
}

nav.navbar:has(.menu.active)  .onactive {
    display: block;
}

nav.navbar:has(.menu.active) svg.active {
    display: none;
} */
