/* General Styles */
@import url("https://fonts.googleapis.com/css2?family=Proxima+Nova:wght@400;700&display=swap");

:root {
  --bg-color: #202346;
  --header-footer-bg: linear-gradient(180deg, #282b5a 0%, #25293a 100%);
  --btn-primary-bg: radial-gradient(75% 100% at 50.34% 100%, #2094ff 0%, #0b3ddd 100%);
  --text-light: #ffffff;
  --text-dark: #333;
  --accent-green: #28a745;
  --accent-red: #dc3545;
  --border-color: rgba(255, 255, 255, 0.1);
}

body {
  font-family: "Proxima Nova", sans-serif;
  background-color: var(--bg-color);
  color: var(--text-light);
  margin: 0;
  padding: 0;
  line-height: 1.7;
  font-size: 16px;
}

.legzo-wrapper {
  overflow-x: hidden;
}

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

.legzo-section {
  padding: 40px 0;
  margin: 20px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  border: 1px solid var(--border-color);
}

h1,
h2,
h3 {
  font-weight: 700;
  margin-top: 0;
}

h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

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

a:hover {
  color: #2094ff;
}

.legzo-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  text-align: center;
  transition: transform 0.2s ease-in-out;
  border: none;
  cursor: pointer;
}

.legzo-btn:hover {
  transform: scale(1.05);
}

.legzo-btn--primary {
  background: var(--btn-primary-bg);
  color: var(--text-light);
}

.legzo-btn--secondary {
  background: var(--text-light);
  color: var(--text-dark);
}

/* Header */
.legzo-header {
  background: var(--header-footer-bg);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.legzo-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.legzo-header__logo img {
  max-height: 50px;
}

.legzo-header__nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 25px;
}

.legzo-header__actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.legzo-burger {
  display: none;
}

/* Hero Slider */
.legzo-hero {
  position: relative;
  height: 500px;
  overflow: hidden;
}
.legzo-hero__slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.legzo-hero__slide.active {
  opacity: 1;
}
.legzo-hero__content {
  background: rgba(0, 0, 0, 0.6);
  padding: 30px;
  border-radius: 10px;
  max-width: 1200px;
}
.legzo-hero__title {
  font-size: 2.8rem;
  margin-bottom: 15px;
}
.legzo-hero__timer {
  font-size: 1.5rem;
  margin: 15px 0;
  font-weight: bold;
}

/* Table of Contents */
.legzo-toc ul {
  list-style: none;
  padding: 0;
  columns: 2;
  gap: 20px;
}
.legzo-toc ul li a {
  display: block;
  padding: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
  margin-bottom: 10px;
}

/* Pros & Cons */
.legzo-pros-cons__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.legzo-pros-cons__list {
  list-style-type: "✅ ";
  padding-left: 25px;
}
.legzo-pros-cons__list--cons {
  list-style-type: "❌ ";
}
.legzo-pros-cons__list li {
  margin-bottom: 10px;
}

/* Jackpots */
.legzo-jackpot__amount {
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  color: #ffd700;
  text-shadow: 0 0 15px #ffd700;
}

/* Screenshots & Slots */
.legzo-slider-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.legzo-screenshots__item img {
  width: 100%;
  border-radius: 10px;
  border: 2px solid var(--border-color);
}
.legzo-slots__item {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  border: 1px solid var(--border-color);
}
.legzo-slots__item img {
  height: 100px;
  margin-bottom: 15px;
}
.legzo-slots__item-name {
  font-weight: bold;
  margin-bottom: 20px;
}

/* Demo Game */
.legzo-demo__iframe-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}
.legzo-demo__iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid var(--border-color);
  border-radius: 10px;
}

/* Content Block */
.legzo-content-block {
  background: rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 10px;
}
.legzo-content-block p {
  margin-bottom: 1em;
}
.legzo-content-block ul,
.legzo-content-block ol {
  padding-left: 20px;
  margin-bottom: 1em;
}
.legzo-content-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  text-align: left;
}
.legzo-content-block th,
.legzo-content-block td {
  padding: 12px;
  border: 1px solid var(--border-color);
}
.legzo-content-block th {
  background-color: rgba(0, 0, 0, 0.2);
}

/* FAQ */
.legzo-faq__item {
  background: rgba(0, 0, 0, 0.2);
  margin-bottom: 10px;
  border-radius: 5px;
}
.legzo-faq__question {
  padding: 15px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.legzo-faq__question::after {
  content: "+";
  font-size: 1.5rem;
  transition: transform 0.3s;
}
.legzo-faq__item.active .legzo-faq__question::after {
  transform: rotate(45deg);
}
.legzo-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
  padding: 0 15px;
}
.legzo-faq__item.active .legzo-faq__answer {
  padding: 0 15px 15px;
}

/* Author */
.legzo-author {
  display: flex;
  gap: 30px;
  align-items: center;
  background: rgba(0, 0, 0, 0.2);
  padding: 30px;
  border-radius: 10px;
}
.legzo-author__photo img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
}
.legzo-author__socials a {
  margin-right: 15px;
  font-size: 1.5rem;
}

/* Footer */
.legzo-footer {
  background: var(--header-footer-bg);
  padding: 40px 0 20px;
  text-align: center;
}
.legzo-footer__logo img {
  max-height: 60px;
  margin-bottom: 20px;
}
.legzo-footer__nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}
.legzo-footer__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}
.legzo-footer__logos img {
  height: 25px;
  filter: grayscale(1);
  opacity: 0.7;
}
.legzo-footer__copyright {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Sticky Widget */
.legzo-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--btn-primary-bg);
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  z-index: 999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
}
.legzo-widget__text {
  font-weight: bold;
  font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 992px) {
  .legzo-header__nav {
    display: none;
  }
  .legzo-burger {
    display: block;
    cursor: pointer;
    width: 30px;
    height: 22px;
    position: relative;
    z-index: 1002;
  }
  .legzo-burger span,
  .legzo-burger::before,
  .legzo-burger::after {
    content: "";
    background-color: var(--text-light);
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    transition: all 0.3s ease;
  }
  .legzo-burger::before {
    top: 0;
  }
  .legzo-burger::after {
    bottom: 0;
  }
  .legzo-burger span {
    top: 10px;
  }

  .legzo-header__nav.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
  }
  .legzo-pros-cons__grid {
    grid-template-columns: 1fr;
  }
  .legzo-author {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  h2 {
    font-size: 2rem;
  }
  .legzo-hero {
    height: 400px;
  }
  .legzo-hero__title {
    font-size: 2rem;
  }
  .legzo-toc ul {
    columns: 1;
  }
  .legzo-slider-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 15px;
  }
  .legzo-slider-container > * {
    flex: 0 0 80%;
    scroll-snap-align: center;
  }
  .legzo-widget {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* Unused WP styles for confusion */
.elementor-widget-container {
  margin: 0;
}
.yoast-seo-breadcrumb {
  display: none;
}
.post-edit-link {
  font-size: 10px;
  color: #ccc;
}
