* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 25%, #0f3460 50%, #533483 75%, #7209b7 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 10px;
  padding: 0 20px;
}

.logo img {
  height: 30px;
  width: auto;
}

.nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-list-mobile {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  text-align: center;
  display: none;
  transition: all 0.2s ease;
}

.nav-list-mobile li {
  list-style: none;
}

.nav-list a,
.nav-list-mobile a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  font-size: 16px;
}

.nav-list a:hover,
.nav-list-mobile a:hover {
  color: #ffd700;
}

.dropdown {
  position: relative;
}

.dropdown>a {
  color: #ffd700 !important;
  font-weight: 700;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(26, 26, 46, 0.98);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 15px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  list-style: none;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  border-radius: 0;
  margin: 0;
  color: #ffffff !important;
  font-weight: 500 !important;
  font-size: 14px;
}

.dropdown-menu a:hover {
  background: rgba(255, 215, 0, 0.1);
  color: #ffd700 !important;
}

.header-cta {
  flex-shrink: 0;
}

.header-cta a .mobile {
  display: none;
}

.play-btn {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.play-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
  padding: 140px 0 40px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.badge {
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.3));
  color: #ffd700;
  padding: 10px 20px;
  border-radius: 25px;
  display: inline-block;
  margin-bottom: 25px;
  font-size: 14px;
  font-weight: bold;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 25px;
}

