/* Fonts */
@font-face {
  font-family: "Proxima Nova";
  src: url("/fonts/proxima-nova.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Variables and Base Styles */
:root {
  --bg-color: #202346;
  --header-bg: linear-gradient(180deg, #282b5a 0%, #25293a 100%);
  --header-overlay: rgba(0, 0, 0, 0.2);
  --btn-grad: radial-gradient(75% 100% at 50.34% 100%, #2094ff 0%, #0b3ddd 100%);
  --text-light: #ffffff;
  --text-secondary: #a9b1d6;
  --card-bg: #25293a;
  --border-color: #3b406e;
}

body {
  font-family: "Proxima Nova", "Roboto", sans-serif;
  background-color: var(--bg-color);
  color: var(--text-secondary);
  margin: 0;
  padding: 0;
  line-height: 1.6;
  overflow-x: hidden;
}

.x9a8b7-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.x9a8b7-main {
  flex-grow: 1;
}

.x9a8b7-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

section {
  padding: 40px 0;
}

.x9a8b7-section-title {
  color: var(--text-light);
  font-size: 2.5rem;
  margin-bottom: 30px;
  font-weight: 700;
}

.x9a8b7-btn {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.x9a8b7-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.x9a8b7-btn-login {
  background-color: transparent;
  color: var(--text-light);
  border: 1px solid var(--text-light);
}

.x9a8b7-btn-signup {
  background: var(--btn-grad);
  color: var(--text-light);
}

.x9a8b7-btn-lg {
  padding: 15px 40px;
  font-size: 1.2rem;
}

/* Header */
.x9a8b7-header {
  background: var(--header-bg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  background-image: linear-gradient(0deg, var(--header-overlay), var(--header-overlay)), var(--header-bg);
}

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

.x9a8b7-logo {
  height: 40px;
}

.x9a8b7-nav-list {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.x9a8b7-nav-list a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}

.x9a8b7-nav-list a:hover {
  color: #2094ff;
}

.x9a8b7-header-actions {
  display: flex;
  gap: 15px;
}

.x9a8b7-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.x9a8b7-burger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-light);
  margin: 5px 0;
  transition: all 0.3s;
}

/* Hero */
.x9a8b7-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  background: url("/legzo-casino-banner.svg") no-repeat center center / cover;
}

.x9a8b7-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(32, 35, 70, 0.7);
}

.x9a8b7-hero-content {
  position: relative;
  z-index: 2;
}

.x9a8b7-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.x9a8b7-hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

/* Advantages */
.x9a8b7-adv-card {
  background: var(--card-bg);
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--border-color);
  height: 100%;
}
.x9a8b7-adv-icon {
  font-size: 2.5rem;
}
.x9a8b7-adv-title {
  color: var(--text-light);
  font-size: 1.2rem;
  margin: 10px 0;
}

/* Jackpots */
.x9a8b7-jackpots {
  background: var(--btn-grad);
  color: var(--text-light);
  padding: 50px 0;
}
.x9a8b7-jackpot-amount {
  font-size: 4rem;
  font-weight: 700;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

/* Screenshots */
.x9a8b7-screenshot-img {
  border-radius: 12px;
}

/* Bonuses */
.x9a8b7-bonus-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: transform 0.3s;
}
.x9a8b7-bonus-card:hover {
  transform: translateY(-5px);
}
.x9a8b7-bonus-title {
  color: var(--text-light);
}
.x9a8b7-bonus-amount {
  font-size: 2rem;
  font-weight: 700;
  color: #2094ff;
}

/* Games */
.x9a8b7-game-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}
.x9a8b7-game-logo {
  width: 100%;
  display: block;
}
.x9a8b7-game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s;
  color: var(--text-light);
  padding: 10px;
}
.x9a8b7-game-card:hover .x9a8b7-game-overlay {
  opacity: 1;
}
.x9a8b7-game-title {
  font-size: 1rem;
  margin-bottom: 10px;
}
.x9a8b7-btn-play {
  padding: 8px 15px;
  background: var(--btn-grad);
  color: var(--text-light);
}

