* {
  margin: 0;
  padding: 0;
}

body {
  background-color: #fff !important;
}

a {
  text-decoration: none !important;
}

li {
  color: #000;
}

span {
  color: #000;
  font-size: 20px;
  font-weight: 600;
}

h1, h2, h3 {
  font-size: 30px;
  color: #000;
  font-weight: 700;
  text-align: start;
}

p {
  font-weight: 400;
  color: #000;
  text-align: start !important;
}
/* Sidebar */
.sidebar {
  width: 270px;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  background: #111;
  overflow: hidden;
  margin-top: 80px;
}

.sidebar-menu {
  height: calc(100vh - 90px);
  overflow-y: auto;
  padding: 15px 10px;
  margin: 0;
  list-style: none;
}

/* Scrollbar */
.sidebar-menu::-webkit-scrollbar {
  width: 5px;
}

.sidebar-menu::-webkit-scrollbar-thumb {
  background: #0aa52c;
  border-radius: 20px;
}

.sidebar-menu li {
  margin-bottom: 12px;
}

.sidebar-menu li a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 5px 5px;
  border-radius: 16px;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .05);
  transition: .45s;
}

.sidebar-menu li a{
  color: #fff !important;
}
.sidebar-menu li a i {
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #0aa52c, #0aa52c);
  color: #000;
  font-size: 18px;
  transition: .5s;
  box-shadow: 0 0 15px rgba(255, 170, 0, .35);
}

.sidebar-menu li a::after {
  content: "";
  position: absolute;
  left: -120%;
  top: 0;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), transparent);
  transform: skewX(-25deg);
  transition: .8s;
}

.sidebar-menu li a:hover::after {
  left: 150%;
}

.sidebar-menu li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 5px;
  background: #0aa52c;
  border-radius: 10px;
  transform: scaleY(0);
  transition: .35s;
}

.sidebar-menu li a:hover::before {
  transform: scaleY(1);
}

.sidebar-menu li a:hover {
  transform: translateX(10px);
  background: linear-gradient(90deg, rgba(255, 170, 0, .25), rgba(255, 170, 0, .08));
  box-shadow: 0 12px 25px rgba(255, 170, 0, .15);
}

.sidebar-menu li a:hover i {
  transform: rotate(360deg) scale(1.15);
  box-shadow: 0 0 20px #0aa52c;
}

.sidebar-menu li:first-child a {
  background: linear-gradient(90deg, #0aa52c, #0aa52c);
  color: #111;
  font-weight: 700;
}

.sidebar-menu li:first-child a i {
  background: #fff;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
  100% {
    transform: translateY(0);
  }
}

.sidebar-menu li {
  animation: float 5s ease-in-out infinite;
}

.sidebar-menu li:nth-child(even) {
  animation-delay: .4s;
}

/* Mobile */
@media(max-width:768px) {
  .sidebar {
    width: 220px;
  }

}

.layout {
  display: flex;
  height: 100vh;
  overflow: hidden;
}

.main-content {
  margin-left: 280px;
  flex-grow: 1;
  overflow-y: auto;
}

/* header start */

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    background:#000;

    border-bottom: 1px solid rgba(254, 115, 1, 0.45);
    box-shadow:
        0 5px 25px rgba(0, 0, 0, 0.65),
        0 1px 15px rgba(254, 115, 1, 0.12);

    backdrop-filter: blur(15px);
}

/* Small sports line on top */
.topbar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;

    background: linear-gradient(
        90deg,
        #005098,
        #00bfff,
        #61CE70,
        #61CE70,
        #005098
    );

    background-size: 300% 100%;
    animation: sportsLine 5s linear infinite;
}

@keyframes sportsLine {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}


/* Navbar */
.navbar {
    padding: 10px 0;
}


/* Logo */
.nav-logo {
    height: 48px;
    width: auto;
    transition: 0.4s ease;
    filter: drop-shadow(0 0 5px rgba(254, 115, 1, 0.25));
}

