:root {
  --default-font: "Open Sans",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

:root { 
  --background-color: #ffffff; 
  --default-color: #444444; 
  --heading-color: #37423b; 
  --accent-color: #bd3ff4; 
  --surface-color: #ffffff; 
  --contrast-color: #ffffff; 
}

:root {
  --nav-color: #272828;  
  --nav-hover-color: #bd3ff4; 
  --nav-mobile-background-color: #ffffff; 
  --nav-dropdown-background-color: #ffffff; 
  --nav-dropdown-color: #272828; 
  --nav-dropdown-hover-color: #bd3ff4; 
}

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

:root {
  scroll-behavior: smooth;
}

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, #f3f3f3, transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

.header {
  color: white;
   background-color: #0c0e14;
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-weight: 700;
  font-size: 30px;
  margin: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: white;
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
  background-color: #0c0e14;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

.footer {
  color: var(--default-color);
  background-color: #0c0e14;
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  margin-bottom: 0;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  color: white;
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  color: color-mix(in srgb, #ffffff, transparent 30%);
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
   color: color-mix(in srgb, #ffffff, transparent 30%);
}

.footer .footer-links ul a {
  color: color-mix(in srgb, #ffffff, transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 50px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--surface-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
color: color-mix(in srgb, #ffffff, transparent 30%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

.page-title {
  --default-color: var(--contrast-color);
  --background-color: var(--accent-color);
  --heading-color: var(--contrast-color);
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--accent-color) 90%, black 5%);
  padding: 20px 0;
}

.page-title nav a {
  color: var(--default-color);
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 900px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  font-family: var(--nav-font);
  text-transform: uppercase;
}

.hero {
  width: 100%;
  min-height: 80vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), #00000066 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 10px 0 0 0;
  font-size: 24px;
}

.hero .btn-get-started {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 50px;
  transition: 0.4s;
  margin-top: 30px;
  border: 2px solid var(--default-color);
  color: var(--default-color);
}

.hero .btn-get-started:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }
}

.about .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: var(--accent-color);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 10px 24px 12px 24px;
  border-radius: 50px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

.counts {
  padding: 25px 0;
}

.counts .stats-item {
  padding: 30px;
  width: 100%;
}

.counts .stats-item span {
  font-size: 48px;
  display: block;
  color: var(--accent-color);
  font-weight: 700;
}

.counts .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 600;
}

.why-us .why-box {
  color: var(--contrast-color);
  background: var(--accent-color);
  padding: 30px;
}

.why-us .why-box h3 {
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.why-us .why-box p {
  margin-bottom: 30px;
}

.why-us .why-box .more-btn {
  display: inline-block;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  padding: 8px 40px 10px 40px;
  color: var(--contrast-color);
  transition: all ease-in-out 0.4s;
  border-radius: 50px;
}

.why-us .why-box .more-btn i {
  font-size: 14px;
}

.why-us .why-box .more-btn:hover {
  color: var(--accent-color);
  background: var(--surface-color);
}

.why-us .icon-box {
  background-color: var(--surface-color);
  text-align: center;
  padding: 40px 30px;
  width: 100%;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.why-us .icon-box i {
  color: var(--accent-color);
  font-size: 32px;
  margin-bottom: 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  transition: 0.3s;
}

.why-us .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 30px 0;
}

.why-us .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.why-us .icon-box:hover i {
  color: var(--contrast-color);
  background: var(--accent-color);
}

.features {
  padding: 10px 0;
}

.features .features-item {
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  padding: 20px;
  transition: 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
}

.features .features-item i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 0;
}

.features .features-item h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .features-item h3 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.features .features-item:hover {
  border-color: var(--accent-color);
}

.features .features-item:hover h3 a {
  color: var(--accent-color);
}

.courses .course-item {
  background-color: var(--surface-color);
  
}

.courses .course-content {
  padding: 15px;
}

.courses .course-content h3 {
  font-weight: 700;
  font-size: 20px;
}

.courses .course-content h3 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.courses .course-content h3 a:hover {
  color: var(--accent-color);
}

.courses .course-content .category {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0;
  border-radius: 5px;
}

.courses .course-content .price {
  margin: 0;
  font-weight: 700;
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.courses .course-content .description {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.courses .trainer {
  padding-top: 15px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.courses .trainer .trainer-profile img {
  max-width: 50px;
  border-radius: 50px;
}

.courses .trainer .trainer-profile .trainer-link {
  padding-left: 10px;
  font-weight: 600;
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.courses .trainer .trainer-profile .trainer-link:hover {
  color: var(--accent-color);
}

.courses .trainer .trainer-rank {
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.courses .trainer .trainer-rank .user-icon {
  font-size: 22px;
}

.trainers-index .member {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  text-align: center;
  margin-bottom: 20px;
}

.trainers-index .member img {
  margin: -1px -1px 30px -1px;
}

.trainers-index .member .member-content {
  padding: 0 20px 30px 20px;
}

.trainers-index .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.trainers-index .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.trainers-index .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.trainers-index .member .social {
  margin-top: 15px;
}

.trainers-index .member .social a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  transition: 0.3s;
}

.trainers-index .member .social a:hover {
  color: var(--accent-color);
}

.trainers-index .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.about-us .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about-us .content ul {
  list-style: none;
  padding: 0;
}

.about-us .content ul li {
  padding-bottom: 10px;
}

.about-us .content ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: var(--accent-color);
}

.about-us .content p:last-child {
  margin-bottom: 0;
}

.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  position: relative;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid var(--background-color);
  position: absolute;
  left: -45px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 60%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

.courses-course-details {
  padding-bottom: 20px;
}

.courses-course-details h3 {
  font-size: 24px;
  margin: 30px 0 15px 0;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

.courses-course-details h3:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  bottom: 0;
  left: 0;
}

.courses-course-details h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 1px;
  background: var(--accent-color);
  bottom: 0;
  left: 0;
}

.courses-course-details .course-info {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 10px 15px;
  margin-bottom: 15px;
}

.courses-course-details .course-info h5 {
  font-weight: 400;
  font-size: 16px;
  margin: 0;
  font-family: var(--nav-font);
}

.courses-course-details .course-info p {
  margin: 0;
  font-weight: 600;
}

.courses-course-details .course-info a {
  color: var(--accent-color);
}

.tabs {
  padding-top: 30;
}

.tabs .nav-tabs {
  border: 0;
}

.tabs .nav-link {
  background-color: var(--background-color);
  border: 0;
  padding: 12px 15px;
  transition: 0.3s;
  color: var(--default-color);
  border-radius: 0;
  border-right: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  font-weight: 600;
  font-size: 15px;
}

.tabs .nav-link:hover {
  color: var(--accent-color);
}

.tabs .nav-link.active {
  background-color: var(--surface-color);
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.tabs .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}

.tabs .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}

.tabs .details p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.tabs .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .tabs .nav-link {
    border: 0;
    padding: 15px;
  }

  .tabs .nav-link.active {
    color: var(--accent-color);
    background: var(--accent-color);
  }
}

.trainers .member {
  position: relative;
}

.trainers .member .member-img {
  margin: 0 80px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

@media (max-width: 1024px) {
  .trainers .member .member-img {
    margin: 0 60px;
  }
}

.trainers .member .member-img img {
  position: relative;
  z-index: 1;
}

.trainers .member .member-img .social {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding-bottom: 20px;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
}

.trainers .member .member-img .social a {
  transition: 0.3s;
  color: var(--contrast-color);
  font-size: 20px;
  margin: 0 8px;
}

.trainers .member .member-img .social a:hover {
  color: var(--accent-color);
}

.trainers .member .member-info {
  margin-top: 30px;
}

.trainers .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 18px;
}

.trainers .member .member-info span {
  font-style: italic;
  display: block;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.trainers .member .member-info p {
  margin-bottom: 0;
  font-size: 14px;
}

.trainers .member:hover .member-img .social {
  padding-bottom: 0;
  visibility: visible;
  opacity: 1;
}

.events .card {
  background-color: var(--background-color);
  border: 0;
  padding: 0 30px;
  margin-bottom: 60px;
  position: relative;
}

.events .card-img {
  width: calc(100% + 60px);
  margin-left: -30px;
  overflow: hidden;
  z-index: 9;
  border-radius: 0;
}

.events .card-img img {
  max-width: 100%;
  transition: all 0.3s ease-in-out;
}

.events .card-body {
  z-index: 10;
  background: var(--surface-color);
  border-top: 4px solid var(--surface-color);
  padding: 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  margin-top: -60px;
  transition: 0.3s;
}

.events .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.events .card-title a {
  color: var(--default-color);
  transition: 0.3s;
}

.events .card-text {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.events .card:hover img {
  transform: scale(1.1);
}

.events .card:hover .card-body {
  border-color: var(--accent-color);
}

.events .card:hover .card-body .card-title a {
  color: var(--accent-color);
}

.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing .pricing-item h3 {
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background: color-mix(in srgb, var(--default-color), transparent 95%);
}

.pricing .pricing-item h4 {
  font-size: 36px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.pricing .pricing-item h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .pricing-item h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 16px;
  font-weight: 300;
}

.pricing .pricing-item ul {
  padding: 15px 0;
  list-style: none;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .pricing-item ul li {
  padding-bottom: 16px;
}

.pricing .pricing-item ul i {
  color: var(--accent-color);
  font-size: 18px;
  padding-right: 4px;
}

.pricing .pricing-item ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-decoration: line-through;
}

.pricing .btn-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  margin: 0 -20px -20px -20px;
  padding: 20px 15px;
  text-align: center;
}

.pricing .btn-buy {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.pricing .featured h3 {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .advanced {
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
}

.contact {
  padding-top: 8px;
  padding-bottom: 40px;
}

.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px 12px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.starter-section {
  
}
#cookie_learnmore_link {
  display: none;
}

.game-overview-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.game-overview-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  opacity: 0.05;
  pointer-events: none;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(90deg, #bd3ff4 0%, #8917f4 100%);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: 0 10px 15px -3px rgba(244, 63, 94, 0.3);
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 30px;
  line-height: 1.2;
}

.text-gradient {
  background: linear-gradient(90deg, #bd3ff4 0%, #8917f4 50%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.lead-paragraph {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 35px;
  color: #e5e7eb;
}

.feature-item {
  display: flex;
  margin-bottom: 30px;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.2) 0%, rgba(236, 72, 153, 0.2) 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: 20px;
  color: #bd3ff4;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(244, 63, 94, 0.3);
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 20px rgba(244, 63, 94, 0.5);
}

.feature-content {
  flex: 1;
}

.feature-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #f9fafb;
}

.feature-content p {
  color: #d1d5db;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  margin: 30px 0;
}

.btn-primary, .btn-secondary {
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(90deg, #bd3ff4 0%, #8917f4 100%);
  color: white;
  box-shadow: 0 10px 15px -3px rgba(244, 63, 94, 0.3);
}

.btn-secondary {
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
}

.btn-primary:hover, .btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 20px -3px rgba(244, 63, 94, 0.4);
}

.rating-widget {
  display: flex;
  align-items: center;
  margin-top: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stars {
  color: #fbbf24;
  margin-right: 10px;
}

.rating-number {
  font-size: 1.25rem;
  font-weight: 700;
  margin-right: 10px;
}

.reviews-count {
  color: #9ca3af;
  font-size: 0.875rem;
}

.game-image-wrapper {
  position: relative;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 600px;
}

.game-device {
  position: relative;
  z-index: 2;
}

.phone-frame {
  width: 300px;
  height: 600px;
  background: #111;
  border-radius: 40px;
  padding: 10px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
  border: 8px solid #222;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 25px;
  background: #111;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  z-index: 5;
}

.screen-content {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

.gameplay-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gameplay-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, 0.2) 100%);
  pointer-events: none;
}

.floating-badge {
  position: absolute;
  background: rgba(244, 63, 94, 0.9);
  color: white;
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 3;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
  animation: float 3s ease-in-out infinite;
}

.badge-top-right {
  top: 15%;
  right: -30px;
  animation-delay: 0.5s;
}

.badge-bottom-left {
  bottom: 20%;
  left: -30px;
  background: rgba(168, 85, 247, 0.9);
  animation-delay: 1s;
}

.experience-tag {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  color: white;
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 500;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.tag-sorting {
  top: 35%;
  right: -20px;
}

.tag-puzzle {
  bottom: 38%;
  left: -20px;
}

.tag-relaxing {
  bottom: 25%;
  right: 10px;
}

.animated-particle {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  filter: blur(3px);
  opacity: 0.6;
}

.particle-1 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.5) 0%, rgba(236, 72, 153, 0) 70%);
  top: 15%;
  right: 15%;
  animation: moveParticle1 15s ease-in-out infinite;
}

