/*
Theme Name: Legzo Affiliate Theme
Author: v0
Version: 1.1
*/

/* --- Variables and Base --- */
:root {
  --legzo-bg-color: #202346;
  --legzo-header-bg: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    linear-gradient(180deg, #282b5a 0%, #25293a 100%);
  --legzo-primary-btn-bg: radial-gradient(75% 100% at 50.34% 100%, #2094ff 0%, #0b3ddd 100%);
  --legzo-secondary-btn-bg: #ffffff;
  --legzo-text-light: #ffffff;
  --legzo-text-dark: #333333;
  --legzo-text-muted: #a0a8c2;
  --legzo-accent-green: #28a745;
  --legzo-accent-orange: #fd7e14;
  --legzo-border-color: rgba(255, 255, 255, 0.1);
  --legzo-content-box-bg: rgba(40, 43, 90, 0.5);
}

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

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

.legzo-main {
  flex-grow: 1;
  padding-top: 80px; /* Header height */
}

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

.legzo-section {
  padding: 40px 0;
}

.legzo-section__title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}
.legzo-section__title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--legzo-primary-btn-bg);
  margin: 15px auto 0;
  border-radius: 2px;
}

.legzo-section__subtitle {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 30px;
  color: var(--legzo-text-muted);
}

.legzo-content-box {
  background-color: var(--legzo-content-box-bg);
  border-radius: 12px;
  padding: 30px;
  border: 1px solid var(--legzo-border-color);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

/* --- Buttons --- */
.legzo-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}
.legzo-btn--primary {
  background: var(--legzo-primary-btn-bg);
  color: var(--legzo-text-light);
}
.legzo-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(32, 148, 255, 0.4);
  color: var(--legzo-text-light);
}
.legzo-btn--secondary {
  background: var(--legzo-secondary-btn-bg);
  color: var(--legzo-text-dark);
  border-color: var(--legzo-secondary-btn-bg);
}
.legzo-btn--secondary:hover {
  background: transparent;
  color: var(--legzo-secondary-btn-bg);
}
.legzo-btn--small {
  padding: 8px 16px;
  font-size: 14px;
}

/* --- Header --- */
.legzo-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--legzo-header-bg);
  padding: 15px 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: background 0.3s;
}
.legzo-header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.legzo-header__logo img {
  height: 50px;
  width: auto;
}
.legzo-header__nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}
.legzo-header__nav-list a {
  color: var(--legzo-text-light);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s;
}
.legzo-header__nav-list a:hover {
  color: #2094ff;
}
.legzo-header__actions {
  display: flex;
  align-items: center;
  gap: 15px;
}
.legzo-header__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
.legzo-header__burger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--legzo-text-light);
  margin: 5px 0;
  transition: all 0.3s;
}

/* --- Hero --- */
.legzo-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 0;
  overflow: hidden;
}
.legzo-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.legzo-hero__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(32, 35, 70, 0.7);
}
.legzo-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.legzo-hero__content {
  position: relative;
  z-index: 1;
}
.legzo-hero__title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}
.legzo-hero__subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: var(--legzo-text-muted);
}

/* --- Breadcrumbs --- */
.legzo-breadcrumbs {
  padding: 20px 0;
}
.legzo-breadcrumbs__list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
  font-size: 14px;
}
.legzo-breadcrumbs__item a {
  color: var(--legzo-text-muted);
  text-decoration: none;
}
.legzo-breadcrumbs__item a:hover {
  text-decoration: underline;
}
.legzo-breadcrumbs__item--active {
  color: var(--legzo-text-light);
}
.legzo-breadcrumbs__item:not(:last-child)::after {
  content: "/";
  margin-left: 10px;
  color: var(--legzo-text-muted);
}

/* --- Table of Contents --- */
.legzo-toc {
  list-style: none;
  padding: 0;
  columns: 2;
  gap: 20px;
}
.legzo-toc li a {
  display: block;
  padding: 8px 0;
  color: var(--legzo-text-light);
  text-decoration: none;
  border-bottom: 1px solid var(--legzo-border-color);
  transition: color 0.3s;
}
.legzo-toc li a:hover {
  color: #2094ff;
}

