/* Google Fonts */
@font-face {
  font-family: "ProximaNova";
  src: url("/fonts/proximanova-regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* CSS Variables */
:root {
  --color-bg: #211e1c;
  --color-surface: #312d2b;
  --color-primary: #d5812d;
  --color-secondary: #d7cec5;
  --color-text: #f0f0f0;
  --color-text-muted: #a0a0a0;
  --font-main: "ProximaNova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

a:hover {
  color: var(--color-primary);
}

h1,
h2,
h3,
h4 {
  line-height: 1.3;
  margin-bottom: 1rem;
  font-weight: 600;
}

.sol-card {
  background-color: var(--color-surface);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}
.sol-card:hover {
  transform: translateY(-5px);
}

.sol-card__title {
  color: var(--color-primary);
  margin-bottom: 20px;
  border-bottom: 1px solid #444;
  padding-bottom: 10px;
}

/* Buttons */
.sol-btn {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 1rem;
}

.sol-btn--login {
  background-color: var(--color-secondary);
  color: var(--color-bg);
}
.sol-btn--login:hover {
  background-color: #fff;
  color: #000;
}

.sol-btn--signup {
  background-color: var(--color-primary);
  color: #fff;
}
.sol-btn--signup:hover {
  background: linear-gradient(145deg, #e5913d, #c5711d);
  box-shadow: 0 2px 10px rgba(213, 129, 45, 0.4);
}

.sol-btn--bonus {
  background: linear-gradient(45deg, #ff8c00, #f0ad4e);
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
.sol-btn--bonus:hover {
  transform: scale(1.05);
}

.sol-btn--large {
  padding: 15px 40px;
  font-size: 1.2rem;
}

/* Header */
.sol-header {
  background-color: var(--color-surface);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.sol-header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sol-header__logo img {
  display: block;
  height: 40px;
  width: auto;
}

.sol-header__nav {
  display: none;
}

.sol-header__menu {
  list-style: none;
  display: flex;
  gap: 25px;
}

.sol-header__actions {
  display: flex;
  gap: 10px;
}

.sol-header__burger {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.sol-header__burger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--color-text);
  margin: 5px 0;
  transition: all 0.3s ease;
}

.sol-header__burger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.sol-header__burger.active span:nth-child(2) {
  opacity: 0;
}
.sol-header__burger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero */
.sol-hero {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 100px 0;
  background-size: cover;
  background-position: center;
}

.sol-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.sol-hero__container {
  position: relative;
  z-index: 2;
}

.sol-hero__title {
  font-size: 2.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.sol-hero__subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Content */
.sol-content-wrapper {
  padding-top: 30px;
  padding-bottom: 30px;
}

.sol-breadcrumbs {
  margin-bottom: 20px;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}
.sol-breadcrumbs a {
  color: var(--color-text-muted);
}
.sol-breadcrumbs a:hover {
  color: var(--color-secondary);
}

/* TOC */
.sol-toc ul {
  list-style: none;
  columns: 2;
  gap: 10px;
}
.sol-toc ul li a {
  display: block;
  padding: 5px 0;
}

/* Pros Cons */
.sol-pros-cons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sol-pros-cons__column ul {
  list-style: none;
  padding-left: 20px;
}
.sol-pros-cons__column li {
  position: relative;
  margin-bottom: 10px;
}
.sol-pros-cons__column li::before {
  position: absolute;
  left: -20px;
  font-weight: bold;
}
.sol-pros-cons__title--pros {
  color: #28a745;
}
.sol-pros-cons__title--cons {
  color: #dc3545;
}
.sol-pros-cons__column--pros li::before {
  content: "+";
  color: #28a745;
}
.sol-pros-cons__column--cons li::before {
  content: "-";
  color: #dc3545;
}

/* Jackpots */
.sol-jackpots {
  text-align: center;
  background: linear-gradient(135deg, #4a423f, #312d2b);
}
.sol-jackpots__amount {
  font-size: 3rem;
  font-weight: bold;
  color: var(--color-primary);
  letter-spacing: 2px;
  text-shadow: 0 0 10px var(--color-primary);
}

/* Mirrors Table */
.sol-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.sol-table th,
.sol-table td {
  padding: 12px 15px;
  border: 1px solid #444;
}
.sol-table thead {
  background-color: #3a3533;
}
.sol-table tbody tr:nth-child(even) {
  background-color: #2a2625;
}
.sol-status {
  padding: 3px 8px;
  border-radius: 5px;
  font-size: 0.9rem;
  color: #fff;
}
.sol-status--online {
  background-color: #28a745;
}
.sol-status--slow {
  background-color: #ffc107;
  color: #000;
}

/* Tournaments & Games Slider */
.sol-slider-container {
  position: relative;
}
.sol-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}
.sol-slider::-webkit-scrollbar {
  display: none;
}
.sol-slider__item {
  flex: 0 0 100%;
  scroll-snap-align: start;
  padding: 0 10px;
}
.sol-tournament-card,
.sol-game-card {
  background-color: #2a2625;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}
.sol-tournament-card__prize {
  font-size: 1.2rem;
  color: var(--color-primary);
  margin: 10px 0;
}
.sol-tournament-card__timer {
  font-weight: bold;
}
.sol-game-card img {
  height: 80px;
  width: auto;
  margin-bottom: 15px;
  border-radius: 8px;
}

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

/* Text Content */
.sol-text-content p,
.sol-text-content ul,
.sol-text-content ol,
.sol-text-content table {
  margin-bottom: 1.5rem;
}
.sol-text-content ul,
.sol-text-content ol {
  padding-left: 20px;
}
.sol-text-content h3 {
  font-size: 1.5rem;
  color: var(--color-secondary);
}
.sol-text-content table {
  width: 100%;
  border-collapse: collapse;
}
.sol-text-content th,
.sol-text-content td {
  padding: 8px;
  border: 1px solid #555;
  text-align: left;
}
.sol-text-content thead {
  background-color: #3a3533;
}

/* FAQ */
.sol-accordion__item {
  border-bottom: 1px solid #444;
}
.sol-accordion__item summary {
  padding: 15px 0;
  font-weight: bold;
  cursor: pointer;
  list-style: none; /* Remove default marker */
  position: relative;
  padding-right: 30px;
}
.sol-accordion__item summary::-webkit-details-marker {
  display: none;
}
.sol-accordion__item summary::after {
  content: "+";
  position: absolute;
  right: 5px;
  font-size: 1.5rem;
  transition: transform 0.3s;
}
.sol-accordion__item[open] summary::after {
  transform: rotate(45deg);
}
.sol-accordion__item p {
  padding: 0 0 15px;
  color: var(--color-text-muted);
}

/* Author */
.sol-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.sol-author__photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-primary);
}
.sol-author__socials {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 15px;
}

/* Footer */
.sol-footer {
  background-color: var(--color-surface);
  padding: 40px 0 20px;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}
.sol-footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}
.sol-footer__col {
  flex: 1 1 200px;
}
.sol-footer__col h4 {
  color: var(--color-secondary);
  margin-bottom: 15px;
}
.sol-footer__col ul {
  list-style: none;
}
.sol-footer__col ul li {
  margin-bottom: 8px;
}
.sol-footer__middle {
  margin-bottom: 30px;
}
.sol-footer__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}
.sol-footer__logos img {
  height: 25px;
  width: auto;
  filter: grayscale(1);
  opacity: 0.7;
  transition: all 0.3s;
}
.sol-footer__logos img:hover {
  filter: grayscale(0);
  opacity: 1;
}
.sol-footer__bottom {
  text-align: center;
  border-top: 1px solid #444;
  padding-top: 20px;
}

/* Sticky Widget */
.sol-sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(213, 129, 45, 0.95), rgba(213, 129, 45, 0.85));
  padding: 15px 0;
  z-index: 999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  color: #fff;
  text-align: center;
}
.sol-sticky-widget__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.sol-sticky-widget p {
  margin: 0;
}
.sol-sticky-widget a {
  color: #fff;
}

/* Unused styles for obfuscation */
.elementor-widget-container {
  margin: 0;
}
.yoast-seo-breadcrumb {
  display: none;
}
.post-edit-link {
  color: #ff0000;
}

/* Responsive */
@media (min-width: 768px) {
  .sol-header__nav {
    display: block;
  }
  .sol-header__burger {
    display: none;
  }
  .sol-hero__title {
    font-size: 3.5rem;
  }
  .sol-pros-cons {
    flex-direction: row;
  }
  .sol-slider__item {
    flex-basis: 33.33%;
  }
  .sol-author {
    flex-direction: row;
    text-align: left;
  }
  .sol-sticky-widget__container {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (max-width: 767px) {
  .sol-header__nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--color-surface);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: left 0.3s ease;
    display: flex;
  }
  .sol-header__nav.active {
    left: 0;
  }
  .sol-header__menu {
    flex-direction: column;
    text-align: center;
    font-size: 1.5rem;
  }
  .sol-toc ul {
    columns: 1;
  }
}
