:root {
  --color-header: #222723;
  --color-footer: #222723;
  --color-btn-login: #02504b;
  --color-btn-signup: #f9c719;
  --color-bg: #0e2f2b;
  --color-text-light: #ffffff;
  --color-text-dark: #1a1a1a;
  --color-accent: #02504b;
  --color-accent-hover: #037066;
}

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

body {
  font-family: "Roboto", -apple-system, "BlinkMacSystemFont", "Segoe UI", "Oxygen", "Ubuntu", "Cantarell", "Open Sans",
    "Helvetica Neue", "Arial", sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

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

.header-logo img {
  height: 50px;
  width: auto;
}

.header-nav {
  flex: 1;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  color: var(--color-text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu li a:hover {
  color: var(--color-btn-signup);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.online-counter {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
}

.online-icon {
  font-size: 10px;
}

.auth-buttons {
  display: flex;
  gap: 10px;
}

.btn {
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

.btn-login {
  background-color: var(--color-btn-login);
  color: var(--color-text-light);
}

.btn-login:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
}

.btn-signup {
  background-color: var(--color-btn-signup);
  color: var(--color-text-dark);
}

.btn-signup:hover {
  background-color: #ffd633;
  transform: translateY(-2px);
}

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

.burger-menu span {
  width: 25px;
  height: 3px;
  background-color: var(--color-text-light);
  transition: all 0.3s;
}

/* Hero Section */
.hero-section {
  position: relative;
  margin-bottom: 40px;
}

.hero-slider {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  text-align: center;
  z-index: 2;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
  font-size: 24px;
  margin-bottom: 25px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.btn-hero {
  background-color: var(--color-btn-signup);
  color: var(--color-text-dark);
  padding: 15px 40px;
  font-size: 18px;
}

.hero-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 3;
}

.hero-prev,
.hero-next {
  background: rgba(255, 255, 255, 0.3);
  border: none;
  color: white;
  font-size: 30px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.hero-prev:hover,
.hero-next:hover {
  background: rgba(255, 255, 255, 0.5);
}

.hero-dots {
  display: flex;
  gap: 10px;
}

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

.dot.active {
  background: white;
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 20px 0;
}

.breadcrumb-list {
  display: flex;
  list-style: none;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.breadcrumb-item {
  color: var(--color-text-light);
}

.breadcrumb-item a {
  color: var(--color-btn-signup);
  text-decoration: none;
}

.breadcrumb-item:not(:last-child)::after {
  content: "›";
  margin-left: 10px;
  color: var(--color-text-light);
}

/* Main Content */
.main-content {
  flex: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: var(--color-btn-signup);
}

.section-header p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
}

/* Pros and Cons */
.pros-cons-section {
  padding: 60px 0;
}

.pros-cons-wrapper {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.pros-block,
.cons-block {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.pros-title {
  color: #4ade80;
  font-size: 24px;
  margin-bottom: 20px;
}

.cons-title {
  color: #f87171;
  font-size: 24px;
  margin-bottom: 20px;
}

.pros-list,
.cons-list {
  list-style: none;
  padding: 0;
}

.pros-list li,
.cons-list li {
  padding: 10px 0;
  padding-left: 25px;
  position: relative;
  line-height: 1.6;
}

.pros-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: bold;
}

.cons-list li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #f87171;
  font-weight: bold;
}

/* Tournaments */
.tournaments-section {
  padding: 60px 0;
}

.tournaments-wrapper {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.tournament-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s;
}

.tournament-card:hover {
  transform: translateY(-5px);
}

.tournament-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.tournament-content {
  padding: 20px;
}

.tournament-name {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--color-btn-signup);
}

.tournament-description {
  font-size: 14px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.tournament-prize {
  font-size: 18px;
  margin-bottom: 15px;
  color: #4ade80;
}

.tournament-timer {
  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 15px;
  text-align: center;
}

.timer-label {
  display: block;
  font-size: 12px;
  margin-bottom: 5px;
}

.timer-value {
  font-size: 20px;
  font-weight: bold;
  color: var(--color-btn-signup);
}

.btn-tournament {
  width: 100%;
  background-color: var(--color-btn-login);
  color: var(--color-text-light);
}

/* Slot Game */
.slot-game-section {
  padding: 60px 0;
}

.slot-game-container {
  max-width: 600px;
  margin: 0 auto;
}

.slot-machine {
  background: linear-gradient(135deg, #1a3a35 0%, #0e2f2b 100%);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 3px solid var(--color-btn-signup);
}

.slot-display {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  background: rgba(0, 0, 0, 0.3);
  padding: 30px;
  border-radius: 10px;
}

.slot-reel {
  width: 100px;
  height: 100px;
  background: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  overflow: hidden;
  position: relative;
}

.slot-symbol {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slot-spin-btn {
  width: 100%;
  padding: 20px;
  font-size: 24px;
  font-weight: bold;
  background: linear-gradient(135deg, var(--color-btn-signup) 0%, #ffd633 100%);
  color: var(--color-text-dark);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
}

.slot-spin-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(249, 199, 25, 0.5);
}

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

.slot-result {
  margin-top: 30px;
  text-align: center;
  background: rgba(74, 222, 128, 0.2);
  padding: 30px;
  border-radius: 10px;
  border: 2px solid #4ade80;
}

.result-content h3 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #4ade80;
}

.result-content p {
  font-size: 20px;
  margin-bottom: 20px;
}

.btn-claim {
  background-color: var(--color-btn-signup);
  color: var(--color-text-dark);
  padding: 15px 40px;
  font-size: 18px;
}

/* Content Block */
.content-block {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 10px;
  margin: 40px 0;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.content-block h1 {
  font-size: 36px;
  margin-bottom: 30px;
  color: var(--color-btn-signup);
}

.content-block h2 {
  font-size: 28px;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--color-btn-signup);
}

.content-block h3 {
  font-size: 22px;
  margin-top: 25px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.9);
}

.content-block p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.content-block ul,
.content-block ol {
  margin-bottom: 20px;
  padding-left: 30px;
}

.content-block li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.content-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: rgba(255, 255, 255, 0.05);
}

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

.content-block table th {
  background: rgba(255, 255, 255, 0.1);
  font-weight: 600;
  color: var(--color-btn-signup);
}

.author-info-block {
  display: flex;
  gap: 20px;
  background: rgba(255, 255, 255, 0.08);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
  align-items: center;
}

.author-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.author-details h3 {
  margin-bottom: 10px;
  color: var(--color-btn-signup);
}

.author-details p {
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.5;
}

.author-details a {
  color: var(--color-btn-signup);
  text-decoration: none;
}

/* Reviews */
.reviews-section {
  padding: 60px 0;
}

.reviews-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.review-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.review-header {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  align-items: center;
}

.review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.review-author {
  font-size: 18px;
  margin-bottom: 5px;
  color: var(--color-btn-signup);
}

.review-rating .stars {
  color: #ffd633;
  font-size: 18px;
}

.review-text {
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.review-form-container {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.review-form-container h3 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--color-btn-signup);
  font-size: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-text-light);
  font-family: inherit;
  font-size: 16px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-btn-signup);
}

.btn-submit-review {
  width: 100%;
  background-color: var(--color-btn-login);
  color: var(--color-text-light);
  padding: 15px;
  font-size: 18px;
}

.review-success-message {
  background: rgba(74, 222, 128, 0.2);
  padding: 20px;
  border-radius: 10px;
  border: 2px solid #4ade80;
  text-align: center;
  margin-top: 20px;
}

.review-success-message p {
  color: #4ade80;
  font-size: 18px;
  margin: 0;
}

/* FAQ */
.faq-section {
  padding: 60px 0;
}

.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.3s;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.faq-question {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--color-btn-signup);
  position: relative;
  padding-right: 30px;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 28px;
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

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

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

.faq-answer p {
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer-main {
  background-color: var(--color-footer);
  padding: 60px 0 20px;
  margin-top: 80px;
}

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

.footer-section h4 {
  color: var(--color-btn-signup);
  margin-bottom: 20px;
  font-size: 20px;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 15px;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

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

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

.footer-menu li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-menu li a:hover {
  color: var(--color-btn-signup);
}

.footer-payments,
.footer-providers {
  margin-bottom: 30px;
}

.footer-payments h4,
.footer-providers h4 {
  color: var(--color-btn-signup);
  margin-bottom: 20px;
}

.payment-logos,
.provider-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.payment-logos img,
.provider-logos img {
  height: 40px;
  width: auto;
  background: white;
  padding: 5px;
  border-radius: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* Sticky Widget */
.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--color-btn-login) 0%, #037066 100%);
  padding: 15px 20px;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
  z-index: 999;
  animation: slideUp 0.5s ease-out;
}

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

.widget-text {
  flex: 1;
}

.widget-bonus {
  font-size: 20px;
  font-weight: bold;
  color: var(--color-btn-signup);
}

.widget-btn {
  background-color: var(--color-btn-signup);
  color: var(--color-text-dark);
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
  white-space: nowrap;
}

.widget-btn:hover {
  background-color: #ffd633;
  transform: scale(1.05);
}

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

.spinning {
  animation: spin 0.5s linear infinite;
}

@keyframes spin {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-600%);
  }
}