/* --- Pros and Cons --- */
.legzo-pros-cons {
  display: flex;
  gap: 30px;
}
.legzo-pros-cons__column {
  flex: 1;
}
.legzo-pros-cons__title {
  font-size: 1.2rem;
  font-weight: 700;
  padding-bottom: 10px;
  margin-bottom: 15px;
  border-bottom: 2px solid;
}
.legzo-pros-cons__title--pros {
  border-color: var(--legzo-accent-green);
}
.legzo-pros-cons__title--cons {
  border-color: #dc3545;
}
.legzo-pros-cons__list {
  list-style: none;
  padding: 0;
}
.legzo-pros-cons__list li {
  padding: 5px 0 5px 25px;
  position: relative;
}
.legzo-pros-cons__list li::before {
  position: absolute;
  left: 0;
  top: 9px;
  font-family: "bootstrap-icons";
  font-weight: 900;
}
.legzo-pros-cons__title--pros + .legzo-pros-cons__list li::before {
  content: "+";
  color: var(--legzo-accent-green);
}
.legzo-pros-cons__title--cons + .legzo-pros-cons__list li::before {
  content: "-";
  color: #dc3545;
}

/* --- Jackpot --- */
.legzo-jackpot {
  text-align: center;
}
.legzo-jackpot__amount {
  font-size: 4rem;
  font-weight: 700;
  margin: 20px 0;
  background: var(--legzo-primary-btn-bg);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: jackpot-glow 2s infinite alternate;
}
@keyframes jackpot-glow {
  from {
    text-shadow: 0 0 10px #2094ff;
  }
  to {
    text-shadow: 0 0 20px #0b3ddd;
  }
}

/* --- Mirrors Table --- */
.legzo-table-container {
  overflow-x: auto;
}
.legzo-table {
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}
.legzo-table th,
.legzo-table td {
  padding: 15px;
  border: 1px solid var(--legzo-border-color);
}
.legzo-table thead {
  background-color: rgba(0, 0, 0, 0.2);
}
.legzo-table tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.legzo-status {
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
}
.legzo-status--online {
  background-color: var(--legzo-accent-green);
  color: #fff;
}
.legzo-status--slow {
  background-color: var(--legzo-accent-orange);
  color: #fff;
}

/* --- Slots --- */
.legzo-slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.legzo-slot-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3 / 4;
}
.legzo-slot-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.legzo-slot-card:hover .legzo-slot-card__img {
  transform: scale(1.1);
}
.legzo-slot-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}
.legzo-slot-card:hover .legzo-slot-card__overlay {
  opacity: 1;
  transform: translateY(0);
}
.legzo-slot-card__title {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

/* --- Article Content --- */
.legzo-article-content h2,
.legzo-article-content h3,
.legzo-article-content h4 {
  margin-top: 1.5em;
  margin-bottom: 0.8em;
  font-weight: 700;
}
.legzo-article-content p {
  margin-bottom: 1em;
}
.legzo-article-content ul,
.legzo-article-content ol {
  padding-left: 25px;
  margin-bottom: 1em;
}
.legzo-article-content a {
  color: #2094ff;
  text-decoration: underline;
}
.legzo-article-content table {
  width: 100%;
  margin: 20px 0;
  border-collapse: collapse;
}
.legzo-article-content th,
.legzo-article-content td {
  padding: 12px;
  border: 1px solid var(--legzo-border-color);
  text-align: left;
}
.legzo-article-content th {
  background-color: rgba(0, 0, 0, 0.2);
}

/* --- FAQ Accordion --- */
.legzo-accordion__item {
  border-bottom: 1px solid var(--legzo-border-color);
}
.legzo-accordion__button {
  width: 100%;
  background: none;
  border: none;
  color: var(--legzo-text-light);
  padding: 20px;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  position: relative;
}
.legzo-accordion__button::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 1.5rem;
  transition: transform 0.3s;
}
.legzo-accordion__button[aria-expanded="true"]::after {
  transform: rotate(45deg);
}
.legzo-accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}
.legzo-accordion__content p {
  padding: 0 20px 20px;
  margin: 0;
  color: var(--legzo-text-muted);
}