.nav-logo:hover {
    transform: scale(1.08);
    filter:
        drop-shadow(0 0 5px #61CE70)
        drop-shadow(0 0 15px rgba(254, 115, 1, 0.7));
}


/* Menu */
.navbar-nav {
    gap: 5px;
}

.nav-link {
    position: relative;

    color: #ffffff !important;
    font-weight: 700;
    font-size: 14px;

    padding: 10px 17px !important;

    border-radius: 8px;

    transition: all 0.3s ease;
}


/* Menu hover */
.nav-link:hover {
    color: #fff !important;

    background:
        linear-gradient(
            135deg,
            rgba(254, 115, 1, 0.25),
            rgba(0, 80, 152, 0.25)
        );

    transform: translateY(-2px);

    box-shadow:
        inset 0 0 0 1px rgba(254, 115, 1, 0.35),
        0 5px 15px rgba(254, 115, 1, 0.18);
}


/* Orange underline */
.nav-link::after {
    content: "";

    position: absolute;
    left: 50%;
    bottom: 3px;

    width: 0;
    height: 2px;

    background: #61CE70;

    transform: translateX(-50%);
    transition: width 0.3s ease;

    box-shadow: 0 0 8px #61CE70;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 55%;
}


/* Active menu */
.nav-link.active {
    color: #fff !important;

    background:
        linear-gradient(
            135deg,
            rgba(254, 115, 1, 0.22),
            rgba(254, 115, 1, 0.08)
        );

    box-shadow:
        inset 0 0 0 1px rgba(254, 115, 1, 0.25);
}


/* Right section */
.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}


/* WhatsApp */
.whatsapp {
    height: 38px;
    width: 38px;
    object-fit: contain;
    border-radius: 50px;
    cursor: pointer;

    transition: 0.3s ease;

    filter: drop-shadow(0 0 5px rgba(37, 211, 102, 0.3));
}

.whatsapp:hover {
    transform: scale(1.12) rotate(8deg);

    filter:
        drop-shadow(0 0 6px #25d366)
        drop-shadow(0 0 12px rgba(37, 211, 102, 0.5));
}


/* =========================
   PREMIUM SPORTS BUTTONS
========================= */

.login-btn,
.signup-btn {
    position: relative;

    min-width: 92px;
    height: 42px;

    padding: 0 20px;

    border: 1px solid transparent;
    border-radius: 8px;

    color: #fff !important;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.4px;

    cursor: pointer;
    overflow: hidden;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    text-transform: uppercase;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}


/* =========================
   LOGIN BUTTON
========================= */

.login-btn {
    background:
        linear-gradient(
            135deg,
            #087f23 0%,
            #0aa52c 50%,
            #16c63b 100%
        );

    border-color: rgba(50, 220, 90, 0.65);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.18),
        0 4px 0 #055d19,
        0 7px 18px rgba(0, 180, 50, 0.35);
}

.login-btn:hover {
    transform: translateY(-3px);

    background:
        linear-gradient(
            135deg,
            #0aa52c,
            #16c63b
        );

    border-color: #5cff7a;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.25),
        0 4px 0 #066d1d,
        0 8px 25px rgba(0, 220, 60, 0.5);
}

.login-btn:active {
    transform: translateY(1px);

    box-shadow:
        inset 0 2px 5px rgba(0,0,0,0.3),
        0 2px 0 #055d19;
}


/* =========================
   SIGNUP BUTTON
========================= */

.signup-btn {
    background:
        linear-gradient(
            135deg,
            #ffb300 0%,
            #ff8c00 45%,
            #61CE70 100%
        );

    border-color: rgba(255, 193, 7, 0.7);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.3),
        0 4px 0 #b84f00,
        0 7px 18px rgba(254, 115, 1, 0.4);
}


/* Signup hover */

.signup-btn:hover {
    transform: translateY(-3px);

    background:
        linear-gradient(
            135deg,
            #ffc107,
            #61CE70,
            #ff6500
        );

    border-color: #ffd166;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.35),
        0 4px 0 #c35400,
        0 8px 25px rgba(254, 115, 1, 0.6);
}


/* Signup click */

.signup-btn:active {
    transform: translateY(1px);

    box-shadow:
        inset 0 2px 5px rgba(0,0,0,0.3),
        0 2px 0 #b84f00;
}


/* =========================
   SHINE ANIMATION
========================= */

.login-btn::before,
.signup-btn::before {
    content: "";

    position: absolute;

    top: -20%;
    left: -120%;

    width: 60%;
    height: 140%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.35),
        transparent
    );

    transform: skewX(-20deg);

    transition: left 0.55s ease;

    pointer-events: none;
}


/* Shine on hover */

.login-btn:hover::before,
.signup-btn:hover::before {
    left: 140%;
}


/* =========================
   SMALL GLOW
========================= */

.login-btn::after,
.signup-btn::after {
    content: "";

    position: absolute;

    inset: 0;

    border-radius: inherit;

    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.08);

    pointer-events: none;
}


/* =========================
   DESKTOP BUTTON GROUP
========================= */

.nav-right {
    gap: 10px;
}


/* =========================
   MOBILE BUTTONS
========================= */

