/* Mulish Font */
@font-face {
  font-family: "Mulish";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/mulish-v12-cyrillic_latin-regular.woff2") format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

/* --- Variables --- */
:root {
  --bg-color: #19191b;
  --header-footer-bg: #060606;
  --text-color: #e2e1e0;
  --accent-color: #d6a054;
  --card-bg: #2a2a2e;
  --border-color: #444;
  --font-family: "Mulish", sans-serif, "Arial";
  --transition-speed: 0.3s;
}

/* --- Base & Reset --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-family);
  line-height: 1.7;
  font-size: 16px;
}

.wrapper {
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color var(--transition-speed);
}

a:hover {
  color: #fff;
  text-decoration: underline;
}

h1,
h2,
h3,
h4 {
  color: #fff;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #fff;
  position: relative;
  padding-bottom: 10px;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: transform var(--transition-speed), background-color var(--transition-speed), box-shadow
    var(--transition-speed);
  text-transform: uppercase;
  font-size: 14px;
  border: none;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  text-decoration: none;
}
.btn-login {
  background-color: transparent;
  border: 1px solid var(--text-color);
  color: var(--text-color);
}
.btn-login:hover {
  background-color: var(--text-color);
  color: var(--header-footer-bg);
}
.btn-register {
  background-color: var(--accent-color);
  color: var(--header-footer-bg);
}
.btn-register:hover {
  background-color: #e7b165;
  color: #000;
}
.btn-demo {
  background-color: #555;
  color: #fff;
}
.btn-demo:hover {
  background-color: #777;
}

/* --- Header --- */
.header {
  background-color: var(--header-footer-bg);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img {
  height: 40px;
  width: auto;
}
.header-actions {
  display: flex;
  gap: 15px;
}

/* --- Hero --- */
.hero-section {
  position: relative;
  padding: 80px 20px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 30px;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-title {
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-color);
  margin-bottom: 2rem;
}

/* --- Breadcrumbs --- */
.breadcrumb-container {
  padding: 15px 0;
  font-size: 0.9rem;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  margin: 0 0.5rem;
  color: var(--text-color);
}
.breadcrumb-item a {
  color: var(--text-color);
}
.breadcrumb-item.active {
  color: var(--accent-color);
}

/* --- Content Blocks --- */
.content-block {
  padding: 40px;
  background-color: var(--card-bg);
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Table of Contents */
.toc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.toc-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #333;
  padding: 20px;
  border-radius: 8px;
  color: var(--text-color);
  text-align: center;
  transition: transform var(--transition-speed), background-color var(--transition-speed);
}
.toc-tile:hover {
  transform: translateY(-5px);
  background-color: var(--accent-color);
  color: var(--header-footer-bg);
  text-decoration: none;
}
.toc-tile i {
  font-size: 2rem;
  margin-bottom: 10px;
}

/* Info Table */
.table-responsive {
  overflow-x: auto;
}
.info-table {
  width: 100%;
  border-collapse: collapse;
}
.info-table td {
  padding: 15px;
  border: 1px solid var(--border-color);
}
.info-table tr:nth-child(odd) {
  background-color: #333;
}
.info-table td:first-child {
  font-weight: bold;
  color: #fff;
  width: 30%;
}

/* Pros and Cons */
.pros-cons-grid {
  display: flex;
  gap: 30px;
}
.pros-cons-column {
  flex: 1;
}
.pros-cons-column h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid;
}
.pros-title {
  color: #28a745;
  border-color: #28a745;
}
.cons-title {
  color: #dc3545;
  border-color: #dc3545;
}
.pros-cons-column ul {
  list-style: none;
  padding-left: 0;
}
.pros-cons-column li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 10px;
}
.pros-cons-column li::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
}
.pros-column li::before {
  content: "\f058";
  color: #28a745;
} /* In real project this is not how it's done */
.pros-cons-column.pros-column ul li::before {
  content: "\f058";
  color: #28a745;
}
.pros-cons-column.cons-column ul li::before {
  content: "\f057";
  color: #dc3545;
}

