/*
Theme Name: 88winmy
Author: the WordPress team
Author URI: https://wordpress.org
Description: New Game Theme
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
    "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #0f1419;
  color: #e8e8e8;
}
.pointer {
  cursor: pointer;
}
img {
  max-width: 100%;
}
ul,
li {
  list-style: none;
}
a {
  text-decoration: none;
}
.mtb-30 {
  margin: 30px auto;
}
.mtb-50 {
  margin: 50px auto;
}
h1,
h2,
h3,
h5,
h6 {
  margin-bottom: 5px;
}
.h1 {
  font-size: 36px;
  font-weight: bold;
}
.h2 {
  font-size: 30px;
  font-weight: bold;
}
.h3 {
  font-size: 24px;
  font-weight: bold;
}
.h4 {
  font-size: 16px;
  font-weight: bold;
}
.hide {
  display: none;
}
header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.logo-bar {
  background: #1a1f2e;
  border-bottom: 3px solid #d4af37;
  padding: 12px 0;
}
.logo-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu-bar {
  background: linear-gradient(180deg, #1a1f2e 0%, #242b3c 100%);
  padding: 8px 30px;
  border-top: 2px solid rgba(212, 175, 55, 0.25);
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(212, 175, 55, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: visible;
  width: 100%;
}
.menu-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.3),
    transparent
  );
  z-index: 1;
}
.header-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  z-index: 2;
  padding: 0;
  max-width: 1600px;
  margin: 0 auto;
}
.header-menu ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  gap: 8px;
}
.header-menu ul > li {
  position: relative;
  overflow: visible;
}
.ponter{cursor:pointer;}

/* Dropdown arrow indicator */
.header-menu ul > li:has(.sub-menu) > a::after {
  content: " ▾";
  position: static;
  width: auto;
  height: auto;
  background: none;
  box-shadow: none;
  transition: none;
  font-size: 11px;
  color: #d4af37;
  display: inline;
  margin-left: 4px;
}
.header-menu ul > li:has(.sub-menu):hover > a::after {
  width: auto;
}

/* Sub-menu dropdown */
.header-menu ul .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: linear-gradient(135deg, #1a1f2e 0%, #242b3c 100%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 0 0 10px 10px;
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(212, 175, 55, 0.1);
  z-index: 9999;
  padding: 8px 0;
  flex-direction: column;
  gap: 0;
  flex-wrap: nowrap;
  width: auto;
  justify-content: flex-start;
  align-items: stretch;
  animation: dropdownFade 0.2s ease-out;
}
@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.header-menu ul > li:hover > .sub-menu {
  display: flex;
}
.header-menu ul .sub-menu li {
  position: relative;
  overflow: visible;
  width: 100%;
}
.header-menu ul .sub-menu li a {
  display: block;
  padding: 12px 22px;
  color: #e8e8e8;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: 0;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
  background: transparent;
}
.header-menu ul .sub-menu li:last-child a {
  border-bottom: none;
}
.header-menu ul .sub-menu li a::before,
.header-menu ul .sub-menu li a::after {
  display: none;
}
.header-menu ul .sub-menu li a:hover {
  background: rgba(212, 175, 55, 0.12);
  color: #e8c547;
  transform: none;
  padding-left: 28px;
  border-left: 3px solid #d4af37;
}

/* 3rd level sub-menus */
.header-menu ul .sub-menu .sub-menu {
  top: 0;
  left: 100%;
  border-radius: 10px;
}
.header-menu ul > li a {
  padding: 12px 18px;
  display: inline-block;
  color: #e8e8e8;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  background: linear-gradient(90deg, transparent, transparent);
  border-radius: 6px;
  white-space: nowrap;
}
.header-menu ul > li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(212, 175, 55, 0.08);
  border-radius: 8px;
  transition: left 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: -1;
}
.header-menu ul > li a::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #d4af37 0%, #e8c547 50%, #d4af37 100%);
  transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}