.mobile-buttons {
    display: flex;
    align-items: center;
    gap: 5px;
}

.mobile-buttons .login-btn,
.mobile-buttons .signup-btn {
    min-width: auto;

    height: 32px;

    padding: 0 11px;

    font-size: 10px;

    border-radius: 6px;

    letter-spacing: 0.2px;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.18),
        0 3px 0 rgba(0,0,0,0.35),
        0 4px 10px rgba(0,0,0,0.25);
}


/* Mobile hover */

.mobile-buttons .login-btn:hover,
.mobile-buttons .signup-btn:hover {
    transform: translateY(-2px);
}


/* =========================
   MOBILE
========================= */

@media (max-width: 480px) {

    .mobile-buttons {
        gap: 4px;
    }

    .mobile-buttons .login-btn,
    .mobile-buttons .signup-btn {
        height: 30px;

        padding: 0 9px;

        font-size: 9px;

        border-radius: 5px;
    }
}

/* Hamburger */
.navbar-toggler {
    border: 1px solid rgba(254, 115, 1, 0.45) !important;

    width: 42px;
    height: 38px;

    padding: 5px;

    border-radius: 7px;

    background: rgba(254, 115, 1, 0.08);

    transition: 0.3s ease;
}

.navbar-toggler:hover {
    background: rgba(254, 115, 1, 0.18);

    box-shadow:
        0 0 12px rgba(254, 115, 1, 0.3);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    filter: brightness(0) invert(1);
}


/* Mobile menu */
@media (max-width: 991px) {

    .navbar-collapse {
        margin-top: 12px;

        padding: 12px;

        background:
            linear-gradient(
                145deg,
                #07111f,
                #101b2c
            );

        border: 1px solid rgba(254, 115, 1, 0.25);

        border-radius: 10px;

        box-shadow:
            0 10px 30px rgba(0, 0, 0, 0.55),
            inset 0 1px 0 rgba(255,255,255,0.04);
    }

    .navbar-nav {
        gap: 3px;
    }

    .nav-link {
        padding: 11px 14px !important;

        border-radius: 7px;
    }

    .nav-link:hover {
        transform: none;
    }

    .nav-link::after {
        left: 14px;
        transform: none;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        width: 35px;
    }

    .nav-right {
        display: none !important;
    }

    .nav-logo {
        height: 34px;
    }
}


/* Desktop */
@media (min-width: 992px) {

    .mobile-buttons {
        display: none;
    }
}


/* Extra small mobile */
@media (max-width: 480px) {

    .navbar {
        padding: 8px 0;
    }

    .nav-logo {
        height: 30px;
    }

    .mobile-buttons .login-btn,
    .mobile-buttons .signup-btn {
        padding: 6px 9px;
        font-size: 10px;
    }

    .navbar-toggler {
        width: 38px;
        height: 35px;
    }
}

/* header end */
.dice {
  padding-top: 90px;
  padding-bottom: 30px;
}
.ban{
  width: 100%;
}
.serve {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
  font-weight: 700;
  font-size: 25px;
}

.serve::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #0aa52c;
}

.serve::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 10%;
  height: 3px;
  background: #0aa52c;
  z-index: 1;
}

.swiper {
  width: 100%;
  padding: 10px;
  margin: auto;
}

.swiper-slide img {
  width: 100%;
  border-radius: 10px;
}

/* Bottom fixed section */
.bottom-nav{
position:fixed;
left:0;
bottom:0;
width:100%;
height:70px;
background:rgba(12,12,12,.96);
backdrop-filter:blur(12px);
display:flex;
justify-content:space-around;
align-items:center;
border-top:2px solid #61CE70;
box-shadow:0 -8px 25px rgba(0,0,0,.45);
z-index:9999;
}
.bottom-nav span{
  color: #fff;
  font-size: 15px;
}

.bottom-nav a{
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
text-decoration:none;
color:#ddd;
font-size:12px;
font-weight:500;
transition:.35s;
position:relative;
}

.bottom-nav a i{
font-size:22px;
margin-bottom:4px;
color:#61CE70;
transition:.35s;
}
/* Hover */

.bottom-nav a:hover{
transform:translateY(-5px);
color:#fff;
}

.bottom-nav a:hover i{
transform:scale(1.25);
text-shadow:0 0 12px orange;
}

.home-btn{
margin-top:-35px;
}

