:root {
  --clr-primary: #00fbc8;
  --clr-secondary: #ff2e09;
  --clr-bg: #323234;
  --clr-dark: #000000;
  --clr-light: #ffffff;
  --clr-text: #e8e8e8;
  --clr-muted: #a0a0a0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'PT Sans', sans-serif;
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
  overflow-x: hidden;
}

body.fixed {
  overflow: hidden;
}

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

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

/* WordPress fake styles */
.wp-block-group { display: block; }
.wp-block-column { display: block; }
.elementor-section { display: none; }
.yoast-schema-graph { display: none; }

/* Header Styles */
.header {
  background: var(--clr-dark);
  padding: 15px 25px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.header-menu {
  display: flex;
  list-style: none;
  gap: 25px;
  align-items: center;
}

.header-menu a {
  color: var(--clr-text);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
  font-weight: 500;
}

.header-menu a:hover {
  color: var(--clr-primary);
}

.header-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.online-counter {
  background: rgba(0, 251, 200, 0.1);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 13px;
  color: var(--clr-primary);
  display: flex;
  align-items: center;
  gap: 5px;
}

.online-dot {
  width: 8px;
  height: 8px;
  background: var(--clr-primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.burger span {
  width: 25px;
  height: 3px;
  background: var(--clr-primary);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.btn-login {
  background: var(--clr-primary);
  color: var(--clr-dark);
}

.btn-login:hover {
  background: #00e5b8;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 251, 200, 0.3);
}

.btn-signup {
  background: var(--clr-secondary);
  color: var(--clr-light);
}

.btn-signup:hover {
  background: #e52908;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 46, 9, 0.3);
}

.btn-cta {
  background: linear-gradient(135deg, var(--clr-secondary), #ff5722);
  color: var(--clr-light);
  padding: 16px 40px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-cta:hover {
  background: linear-gradient(135deg, #e52908, #ff2e09);
  transform: scale(1.05);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 500px;
  margin: 20px 0;
  border-radius: 15px;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  height: 100%;
}

.hero-slide {
  display: none;
  position: relative;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  padding: 60px 40px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.hero-slide.active {
  display: flex;
  animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(50,50,52,0.6));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-content h2 {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--clr-light);
  text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
  line-height: 1.2;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
  color: var(--clr-text);
  text-shadow: 1px 1px 5px rgba(0,0,0,0.6);
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: var(--clr-primary);
  width: 30px;
  border-radius: 6px;
}

/* Content Sections */
.content-section {
  margin: 40px 0;
  padding: 30px;
  background: rgba(0,0,0,0.3);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.section-title {
  font-size: 32px;
  margin-bottom: 25px;
  color: var(--clr-light);
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-secondary));
}

/* Casino Info Table */
.casino-info-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.casino-info-table thead {
  background: linear-gradient(135deg, var(--clr-dark), #1a1a1a);
}

.casino-info-table th {
  padding: 15px;
  text-align: left;
  color: var(--clr-primary);
  font-weight: 600;
  border-bottom: 2px solid var(--clr-primary);
}

.casino-info-table tbody tr {
  background: rgba(0,0,0,0.4);
  transition: background 0.3s ease;
}

.casino-info-table tbody tr:nth-child(even) {
  background: rgba(0,0,0,0.2);
}

.casino-info-table tbody tr:hover {
  background: rgba(0, 251, 200, 0.1);
}

.casino-info-table td {
  padding: 12px 15px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.casino-info-table td:first-child {
  font-weight: 600;
  color: var(--clr-muted);
}

.table-wrapper {
  overflow-x: auto;
}

/* Screenshots */
.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.screenshot-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.screenshot-item:hover {
  transform: scale(1.05);
}

.screenshot-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* Tournaments */
.tournaments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 25px;
}

.tournament-card {
  background: linear-gradient(135deg, rgba(0,0,0,0.5), rgba(0,0,0,0.3));
  border-radius: 15px;
  padding: 25px;
  border: 2px solid rgba(0, 251, 200, 0.2);
  transition: all 0.3s ease;
}

.tournament-card:hover {
  border-color: var(--clr-primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 251, 200, 0.2);
}

.tournament-title {
  font-size: 22px;
  color: var(--clr-primary);
  margin-bottom: 10px;
}

.tournament-description {
  color: var(--clr-muted);
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.5;
}

.tournament-timer {
  background: rgba(255, 46, 9, 0.2);
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 15px;
  color: var(--clr-secondary);
  font-weight: 600;
}

.tournament-prize {
  font-size: 28px;
  color: var(--clr-secondary);
  font-weight: 700;
  text-align: center;
}

/* Video Review */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 15px;
  margin-top: 25px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.author-info {
  margin-top: 20px;
  padding: 20px;
  background: rgba(0,0,0,0.3);
  border-left: 4px solid var(--clr-primary);
  border-radius: 8px;
}

.author-info h4 {
  color: var(--clr-primary);
  margin-bottom: 10px;
}

.author-info p {
  color: var(--clr-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* Slot Game */
.slot-game {
  background: linear-gradient(135deg, #1a1a1a, #2a2a2c);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  margin-top: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.slot-machine {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 30px 0;
}

.slot-reel {
  width: 100px;
  height: 120px;
  background: rgba(0,0,0,0.5);
  border: 3px solid var(--clr-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  transition: all 0.1s ease;
}

.slot-reel.spinning {
  animation: spin 0.1s linear infinite;
}

@keyframes spin {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

.slot-btn {
  background: linear-gradient(135deg, var(--clr-secondary), #ff5722);
  color: var(--clr-light);
  padding: 15px 50px;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slot-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(255, 46, 9, 0.4);
}

.slot-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.slot-result {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 600;
  min-height: 80px;
}

.slot-result.win {
  color: var(--clr-primary);
}

.slot-result.lose {
  color: var(--clr-muted);
}

/* FAQ */
.faq-container {
  margin-top: 25px;
}

.faq-item {
  background: rgba(0,0,0,0.3);
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(0, 251, 200, 0.05);
}

.faq-question h3 {
  font-size: 18px;
  color: var(--clr-light);
  margin: 0;
}

.faq-icon {
  font-size: 24px;
  color: var(--clr-primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 20px 20px 20px;
  color: var(--clr-muted);
  line-height: 1.6;
}

/* Footer */
.footer {
  background: var(--clr-dark);
  padding: 40px 0 20px;
  margin-top: 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-section h4 {
  color: var(--clr-primary);
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-menu {
  list-style: none;
}

.footer-menu li {
  margin-bottom: 10px;
}

.footer-menu a {
  color: var(--clr-text);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-menu a:hover {
  color: var(--clr-primary);
}

.payment-methods, .game-providers {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.payment-logo, .provider-logo {
  width: 60px;
  height: auto;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.payment-logo:hover, .provider-logo:hover {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  color: var(--clr-muted);
  font-size: 14px;
}

.footer-legal {
  margin-top: 15px;
  font-size: 12px;
  line-height: 1.5;
}

/* Sticky Widget */
.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--clr-secondary), #ff5722);
  padding: 15px;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
  z-index: 999;
  transform: translateY(100%);
  animation: slideUp 0.5s ease forwards;
  animation-delay: 2s;
}

@keyframes slideUp {
  to { transform: translateY(0); }
}

.widget-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.widget-text {
  color: var(--clr-light);
  font-size: 18px;
  font-weight: 600;
}

.widget-bonus {
  color: var(--clr-light);
  font-size: 24px;
  font-weight: 700;
}

.widget-btn {
  background: var(--clr-dark);
  color: var(--clr-primary);
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.widget-btn:hover {
  background: var(--clr-light);
  transform: scale(1.05);
}

/* Content Styles */
.text-content {
  line-height: 1.6;
}

.text-content h1, .text-content h2, .text-content h3 {
  color: var(--clr-light);
  margin: 25px 0 15px;
}

.text-content h1 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 30px;
}

.text-content h2 {
  font-size: 28px;
}

.text-content h3 {
  font-size: 22px;
}

.text-content p {
  margin-bottom: 15px;
  color: var(--clr-text);
}

.text-content ul, .text-content ol {
  margin: 15px 0;
  padding-left: 30px;
}

.text-content li {
  margin-bottom: 8px;
  color: var(--clr-text);
}

.text-content a {
  color: var(--clr-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content a:hover {
  color: var(--clr-secondary);
}

.text-content table {
  width: 100%;
  margin: 20px 0;
  border-collapse: collapse;
}

.text-content table th, .text-content table td {
  padding: 12px;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.2);
}

.text-content table th {
  background: rgba(0,0,0,0.5);
  color: var(--clr-primary);
}

/* Responsive */
@media (max-width: 768px) {
  .header-nav {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--clr-dark);
    flex-direction: column;
    padding: 30px;
    transition: left 0.3s ease;
  }
  
  .header-nav.active {
    left: 0;
  }
  
  .header-menu {
    flex-direction: column;
    width: 100%;
  }
  
  .burger {
    display: flex;
  }
  
  .hero-content h2 {
    font-size: 32px;
  }
  
  .hero-content p {
    font-size: 16px;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .screenshots-grid,
  .tournaments-grid {
    grid-template-columns: 1fr;
  }
  
  .widget-content {
    flex-direction: column;
    text-align: center;
  }
  
  .widget-text {
    font-size: 16px;
  }
  
  .widget-bonus {
    font-size: 20px;
  }
}

/* Unused styles for uniqueness */
.unused-class-a1b2c3 { display: none; }
.unused-class-x7y8z9 { visibility: hidden; }
.legacy-wrapper-deprecated { opacity: 0; }
.old-container-v1 { display: none; }