.header-menu ul > li a:hover {
  color: #e8c547;
}

/* Only lift items that don't have submenus */
.header-menu ul > li:not(:has(.sub-menu)) a:hover {
  transform: translateY(-2px);
}
.header-menu ul > li a:hover::before {
  left: 0;
}
.header-menu ul > li a:hover::after {
  width: 100%;
}
.w-100 {
  width: 100%;
}
.container {
  max-width: 1600px;
  width: 100%;
  margin: auto;
  padding: 0 30px;
}
.color-secondary {
  color: #d4af37;
}

.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

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

.text-white {
  color: #fff;
}
.text-center {
  text-align: center;
}

.direction-column {
  flex-direction: column;
}
.g-5 {
  gap: 5px;
}
.g-10 {
  gap: 10px;
}
.g-20 {
  gap: 20px;
}
.g-30 {
  gap: 30px;
}
.m-auto {
  margin: auto !important;
}
.mb-10 {
  margin-bottom: 10px !important;
}
.mt-40 {
  margin-top: 40px !important;
}
.mt-30 {
  margin-top: 30px !important;
}
.mb-30 {
  margin-bottom: 30px !important;
}

.row {
  display: flex;
  flex: 1 1 auto;
  margin: 0 -12px;
}
.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}
.col,
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-auto {
  width: 100%;
  padding: 12px;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

#logo-block {
  display: flex;
  align-items: center;
  height: 50px;
}
#logo-block a {
  display: inline-block;
}
#logo-block img {
  width: auto;
  height: 100%;
  max-height: 70px;
  object-fit: contain;
}

.col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.flex-row {
  display: flex;
  gap: 30px;
}
.flex-row > div {
  flex: 1 1 0;
}

.flex-dir-col {
  flex-direction: column;
}

.no-gutter {
  margin: 0;
}

.align-center {
  align-items: center;
}

.align-start {
  align-items: flex-start;
}

.justify-start {
  justify-content: flex-start;
}
.justify-center {
  justify-content: center;
}
.justify-end {
  justify-content: flex-end;
}

.h4 {
  font-size: 20px;
  font-weight: bold;
  color: #d4af37;
}

.header-menu {
  width: 100%;
}
.header-menu ul a,
.footer-menu a {
  color: #d9d9d9;
  transition: 0.3s all;
}
.header-menu li:hover {
  cursor: pointer;
}
.footer-menu a:hover {
  color: #d4af37;
}

.foot-cols {
  position: relative;
}
.foot-cols:first-child:before {
  display: none;
}
.foot-col-content {
  margin-top: 10px;
}

.logo-bar .container {
  padding: 0 10px;
}

#slider-area {
  background: #eee;
}

.hero-section img {
  border-radius: 20px;
  width: 100%;
}

.menu-bar ul {
  display: flex;
  gap: 5px;
}

.menu-bar ul li a {
  color: #d9d9d9;
  border-radius: 10px;
  padding: 10px;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  background: #242b3c;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  gap: 8px;
  display: block;
}
.menu-bar ul li a:hover {
}

.three-boxes {
  display: flex;
  gap: 20px;
}

