:root {
    --primary-color: rgb(55, 76, 155);
    --primary-hover-color: #374c9bd9;
    --secondary-color: #f5e847;
    --white-color: #ffffff;
    --black-color: #000000;
    --red-color: #c40233;
    --card-background: rgba(255, 255, 255, 0.03);
    --text-grey: #ddd;

    --header-fonts: "Orbitron", sans-serif;
    --hero-fonts: "Road_Rage";
    --body-fonts: "Raleway", sans-serif;

    --section-title-font-size: 50px;

    --font-size-small: 14px;
    --font-size-medium: 16px;

    --spacing-small: 8px;
    --spacing-medium: 16px;
    --spacing-large: 32px;

    --section-padding: 4rem 0;

    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);

}

@font-face {
    font-family: 'Road_Rage';
    src: url('../icon/Road_Rage.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

html,
body {
    overflow-x: hidden;
    overflow-y: auto;
    scroll-behavior: smooth !important;
}

html.modal-open,
body.modal-open {
    overflow: hidden;
}

[data-aos] {
  will-change: transform, opacity;
}


img {
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
span {
    font-family: var(--header-fonts)
}

p {
    font-family: var(--body-fonts)
}

/* Global Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-medium);
}

section {
    padding: var(--section-padding);
}

/* Button Styling */
.button {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: var(--spacing-small) var(--spacing-medium);
    font-family: var(--header-fonts) !important;
    border-radius: 8px;
    border: none;
    font-size: var(--font-size-medium);
    text-align: center;
    cursor: pointer;
    transition: all .3s ease;
    display: inline-block;
    text-decoration: none;
    letter-spacing: 1px;
    height: 38px;
}

.button:hover {
    background-color: var(--primary-hover-color);
    transform: translateY(-4px);
    box-shadow: var(--box-shadow);
}

.cricket-bat-button {
    position: relative;
    background: linear-gradient(45deg, var(--primary-color), #8c6eff);
    color: var(--white-color);
    font-size: 14px;
    font-weight: bold;
    border: none;
    border-radius: 12px 4px 4px 12px;
    padding: 8px 24px;
    max-width: 200px;
    width: 100%;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 1);
    transition: all .5s ease;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

/*.cricket-bat-button::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    right: 0;*/
/*    transform: translateY(-50%) rotate(180deg);*/
/*    width: 34px;*/
/*    height: 10px;*/
/*    background: #e9e9e9;*/
/*    border-style: solid;*/
/*    border-width: 0px 0 0 0px;*/
/*    clip-path: polygon(100% 50%, 0 100%, 0 0);*/
/*    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);*/
/*    z-index: 1;*/
/*}*/

/* Add grip texture to the bat handle */
.cricket-bat-button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(100% + 24px);
    transform: translateY(-50%) rotate(90deg);
    width: 10px;
    height: 60px;
    background: repeating-linear-gradient(160deg, #ffffff 0px, #e9e9e9 4px, #b2b2b2 4px, #dedede 8px);
    border-radius: 10px 10px 2px 2px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
}

.cricket-bat-button:hover,
.cricket-bat-button:focus {
    background: linear-gradient(45deg, #9f84ff, #b79dff);
    transform: scale(1.05) rotate(3deg);
}

.cricket-bat-button:active {
    background: linear-gradient(45deg, #9f84ff, #b79dff);
    transform: scale(0.98) rotate(-3deg);
}

.cricket-bat-button:focus {
    outline: none;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    position: relative;
    transition: color .3s ease;
    font-family: var(--header-fonts);
}

.section-header {
    margin-bottom: 2rem;
}

.section-title {
    position: relative;
    display: inline-block;
    font-size: var(--section-title-font-size);
    color: var(--white-color);
    font-weight: 600;
    overflow: hidden;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 100%;
    height: 2px;
    background: linear-gradient(-90deg, transparent, var(--secondary-color), transparent);
    background-size: 200% auto;
    animation: underlineFlow 4s linear infinite;
    border-radius: 1px;
}

.hide {
    display: none;
}


body {
    font-size: var(--font-size-medium);
    line-height: 1.6;
    min-height: 100vh;
    background: radial-gradient(circle at 60% 60%, #2e2a3b, #0a0a0f 70%);
    color: #fff;
}

#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

#loading-logo {
    width: 450px;
    transform: scale(1) translate(0, 0);
    transition: transform 2s ease-in-out, opacity 2s ease-in-out;
    position: absolute;
}


/* Header Styling */
.header {
    /* position: fixed;
    top: 0;
    left: 0;
    right: 0; */
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    padding: 1rem 2rem;
    z-index: 1000;
    font-family: var(--header-fonts);
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*box-shadow: var(--box-shadow);*/
    /*background: rgba(46, 42, 59, 0.4);*/
    /*backdrop-filter: blur(12px);*/
    /*-webkit-backdrop-filter: blur(12px);*/
    /*border-bottom: 1px solid rgba(255, 255, 255, 0.1);*/
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo a {
    color: var(--white-color);
    font-weight: bold;
    text-decoration: none;
}

.logo-image img {
    max-width: 120px;
}

.nav {
    display: flex;
}

.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: var(--spacing-medium);
}

.nav-list li.header-icon {
    background-color: var(--primary-color);
    border-radius: 100%;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.nav-list a {
     padding: var(--spacing-small) var(--spacing-medium);
    cursor: pointer;
    color: var(--white-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}


.nav-list a:hover {
    color: var(--secondary-color);
    border-radius: 5px;
}

/* Mobile Menu Icon (Visible only on small screens) */
.menu-icon {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: var(--white-color);
}



/* HERO section  */
.hero-section {
    padding: 0;
    /*position: relative;*/
    background: radial-gradient(circle at 60% 60%, #2e2a3b, #0a0a0f 70%);
    background-size: 200% 200%;
    animation: moveGradient 20s infinite linear;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-wrapper{
    position: relative;
    width: 100%;
}

.hero-wrapper .swiper-slide{
    padding-top: 130px;
    height: auto;
    padding-bottom: 3rem;
}

.hero-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* z-index: -1; */
    /*animation: flicker 1s ease-in-out 0s 1 forwards;*/
    opacity: .6;
    object-position: top;
}

.hero-banner-image.flicker {
    will-change: transform, opacity;
    animation: flicker 1s ease-in-out 0s 1 forwards;
}

.hero-container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding-bottom: 20px;
}

.hero-container .hero-text span {
    /*margin-left: 28px;*/
    font-family: var(--header-fonts);
    letter-spacing: 1px;
    font-weight: bold;
    font-size: 16px;
}


.hero-text.mobile{
    display: none;    
}

.hero-text {
    text-align: center;
    flex: 1 1 50%;
    max-width: 700px;
}

.hero-text h1 p {
    font-size: 50px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1rem;
    /* font-family: var(--header-fonts); */
    font-family: var(--hero-fonts);
    width: 100%;
    margin-bottom: 0;
}

.gradient-text {
    background: linear-gradient(-90deg, #374c9b, #7f5aff, #a072f4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    line-height: 1.4 !important;
    margin-bottom: 0px !important;
}

.font-thin {
    font-weight: 100;
}

.hero-text .tagline {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #bbbbbb;
    margin-bottom: 2rem;
    margin-top: 1rem;
    margin-left: 24px;
}


.hero-container .button {
    margin-top: 24px;
}

.hero-image {
    max-width: 800px;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /*padding: 20px 0;*/
    border-radius: 10px;
    animation: float 4s ease-in-out infinite;
}

.hero-image img.blur-background {
    position: absolute;
    inset: 0;
    filter: blur(10px);
}

.hero-image img {
    max-width: 100%;
    /*height: auto;*/
}

.hero-image img.banner-image.horizontal-image{
    max-width: 100%;   
}

.hero-image img.banner-image {
    max-width: 300px;
    object-fit: cover;
}


.hero-image-elements {
    position: absolute;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}

.hero-image-elements.star {
    z-index: 2;
    top: 200px;
    left: 10%;
    width: 60px;
    animation: rotateSlow 5s linear infinite !important;
}

.hero-image-elements.trophy {
    z-index: 2;
    top: 280px;
    right: 17%;
    width: 100px;
    animation: subtlePulse 3s ease-in-out infinite;
}

.hero-image img:first-of-type {
    z-index: 1;
    position: relative;
}

.hero-image-elements.coin {
    z-index: 2;
}

.hero-image-elements.coin {
    position: absolute;
    top: -60px;
    width: 50px;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    animation: fallCoin 4s ease-in infinite;
  }


.hero-image-elements.coin {
    animation: fallCoin 5s linear infinite;
    opacity: 0;
}

.hero-image-elements.coin:nth-child(2) {
    left: 15%;
    width: 30px;
    animation-delay: 0s;
}

.hero-image-elements.coin:nth-child(3) {
    width: 40px;
    left: 30%;
    animation-delay: 1s;
}

.hero-image-elements.coin:nth-child(4) {
    width: 50px;
    left: 45%;
    animation-delay: 2s;
}

.hero-image-elements.coin:nth-child(5) {
    width: 30px;
    left: 60%;
    animation-delay: 3s;
}

.hero-image-elements.coin:nth-child(6) {
    width: 50px;
    left: 75%;
    animation-delay: 2s;
}

.custom-swiper-button-prev,
.custom-swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  cursor: pointer;
  padding: 10px;
  background: var(--primary-color);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.custom-swiper-button-prev:hover,
.custom-swiper-button-next:hover {
  background: var(--primary-hover-color);
  transform: translateY(-50%) scale(1.1);
}

.custom-swiper-button-prev {
  left: 20px;
}

.custom-swiper-button-next {
  right: 20px;
}



/* Equipment Styles */
.game-equipment-section {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 60% 60%, #2e2a3b, #0a0a0f 70%);
    background-size: 200% 200%;
    animation: moveGradient 20s infinite linear;
}

.murial-image {
    position: absolute;
    top: -20px;
    right: 0%;
    width: 100%;
    height: 220%;
    /* background-image: url('./images/murials/flipped-diamonds.svg'); */
    /* background-image: url('./images/murials/plus.svg'); */
    /* background-image: url('./images/murials/polka-dots.svg'); */
    background-image: url('./../images/murials/wiggle.svg');
    background-size: 40px;
    object-fit: cover;
    opacity: .4;
    background-position: center center;
    background-repeat: repeat;
    z-index: 0;
    animation: moveBackground 10s linear infinite;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.equipment-card {
    flex: 1 1 calc(30.33% - 1.2rem);
    min-width: calc(30.33% - 1.2rem);
    background: var(--card-background);
    border-radius: 1rem;
    padding: 1rem;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition-default);
    scroll-snap-align: start;
}

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

.image-glass {
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 1rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 1rem;
}

.image-glass img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all .3s ease;
    border-radius: .5rem;
}

.equipment-card p {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-grey);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Video Section */
.video-section {
    background: radial-gradient(circle at 60% 60%, #2e2a3b, #0a0a0f 70%);
    background-size: 200% 200%;
    animation: moveGradient 20s infinite linear;
    position: relative;
}

.video-content-wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.video-wrapper {
    position: relative;
    width: 60%;
    /*height: 530px;*/
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

#demo-video {
    display: block;
    width: 100%;
    height: auto;
}

.play-icon,
.pause-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: opacity 0.3s ease;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pause-icon {
    opacity: 0;
    pointer-events: none;
}

.video-playing:hover .pause-icon {
    opacity: 1;
    pointer-events: auto;
}

/* Hide play icon when video is playing */
.video-playing .play-icon {
    opacity: 0;
    pointer-events: none;
}

.video-content-wrapper {
    width: 100%;
    height: 100%;
}

.video-content-wrapper .video-container video {
    cursor: pointer;
    /*object-fit: cover;*/
}



.content-container {
    width: 38%;
    display: flex;
    gap: 24px;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.content-container h3 {
    font-size: 24px;
    line-height: 1.6;
    background: linear-gradient(-90deg, var(--secondary-color), #ffffffcc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}


/* How to play section */
.how-to-play {
    background: radial-gradient(circle at 60% 60%, #2e2a3b, #0a0a0f 70%);
    background-size: 200% 200%;
    animation: moveGradient 20s infinite linear;
}


.how-to-play-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

.how-to-play-left {
    flex: 2;
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.how-to-play-item {
    /* background: var(--card-background); */
    box-shadow: var(--box-shadow);
    border: 1px solid var(--card-background);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 20px;
    border-radius: 1rem;
    transition: transform 0.3s ease;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: max-content;
}


.how-to-play-item:nth-child(1) {
    transform: translateY(-40px);
}

.how-to-play-item:nth-child(2) {
    transform: translateY(40px);
}

.how-to-play-item:nth-child(3) {
    transform: translateY(-20px);
}

.item-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.how-to-play-item:nth-child(1):hover {
    transform: translateY(-50px);
}

.how-to-play-item:nth-child(2):hover {
    transform: translateY(30px);
}

.how-to-play-item:nth-child(3):hover {
    transform: translateY(-30px);
}

.icon-wrapper {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    padding: .8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .5rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition-all);
    width: 60px;
    height: 60px;
}

.how-to-play-item i {
    width: 32px;
    height: 32px;
}


.how-to-play-item h3 {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 1rem;
    background: linear-gradient(-90deg, var(--secondary-color), #ffffffcc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.how-to-play-item p {
    font-size: 15px;
    color: var(--text-grey);
    line-height: 1.6;
}

.how-to-play-right {
    flex: 1;
    display: flex;
    gap: 1rem;
    ;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.how-to-play-image {
    width: 80%;
    max-width: 400px;
    border-radius: 1rem;
}

.how-to-play .button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}


/* Features section */
.features-section {
    background: radial-gradient(circle at 60% 60%, #2e2a3b, #0a0a0f 70%);
    background-size: 200% 200%;
    animation: moveGradient 20s infinite linear;
}

.feature-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
    transition: transform 0.3s ease;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 1;
    padding: 24px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    position: relative;
}

.feature-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    
}

.features-section .image-elements {
    position: absolute;
    inset: 0;
    width: 80px;
}

.features-section .image-elements.ball {
    z-index: 2;
    top: 10px;
    left: 90%;
    width: 60px;
    animation: rotateSlow 2s linear infinite !important;
}

.features-section .image-elements.star {
    z-index: 2;
    top: 280px;
    left: 46%;
    width: 60px;
    animation: rotateSlow 5s linear infinite !important;
}

.features-section .image-elements.trophy {
    z-index: 2;
    top: 280px;
    left: 46%;
    width: 100px;
    animation: subtlePulse 3s ease-in-out infinite;
}

.feature-content {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-content h3 {
    font-size: 24px;
    line-height: 1.6;
    background: linear-gradient(-90deg, var(--secondary-color), #ffffffcc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.feature-content span {
    font-family: var(--header-fonts);
    letter-spacing: 1.5px;
    font-weight: bold;
    font-size: 17px;
}

.feature-content p {
    font-size: 16px;
    color: var(--text-grey);
    line-height: 1.6;
}


/* Footer Styling */
.footer {
    position: relative;
    background: linear-gradient(135deg, #0a0a0f, #1c1a29);
    color: #ffffff;
    padding: 40px 20px 20px;
    font-family: var(--body-fonts);
    text-align: center;
}

.footer-background-image {
    position: absolute;
    inset: 0;
    opacity: .1;
    object-fit: contain;
    height: 100%;
    pointer-events: none;
}

.footer-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
    gap: 40px;
}

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

.footer-right{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.footer-links li{
    text-align: center;
    padding: 10px 20px;
}

.footer-links li a {
    color: #ccc;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: var(--secondary-color);
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials .footer-icon {
    background-color: var(--primary-color);
    border-radius: 100%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.footer-socials a {
    color: #ccc;
    font-size: 20px;
    transition: color 0.3s ease;
}

.footer-bottom {
    margin-top: 30px;
    color: var(--white-color);
    border-top: 1px solid #333;
    padding-top: 15px;
}

.footer-developer{
    display: none;
}


/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s;
}

.modal-content {
    background: radial-gradient(circle at 0% 40%, #2e2a3b, #0a0a0f 100%);
    margin: 0% auto;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 700px;
    position: relative;
    color: #fff;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    color: var(--white-color);
}

.modal-header .close-btn {
    color: var(--white-color);
}

.close-btn {
    font-size: 24px;
    cursor: pointer;
    background-color: transparent;
    border: none;
    outline: none;
}

.modal-body {
    margin-top: 20px;
}

.modal-body p {
    color: var(--white-color);
}

#contactForm {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    width: 100%;
    gap: 16px;
}

.form-group {
    width: 100%;
    margin-top: 20px;
}

.form-element-container {
    display: flex;
    gap: 24px;
    width: 100%;
}

.form-group label {
    font-weight: normal;
    margin-bottom: 5px;
    display: block;
    color: var(--white-color);
    font-family: var(--body-fonts);
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    font-family: var(--body-fonts);
}

.form-group {
    margin-bottom: 20px;
}
 
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}
 
.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}
 
.form-group input:focus {
    outline: none;
    border-color: #f5e847;
    box-shadow: 0 0 0 2px rgba(245, 232, 71, 0.2);
}
 
.form-group input.error {
    border-color: #dc3545;
}
 
.error-message {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

#contactForm button {
    margin-top: 24px;
}

.whatsapp-icon {
    position: fixed;
    right: 10px;
    bottom: 80px;
    z-index: 99;
    border-radius: 100%;
    background-color: #25D366;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 2s ease-in-out infinite;
}

.whatsapp-icon a {
    line-height: normal;

}

.whatsapp-icon i {
    color: #fff;
    font-size: 24px;
}

@media screen and (max-width: 900px) {
    .video-content-wrapper .video-wrapper {
        width: 100%;
    }

}

@media screen and (max-width: 768px) {
    .hero-container .button.cricket-bat-button ,
    .video-section .button-container .cricket-bat-button,
    .how-to-play a.cricket-bat-button,
    .feature-row .button-container .cricket-bat-button{
        margin-right: 60px;
    }
    
    header {
        position: relative;
    }
    
    .header{
        padding-block: 1rem;
        padding-inline: 0;
    }

    section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .section-title:after {
        bottom: 0;
    }

    .section-flex {
        flex-direction: row;
        justify-content: space-between;
    }

    .nav {
        display: none;
        width: 100%;
        text-align: center;
    }

    .nav.show {
        position: absolute;
        background: rgba(46, 42, 59, 1);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: var(--box-shadow);
        display: flex;
        align-items: center;
        justify-content: space-between;
        top: 80px;
        left: 0;
        right: 0;
        width: 100%;
        padding: 2rem 1rem;
    }

    .nav-list {
        flex-direction: column;
        gap: var(--spacing-large);
        width: 100%;
    }

    .nav-list li a {
        padding: var(--spacing-medium) 0;
    }

    .menu-icon {
        display: block;
    }

    .nav.active {
        display: flex;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 0px;
    }
    
  
    section.hero-section{
        padding: 0;
    }
    
    .hero-banner-image{
        object-position: 80%;
    }

    .hero-text,
    .hero-image {
        flex: 1 1 100%;
    }

    .hero-image {
        /*display: none;*/
    }
    
    .hero-text.desktop{
        display: none;   
    }
    
    .hero-text.mobile{
        display: block;
    }

    .hero-text h1 p {
        font-size: 55px;
        line-height: normal;
    }

    .hero-text .tagline {
        font-size: 1rem;
    }

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

    .equipment-card {
        flex: 0 0 auto;
        min-width: 80%;
        scroll-snap-align: start;
    }

    .image-glass {
        height: 240px;
    }

    .how-to-play-content {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .how-to-play-left,
    .how-to-play-right {
        flex: none;
        width: 100%;
    }

    .how-to-play-left {
        margin-top: 0;
    }

    .how-to-play-image {
        max-width: 80%;
    }

    .video-section {
        flex-direction: column;
    }

    .video-section .video-content {
        margin-right: 0;
        margin-bottom: 2rem;
    }

    .video-container {
        width: 100%;
    }
    
    .video-section .button-container{
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .content-container {
        width: 100%;
    }

    .video-container video {
        object-fit: contain;
    }

    .how-to-play-item:nth-child(1),
    .how-to-play-item:nth-child(2),
    .how-to-play-item:nth-child(3) {
        transform: translateY(0px) !important;
    }

    .how-to-play .button-container {
        justify-content: center;
    }

    .feature-row,
    .feature-row.reverse {
        flex-direction: column;
        margin-bottom: 50px;
    }

    .feature-row:last-child {
        margin-bottom: 0;
    }

    .feature-image {
        padding: 0;
    }
    
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-row .button-container{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .footer-links li{
        text-align: center;
    }

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

}

@media screen and (max-width: 600px) {
    .how-to-play-left {
        flex-direction: column;
    }

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

}

/* Animations */

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes subtlePulse {

    0%,
    100% {
        transform: rotate(10deg) scale(1) translateY(0px);
    }

    50% {
        transform: rotate(0deg) scale(1.08) translateY(-10px);
    }
}

@keyframes underlineFlow {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

@keyframes moveBackground {
    0% {
        transform: translate(20px, 20px);
        /* Start at bottom-right */
    }

    50% {
        transform: translate(-20px, -20px);
        /* Move to top-left */
    }

    100% {
        transform: translate(20px, 20px);
        /* Return back to bottom-right */
    }
}

@keyframes moveGradient {
    0% {
        background-position: 80% 80%;
    }

    25% {
        background-position: 20% 80%;
    }

    50% {
        background-position: 20% 20%;
    }

    75% {
        background-position: 80% 20%;
    }

    100% {
        background-position: 80% 80%;
    }
}

@keyframes fallCoin {
    0% {
        transform: translateY(-150px) rotate(0deg);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        transform: translateY(250px) rotate(720deg);
        opacity: 0;
    }
}

@keyframes flicker {
  0% {
    opacity: 0.1;
  }
  5% {
    opacity: 0.6;
  }
  10% {
    opacity: 0.1;
  }
  15% {
    opacity: 0.6;
  }
  20% {
    opacity: 0.1;
  }
  25% {
    opacity: 0.6;
  }
  30% {
    opacity: 0.1;
  }
  35% {
    opacity: 0.1;
  }
  40% {
    opacity: 0.1;
  }
  45% {
    opacity: 0.1;
  }
  50% {
    opacity: 0.6;
  }
  55% {
    opacity: 1;
  }
  60% {
    opacity: 0.1;
  }
  65% {
    opacity: .1;
  }
  70% {
    opacity: 0.6;
  }
  75% {
    opacity: .1;
  }
  80% {
    opacity: .1;
  }
  100% {
    opacity: .6;
  }
}