.highlight {
  color: #ffd700;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 18px;
  margin-bottom: 35px;
  opacity: 0.9;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.btn {
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #ffd700;
  border: 2px solid #ffd700;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.game-preview {
  display: flex;
  justify-content: center;
  align-items: center;
}

.game-preview-image {
  max-width: 90%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.game-preview-image:hover {
  transform: scale(1.05);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.stat {
  text-align: center;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-value {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffd700;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Sections */
section {
  padding: 40px 0;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
  background: linear-gradient(45deg, #ffffff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* Casinos Section */
.casino-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.casino-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.casino-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
}

.casino-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.casino-header {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  align-items: center;
}

.casino-logo img {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  object-fit: cover;
}

.casino-info h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: #ffd700;
}

.rating {
  color: #ffd700;
  margin-bottom: 10px;
  font-size: 14px;
}

.casino-info p {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.5;
}

.bonus {
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.25));
  color: #ffd700;
  padding: 18px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-weight: bold;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}

.feature {
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.casino-buttons {
  display: flex;
  gap: 12px;
}

.btn-outline {
  background: transparent;
  color: #ffd700;
  border: 1px solid #ffd700;
}

/* Demo Section */
.demo {
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.demo iframe,
.demo-iframe {
  border-radius: 15px;
  margin-top: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.demo-iframe {
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  margin-top: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.demo-iframe button {
  max-width: 250px;
  max-height: 80px;
  padding: 14px 30px;
}

/* About Section */
.about {
  background: transparent;
  color: white;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}

.about-text {
  font-size: 16px;
  line-height: 1.7;
}

.about-text p {
  margin-bottom: 25px;
  opacity: 0.9;
}

.game-specs {
  background: rgba(0, 0, 0, 0.2);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
}

.game-specs h3 {
  color: #ffd700;
  margin-bottom: 25px;
  font-size: 20px;
  text-align: left;
  background: none;
  -webkit-text-fill-color: #ffd700;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-item:last-child {
  border-bottom: none;
}

.spec-label {
  font-weight: 500;
  opacity: 0.8;
}

.spec-value {
  color: #ffd700;
  font-weight: bold;
}

.game-interface {
  position: relative;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  padding: 30px;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.multiplier-display {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.multiplier {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  color: #fff;
  transition: all 0.3s ease;
}

.multiplier.active {
  background: linear-gradient(45deg, #4caf50, #66bb6a);
  border-color: #4caf50;
  box-shadow: 0 0 20px rgba(76, 175, 80, 0.5);
}

.game-screen {
  text-align: center;
}

.game-interface-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.features {
  background: transparent;
  /* ИСПРАВЛЕНО */
  color: white;
}

.features-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 50px;
}

.features-header h2 {
  color: #ffd700;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: left;
  background: none;
  -webkit-text-fill-color: #ffd700;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(0, 0, 0, 0.3);
  transform: translateX(10px);
}

.feature-icon {
  font-size: 24px;
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-text h3 {
  color: #ffd700;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
}

.feature-text p {
  opacity: 0.9;
  line-height: 1.6;
  margin: 0;
}

.features-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-box {
  background: rgba(0, 0, 0, 0.3);
  padding: 20px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.feature-box-icon {
  font-size: 32px;
  margin-bottom: 15px;
}

.feature-box h4 {
  color: #ffd700;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
}

.feature-box p {
  opacity: 0.9;
  line-height: 1.5;
  margin: 0;
  font-size: 14px;
}

.infographic-container {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  padding: 30px;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.features-img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Benefits Section */
.benefits {
  background: transparent;
  color: white;
}

.benefits-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 50px;
}

.benefits-img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(0, 0, 0, 0.3);
  transform: translateX(10px);
}

.benefit-icon {
  font-family: 'FontAwesome';
  font-size: 24px;
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-text h3 {
  color: #ffd700;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
}

.benefit-text p {
  opacity: 0.9;
  line-height: 1.6;
  margin: 0;
}

/* Guide Section */
.guide-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 50px;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.step-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(10px);
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.step-text h3 {
  color: #ffd700;
  margin-bottom: 8px;
  font-size: 18px;
}

.step-text p {
  opacity: 0.9;
  line-height: 1.6;
}

/* Legal Section */
.legal-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.legal-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  padding: 35px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.legal-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.legal-box h3 {
  color: #ffd700;
  margin-bottom: 25px;
  font-size: 22px;
  text-align: left;
  background: none;
  -webkit-text-fill-color: #ffd700;
}

.legal-list {
  list-style: none;
}

.legal-list li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  opacity: 0.9;
  line-height: 1.6;
}

.legal-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4caf50;
  font-weight: bold;
  font-size: 18px;
}

/* Pros and Cons */
.pros-cons-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
}

.pros-box,
.cons-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  padding: 35px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.pros-box:hover,
.cons-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.pros-header,
.cons-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.pros-icon,
.cons-icon {
  font-size: 2rem;
}

.pros-header h3 {
  color: #4caf50;
  font-size: 24px;
  text-align: left;
  background: none;
  -webkit-text-fill-color: #4caf50;
}

.cons-header h3 {
  color: #f44336;
  font-size: 24px;
  text-align: left;
  background: none;
  -webkit-text-fill-color: #f44336;
}

.pros-list,
.cons-list {
  list-style: none;
}

.pros-list li,
.cons-list li {
  padding: 10px 0;
  padding-left: 25px;
  position: relative;
  opacity: 0.9;
  line-height: 1.5;
}

.pros-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4caf50;
  font-weight: bold;
}

.cons-list li:before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #f44336;
  font-weight: bold;
}

/* FAQ Section */
.faq {
  background: linear-gradient(135deg, #7209b7 0%, #533483 50%, #7209b7 100%);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 50px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.15);
}

.faq-question {
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  font-weight: 600;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.1);
}

.faq-toggle {
  font-size: 24px;
  color: #ffd700;
  font-weight: bold;
  transition: transform 0.3s ease;
  background: none;
  border: none;
  cursor: pointer;
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-answer p {
  padding: 25px 0;
  opacity: 0.9;
  line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* Author Block Section - FIXED FOR MOBILE */
.author-block {
  padding: 80px 0;
  background: rgba(0, 0, 0, 0.2);
}

.author-block h2 {
  margin-bottom: 50px;
}

.author-block-content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.author-image-section {
  text-align: center;
}

.author-image-section img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

.author-image-section h3 {
  color: #ffd700;
  font-size: 22px;
  margin-bottom: 8px;
}

.author-image-section p {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 20px;
}

.author-socials {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.author-socials a {
  color: #fff;
  font-size: 20px;
  transition: color 0.3s ease;
}

.author-socials a:hover {
  color: #ffd700;
}

.author-bio p {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 25px;
}

/* Footer */
.footer {
  background: rgba(26, 26, 46, 0.95) !important;
  /* Dark background, like the header */
  backdrop-filter: blur(15px) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  /* Light border */
  padding: 50px 0 30px !important;
  margin-top: 0 !important;
  color: #ffffff !important;
  /* White text */
  width: 100% !important;
  /* Ensure it spans full width */
  max-width: none !important;
  /* Remove any max-width constraint */
}

.footer-content {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  max-width: 100% !important;
  /* Ensure content also stretches */
  margin: 0 auto !important;
  padding: 0 20px !important;
  flex-wrap: wrap !important;
}

.footer-logo img {
  height: 50px;
  width: auto;
}

.footer-nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: #ffd700;
}

.footer-policy a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.footer-policy a:hover {
  color: #ffd700;
}

.footer-faq a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.footer-faq a:hover {
  color: #ffd700;
}

.footer-disclaimer a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.footer-disclaimer a:hover {
  color: #ffd700;
}

.footer-licenses {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  align-items: center;
}

.license-logo {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.license-logo:hover {
  opacity: 1;
}

.license-logo img {
  height: 40px;
  width: auto;
  filter: grayscale(0.3);
}

.footer-bottom {
  text-align: center;
  opacity: 0.8;
  font-size: 14px;
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {

  .hero-content,
  .about-content,
  .benefits-content,
  .features-content,
  .guide-content {
    gap: 40px;
  }

  /* Author block responsive for tablets */
  .author-block-content {
    grid-template-columns: 250px 1fr;
    gap: 40px;
    padding: 30px;
  }

  .author-image-section img {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav {
    display: none;
  }

  .hero-content,
  .about-content,
  .benefits-content,
  .features-content,
  .guide-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .casino-grid {
    grid-template-columns: 1fr;
  }

  .pros-cons-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .legal-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

  .footer-top {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-licenses {
    gap: 20px;
  }

  .nav-list-mobile {
    display: flex;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .header-content {
    padding: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding-top: 15px;
    overflow-x: hidden;
  }

  .header {
    padding-top: 0;
  }

  .nav-list-mobile.active {
    padding-top: 15px;
    max-height: 1000px;
  }

  .dropdown-menu {
    position: relative;
    top: 10px;
    z-index: 100;
    display: block;
    opacity: 1;
    overscroll-behavior: contain;
    visibility: visible;
    transform: translateY(0);
    overflow-y: scroll;
    padding: 0;
    max-height: 0;
  }

  .dropdown-menu li a {
    padding: 10px;
  }

  .dropdown-menu.open {
    margin-top: 10px;
    max-height: 100px;
  }

  /* Author block mobile responsive - MAIN FIX */
  .author-block-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
    padding: 30px 20px;
  }

  .author-image-section {
    order: 1;
  }

  .author-bio {
    order: 2;
    text-align: left;
  }

  .author-image-section img {
    width: 120px;
    height: 120px;
  }

  .author-image-section h3 {
    font-size: 20px;
  }

  .author-bio p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2rem;
  }

  h2 {
    font-size: 2rem;
  }

  .casino-card {
    padding: 20px;
  }

  .legal-box,
  .pros-box,
  .cons-box {
    padding: 25px;
  }

  .footer-licenses {
    flex-direction: row !important;
    /* Make logos horizontal */
    justify-content: center !important;
    /* Center them */
    gap: 15px !important;
    width: 100% !important;
    /* Ensure it takes full width */
  }

  .license-logo {
    flex-shrink: 0 !important;
    /* Prevent shrinking */
  }

  .step-item,
  .benefit-item,
  .feature-item {
    flex-direction: column;
    text-align: center;
  }

  .benefit-icon,
  .feature-icon {
    font-size: 2rem;
  }

  .logo {
    max-width: 80px;
  }

  .header-cta a .desktop {
    display: none;
  }

  .header-cta a .mobile {
    display: flex;
  }

  .header-cta .play-btn {
    display: block;
    padding: 8px 18px;
  }

  .header-cta {
    flex-shrink: 1;
  }

  .header-content {
    gap: 5px;
  }

  .logo {
    margin-right: 0;
  }

  /* Author block extra small mobile responsive */
  .author-block {
    padding: 60px 0;
  }

  .author-block h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .author-block-content {
    padding: 20px 15px;
    gap: 25px;
  }

  .author-image-section img {
    width: 100px;
    height: 100px;
  }

  .author-image-section h3 {
    font-size: 18px;
  }

  .author-image-section p {
    font-size: 13px;
  }

  .author-bio p {
    font-size: 14px;
    line-height: 1.6;
  }

  .author-socials a {
    font-size: 18px;
  }
}

/* Animation and Transitions */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content>* {
  animation: fadeInUp 0.8s ease-out;
}

.casino-card {
  animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus {
  outline: 2px solid #ffd700;
  outline-offset: 2px;
}

/* Loading states */
img {
  transition: opacity 0.3s ease;
}

img:not([src]) {
  opacity: 0;
}





@media (max-width: 768px) {
  .guide-content {
    grid-template-columns: 1fr;
    gap: 30px;
    /* Adjust gap for smaller screens */
  }

  .guide-image {
    order: -1;
    /* Move image above steps on mobile */
    margin-bottom: 20px;
    /* Add some space below the image */
  }

  .guide-img {
    max-width: 100%;
    height: auto;
  }

  .step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .step-number {
    margin-bottom: 10px;
  }
}