/* General Body & Fonts */
body {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", "Oxygen", "Ubuntu", "Cantarell", "Open Sans",
    "Helvetica Neue", Arial, sans-serif;
  background-color: #0e2f2b;
  color: #f0f0f0;
  margin: 0;
  padding: 0;
  line-height: 1.7;
  overflow-x: hidden;
}

.body-wrapper.fixed {
  overflow: hidden;
}

/* Unused styles for obfuscation */
.elementor-section {
}
.wp-block-gallery {
}
.post-edit-link {
  display: none;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}
.btn-login {
  background-color: #02504b;
  color: #fff;
}
.btn-login:hover {
  background-color: #036d66;
}
.btn-register {
  background-color: #f9c719;
  color: #222723;
}
.btn-register:hover {
  background-color: #ffda4d;
}
.btn-lg {
  padding: 15px 40px;
  font-size: 1.2rem;
}

/* Header */
.header-container {
  background-color: #222723;
  padding: 10px 5%;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-img {
  height: 50px;
  width: auto;
}
.nav-menu {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  color: #f0f0f0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.nav-menu a:hover {
  color: #f9c719;
}
.header-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header-buttons .fas {
  margin-right: 8px;
}

/* Hero Block */
.hero-block {
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/sultan-games-banner.avif") no-repeat center center / cover;
  filter: brightness(0.5);
}
.hero-animation-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(2, 80, 75, 0.3), rgba(14, 47, 43, 0.5));
  animation: gradient-animation 15s ease infinite;
}
@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-title {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.hero-text {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

/* Content & Blocks */
.content-wrapper {
  padding: 20px 5%;
  max-width: 1200px;
  margin: 0 auto;
}
.block-styled {
  background-color: rgba(34, 39, 35, 0.5);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 40px;
  border: 1px solid #02504b;
}
.block-title {
  font-size: 2rem;
  color: #f9c719;
  margin-bottom: 20px;
  text-align: center;
  border-bottom: 2px solid #02504b;
  padding-bottom: 10px;
}

/* Advantages */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.advantage-item {
  background: #0e2f2b;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s;
}
.advantage-item:hover {
  transform: translateY(-5px);
}
.advantage-item .fas {
  color: #f9c719;
  font-size: 2rem;
  margin-bottom: 10px;
}

/* Tables */
.table-responsive-wrapper {
  overflow-x: auto;
}
.winners-table,
.mirrors-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.winners-table th,
.winners-table td,
.mirrors-table th,
.mirrors-table td {
  padding: 15px;
  border-bottom: 1px solid #02504b;
}
.winners-table thead,
.mirrors-table thead {
  background-color: #02504b;
}
.winners-table tbody tr:nth-child(even),
.mirrors-table tbody tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.2);
}
.status-ok {
  color: #4caf50;
  font-weight: bold;
}

/* Sliders */
.slider-container {
  position: relative;
  overflow: hidden;
}
.slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.slider-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 0 10px;
}
.slider-slide img {
  width: 100%;
  border-radius: 10px;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(2, 80, 75, 0.7);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 10;
}
.slider-btn.prev {
  left: 10px;
}
.slider-btn.next {
  right: 10px;
}

/* Bonuses */
.bonus-card {
  background: #0e2f2b;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  border: 1px solid #f9c719;
}
.bonus-card h4 {
  color: #f9c719;
  font-size: 1.5rem;
}

/* Demo Game */
.demo-game-wrapper {
  position: relative;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  background-color: #000;
  border-radius: 10px;
  overflow: hidden;
}
.demo-game-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#play-button-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
  transition: opacity 0.3s;
}

/* Review Content */
.text-content-style {
  line-height: 1.8;
}
.text-content-style h1,
.text-content-style h2,
.text-content-style h3 {
  color: #f9c719;
  margin-top: 1.5em;
  margin-bottom: 0.8em;
}
.text-content-style p {
  margin-bottom: 1em;
}
.text-content-style ul,
.text-content-style ol {
  padding-left: 20px;
  margin-bottom: 1em;
}
.text-content-style li {
  margin-bottom: 0.5em;
}
.text-content-style a {
  color: #f9c719;
  text-decoration: underline;
}
.text-content-style table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
}
.text-content-style th,
.text-content-style td {
  border: 1px solid #02504b;
  padding: 12px;
  text-align: left;
}
.text-content-style th {
  background-color: #02504b;
}

/* Author Block */
.author-block {
  display: flex;
  gap: 20px;
  align-items: center;
}
.author-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f9c719;
}
.author-name {
  color: #f9c719;
  font-size: 1.5rem;
}
.author-socials a {
  color: #f9c719;
  text-decoration: none;
}

/* Footer */
.footer-container {
  background-color: #222723;
  padding: 40px 5%;
  color: #aaa;
}
.footer-top,
.footer-middle {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #333;
}
.footer-menu {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 20px;
}
.footer-menu a {
  color: #aaa;
  text-decoration: none;
}
.footer-logos-block h5 {
  color: #fff;
  margin-bottom: 15px;
}
.logos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.logos-grid img {
  height: 25px;
  opacity: 0.7;
}
.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
}

/* Sticky Widget */
.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #222723;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
  z-index: 1001;
}
.sticky-widget-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 15px;
  color: #fff;
}
.sticky-widget a {
  text-decoration: none;
}
.sticky-widget strong {
  color: #f9c719;
}

/* Breadcrumbs */
.breadcrumbs-container {
  padding: 15px 5%;
  background-color: rgba(0, 0, 0, 0.2);
}
.breadcrumbs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 8px;
}
.breadcrumbs a {
  color: #f9c719;
  text-decoration: none;
}
.breadcrumbs span {
  color: #ccc;
}
.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: #ccc;
}

/* Mobile Styles */
.burger-menu {
  display: none;
  cursor: pointer;
}
.burger-menu span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 5px 0;
  transition: all 0.3s;
}

@media (max-width: 992px) {
  .nav-menu-wrapper {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #222723;
    flex-direction: column;
  }
  .nav-menu-wrapper.active {
    display: flex;
  }
  .nav-menu {
    flex-direction: column;
    width: 100%;
    text-align: center;
    padding: 20px 0;
  }
  .burger-menu {
    display: block;
  }
  .burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger-menu.active span:nth-child(2) {
    opacity: 0;
  }
  .burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .mobile-hidden {
    display: none;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-text {
    font-size: 1.2rem;
  }
  .author-block {
    flex-direction: column;
    text-align: center;
  }
  .footer-top,
  .footer-middle {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .slider-slide {
    min-width: 100%;
  }
  #bonuses-slider .slider-slide {
    min-width: 80%;
  }
  .sticky-widget-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