/* --- Reviews --- */
.legzo-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.legzo-review-card {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px;
  border-radius: 8px;
}
.legzo-review-card__header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.legzo-review-card__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.legzo-review-card__name {
  font-weight: 700;
  margin: 0;
}
.legzo-review-card__rating {
  color: #ffc107;
}
.legzo-review-card__text {
  color: var(--legzo-text-muted);
  font-size: 15px;
}

/* --- Review Form --- */
.legzo-form {
  max-width: 600px;
  margin: 0 auto;
}
.legzo-form__group {
  margin-bottom: 20px;
}
.legzo-form__label {
  display: block;
  margin-bottom: 5px;
}
.legzo-form__input,
.legzo-form__textarea {
  width: 100%;
  padding: 12px;
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--legzo-border-color);
  border-radius: 8px;
  color: var(--legzo-text-light);
}
.legzo-form__success-msg {
  margin-top: 15px;
  color: var(--legzo-accent-green);
  text-align: center;
}

/* --- Author --- */
.legzo-author-box {
  display: flex;
  align-items: center;
  gap: 30px;
}
.legzo-author-box__photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #2094ff;
}
.legzo-author-box__name {
  font-size: 1.5rem;
  margin: 0;
}
.legzo-author-box__title {
  color: var(--legzo-text-muted);
  margin-bottom: 15px;
}
.legzo-author-box__link {
  color: #2094ff;
  text-decoration: none;
  font-weight: 700;
}

/* --- Footer --- */
.legzo-footer {
  background: var(--legzo-header-bg);
  padding: 40px 0;
  margin-top: 40px;
}
.legzo-footer__top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}
.legzo-footer__col {
  flex: 1;
}
.legzo-footer__logo img {
  height: 40px;
  margin-bottom: 15px;
}
.legzo-footer__title {
  font-size: 1.1rem;
  margin-bottom: 15px;
}
.legzo-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.legzo-footer__list a {
  color: var(--legzo-text-muted);
  text-decoration: none;
  display: block;
  padding: 5px 0;
  transition: color 0.3s;
}
.legzo-footer__list a:hover {
  color: var(--legzo-text-light);
}
.legzo-footer__middle,
.legzo-footer__bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid var(--legzo-border-color);
}
.legzo-footer__logos img {
  max-width: 100%;
  height: auto;
  opacity: 0.7;
}
.legzo-footer__legal {
  margin-top: 20px;
  font-size: 12px;
  color: var(--legzo-text-muted);
}

/* --- Sticky Widget --- */
.legzo-sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--legzo-header-bg);
  padding: 15px 0;
  z-index: 999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}
.legzo-sticky-widget__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.legzo-sticky-widget p {
  margin: 0;
}
.legzo-sticky-widget a {
  white-space: nowrap;
}

/* --- Modal --- */
.legzo-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}
.legzo-modal__content {
  position: relative;
  margin: 5% auto;
  padding: 0;
  width: 90%;
  max-width: 1000px;
  background-color: var(--legzo-bg-color);
  border-radius: 12px;
  animation: modal-appear 0.5s;
}
@keyframes modal-appear {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.legzo-modal__header {
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--legzo-border-color);
}
.legzo-modal__close {
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  background: none;
  border: none;
  cursor: pointer;
}
.legzo-modal__body {
  position: relative;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
}
.legzo-modal__body iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .legzo-header__nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--legzo-header-bg);
    flex-direction: column;
    padding: 20px;
  }
  .legzo-header__nav.active {
    display: flex;
  }
  .legzo-header__nav-list {
    flex-direction: column;
    align-items: center;
  }
  .legzo-header__burger {
    display: block;
  }
  .legzo-header__actions {
    margin-left: auto;
    padding-right: 20px;
  }
  .legzo-slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .legzo-pros-cons,
  .legzo-author-box {
    flex-direction: column;
  }
  .legzo-footer__top {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .legzo-hero__title {
    font-size: 2.5rem;
  }
  .legzo-section__title {
    font-size: 2rem;
  }
  .legzo-slots-grid {
    grid-template-columns: 1fr;
  }
  .legzo-sticky-widget__content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .legzo-toc {
    columns: 1;
  }
}

/* Wordpress-like unused styles */
.entry-content {
}
.widget-area {
}
.yoast-seo-breadcrumb {
}
.elementor-widget-container {
}
.post-edit-link {
}
.comment-reply-link {
}