/* Tournaments & Slots (Swiper) */
.swiper-slide {
  display: flex;
  justify-content: center;
}
.tournament-card,
.slot-card {
  background-color: #333;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  width: 100%;
  transition: transform 0.3s;
}
.tournament-card:hover {
  transform: scale(1.02);
}
.tournament-timer {
  font-size: 1.1rem;
  margin: 15px 0;
  color: var(--accent-color);
}
.tournament-prize {
  font-weight: bold;
}
.slot-card img {
  border-radius: 8px;
  margin-bottom: 15px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.slot-card h4 {
  margin-bottom: 15px;
  min-height: 40px;
}
.swiper-pagination-bullet {
  background: #fff;
}
.swiper-pagination-bullet-active {
  background: var(--accent-color);
}

/* Video */
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  border-radius: 8px;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Main Review Content Styling */
.review-content h2 {
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--accent-color);
}
.review-content h3 {
  font-size: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
.review-content p {
  margin-bottom: 1rem;
}
.review-content ul,
.review-content ol {
  margin-bottom: 1rem;
  padding-left: 25px;
}
.review-content li {
  margin-bottom: 0.5rem;
}
.review-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}
.review-content th,
.review-content td {
  border: 1px solid var(--border-color);
  padding: 10px;
  text-align: left;
}
.review-content th {
  background-color: #333;
  color: #fff;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.testimonial-card {
  background-color: #333;
  padding: 20px;
  border-radius: 8px;
  border-left: 5px solid var(--accent-color);
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.rating {
  color: #ffc107;
}

/* Review Form */
.review-form-container {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}
#review-form .form-group {
  margin-bottom: 15px;
}
#review-form input,
#review-form textarea {
  width: 100%;
  padding: 12px;
  background-color: #444;
  border: 1px solid #555;
  border-radius: 5px;
  color: var(--text-color);
}
#review-form input::placeholder,
#review-form textarea::placeholder {
  color: #aaa;
}
.form-success {
  margin-top: 15px;
  padding: 15px;
  background-color: #28a745;
  color: #fff;
  border-radius: 5px;
  text-align: center;
}

/* Author Block */
.author-content {
  display: flex;
  gap: 30px;
  align-items: center;
}
.author-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-color);
}
.author-info {
  flex: 1;
}
.author-socials {
  margin-top: 15px;
  display: flex;
  gap: 15px;
}
.author-socials a {
  font-size: 1.5rem;
  color: var(--text-color);
}
.author-socials a:hover {
  color: var(--accent-color);
}

/* --- Footer --- */
.footer {
  background-color: var(--header-footer-bg);
  padding: 40px 0;
  margin-top: 30px;
  color: #aaa;
  border-top: 1px solid var(--border-color);
}
.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}
.footer-col h4 {
  color: #fff;
  margin-bottom: 15px;
}
.footer-menu {
  list-style: none;
}
.footer-menu li {
  margin-bottom: 10px;
}
.footer-menu a {
  color: #aaa;
}
.footer-menu a:hover {
  color: #fff;
}
.footer-logos {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-logos img {
  height: 25px;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.footer-logos img:hover {
  opacity: 1;
}
.footer-legal {
  margin-top: 20px;
  font-size: 0.8rem;
}

/* --- Sticky Widget --- */
.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--header-footer-bg);
  padding: 15px 0;
  z-index: 999;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.5s ease-out;
}
@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
.widget-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.widget-content span {
  font-size: 1.1rem;
}
.widget-content strong {
  color: var(--accent-color);
}

/* --- Modal --- */
.modal {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
  animation: fadeIn 0.3s;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.modal-content {
  background-color: var(--card-bg);
  margin: 5% auto;
  padding: 20px;
  border: 1px solid var(--border-color);
  width: 90%;
  max-width: 900px;
  border-radius: 8px;
  position: relative;
  animation: zoomIn 0.3s;
}
@keyframes zoomIn {
  from {
    transform: scale(0.5);
  }
  to {
    transform: scale(1);
  }
}
.modal-close {
  color: #aaa;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
.modal-close:hover,
.modal-close:focus {
  color: #fff;
}
.modal-body {
  padding: 10px 0;
}
.modal-body iframe {
  width: 100%;
  height: 500px;
  border: none;
}
.modal-footer {
  padding-top: 20px;
  text-align: center;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .pros-cons-grid {
    flex-direction: column;
  }
  .author-content {
    flex-direction: column;
    text-align: center;
  }
  .sticky-widget {
    flex-direction: column;
    text-align: center;
  }
  .widget-content {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .header-actions .btn {
    padding: 8px 15px;
    font-size: 12px;
  }
  .content-block {
    padding: 20px;
  }
}

/* Unused styles for obfuscation */
.widget_search,
.comment-form-url,
.post-navigation,
.elementor-widget-container {
  display: none !important;
}
.hidden-for-seo {
  visibility: hidden;
  position: absolute;
}