.particle-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, rgba(168, 85, 247, 0) 70%);
  bottom: 10%;
  left: 5%;
  animation: moveParticle2 20s ease-in-out infinite;
}

.particle-3 {
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, rgba(244, 63, 94, 0.4) 0%, rgba(244, 63, 94, 0) 70%);
  top: 40%;
  left: 20%;
  animation: moveParticle3 18s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-10px);
  }
}

@keyframes moveParticle1 {
  0%, 100% {
      transform: translate(0, 0);
  }
  25% {
      transform: translate(30px, 20px);
  }
  50% {
      transform: translate(-20px, 40px);
  }
  75% {
      transform: translate(-40px, 10px);
  }
}

@keyframes moveParticle2 {
  0%, 100% {
      transform: translate(0, 0);
  }
  25% {
      transform: translate(-40px, -30px);
  }
  50% {
      transform: translate(20px, -50px);
  }
  75% {
      transform: translate(50px, -20px);
  }
}

@keyframes moveParticle3 {
  0%, 100% {
      transform: translate(0, 0);
  }
  25% {
      transform: translate(50px, 30px);
  }
  50% {
      transform: translate(-10px, 60px);
  }
  75% {
      transform: translate(-60px, 20px);
  }
}

@media (max-width: 992px) {
  .game-overview-section {
      padding: 70px 0;
  }

  .section-title {
      font-size: 2.5rem;
  }

  .game-image-wrapper {
      min-height: 500px;
      margin-bottom: 50px;
  }

  .phone-frame {
      width: 250px;
      height: 500px;
  }

  .floating-badge, .experience-tag {
      position: static;
      display: inline-block;
      margin: 0 5px 10px 0;
      animation: none;
  }

  .animated-particle {
      display: none;
  }
}

