/* 1. Normalize & Base */
:root {
  --color-bg: #323234;
  --color-surface: #404042;
  --color-dark: #000000;
  --color-text: #ffffff;
  --color-text-muted: #b0b0b0;
  --color-accent-1: #00fbc8;
  --color-accent-2: #ff2e09;
  --color-border: #5a5a5c;
  --font-main: "PT Sans", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.fixed {
  overflow: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--color-accent-1);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #ffffff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.75em;
  line-height: 1.2;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}
p {
  margin: 0 0 1em;
}
ul,
ol {
  margin: 0 0 1em 20px;
  padding: 0;
}
li {
  margin-bottom: 0.5em;
}
table {
  width: 100%;
  border-collapse: collapse;
}
th,
td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}
th {
  background-color: rgba(0, 0, 0, 0.2);
}

/* 2. Layout & Helpers */
.pu-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.pu-main {
  flex-grow: 1;
}
.pu-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.pu-section {
  padding: 40px 0;
  border-bottom: 1px solid var(--color-border);
}
.pu-section:last-child {
  border-bottom: none;
}
.pu-section__title {
  text-align: center;
  margin-bottom: 40px;
}
.pu-grid {
  display: grid;
  gap: 30px;
}
.pu-grid--2-cols {
  grid-template-columns: repeat(2, 1fr);
}
.pu-grid--3-cols {
  grid-template-columns: repeat(3, 1fr);
}
.pu-grid--4-cols {
  grid-template-columns: repeat(4, 1fr);
}

/* 3. Components */

/* Header */
.pu-header {
  background-color: var(--color-dark);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--color-accent-1);
}
.pu-header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pu-header__logo img {
  height: 40px;
  width: auto;
}
.pu-header__nav {
  display: block;
}
.pu-header__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 25px;
}
.pu-header__menu a {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
}
.pu-header__actions {
  display: flex;
  gap: 15px;
}
.pu-header__burger {
  display: none;
}

/* Buttons */
.pu-btn {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 8px;
  font-weight: 700;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pu-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.pu-btn--login {
  background-color: var(--color-accent-1);
  color: var(--color-dark);
}
.pu-btn--signup {
  background-color: var(--color-accent-2);
  color: var(--color-text);
}
.pu-btn--large {
  padding: 15px 40px;
  font-size: 18px;
}

/* Hero */
.pu-hero {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 100px 0;
  background-size: cover;
  background-position: center;
}
.pu-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.pu-hero__container {
  position: relative;
  z-index: 2;
}
.pu-hero__title {
  font-size: 3rem;
  margin-bottom: 15px;
}
.pu-hero__accent {
  color: var(--color-accent-1);
}
.pu-hero__subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Breadcrumbs */
.pu-breadcrumbs {
  padding: 15px 0;
}
.pu-breadcrumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 8px;
  font-size: 14px;
}
.pu-breadcrumbs li:not(:last-child)::after {
  content: ">";
  margin-left: 8px;
  color: var(--color-text-muted);
}
.pu-breadcrumbs a {
  color: var(--color-text-muted);
}
.pu-breadcrumbs a:hover {
  color: var(--color-accent-1);
}
.pu-breadcrumbs span {
  color: var(--color-text);
}

/* Content Section */
.pu-content-section .pu-content-block {
  background-color: var(--color-surface);
  padding: 30px;
  border-radius: 12px;
}
.pu-content-block h2 {
  font-size: 1.8rem;
  color: var(--color-accent-1);
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.pu-content-block h3 {
  font-size: 1.4rem;
  color: var(--color-accent-1);
}
.pu-content-block p {
  line-height: 1.7;
}
.pu-content-block ul,
.pu-content-block ol {
  padding-left: 25px;
}
.pu-content-block li {
  margin-bottom: 10px;
}
.pu-content-block a {
  text-decoration: underline;
}
.pu-content-block blockquote {
  border-left: 4px solid var(--color-accent-1);
  padding-left: 20px;
  margin: 20px 0;
  font-style: italic;
  color: var(--color-text-muted);
}

/* Pros & Cons */
.pu-pros-cons-card {
  background-color: var(--color-surface);
  padding: 25px;
  border-radius: 12px;
}
.pu-pros-cons-card h3 {
  margin-top: 0;
}
.pu-pros-cons-card ul {
  list-style: none;
  padding: 0;
}
.pu-pros-cons-card li {
  padding-left: 25px;
  position: relative;
}
.pu-pros-cons-card--pros li::before {
  content: "✔";
  color: #28a745;
  position: absolute;
  left: 0;
}
.pu-pros-cons-card--cons li::before {
  content: "✖";
  color: #dc3545;
  position: absolute;
  left: 0;
}

/* Jackpots */
.pu-jackpot-section {
  background: linear-gradient(45deg, var(--color-accent-2), var(--color-accent-1));
  color: var(--color-dark);
  padding: 40px 20px;
}
.pu-jackpot-card {
  background: rgba(255, 255, 255, 0.2);
  padding: 20px;
  text-align: center;
  border-radius: 12px;
}
.pu-jackpot-card__amount {
  font-size: 2.5rem;
  font-weight: 700;
}

/* Table */
.pu-table-container {
  overflow-x: auto;
}
.pu-table {
  background-color: var(--color-surface);
  border-radius: 8px;
  overflow: hidden;
}
.pu-status {
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}
.pu-status--online {
  background-color: #28a745;
  color: #fff;
}
.pu-status--slow {
  background-color: #ffc107;
  color: #000;
}

/* Slider */
.pu-slider-container {
  position: relative;
}
.pu-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.pu-slider::-webkit-scrollbar {
  display: none;
}
.pu-slider__slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  padding: 0 15px;
}
.pu-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
}
.pu-slider__btn--prev {
  left: -20px;
}
.pu-slider__btn--next {
  right: -20px;
}
.pu-slider__slide img {
    margin: 0 auto;
}