.three-boxes > div {
  background: linear-gradient(135deg, #1a1f2e 0%, #242b3c 100%);
  box-shadow: 0px 10px 30px 0px rgba(212, 175, 55, 0.15);
  padding: 30px 20px;
  text-align: center;
  border-radius: 14px;
  border: 2px solid #d4af37;
  color: #e8e8e8;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.three-boxes > div::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}
.three-boxes > div:hover::before {
  left: 100%;
}
.three-boxes > div:hover {
  transform: translateY(-8px);
  box-shadow: 0px 16px 48px 0px rgba(212, 175, 55, 0.3);
}

footer {
  background:
    linear-gradient(
      135deg,
      rgba(15, 20, 25, 0.95) 0%,
      rgba(26, 31, 46, 0.95) 100%
    );
  padding: 40px 0px;
  color: #e8e8e8;
  border-top: 3px solid #d4af37;
  position: relative;
}
.header-btns {
  display: flex;
  gap: 12px;
  align-items: center;
}
.header-btns span {
  padding: 10px 22px;
  border-radius: 22px;
  font-size: 15px;
  min-width: 110px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  font-weight: 700;
  background: linear-gradient(135deg, #d4af37 0%, #e8c547 100%);
  color: #1a1f2e;
  box-shadow: 0 6px 15px rgba(212, 175, 55, 0.25);
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.header-btns span:hover {
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.5);
  transform: translateY(-2px);
}

.header-btns a {
  padding: 10px 22px;
  border-radius: 22px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  background: linear-gradient(135deg, #d4af37 0%, #e8c547 100%);
  color: #1a1f2e;
  border: 2px solid #d4af37;
  box-shadow: 0 6px 15px rgba(212, 175, 55, 0.25);
  letter-spacing: 0.4px;
  display: inline-block;
  text-transform: uppercase;
  white-space: nowrap;
}
.header-btns a:hover {
  background: linear-gradient(135deg, #e8c547 0%, #f0d547 100%);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.5);
  transform: translateY(-3px);
  border-color: #f0d547;
}

.btn-primary {
  background: linear-gradient(135deg, #d4af37 0%, #e8c547 100%);
  color: #1a1f2e;
  border: 2px solid #d4af37;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  padding: 14px 32px !important;
  border-radius: 25px !important;
  font-size: 15px;
  letter-spacing: 0.6px;
  display: inline-block;
  text-transform: uppercase;
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #e8c547 0%, #f0d547 100%);
  box-shadow: 0 14px 40px rgba(212, 175, 55, 0.7);
  transform: translateY(-5px) scale(1.06);
  border-color: #f0d547;
}
.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}
.btn-primary:active {
  transform: translateY(-2px) scale(1.02);
}
.btn-secondary {
  background: linear-gradient(135deg, #d4af37 0%, #e8c547 100%);
  color: #1a1f2e;
  padding: 12px 28px;
  border-radius: 25px;
  border: 2px solid #d4af37;
  display: inline-block;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}
.btn-secondary:hover {
  background: linear-gradient(135deg, #e8c547 0%, #f0d547 100%);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
  transform: translateY(-3px) scale(1.05);
  border-color: #f0d547;
}

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

/* Menu bar - base desktop styles */
.menu-bar {
  display: flex;
  background: linear-gradient(180deg, #1a1f2e 0%, #242b3c 100%);
  border-top: 2px solid rgba(212, 175, 55, 0.25);
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(212, 175, 55, 0.1);
  backdrop-filter: blur(10px);
  padding: 8px 30px;
  position: relative;
  overflow: visible;
  width: 100%;
  z-index: 100;
}

.header-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  z-index: 2;
  max-width: 1600px;
  margin: 0 auto;
}

.header-menu ul {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Mobile menu visibility toggle */
.menu-bar.shown {
  display: block !important;
}

.hamburger.active {
  color: #e8c547;
}

.download-heading {
  font-size: 35px;
}
.download-heading span {
  color: #e8c547;
}

.page-content {
  padding: 12px;
  margin: auto;
}
.page-content p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 25px;
}
.page-content ul {
  padding-left: 15px;
}
.page-content li {
  list-style: disc;
  margin-bottom: 5px;
}
.page-content a {
  text-decoration: underline;
  color: #d4af37;
}

.page-content table {
  border-color: #eee;
  border-collapse: collapse;
  margin: auto;
  margin-bottom: 20px;
}
.page-content table td,
.page-content table th {
  padding: 10px;
}

.copy-right {
  color: #d4af37;
  font-size: 12px;
}
.img-content {
  display: block;
  margin: 30px auto 10px auto;
}

.footer-menu a:hover {
  text-decoration: underline;
}
.foot-cols img {
  max-height: 20px;
}

.show-more-btn {
  background: linear-gradient(135deg, #d4af37 0%, #e8c547 100%);
  padding: 12px 28px !important;
  border-radius: 25px !important;
  font-weight: 700;
  cursor: pointer;
  color: #1a1f2e;
  margin-bottom: 12px;
  border: 0;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.show-more-btn:hover {
  background: linear-gradient(135deg, #e8c547 0%, #f0d547 100%);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
  transform: translateY(-3px) scale(1.05);
}

.hide {
  display: none;
}

.testimonial-item {
  background: linear-gradient(135deg, #1a1f2e 0%, #242b3c 100%);
  border-radius: 14px;
  border: 2px solid #d4af37;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(10px);
}
.testimonial-item:hover {
  transform: translateY(-8px);
  box-shadow: 0px 16px 40px rgba(212, 175, 55, 0.2);
}
.testimonial-head {
  font-size: 20px;
  font-weight: bold;
  color: #d4af37;
  margin-bottom: 5px;
  padding: 10px;
}
.testimonial-by {
  padding: 10px;
  font-size: 14px;
  font-style: italic;
  color: #e8e8e8;
  background: linear-gradient(135deg, #d4af37 0%, #e8c547 100%);
  border-radius: 10px 10px 0 0;
  display: flex;
  justify-content: space-between;
}
.testimonial-by > div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonial-desc {
  padding: 10px;
  color: #d9d9d9;
}

.hamburger {
  display: none;
}
.faq-item {
  background: linear-gradient(135deg, #1a1f2e 0%, #242b3c 100%);
  border-radius: 12px;
  border: 2px solid #d4af37;
  transition: all 0.4s ease;
}
.faq-item:hover {
  box-shadow: 0px 12px 35px rgba(212, 175, 55, 0.2);
  border-color: #e8c547;
}
.faq-body {
  border-top: 1px solid #d4af37;
  padding: 10px 10px 10px 10px;
  color: #d9d9d9;
}
.faq-toggle {
  background: #d4af37;
  color: #1a1f2e;
  width: 25px;
  height: 25px;
  border-radius: 50px;
  font-size: 25px;
  line-height: 22px;
  text-align: center;
  font-weight: normal;
}
.faq-head {
  cursor: pointer;
  color: #d4af37;
  font-weight: bold;
  padding: 10px;
  border-radius: 8px 8px 0px 0px;
}

.faq-item.active .faq-head {
  background: #d4af37;
  color: #1a1f2e;
}

.faq-item.active .faq-toggle {
  border: 1px solid;
}

.usp-wrapper {
  display: flex;
  margin-top: 50px;
  color: #000;
  flex-wrap: wrap;
  gap: 40px;
}
.uspimg {
  margin-top: -25px;
}
.usp-title {
  font-weight: bold;
  font-size: 22px;
}
.usp-box {
  position: relative;
  max-width: calc(33.33% - 42px);
  display: inline-block;
  background: #e0c7ae;
  margin: 0.5%;
  border-radius: 10px;
  padding: 0px 15px 15px;
}

.seo-wrapper {
  position: relative;
  font-size: 13px;
  max-height: 300px;
  overflow: hidden;
}

.readmore-seo {
  text-align: center;
  margin-top: -40px;
}
.seo-wrapper::after {
  content: "";
  width: 100%;
  height: 30%;
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  pointer-events: none;
  background: linear-gradient(
    rgba(22, 24, 39, 0) 0%,
    rgb(174 174 174) 91%,
    rgb(255 255 255) 100%
  );
}
button.read-more {
  position: relative;
  min-width: 140px;
  height: 44px;
  font-size: 14px;
  background: linear-gradient(135deg, #d4af37 0%, #e8c547 100%);
  color: #1a1f2e;
  border-radius: 25px;
  margin: 12px auto 0 8px;
  padding: 10px 24px;
  cursor: pointer;
  font-weight: 700;
  border: 2px solid #d4af37;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.seo-wrapper.show-all {
  overflow: unset;
  max-height: none;
}
.seo-wrapper.show-all::after {
  display: none;
}

.f_links {
  max-width: 180px;
}

@media (max-width: 767px) {
  .container {
    padding: 0 15px;
  }
  img {
    height: auto;
  }

  .row {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  #logo-block img {
    height: auto;
  }
  #slider-area img {
    min-height: 75px;
  }
  footer .col-2,
  footer .col-5 {
    flex: 0 0 100%;
    max-width: 100%;
    justify-content: center !important;
    text-align: center;
  }
  .flex-row > div {
    flex: unset;
    width: 100%;
    max-width: 100%;
  }
  main .row {
    padding: 10px;
  }
  .foot-cols {
    max-width: max-content;
  }
  .hamburger {
    display: block;
    font-size: 25px;
    color: #d4af37;
  }
  .menu-bar {
  }
  .header-menu ul {
    display: block;
  }
  .logo-bar .col-3 {
    width: 100%;
    flex: 1;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
  }
  #logo-block {
    width: auto;
    display: flex;
    align-items: center;
  }
  #logo-block img {
    max-height: 40px;
  }
  .logo-bar .col-9 {
    width: 80%;
    max-width: 100%;
    flex: 0 0 100%;
    justify-content: center;
    position: absolute;
            padding: 0;
  }
  .header-btns {
    flex-wrap: wrap;
    gap: 8px;
  }
  .header-btns a {
    padding: 8px 14px;
    font-size: 12px;
    min-width: auto;
  }
  .menu-bar {
    display: none;
    position: fixed;
    top: 92px;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, #1a1f2e 0%, #242b3c 100%);
    max-height: calc(100vh - 50px);
    overflow-y: auto;
    z-index: 999;
    animation: slideDown 0.3s ease-out;
    padding: 0;
    margin: 0;
  }
  @keyframes slideDown {
    from {
      transform: translateY(-100%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  .menu-bar.shown {
    display: block !important;
  }
  .header-menu {
    display: flex;
    padding: 0;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
  }
  .header-menu ul {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0;
  }
  .header-menu ul > li {
    width: 100%;
  }
  .header-menu ul > li a {
    width: 100%;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    font-size: 13px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
  }
  .header-menu ul > li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.2), transparent);
    z-index: -1;
    transition: width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .header-menu ul > li a:hover::before {
    width: 100%;
  }
  /* Mobile sub-menu: show as stacked list, not dropdown */
  .header-menu ul .sub-menu {
    display: flex !important;
    position: static !important;
    background: rgba(0, 0, 0, 0.2) !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    animation: none !important;
    min-width: unset !important;
    width: 100% !important;
  }
  .header-menu ul .sub-menu li a {
    padding: 11px 16px 11px 28px !important;
    font-size: 12px !important;
    color: #d9d9d9 !important;
    border-radius: 0 !important;
  }
  .header-menu ul .sub-menu li a:hover {
    padding-left: 34px !important;
    color: #e8c547 !important;
  }
  /* Hide dropdown arrow on mobile sub-menu parents */
  .header-menu ul > li:has(.sub-menu) > a::after {
    display: none;
  }
  .hamburger {
    display: block;
    font-size: 24px;
    color: #d4af37;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px 12px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1001;
    overflow: visible;
  }
  .hamburger::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition:
      width 0.4s ease,
      height 0.4s ease;
    z-index: -1;
  }
  .hamburger:hover {
    color: #e8c547;
    transform: scale(1.15);
  }
  .hamburger:hover::before {
    width: 50px;
    height: 50px;
  }
  .hamburger:active {
    transform: scale(1.08);
  }
  .hero-section {
    min-height: 200px;
  }
  .three-boxes {
    flex-direction: column;
  }
  .content-area .col-8 {
    max-width: 100%;
  }
  .main-wrapper {
    margin-top: 20px;
  }
  .main-content {
    margin-left: 0;
    width: 100%;
  }
  .usp-box {
    max-width: 100%;
  }
  .foot-cols:first-child:before {
    display: block !important;
  }
  .f_links {
    max-width: 100%;
  }
  .brand-features li::before {
    font-size: 12px;
  }
  .slide-content {
    padding: 10px !important;
  }
  .slide-title {
    font-size: 16px !important;
  }
  p.slide-description {
    font-size: 12px !important;
    line-height: 16px !important;
  }
  .slide-content .btn-primary {
    padding: 3px 6px !important;
    font-size: 12px !important;
  }
}

/* Promotions Section */
.promo-section {
  padding: 30px 0;
  background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 100%);
}

.promo-section .download-heading {
  margin-bottom: 40px;
}

.promo-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.promo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.promo-item {
  background: linear-gradient(135deg, #1a1f2e 0%, #242b3c 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.promo-item:hover {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15);
  transform: translateY(-3px);
}

.promo-image {
  overflow: hidden;
  height: 230px;
}

.promo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.promo-item:hover .promo-image img {
  transform: scale(1.05);
}

.promo-content {
  padding: 20px;
  text-align: center;
}

.promo-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 10px;
  line-height: 1.3;
}

.promo-content p {
  color: #d9d9d9;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.promo-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.promo-btns .btn-secondary,
.promo-btns .btn-primary {
  padding: 14px 18px;
  font-size: 12px;
}

@media (max-width: 768px) {
  .promo-row {
    grid-template-columns: 1fr;
  }
  .promo-image {
    height: 150px;
  }
  .brand-card::before{
    display: none;
  }
}

/* Mission & Brands Section */
.mission-section {
  padding: 30px 0 50px;
  background:
    linear-gradient(
      135deg,
      rgba(15, 20, 25, 0.95) 0%,
      rgba(26, 31, 46, 0.95) 100%
    );
  position: relative;
  overflow: hidden;
}
.mission-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(212, 175, 55, 0.03) 50%,
    transparent 100%
  );
  pointer-events: none;
}

.mission-header {
  text-align: center;
  margin-bottom: 50px;
}

.mission-header h1 {
  font-size: 40px;
  color: #d4af37;
  margin-bottom: 25px;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
  letter-spacing: 2px;
  animation: fadeInDown 0.8s ease-out;
}
.mission-header h2{
  margin-top: 20px;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mission-header p {
  font-size: 15px;
  color: #d9d9d9;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
}

.brands-showcase {
  padding: 20px 0 10px;
}

.brands-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}

.brand-card {
  background: linear-gradient(135deg, #1a1f2e 0%, #242b3c 100%);
  border-radius: 16px;
  box-shadow: 0px 8px 32px 0px rgba(212, 175, 55, 0.1);
  padding: 30px 20px 24px;
  width: calc(25% - 18px);
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 2px solid #d4af37;
  overflow: visible;
}
/* .brand-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.1) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
} */
.brand-card:hover::before {
  opacity: 1;
}

.brand-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0px 20px 60px 0px rgba(212, 175, 55, 0.4);
  border-color: #e8c547;
}

.brand-card.featured {
  background: linear-gradient(135deg, #d4af37 0%, #e8c547 100%);
  border-color: #f0d547;
  transform: scale(1.04);
  box-shadow: 0px 12px 40px 0px rgba(212, 175, 55, 0.4);
}

.brand-card.featured:hover {
  transform: scale(1.04) translateY(-8px);
}

/* Featured card text visibility */
.brand-card.featured .brand-content h3 {
  color: #1a1f2e;
}

.brand-card.featured .brand-rating .stars {
  color: #1a1f2e;
}

.brand-card.featured .brand-rating .rating-value {
  color: #1a1f2e;
}

.brand-card.featured .brand-features {
  color: #1a1f2e;
}

.brand-card.featured .brand-features li::before {
  color: #1a1f2e;
}

.brand-card.featured .btn-block {
  background: linear-gradient(135deg, #1a1f2e 0%, #242b3c 100%) !important;
  color: #d4af37 !important;
  border-color: #d4af37 !important;
}

.brand-card.featured .btn-block:hover {
  background: linear-gradient(135deg, #242b3c 0%, #1a1f2e 100%) !important;
  color: #e8c547 !important;
  border-color: #e8c547 !important;
}

.brand-rank {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #d4af37 0%, #e8c547 100%);
  color: #1a1f2e;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
  border: 3px solid #1a1f2e;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
  animation: popIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 10;
}
@keyframes popIn {
  from {
    transform: translateX(-50%) scale(0);
  }
  to {
    transform: translateX(-50%) scale(1);
  }
}

.brand-card.featured .brand-rank {
  background: linear-gradient(135deg, #1a1f2e 0%, #242b3c 100%);
  color: #d4af37;
  width: 42px;
  height: 42px;
  font-size: 16px;
  top: -16px;
  border-color: #d4af37;
}

.brand-logo {
  margin-top: 16px;
  margin-bottom: 12px;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo img {
  max-width: 130px;
  height: auto;
  border-radius: 8px;
  max-height: 72px;
}

.brand-content h3 {
  font-size: 24px;
  color: #d4af37;
  margin: 12px 0 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  transition: all 0.3s ease;
}
.brand-card:hover .brand-content h3 {
  color: #e8c547;
  text-shadow: 0 0 10px rgba(232, 197, 71, 0.3);
}

.brand-rating {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}

.brand-rating .stars {
  font-size: 15px;
}

.brand-rating .rating-value {
  font-weight: bold;
  color: #d4af37;
  font-size: 14px;
}

.brand-features {
  list-style: none;
  margin: 0 0 16px;
  text-align: left;
  font-size: 13px;
  color: #d9d9d9;
}

.brand-features li {
  padding: 6px 0 6px 16px;
  border-bottom: 1px solid #3d4555;
  position: relative;
}

.brand-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #d4af37;
  font-weight: bold;
  font-size: 16px;
}

.brand-features li:last-child {
  border-bottom: none;
}

.btn-block {
  width: 100%;
  display: block;
  margin-top: 18px;
  text-align: center;
  box-sizing: border-box;
  padding: 14px 24px !important;
  border-radius: 25px !important;
  background: linear-gradient(135deg, #d4af37 0%, #e8c547 100%) !important;
  color: #1a1f2e !important;
  border: 2px solid #d4af37 !important;
  font-weight: 700 !important;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3) !important;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  cursor: pointer;
}
.btn-block:hover {
  background: linear-gradient(135deg, #e8c547 0%, #f0d547 100%) !important;
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6) !important;
  transform: translateY(-3px) scale(1.04) !important;
  border-color: #f0d547 !important;
}
.slide-content {
  position: absolute;
  top: 0;
  color: #fff;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: opacity 0.3s ease;
  padding: 20px;
}
p.slide-title {
  font-size: 18px;
  font-weight: bold;
}
p.slide-description {
  font-size: 13px;
  line-height: 20px;
  max-width: 70%;
}
.slide-content .btn-primary {
  width: max-content;
  font-size: 12px;
  padding: 5px 10px !important;
  margin-top: 5px;
  margin-left: 5%;
}

@media (max-width: 900px) {
  .brand-card {
    width: calc(50% - 12px);
  }
  .brand-card.featured {
    transform: scale(1);
    width: calc(50% - 12px);
  }
  .brand-card.featured:hover {
    transform: translateY(-8px);
  }
  .container {
    padding: 0 20px;
  }
  .menu-bar {
    padding: 8px 20px;
  }
  .header-menu ul > li a {
    padding: 12px 16px;
    font-size: 13px;
    border-radius: 5px;
  }
  .header-menu ul {
    gap: 3px;
  }
  .header-btns a {
    padding: 9px 18px;
    font-size: 13px;
  }
  .mission-header h1 {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 16px;
  }
  .menu-bar {
    padding: 8px 16px;
  }
  .mission-header h1 {
    font-size: 15px!important;
	margin-bottom: 8px; 
  }
  .mission-header p {
    font-size: 14px;
    line-height: 1.5;
  }
  .brand-card,
  .brand-card.featured {
    width: 100%;
    transform: scale(1);
    margin-bottom: 16px;
  }
  .brand-card.featured:hover,
  .brand-card:hover {
    transform: translateY(-4px);
  }
  .header-menu ul > li a {
    padding: 12px 14px;
    font-size: 13px;
    font-weight: 600;
  }
  .header-btns a {
    padding: 8px 12px;
    font-size: 11px;
    border-radius: 18px;
    margin: 2px 4px;
  }
  .hero-section {
    min-height: 100px;
  }
  .swiper-slide img {
    max-height: 250px;
    object-fit: cover;
  }
  .brand-rank {
    width: 38px;
    height: 38px;
    font-size: 14px;
    top: -10px;
    border-width: 2px;
    z-index: 10;
  }
  .brand-logo img {
    max-height: 60px;
  }
  .brand-content h3 {
    font-size: 16px;
  }
  .brand-rating {
    font-size: 13px;
  }
  .brand-features li {
    font-size: 12px;
    padding: 4px 0 4px 12px;
  }
  .btn-primary,
  .btn-block {
    padding: 10px 16px !important;
    font-size: 13px !important;
    border-radius: 20px !important;
  }
  .show-more-btn {
    padding: 10px 16px !important;
    font-size: 13px;
  }
}

/* ===== Modern Animations & Effects ===== */

@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes menuItemSlideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

#logo-block img {
  animation: float 3s ease-in-out infinite;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.2));
}

#logo-block:hover img {
  transform: scale(1.08);
  filter: drop-shadow(0 6px 20px rgba(212, 175, 55, 0.4));
  animation: none;
}

.header-menu ul > li a {
  animation: menuItemSlideIn 0.5s ease-out backwards;
}

.header-menu ul > li:nth-child(1) a {
  animation-delay: 0.05s;
}

.header-menu ul > li:nth-child(2) a {
  animation-delay: 0.1s;
}

.header-menu ul > li:nth-child(3) a {
  animation-delay: 0.15s;
}

.header-menu ul > li:nth-child(4) a {
  animation-delay: 0.2s;
}

.header-menu ul > li:nth-child(5) a {
  animation-delay: 0.25s;
}

.header-menu ul > li:nth-child(n + 6) a {
  animation-delay: 0.3s;
}

.header-menu ul > li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #d4af37, #e8c547);
  transition: width 0.3s ease;
}

.header-menu ul > li a:hover::after {
  width: 100%;
}

.brand-card {
  animation: slideInFromTop 0.6s ease-out backwards;
}

.brand-card:nth-child(1) {
  animation-delay: 0.1s;
}

.brand-card:nth-child(2) {
  animation-delay: 0.2s;
}

.brand-card:nth-child(3) {
  animation-delay: 0.3s;
}

.three-boxes > div {
  animation: slideInFromTop 0.7s ease-out backwards;
}

.three-boxes > div:nth-child(1) {
  animation-delay: 0.2s;
}

.three-boxes > div:nth-child(2) {
  animation-delay: 0.4s;
}

.three-boxes > div:nth-child(3) {
  animation-delay: 0.6s;
}

.faq-item.active .faq-body {
  animation: slideInFromTop 0.4s ease-out;
}

.faq-toggle {
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-item.active .faq-toggle {
  transform: rotateZ(180deg) scale(1.15);
}

.testimonial-item {
  animation: slideInFromTop 0.7s ease-out backwards;
}

.swiper-slide {
  animation: slideInFromTop 0.6s ease-out;
}

button.read-more {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

button.read-more::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
}

button.read-more:hover::before {
  width: 300px;
  height: 300px;
}

button.read-more:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.footer-menu a {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.footer-menu a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #d4af37;
  transition: width 0.3s ease;
}

.footer-menu a:hover::before {
  width: 100%;
}