/* Content Section */
.x9a8b7-content-box {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 12px;
}
.x9a8b7-text-content h1,
.x9a8b7-text-content h2,
.x9a8b7-text-content h3 {
  color: var(--text-light);
  margin-top: 20px;
}
.x9a8b7-text-content p {
  margin-bottom: 15px;
}
.x9a8b7-text-content a {
  color: #2094ff;
  text-decoration: none;
}
.x9a8b7-text-content a:hover {
  text-decoration: underline;
}
.x9a8b7-text-content ul,
.x9a8b7-text-content ol {
  padding-left: 20px;
}
.x9a8b7-text-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  text-align: left;
  display: block;
  overflow-x: auto;
}
.x9a8b7-text-content th,
.x9a8b7-text-content td {
  padding: 12px;
  border: 1px solid var(--border-color);
}
.x9a8b7-text-content th {
  background-color: #282b5a;
  color: var(--text-light);
}

/* FAQ */
.accordion-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  margin-bottom: 10px;
  border-radius: 8px;
}
.accordion-button {
  background-color: var(--card-bg);
  color: var(--text-light);
  font-weight: 700;
}
.accordion-button:not(.collapsed) {
  background-color: #282b5a;
  box-shadow: none;
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-body {
  color: var(--text-secondary);
}

/* Reviews */
.x9a8b7-review-card {
  background: var(--card-bg);
  padding: 20px;
  border-radius: 12px;
  height: 100%;
}
.x9a8b7-review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.x9a8b7-review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.x9a8b7-review-name {
  color: var(--text-light);
  font-weight: 700;
  margin: 0;
}
.x9a8b7-review-rating {
  color: #ffc107;
}

/* Author */
.x9a8b7-author-card {
  display: flex;
  gap: 30px;
  background: var(--card-bg);
  padding: 30px;
  border-radius: 12px;
  align-items: center;
}
.x9a8b7-author-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
}
.x9a8b7-author-name {
  color: var(--text-light);
}
.x9a8b7-author-social a {
  color: #2094ff;
}

/* Footer */
.x9a8b7-footer {
  background: var(--header-bg);
  background-image: linear-gradient(0deg, var(--header-overlay), var(--header-overlay)), var(--header-bg);
  padding: 40px 0 20px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.x9a8b7-footer-top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.x9a8b7-footer-col {
  flex: 1;
  min-width: 200px;
}
.x9a8b7-footer-title {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 15px;
}
.x9a8b7-footer-list {
  list-style: none;
  padding: 0;
}
.x9a8b7-footer-list a {
  color: var(--text-secondary);
  text-decoration: none;
}
.x9a8b7-footer-list a:hover {
  color: var(--text-light);
}
.x9a8b7-footer-logos img {
  max-width: 100%;
  opacity: 0.7;
}
.x9a8b7-footer-bottom {
  text-align: center;
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
}

/* Sticky Widget */
.x9a8b7-sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--card-bg);
  padding: 15px 0;
  z-index: 999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}
.x9a8b7-widget-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.x9a8b7-widget-text {
  margin: 0;
  font-size: 1.1rem;
  color: var(--text-light);
}

/* Responsive */
@media (max-width: 991px) {
  .x9a8b7-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--header-bg);
    flex-direction: column;
    padding: 20px;
  }
  .x9a8b7-nav.active {
    display: flex;
  }
  .x9a8b7-nav-list {
    flex-direction: column;
    align-items: center;
  }
  .x9a8b7-burger {
    display: block;
  }
  .x9a8b7-hero-title {
    font-size: 2.5rem;
  }
  .x9a8b7-author-card {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .x9a8b7-header-actions .x9a8b7-btn-login {
    display: none;
  } /* Hide login on smallest screens */
  .x9a8b7-hero-title {
    font-size: 2rem;
  }
  .x9a8b7-hero-subtitle {
    font-size: 1.2rem;
  }
  .x9a8b7-widget-container {
    flex-direction: column;
    gap: 10px;
  }
  .x9a8b7-footer-top {
    flex-direction: column;
    text-align: center;
  }
}

/* Unused classes for obfuscation */
.post-edit-link {
  display: none;
}
.comment-reply-link {
  color: #888;
}
.yoast-seo-meta-some-class {
  border: 1px dotted red;
}