/* App Info */
.pu-app-info {
  align-items: center;
}
.pu-btn--download {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  justify-content: center;
}
.pu-btn--download img {
  filter: invert(1);
}
.pu-btn--appstore {
  background-color: #0d96f6;
}
.pu-btn--playmarket {
  background-color: #a4c639;
}

/* Video */
.pu-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.pu-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

/* Game Cards */
.pu-game-card {
  background-color: var(--color-surface);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 15px;
}
.pu-game-card img {
  max-width: 100%;
}
.pu-game-card h3 {
  margin: 15px 0;
  font-size: 1.1rem;
}

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

/* Reviews */
.pu-review-card {
  background-color: var(--color-surface);
  padding: 20px;
  border-radius: 12px;
}
.pu-review-card__header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.pu-review-card__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.pu-review-card__rating {
  color: #ffc107;
}
.pu-review-form-container {
  background-color: var(--color-surface);
  padding: 30px;
  border-radius: 12px;
  margin-top: 40px;
}
.pu-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.pu-form__group {
  display: flex;
  flex-direction: column;
}
.pu-form input,
.pu-form textarea {
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  padding: 12px;
  border-radius: 8px;
}
.pu-form__success-message {
  background-color: #28a745;
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
}

.pu-author-card {
    overflow: hidden;
}
.pu-author-card__photo {
    float: left;
    margin: 0 20px 20px 0;
    max-width: 130px;
}

/* Footer */
.pu-footer {
  background-color: var(--color-dark);
  color: var(--color-text-muted);
  padding: 40px 0;
  margin-top: auto;
}
.pu-footer__top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--color-border);
}
.pu-footer__col h4 {
  color: #fff;
}
.pu-footer__menu {
  list-style: none;
  padding: 0;
}
.pu-footer__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.pu-footer__logos img {
  max-height: 25px;
  max-width: 120px;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.pu-footer__logos img:hover {
  opacity: 1;
}
.pu-footer__bottom {
  padding-top: 30px;
  text-align: center;
  font-size: 12px;
}

/* Sticky Widget */
.pu-sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-dark);
  padding: 15px 0;
  z-index: 99;
  border-top: 2px solid var(--color-accent-2);
  transform: translateY(100%);
  animation: slide-up 0.5s ease 2s forwards;
}
@keyframes slide-up {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
.pu-sticky-widget__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pu-sticky-widget__accent {
  color: var(--color-accent-2);
  font-weight: 700;
}

/* 4. Responsive */
@media (max-width: 992px) {
  .pu-grid--4-cols,
  .pu-grid--3-cols {
    grid-template-columns: repeat(2, 1fr);
  }
  .pu-footer__top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  .pu-hero__title {
    font-size: 2.2rem;
  }
  .pu-grid--2-cols {
    grid-template-columns: 1fr;
  }
  .pu-header__nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    background-color: var(--color-dark);
    flex-direction: column;
    padding: 80px 20px 20px;
    transition: left 0.3s ease;
    display: flex;
  }
  .pu-header__nav.active {
    left: 0;
  }
  .pu-header__menu {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .pu-header__burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 25px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
  }
  .pu-header__burger span {
    width: 100%;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
  }
  .pu-header__burger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .pu-header__burger.active span:nth-child(2) {
    opacity: 0;
  }
  .pu-header__burger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .pu-slider__slide {
    flex: 0 0 90%;
  }
  #slots-slider .pu-slider__slide,
  #live-slider .pu-slider__slide {
    flex: 0 0 45%;
  }

  .pu-footer__top {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .pu-footer__logos {
    justify-content: center;
  }
  .pu-sticky-widget__container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* 5. Decoy WP styles */
.elementor-widget-container {
  margin: 0;
}
.yoast-seo-breadcrumb {
  display: none;
}
.post-edit-link {
  visibility: hidden;
}
.wp-block-button__link {
  color: #fff !important;
  background-color: #323232 !important;
}
