:root {
  --bg-color: #323234;
  --header-footer-bg: #000000;
  --primary-text: #ffffff;
  --secondary-text: #b0b0b0;
  --accent-color: #00fbc8;
  --accent-color-hover: #00d8ad;
  --register-color: #ff2e09;
  --register-color-hover: #e02807;
  --card-bg: #3f3f41;
  --card-border: #505052;
}

body {
  font-family: "PT Sans", sans-serif;
  background-color: var(--bg-color);
  color: var(--primary-text);
  line-height: 1.7;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  /*overflow-x: hidden;*/
}

.main-content {
  flex: 1 0 auto;
}

/* Header */
.header {
  background-color: var(--header-footer-bg);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background-color 0.3s ease;
}
.logo-img {
  height: 45px;
  transition: transform 0.3s ease;
}
.logo-img:hover {
  transform: scale(1.05);
}
.navbar-dark .navbar-nav .nav-link {
  color: var(--primary-text);
  font-weight: 700;
  margin: 0 15px;
  transition: color 0.3s ease;
}
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--accent-color);
}
.btn-download-header {
  background-color: var(--accent-color);
  color: #000;
  font-weight: 700;
  border: none;
  transition: background-color 0.3s ease;
}
.btn-download-header:hover {
  background-color: var(--accent-color-hover);
  color: #000;
}

/* Hero Section */
.hero-section {
  background: url("/pin-up-casino-banner.png") no-repeat center center;
  background-size: cover;
  padding: 80px 0;
  position: relative;
  color: #fff;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}
.hero-section .container {
  position: relative;
  z-index: 2;
}
.hero-text-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.btn-download-main {
  background-color: var(--register-color);
  color: #fff;
  font-weight: 700;
  padding: 15px 30px;
  font-size: 1.2rem;
  border: none;
  transition: all 0.3s ease;
}
.btn-download-main:hover {
  background-color: var(--register-color-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 46, 9, 0.4);
}
.iphone-frame {
  position: relative;
  width: 280px;
  height: 570px;
  background: #111;
  border-radius: 40px;
  border: 2px solid #555;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  margin: 0 auto;
  padding: 15px;
}
.iphone-frame img {
  width: 100%;
  height: 100%;
  border-radius: 25px;
  object-fit: cover;
}

/* Breadcrumbs */
.breadcrumb-container {
  background-color: var(--card-bg);
  padding: 10px 20px;
  border-radius: 8px;
}
.breadcrumb {
  margin-bottom: 0;
}
.breadcrumb-item a {
  color: var(--accent-color);
  text-decoration: none;
}
.breadcrumb-item.active {
  color: var(--secondary-text);
}

/* Content Blocks */
.content-block {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--card-border);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.content-block h2 {
  font-weight: 700;
  color: var(--primary-text);
}

/* Sliders */
.swiper-slide {
  padding: 20px;
  border-radius: 8px;
  background: #4a4a4d;
  text-align: center;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.swiper-pagination-bullet-active {
  background: var(--accent-color) !important;
}

.bonus-card h5 {
  color: var(--accent-color);
  font-weight: 700;
}
.bonus-card .bonus-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 10px 0;
}

.tournament-card .prize-pool {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-color);
}
.tournament-card .timer {
  margin-top: 10px;
  font-size: 1rem;
}

/* Tables */
.info-table,
.mirrors-table {
  border-radius: 8px;
  overflow: hidden;
}
.info-table td:first-child {
  font-weight: 700;
  color: var(--secondary-text);
}
.mirrors-table .status-ok {
  color: #28a745;
  font-weight: 700;
}

/* Main Text Content Styling */
.text-content-wrapper {
  line-height: 1.8;
}
.text-content-wrapper h2,
.text-content-wrapper h3,
.text-content-wrapper h4 {
  color: var(--accent-color);
  font-weight: 700;
  margin-top: 1.5em;
  margin-bottom: 0.8em;
}
.text-content-wrapper p {
  margin-bottom: 1em;
}
.text-content-wrapper a {
  color: var(--accent-color);
  text-decoration: underline;
}
.text-content-wrapper ul,
.text-content-wrapper ol {
  padding-left: 20px;
  margin-bottom: 1em;
}
.text-content-wrapper li {
  margin-bottom: 0.5em;
}
.text-content-wrapper table {
  width: 100%;
  margin-bottom: 1.5em;
  border-collapse: collapse;
}
.text-content-wrapper th,
.text-content-wrapper td {
  border: 1px solid var(--card-border);
  padding: 12px;
  text-align: left;
}
.text-content-wrapper th {
  background-color: #4a4a4d;
}
.text-content-wrapper blockquote {
  border-left: 4px solid var(--accent-color);
  padding-left: 15px;
  margin: 1.5em 0;
  font-style: italic;
  color: var(--secondary-text);
}

/* Reviews */
.review-card {
  background: #4a4a4d;
  padding: 20px;
  border-radius: 8px;
  height: 100%;
}
.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}
.rating {
  color: #ffc107;
}
.review-form-container {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  background: #4a4a4d;
  padding: 30px;
  border-radius: 8px;
}
.form-control {
  background-color: #555;
  border: 1px solid #666;
  color: #fff;
}
.form-control::placeholder {
  color: #aaa;
}
.form-control:focus {
  background-color: #555;
  border-color: var(--accent-color);
  color: #fff;
  box-shadow: 0 0 0 0.25rem rgba(0, 251, 200, 0.25);
}

/* Author Block */
.author-card {
  display: flex;
  align-items: center;
  gap: 20px;
}
.author-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}
.author-social a {
  color: var(--accent-color);
  text-decoration: none;
  margin-right: 15px;
}

/* Footer */
.footer {
  background-color: var(--header-footer-bg);
  color: var(--secondary-text);
  padding: 40px 0 20px;
  flex-shrink: 0;
}
.footer h5 {
  color: var(--primary-text);
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links a {
  color: var(--secondary-text);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: var(--accent-color);
}
.payment-logos img,
.provider-logos img {
  height: 25px;
  margin: 5px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}
.payment-logos img:hover,
.provider-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}
.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 20px;
  margin-top: 20px;
  text-align: center;
  font-size: 0.9rem;
}

/* Sticky Widget */
.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(45deg, #000, #222);
  padding: 15px 0;
  z-index: 1010;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
  animation: slideInUp 0.5s ease-out;
}
.widget-text {
  font-size: 1.1rem;
}
.bonus-highlight {
  color: var(--register-color);
  font-weight: 700;
}
.btn-register {
  background-color: var(--register-color);
  color: #fff;
  font-weight: 700;
  border: none;
  text-decoration: none !important;
  transition: background-color 0.3s ease;
}
.btn-register:hover {
  background-color: var(--register-color-hover);
  color: #fff;
}

/* Buttons */
.btn-accent {
  background-color: var(--accent-color);
  color: #000;
  font-weight: 700;
  border: none;
}
.btn-accent:hover {
  background-color: var(--accent-color-hover);
  color: #000;
}

/* Animations */
@keyframes slideInUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 991.98px) {
  .hero-text-content {
    text-align: center;
    margin-bottom: 40px;
  }
  .sticky-widget {
    flex-direction: column;
    text-align: center;
  }
  .widget-text {
    margin-bottom: 10px;
  }
  .author-card {
    flex-direction: column;
    text-align: center;
  }
}

/* Fake WP classes for obfuscation */
.yoast-container,
.elementor-widget-container {
  /* No styles needed, just for class names in HTML */
}
.wp-block-group {
  border: 1px dashed #555;
  padding: 5px;
}