.home-circle{
width:62px;
height:62px;
border-radius:50%;
background:linear-gradient(90deg, #61CE70, #61CE70);
display:flex;
align-items:center;
justify-content:center;
box-shadow:
0 0 20px rgba(255,165,0,.45),
0 0 35px rgba(255,165,0,.25);
animation:pulse 2s infinite;
}

.home-circle i{
font-size:26px;
color:#111 !important;
margin:0;
}

.home-btn span{
margin-top:6px;
}

/* Pulse */

@keyframes pulse{
0%{
box-shadow:0 0 0 0 rgba(255,165,0,.6);
}
70%{
box-shadow:0 0 0 18px rgba(255,165,0,0);
}
100%{
box-shadow:0 0 0 0 rgba(255,165,0,0);
}
}

/* Active */

.bottom-nav a.active{
color:#fff;
}

.bottom-nav a.active i{
color:#ffd54f;
}
/* Mobile */


/* Bottom fixed section */

@media only screen and (max-width: 476px) {
  .sidebar {
    display: none;
  }

  .main-content {
    margin-left: 0px;
    padding: 0px;
    margin-top: 70px;
  }
  p {
    text-align: justify !important;
  }

  .faq-section {
    padding: 10px;
  }

  .dice {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .serve {
    font-size: 17px;
  }

  .faq-section {
    width: 100%;
    padding: 10px;
  }

  .popupContent p {
    margin: 0px !important;
  }
  .footer h4 {
    text-align: start;
  }
  .footer ul {
    text-align: start;
  }
  .footer h4::after {
        left: 10%;
        transform: translateX(-50%);
    }
}

/* desktop hide code */
@media(min-width:992px){
.bottom-nav{
display:none;
}
}


/* faq start */
.faq-section {
  max-width: 1100px;
  margin: auto;
}
.faq-section h3{
  text-align: center !important;
}

.faq-item {
  background: #fff;
  margin: 10px 0;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-question {
  background: #0aa52c;
  color: #fff;
  padding: 15px;
  cursor: pointer;
  font-size: 16px;
  position: relative;
  font-weight: 700;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 20px;
}

.faq-question.active::after {
  content: "-";
}

.faq-answer {
  display: none;
  padding: 15px;
  color: #000;
  line-height: 1.6;
  background: #fff;
}

/* faq end */


/* footer */
.footer{
background:#0d0d0d;
padding:70px 0 25px;
border-top:3px solid #0aa52c;
color:#fff;
}

.footer-logo{
width:170px;
margin-bottom:20px;
transition:.5s;
}

.footer-logo:hover{
transform:scale(1.08);
filter:drop-shadow(0 0 12px orange);
}

.footer-text{
color:#bdbdbd;
line-height:28px;
}

.footer h4{
color:#0aa52c;
margin-bottom:20px;
font-weight:700;
position:relative;
}

.footer h4::after{
content:"";
position:absolute;
left:0;
bottom:-8px;
width:40px;
height:3px;
background:#0aa52c;
}

.footer ul{
padding:0;
margin:0;
list-style:none;
}

.footer ul li{
margin-bottom:12px;
}

.footer ul li a{
text-decoration:none;
color:#d9d9d9;
transition:.4s;
}

.footer ul li a:hover{
color:#0aa52c;
padding-left:8px;
}

.footer p{
color:#ccc;
}

.footer p i{
color:#0aa52c;
margin-right:8px;
}

.social-icons{
display:flex;
gap:12px;
margin-top:20px;
}

.social-icons a{
width:45px;
height:45px;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
background:#1d1d1d;
color:#0aa52c;
font-size:18px;
transition:.4s;
}

.social-icons a:hover{
background:#0aa52c;
color:#111;
transform:translateY(-6px) rotate(360deg);
box-shadow:0 0 18px orange;
}

.footer-btn{
background:linear-gradient(90deg, #61CE70, #61CE70);
border:none;
padding:12px 28px;
border-radius:40px;
font-weight:600;
transition:.4s;
color: #fff;
}

.footer-btn:hover{
transform:translateY(-3px);
box-shadow:0 0 18px orange;
}

.footer hr{
border-color:rgba(255,255,255,.1);
margin:40px 0 20px;
}

.copyright{
text-align:center;
color:#999;
font-size:14px;
}

@media(max-width:768px){
.footer{
text-align:center;
}

.footer h4::after{
left:5%;
transform:translateX(-50%);
}

.social-icons{
justify-content:center;
}
}
/* footer */

/* whatsapp */
.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 5px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 10px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-family: Arial, sans-serif;
  text-decoration: none;

  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
}

.whatsapp-float:hover {
  background: #1ebe5d;
  transform: scale(1.05);
}
/* whatsapp */