@media (max-width: 768px) {
  .section-title {
      font-size: 2rem;
  }

  .lead-paragraph {
      font-size: 1.1rem;
  }

  .feature-icon {
      width: 50px;
      height: 50px;
      font-size: 1.2rem;
  }

  .feature-content h4 {
      font-size: 1.1rem;
  }

  .cta-buttons {
      flex-direction: column;
  }

  .btn-primary, .btn-secondary {
      width: 100%;
      text-align: center;
  }
}

@media (max-width: 992px) {
  .floating-badge,
  .experience-tag {
      display: none !important; 
  }
}

.how-to-play {
  background-color: #374151;
  padding: 80px 0;
  color: #fff;
}

.how-box {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  padding: 40px 30px;
  border-radius: 15px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.how-box h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #bd3ff4;
}

.play-now-btn {
  display: inline-block;
  background: linear-gradient(90deg, #bd3ff4 0%, #8917f4 100%);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  margin-top: 20px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 8px 15px rgba(244, 63, 94, 0.3);
}

.play-now-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 20px rgba(244, 63, 94, 0.4);
  color: white;
}

.step-box {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.step-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.step-box i {
  font-size: 40px;
  color: #a855f7;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #a855f7 0%, #8917f4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.step-box h4 {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #bd3ff4;
}

.step-box p {
  font-size: 15px;
  line-height: 1.6;
  color: #d1d5db;
}

@media (max-width: 992px) {
  .how-to-play {
      padding: 60px 0;
  }
  
  .how-box, .step-box {
      margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .how-box h3 {
      font-size: 24px;
  }
  
  .step-box {
      padding: 25px 15px;
  }
  
  .step-box i {
      font-size: 35px;
  }
  
  .step-box h4 {
      font-size: 20px;
  }
}

.gallery-section {
  background-color: #374151;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.gallery-item {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
  transition: all 0.4s ease;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.gallery-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.gallery-image-wrapper img {
  transition: transform 0.8s ease;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.gallery-item:hover .gallery-image-wrapper img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info {
  width: 100%;
  transform: translateY(20px);
  transition: all 0.4s ease 0.1s;
}

.gallery-item:hover .gallery-info {
  transform: translateY(0);
}

.gallery-info h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #bd3ff4;
}

.gallery-info p {
  font-size: 14px;
  color: #d1d5db;
  margin-bottom: 15px;
}

.zoom-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(90deg, #bd3ff4 0%, #8917f4 100%);
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  transform: scale(0);
  transition: transform 0.4s ease 0.2s;
}

.gallery-item:hover .zoom-icon {
  transform: scale(1);
}

@media (max-width: 992px) {
  .gallery-section {
      padding: 70px 0;
  }
  
  .gallery-info h4 {
      font-size: 18px;
  }
  
  .gallery-info p {
      font-size: 13px;
  }
  
  .animated-particle {
      display: none;
  }
}

@media (max-width: 768px) {
  .section-title {
      font-size: 2rem;
  }
  
  .lead-paragraph {
      font-size: 1.1rem;
  }
  
  .gallery-item {
      margin-bottom: 20px;
  }
  
  
  
  .gallery-info {
      transform: translateY(0);
  }
  
  .zoom-icon {
      transform: scale(1);
  }
}

.testimonials-section {
  background-color: #374151;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.testimonial-wrap {
  padding: 30px;
}

.testimonial-item {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px;
  position: relative;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid #bd3ff4;
  margin: 0 auto 15px auto;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(244, 63, 94, 0.4);
}

.testimonial-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 5px 0;
  color: #bd3ff4;
}

.testimonial-item .stars {
  margin-bottom: 15px;
  color: #f59e0b;
}

.testimonial-item p {
  font-style: italic;
  line-height: 1.6;
  color: #d1d5db;
  font-size: 15px;
  position: relative;
}

.quote-icon-left,
.quote-icon-right {
  color: rgba(244, 63, 94, 0.3);
  font-size: 20px;
  margin: 0 5px;
}

.swiper-pagination {
  margin-top: 40px;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: linear-gradient(to right, #bd3ff4, #8917f4);
  width: 25px;
  border-radius: 6px;
}

@media (max-width: 992px) {
  .testimonials-section {
      padding: 70px 0;
  }
  
  .testimonial-wrap {
      padding: 15px;
  }
  
  .testimonial-item {
      padding: 20px;
  }
  
  .testimonial-img {
      width: 60px;
      height: 60px;
  }
  
  .testimonial-item h3 {
      font-size: 18px;
  }
  
  .animated-particle {
      display: none;
  }
}

@media (max-width: 768px) {
  .section-title {
      font-size: 2rem;
  }
  
  .lead-paragraph {
      font-size: 1.1rem;
  }
  
  .testimonial-item p {
      font-size: 14px;
  }
  
  .quote-icon-left,
  .quote-icon-right {
      font-size: 18px;
  }
}

.contact-section {
  background-color: #374151;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.contact-info-card {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  border-radius: 15px;
  margin-bottom: 25px;
  padding: 25px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.icon-box {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #bd3ff4 0%, #8917f4 100%);
  border-radius: 50%;
  margin-right: 20px;
  flex-shrink: 0;
}

.icon-box i {
  font-size: 22px;
  color: #fff;
}

.contact-details h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #bd3ff4;
}

.contact-details p {
  margin: 0;
  color: #d1d5db;
  font-size: 15px;
  line-height: 1.5;
}

.social-links {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  border-radius: 15px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.social-links:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.social-links h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #bd3ff4;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #bd3ff4 0%, #8917f4 100%);
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

.contact-form-card {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  border-radius: 15px;
  padding: 35px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 12px 15px;
  color: #fff;
  transition: all 0.3s ease;
}

.form-control:focus {
  background-color: rgba(255, 255, 255, 0.07);
  border-color: rgba(244, 63, 94, 0.5);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.25);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

textarea.form-control {
  resize: none;
  min-height: 150px;
}

.contact-submit-btn {
  background: linear-gradient(90deg, #bd3ff4 0%, #8917f4 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(244, 63, 94, 0.4);
}

.contact-submit-btn span {
  margin-right: 10px;
}

.contact-submit-btn i {
  transition: transform 0.3s ease;
}

.contact-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(244, 63, 94, 0.6);
}

.contact-submit-btn:hover i {
  transform: translateX(3px);
}

.contact-submit-btn:active {
  transform: translateY(1px);
}

@media (max-width: 992px) {
  .contact-section {
      padding: 70px 0;
  }
  
  .contact-info-card,
  .social-links,
  .contact-form-card {
      margin-bottom: 20px;
      padding: 20px;
  }
  
  .icon-box {
      width: 40px;
      height: 40px;
      margin-right: 15px;
  }
  
  .icon-box i {
      font-size: 18px;
  }
  
  .contact-details h3 {
      font-size: 16px;
  }
  
  .contact-details p {
      font-size: 14px;
  }
  
  .animated-particle {
      display: none;
  }
}

@media (max-width: 768px) {
  .section-title {
      font-size: 2rem;
  }
  
  .lead-paragraph {
      font-size: 1.1rem;
  }
  
  .contact-info-card {
      padding: 15px;
  }
  
  .social-links {
      padding: 15px;
  }
  
  .contact-form-card {
      padding: 20px 15px;
  }
  
  .form-control {
      padding: 10px 12px;
      font-size: 14px;
  }
  
  .contact-submit-btn {
      padding: 10px 25px;
      font-size: 15px;
      width: 100%;
  }
}

.faq-section {
  background-color: #374151;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.faq-item {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  border-radius: 15px;
  margin-bottom: 25px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: flex-start;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.faq-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, #bd3ff4 0%, #8917f4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.7;
  margin-right: 20px;
  line-height: 1;
  flex-shrink: 0;
}

.faq-content {
  flex-grow: 1;
}

.faq-question {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.faq-answer {
  color: #d1d5db;
  font-size: 1rem;
  line-height: 1.6;
}

.faq-answer p {
  margin-bottom: 10px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-cta {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease;
}

.faq-cta:hover {
  transform: translateY(-5px);
}

.faq-cta h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #bd3ff4 0%, #8917f4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.faq-cta p {
  color: #d1d5db;
  font-size: 1.1rem;
  margin-bottom: 25px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.faq-btn {
  display: inline-block;
  background: linear-gradient(90deg, #bd3ff4 0%, #8917f4 100%);
  color: #fff;
  padding: 12px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(244, 63, 94, 0.4);
}

.faq-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(244, 63, 94, 0.6);
  color: #fff;
}

.faq-btn:active {
  transform: translateY(-1px);
}

@media (max-width: 992px) {
  .faq-section {
      padding: 70px 0;
  }
  
  .faq-item {
      padding: 20px;
      margin-bottom: 20px;
  }
  
  .faq-number {
      font-size: 2rem;
      margin-right: 15px;
  }
  
  .faq-question {
      font-size: 1.2rem;
      margin-bottom: 10px;
  }
  
  .faq-cta {
      padding: 30px;
  }
  
  .faq-cta h3 {
      font-size: 1.6rem;
  }
  
  .faq-cta p {
      font-size: 1rem;
  }
  
  .animated-particle {
      display: none;
  }
}

@media (max-width: 768px) {
  .section-title {
      font-size: 2rem;
  }
  
  .lead-paragraph {
      font-size: 1.1rem;
  }
  
  .faq-item {
      padding: 15px;
      flex-direction: column;
  }
  
  .faq-number {
      font-size: 1.8rem;
      margin-right: 0;
      margin-bottom: 10px;
  }
  
  .faq-question {
      font-size: 1.1rem;
  }
  
  .faq-answer {
      font-size: 0.95rem;
  }
  
  .faq-cta {
      padding: 25px 15px;
  }
  
  .faq-cta h3 {
      font-size: 1.4rem;
  }
  
  .faq-btn {
      padding: 10px 25px;
      font-size: 1rem;
      width: 100%;
  }
}

.blog-section {
    background-color: #374151;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.blog-item {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
}

.blog-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.blog-image-wrapper {
    position: relative;
    overflow: hidden;
}

.blog-image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.blog-item:hover .blog-image {
    transform: scale(1.1);
}

.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
}

.blog-content {
    padding: 20px;
}

.blog-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #bd3ff4;
}

.blog-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #d1d5db;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .blog-section {
        padding: 70px 0;
    }

    .blog-item {
        margin-bottom: 20px;
    }

    .blog-content h4 {
        font-size: 18px;
    }

    .blog-content p {
        font-size: 14px;
    }

    .animated-particle {
        display: none;
    }
}

@media (max-width: 768px) {
    .blog-content h4 {
        font-size: 16px;
    }

    .blog-content p {
        font-size: 13px;
    }

    .blog-content {
        padding: 15px;
    }
}

.cta-section {
    background: linear-gradient(135deg, #111827 0%, #1f293773 100%), url('../img/cta-bg.jpg') no-repeat center center/cover;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

@media (max-width: 992px) {
    .cta-section {
        padding: 70px 0;
    }

    .animated-particle {
        display: none;
    }
}

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

    .section-title {
        font-size: 2rem;
    }

    .lead-paragraph {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

.img-responsive-rounded {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    display: block;
    margin: 0 auto;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.img-responsive-rounded:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .img-responsive-rounded {
        border-radius: 15px;
        max-width: 100%;
    }
}

.blog-post-section {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.blog-post-section .container {
    position: relative;
    z-index: 2;
}

.blog-post-image-wrapper {
    position: relative;
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
}

@media (max-width: 992px) {
    .blog-post-section {
        padding: 60px 0;
    }

    .animated-particle {
        display: none;
    }
}

@media (max-width: 768px) {
    .blog-post-section {
        padding: 40px 0;
    }

    .blog-post-image-wrapper {
        margin-bottom: 20px;
    }
}

.cookie-banner {
                position: fixed;
                bottom: 0;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
                color: #fff;
                padding: 20px;
                box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
                border-top: 1px solid rgba(255,255,255,0.1);
                z-index: 9999;
                font-size: 14px;
                line-height: 1.5;
            }
            .cookie-banner .cookie-content {
                max-width: 1200px;
                margin: 0 auto;
                display: flex;
                align-items: center;
                gap: 20px;
                flex-wrap: wrap;
            }
            .cookie-banner .cookie-text {
                flex: 1;
                min-width: 300px;
            }
            .cookie-banner .cookie-links {
                display: flex;
                gap: 10px;
                flex-wrap: wrap;
            }
            .cookie-banner .cookie-links a {
                color: #bd3ff4;
                text-decoration: none;
                font-weight: 500;
            }
            .cookie-banner .cookie-links a:hover {
                text-decoration: underline;
            }
            .cookie-banner .cookie-btn {
                background: linear-gradient(90deg, #bd3ff4 0%, #8917f4 100%);
                color: white;
                border: none;
                padding: 10px 20px;
                border-radius: 25px;
                font-weight: 600;
                cursor: pointer;
                transition: all 0.3s ease;
                box-shadow: 0 4px 15px rgba(189,63,244,0.4);
            }
            .cookie-banner .cookie-btn:hover {
                transform: translateY(-2px);
                box-shadow: 0 6px 20px rgba(189,63,244,0.5);
            }
            @media (max-width: 768px) {
                .cookie-banner {
                    padding: 15px;
                    font-size: 13px;
                }
                .cookie-banner .cookie-content {
                    flex-direction: column;
                    gap: 15px;
                    text-align: center;
                }
                .cookie-banner .cookie-links {
                    justify-content: center;
                }
            }
            .cookie-banner.hidden {
                display: none;
            }

            

.responsible-gaming-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
    padding: 20px 0;
}

.rg-logo {
    height: 65px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(0.9);
    opacity: 0.85;
}

.rg-logo:hover {
    filter: brightness(1.1);
    opacity: 1;
    transform: translateY(-3px);
}

.helpline-age-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.helpline-badge {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    padding: 12px 20px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

.helpline-badge i {
    font-size: 16px;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.age-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid rgba(255, 0, 0, 0.8);
    padding: 5px;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
}

.footer-disclaimer {
    padding: 20px;
    background: rgba(181, 55, 242, 0.08);
    border: 1px solid rgba(181, 55, 242, 0.2);
    border-radius: 12px;
    margin-top: 30px;
}

.footer-disclaimer p {
    color: white;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.copyright {
    padding-top: 20px;
    border-top: 1px solid rgba(181, 55, 242, 0.15);
}

.copyright p {
    color: var(--text-muted);
    font-size: 13px;
}

@media (max-width: 991px) {
    .responsible-gaming-logos {
        gap: 20px;
    }

    .rg-logo {
        height: 50px;
    }

    .helpline-age-container {
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .responsible-gaming-logos {
        gap: 15px;
    }

    .rg-logo {
        height: 40px;
    }

    .helpline-badge {
        font-size: 12px;
        padding: 10px 14px;
    }

    .age-icon {
        width: 50px;
        height: 50px;
    }

    .footer-disclaimer p {
        font-size: 12px;
    }

    .helpline-age-container {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 575px) {
    .responsible-gaming-logos {
        gap: 10px;
    }

    .rg-logo {
        height: 35px;
    }
}

#top {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

#top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(189, 63, 244, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(137, 23, 244, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

#top .container {
    position: relative;
    z-index: 1;
}

.blog-subtitle {
    color: var(--accent-color);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-family: var(--heading-font);
}

.services-title {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 50px;
    font-family: var(--heading-font);
}

.casino-item {
    background: #252525;
    border: 2px solid rgba(189, 63, 244, 0.2);
    border-radius: 20px;
    padding: 30px 25px;
    margin-bottom: 30px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.casino-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 15px 45px rgba(189, 63, 244, 0.3);
    transform: translateY(-5px);
}

.casino-badge {
    position: absolute;
    top: -2px;
    left: 25px;
    padding: 10px 22px;
    border-radius: 0 0 12px 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #ffffff;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(189, 63, 244, 0.4);
}

.casino-badge i {
    margin-right: 6px;
    font-size: 12px;
    color: #ffffff;
}

.editor-choice {
    background: linear-gradient(135deg, #bd3ff4 0%, #8917f4 100%);
}

.most-popular {
    background: linear-gradient(135deg, #a855f7 0%, #8917f4 100%);
}

.hot-trending {
    background: linear-gradient(135deg, #bd3ff4 0%, #6a0dad 100%);
}

.fast-payouts {
    background: linear-gradient(135deg, #8917f4 0%, #bd3ff4 100%);
}

.casino-rank {
    position: absolute;
    top: 50%;
    left: -12px;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #bd3ff4 0%, #8917f4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(189, 63, 244, 0.6);
    border: 3px solid #060606;
    z-index: 10;
}

.casino-logo-col {
    position: relative;
    margin-bottom: 20px;
    padding-left: 30px;
    text-align: center;
}

.casino-logo {
    max-width: 180px;
    width: 100%;
    height: auto;
    display: inline-block;
    transition: all 0.3s ease;
    border-radius: 12px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(189, 63, 244, 0.1);
}

.casino-item:hover .casino-logo {
    border-color: var(--accent-color);
    background: rgba(189, 63, 244, 0.05);
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(189, 63, 244, 0.2);
}

.casino-offer-col {
    margin-bottom: 20px;
    padding-left: 20px;
}

.casino-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--accent-color);
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
    font-family: var(--nav-font);
}

.casino-offer-title {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.2;
    font-family: var(--heading-font);
}

.casino-offer-desc {
    font-size: 18px;
    font-weight: 600;
    color: color-mix(in srgb, #ffffff, transparent 30%);
    margin-bottom: 10px;
    line-height: 1.4;
    font-family: var(--default-font);
}

.casino-terms {
    font-size: 11px;
    color: color-mix(in srgb, #ffffff, transparent 50%);
    line-height: 1.5;
    font-family: var(--default-font);
}

.casino-terms a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.casino-terms a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.casino-rating-col {
    margin-bottom: 20px;
    text-align: center;
}

.casino-stars {
    margin-bottom: 8px;
}

.casino-stars i {
    color: #fbbf24;
    font-size: 18px;
    margin: 0 2px;
    text-shadow: 0 0 8px rgba(251, 191, 36, 0.6);
}

.casino-rating-count {
    font-size: 12px;
    color: color-mix(in srgb, #ffffff, transparent 40%);
    font-weight: 500;
    font-family: var(--default-font);
}

.casino-score-col {
    margin-bottom: 20px;
    text-align: center;
}

.casino-score {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    text-shadow: 0 0 20px rgba(189, 63, 244, 0.5);
    margin-bottom: 5px;
    display: block;
    font-family: var(--heading-font);
}

.casino-score-label {
    font-size: 12px;
    font-weight: 600;
    color: color-mix(in srgb, #ffffff, transparent 40%);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    font-family: var(--nav-font);
}

.casino-cta-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
}

.btn-casino-primary {
    background: linear-gradient(135deg, #bd3ff4 0%, #8917f4 100%);
    color: #ffffff;
    padding: 16px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(189, 63, 244, 0.4);
    border: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    font-family: var(--nav-font);
}

.btn-casino-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-casino-primary:hover::before {
    left: 100%;
}

.btn-casino-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(189, 63, 244, 0.6);
    color: #ffffff;
    text-decoration: none;
    background: linear-gradient(135deg, #8917f4 0%, #bd3ff4 100%);
}

.casino-visit-link {
    font-size: 13px;
    color: color-mix(in srgb, #ffffff, transparent 40%);
    text-decoration: underline;
    transition: all 0.3s ease;
    font-weight: 500;
    font-family: var(--default-font);
}

.casino-visit-link:hover {
    color: var(--accent-color);
    text-decoration: none;
}

@media (max-width: 991px) {
    .casino-item {
        padding: 25px 20px;
    }

    .casino-rank {
        width: 45px;
        height: 45px;
        font-size: 20px;
        left: -10px;
    }

    .casino-logo {
        max-width: 160px;
    }

    .casino-offer-title {
        font-size: 24px;
    }

    .casino-offer-desc {
        font-size: 16px;
    }

    .casino-score {
        font-size: 42px;
    }
}

@media (max-width: 767px) {
    #top {
        padding: 60px 0;
    }

    .casino-item {
        padding: 30px 15px;
        margin-bottom: 25px;
    }

    .casino-badge {
        left: 15px;
        padding: 8px 16px;
        font-size: 10px;
    }

    .casino-rank {
        position: static;
        transform: none;
        margin: 0 auto 15px;
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .casino-logo-col {
        padding-left: 15px;
        padding-top: 10px;
    }

    .casino-logo {
        max-width: 140px;
    }

    .casino-offer-col {
        padding-left: 15px;
        text-align: center;
    }

    .casino-offer-title {
        font-size: 22px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .casino-offer-desc {
        font-size: 15px;
    }

    .casino-terms {
        font-size: 10px;
    }

    .casino-stars i {
        font-size: 16px;
    }

    .casino-score {
        font-size: 38px;
    }

    .casino-rating-col,
    .casino-score-col {
        margin-bottom: 18px;
    }

    .btn-casino-primary {
        padding: 14px 35px;
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .casino-item {
        padding: 25px 12px;
        margin-bottom: 20px;
    }

    .casino-rank {
        width: 55px;
        height: 55px;
        font-size: 16px;
    }

    .casino-logo {
        max-width: 130px;
    }

    .casino-offer-title {
        font-size: 20px;
    }

    .casino-offer-desc {
        font-size: 14px;
    }

    .casino-score {
        font-size: 34px;
    }

    .btn-casino-primary {
        padding: 12px 30px;
        font-size: 14px;
        width: 90%;
    }
}

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

.footer-links h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: var(--heading-font);
    position: relative;
}

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

.footer-links li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer-links li:first-child {
    padding-top: 0;
}

.footer-links li::before {
    content: '•';
    color: var(--accent-color);
    font-size: 18px;
    margin-right: 12px;
    font-weight: bold;
}

.footer-links li a {
    color: color-mix(in srgb, #ffffff, transparent 30%);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.3s ease;
    display: inline-block;
    font-family: var(--default-font);
}

.footer-links li a:hover {
    color: var(--accent-color);
    text-decoration: none;
    padding-left: 5px;
}

.footer .btn.btn-link,
.footer .btn.btn-link li,
a.btn.btn-link {
    text-decoration: none !important;
    list-style: none;
}

.footer .btn.btn-link:hover {
    text-decoration: none !important;
    color: var(--accent-color);
}

.footer-links li a[href^="tel:"] {
    text-decoration: none !important;
}

.footer-links li a[href^="tel:"]:hover {
    text-decoration: none !important;
    color: var(--accent-color);
}

@media (max-width: 991px) {
    .footer-links {
        margin-bottom: 30px;
    }

    .footer-links h4 {
        font-size: 17px;
    }

    .footer-links li a {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .footer-links {
        margin-bottom: 30px;
        text-align: center;
    }

    .footer-links h4 {
        text-align: center;
        font-size: 16px;
    }

    .footer-links li {
        justify-content: center;
        padding: 8px 0;
    }

    .footer-links li a {
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    .footer-links h4 {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .footer-links li {
        padding: 7px 0;
    }

    .footer-links li a {
        font-size: 12px;
    }
}