@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css');

:root {
  --primary-color: #E2C666;
  --secondary-color: #000000;
  --third-color: #111111;
  --text-primary: #FFFFFF;
  --text-secondary: #AAAAAA;
  --accent-primary: #CD9F36;
}

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

p {
  margin-bottom: 1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Ubuntu', sans-serif;
  background-color: #0f0f0f;
  color: #e5e5e5;
  line-height: 1.8;
  min-height: 100vh;
  font-size: 16px;
}


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

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

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

.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  transition: background 0.3s ease;
}


.navbar {
  background-color: #0a0a0a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid #1a1a1a;
  position: relative;
}

.navbar .logo img {
  height: 50px;
  align-items: center;
}

/* Hamburger Menu Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  gap: 5px;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 3px;
  transition: all 0.3s ease;
  display: block;
}

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

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

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

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

.navbar-menu li a {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.3s ease, color 0.3s ease;
  text-decoration: none;
}

.navbar-menu li a:hover {
  color: var(--primary-color);
}

/* Hide mobile auth buttons on desktop */
.navbar-menu li.mobile-auth-buttons {
  display: none;
}

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

.btn-login {
  background-color: #ffffff;
  color: #1a1a1a;
  border: 2px solid #ffffff;
}

.btn-register {
  background-color: var(--accent-primary);
  color: #ffffff;
  border: 2px solid var(--accent-primary);
}

.btn-login:hover {
  background-color: transparent;
  color: #ffffff;
}

.btn-register:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #ffffff;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Breadcrumb Navigation */
.breadcrumb {
  background-color: #1a1a1a;
  padding: 15px 20px;
  margin: 20px auto;
  max-width: 1200px;
  border-radius: 8px;
  border: 1px solid #2a2a2a;
}

.breadcrumb ol {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: #b8b8b8;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 10px;
  color: #666;
}

.breadcrumb a {
  color: #e5e5e5;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.breadcrumb span {
  color: #b8b8b8;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  padding: 80px 60px;
  margin: 40px 0;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #151515 100%);
  border-radius: 24px;
  border: 2px solid #2a2a2a;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(205, 159, 54, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(226, 198, 102, 0.08) 0%, transparent 50%);
  opacity: 0.6;
  z-index: 1;
}

.hero-glow-effect {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(205, 159, 54, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: linear-gradient(135deg, rgba(205, 159, 54, 0.2) 0%, rgba(226, 198, 102, 0.15) 100%);
  border: 1px solid rgba(205, 159, 54, 0.3);
  border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  animation: slide-in-left 0.8s ease-out;
}

@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.badge-icon {
  font-size: 1.2rem;
}

.badge-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-primary);
  letter-spacing: 0.5px;
}

.hero-content h1 {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  animation: fade-in-up 0.8s ease-out 0.2s both;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title-main {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #ffffff 0%, #e5e5e5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title-accent {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--accent-primary);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.hero-description {
  font-size: 1.125rem;
  color: #b8b8b8;
  margin-bottom: 32px;
  line-height: 1.85;
  max-width: 95%;
  animation: fade-in-up 0.8s ease-out 0.4s both;
}

.hero-features {
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
  animation: fade-in-up 0.8s ease-out 0.6s both;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  font-size: 0.9rem;
  color: #d0d0d0;
  transition: all 0.3s ease;
}

.hero-feature-item:hover {
  background: rgba(205, 159, 54, 0.1);
  border-color: rgba(205, 159, 54, 0.3);
  transform: translateY(-2px);
}

.hero-feature-item i {
  color: var(--accent-primary);
  font-size: 1.1rem;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fade-in-up 0.8s ease-out 0.8s both;
}

.btn-hero-primary {
  padding: 16px 32px;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--primary-color) 100%);
  color: #0f0f0f;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(205, 159, 54, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-hero-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-hero-primary:hover::before {
  left: 100%;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(205, 159, 54, 0.4);
}

.btn-hero-primary i {
  transition: transform 0.3s ease;
}

.btn-hero-primary:hover i {
  transform: translateX(4px);
}

.btn-hero-secondary {
  padding: 16px 32px;
  font-size: 1.1rem;
  background-color: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
  transform: translateY(-3px);
}

.hero-image {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  animation: fade-in-right 1s ease-out 0.3s both;
}

@keyframes fade-in-right {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
  transition: transform 0.5s ease;
  object-fit: cover;
  display: block;
}

.hero-image:hover img {
  transform: scale(1.05) rotate(2deg);
}

.hero-image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(205, 159, 54, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
  animation: pulse-glow 3s ease-in-out infinite;
}

.hero-stats {
  display: flex;
  gap: 20px;
  width: 100%;
  justify-content: center;
}

.hero-stat-item {
  text-align: center;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  min-width: 120px;
}

.hero-stat-item:hover {
  background: rgba(205, 159, 54, 0.1);
  border-color: rgba(205, 159, 54, 0.3);
  transform: translateY(-5px);
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent-primary);
  line-height: 1.2;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.85rem;
  color: #b8b8b8;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.features {
  margin: 60px 0;
  padding: 60px 40px;
  background-color: #151515;
  border-radius: 20px;
  border: 1px solid #252525;
}

.features-header {
  text-align: center;
  margin-bottom: 50px;
}

.features-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.section-description {
  font-size: 1.0625rem;
  color: #b8b8b8;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.85;
}

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

.feature-card {
  background: #1a1a1a;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border: 1px solid #2a2a2a;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  border-color: #3a3a3a;
}

.feature-icon {
  margin-bottom: 24px;
}

.feature-icon i {
  font-size: 3rem;
  color: var(--accent-primary);
}

.feature-card h3 {
  font-size: 1.375rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 14px;
  line-height: 1.4;
}

.feature-card p {
  font-size: 1rem;
  color: #b8b8b8;
  line-height: 1.75;
  margin: 0;
}

.bonus-showcase {
  margin: 60px 0;
  padding: 60px 40px;
  background: linear-gradient(135deg, #1f1f1f 0%, #181818 100%);
  border-radius: 20px;
  color: #ffffff;
  border: 1px solid #2a2a2a;
}

.bonus-showcase-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.bonus-showcase-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.bonus-showcase-text .section-description {
  color: #c8c8c8;
  margin-bottom: 32px;
  font-size: 1.0625rem;
  line-height: 1.85;
}

.bonus-highlights {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.bonus-highlight-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.0625rem;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 4px;
}

.bonus-highlight-item i {
  color: var(--accent-primary);
  font-size: 1.2rem;
}

.bonus-showcase-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.bonus-showcase-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
  object-fit: cover;
  border-radius: 15px;
}

.bonus-showcase-image:hover img {
  transform: scale(1.05);
}

.games {
  margin: 60px 0;
  padding: 60px 40px;
  background-color: #151515;
  border-radius: 20px;
  border: 1px solid #252525;
}

.games-header {
  text-align: center;
  margin-bottom: 50px;
}

.games-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.game-card {
  background-color: #1a1a1a;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border: 1px solid #2a2a2a;
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  border-color: #3a3a3a;
}

.game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.game-card-content {
  padding: 25px;
}

.game-card-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 14px;
  line-height: 1.4;
}

.game-card-content p {
  font-size: 1rem;
  color: #b8b8b8;
  line-height: 1.75;
  margin-bottom: 24px;
}

.game-link {
  display: inline-block;
  padding: 12px 28px;
  background-color: var(--accent-primary);
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.game-link:hover {
  background-color: var(--primary-color);
  color: #ffffff;
  transform: translateY(-2px);
}

.promo-banner {
  margin: 60px 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
  border: 1px solid #252525;
}

.promo-banner:hover {
  transform: scale(1.02);
}

.promo-banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

.trust-security {
  margin: 60px 0;
  padding: 60px 40px;
  background: linear-gradient(135deg, #151515 0%, #1a1a1a 100%);
  border-radius: 20px;
  border: 1px solid #252525;
}

.trust-security-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.trust-security-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.trust-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.trust-feature {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.trust-feature:hover {
  background: rgba(205, 159, 54, 0.08);
  border-color: rgba(205, 159, 54, 0.3);
  transform: translateY(-3px);
}

.trust-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(205, 159, 54, 0.2) 0%, rgba(226, 198, 102, 0.15) 100%);
  border-radius: 12px;
  border: 1px solid rgba(205, 159, 54, 0.3);
}

.trust-icon i {
  font-size: 1.8rem;
  color: var(--accent-primary);
}

.trust-details h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.4;
}

.trust-details p {
  font-size: 0.95rem;
  color: #b8b8b8;
  line-height: 1.7;
  margin: 0;
}

.trust-security-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid #2a2a2a;
}

.trust-security-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
  object-fit: cover;
  object-position: center;
  border-radius: 15px;
}

.trust-security-image:hover img {
  transform: scale(1.05);
}

.responsible-gambling {
  margin: 60px 0;
  padding: 60px 40px;
  background: linear-gradient(135deg, #1a1a1a 0%, #151515 100%);
  border-radius: 20px;
  border: 1px solid #252525;
}

.responsible-gambling-content {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.responsible-gambling-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.responsible-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
  margin-bottom: 32px;
}

.responsible-item {
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.responsible-item:hover {
  background: rgba(205, 159, 54, 0.08);
  border-color: rgba(205, 159, 54, 0.3);
  transform: translateY(-3px);
}

.responsible-item i {
  font-size: 2rem;
  color: var(--accent-primary);
  margin-bottom: 12px;
  display: block;
}

.responsible-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.4;
}

.responsible-item p {
  font-size: 0.95rem;
  color: #b8b8b8;
  line-height: 1.7;
  margin: 0;
}

.responsible-cta {
  padding: 28px;
  background: rgba(205, 159, 54, 0.1);
  border: 1px solid rgba(205, 159, 54, 0.2);
  border-radius: 16px;
  margin-top: 32px;
}

.responsible-message {
  font-size: 1rem;
  color: #d0d0d0;
  line-height: 1.8;
  margin-bottom: 20px;
}

.responsible-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.support-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--accent-primary);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}

.support-link:hover {
  background: rgba(205, 159, 54, 0.15);
  border-color: rgba(205, 159, 54, 0.4);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.support-link i {
  font-size: 1.1rem;
}

.responsible-gambling-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid #2a2a2a;
}

.responsible-gambling-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
  object-fit: cover;
  object-position: center;
  border-radius: 15px;
}

.responsible-gambling-image:hover img {
  transform: scale(1.05);
}

.table-of-contents {
  margin: 40px 0;
  padding: 40px;
  background: linear-gradient(135deg, #1a1a1a 0%, #151515 100%);
  border-radius: 16px;
  border: 1px solid #252525;
}

.toc-container {
  max-width: 900px;
  margin: 0 auto;
}

.toc-container h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  text-align: center;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toc-list li {
  margin: 0;
}

.toc-list a {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: #e5e5e5;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  padding-left: 50px;
}

.toc-list a::before {
  content: '→';
  position: absolute;
  left: 20px;
  color: var(--accent-primary);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.toc-list a:hover {
  background: rgba(205, 159, 54, 0.1);
  border-color: rgba(205, 159, 54, 0.3);
  color: #ffffff;
  transform: translateX(5px);
}

.toc-list a:hover::before {
  transform: translateX(3px);
}

.player-reviews {
  margin: 60px 0;
  padding: 60px 40px;
  background: linear-gradient(135deg, #1a1a1a 0%, #151515 100%);
  border-radius: 20px;
  border: 1px solid #252525;
}

.reviews-header {
  text-align: center;
  margin-bottom: 50px;
}

.reviews-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.review-card {
  background: #1a1a1a;
  padding: 28px;
  border-radius: 16px;
  border: 1px solid #2a2a2a;
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: rgba(205, 159, 54, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(205, 159, 54, 0.2) 0%, rgba(226, 198, 102, 0.15) 100%);
  border-radius: 50%;
  border: 1px solid rgba(205, 159, 54, 0.3);
}

.reviewer-avatar i {
  font-size: 2rem;
  color: var(--accent-primary);
}

.reviewer-details h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
  line-height: 1.4;
}

.reviewer-location {
  font-size: 0.85rem;
  color: #b8b8b8;
  margin: 0;
}

.review-rating {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}

.review-rating i {
  font-size: 1rem;
  color: var(--accent-primary);
}

.review-content {
  margin-bottom: 16px;
}

.review-content p {
  font-size: 0.95rem;
  color: #b8b8b8;
  line-height: 1.7;
  margin: 0;
  font-style: italic;
}

.review-footer {
  display: flex;
  justify-content: flex-end;
}

.review-date {
  font-size: 0.85rem;
  color: #666666;
}

.faq {
  margin: 60px 0;
  padding: 60px 40px;
  background-color: #151515;
  border-radius: 20px;
  border: 1px solid #252525;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background-color: #1a1a1a;
  border-radius: 12px;
  padding: 28px 32px;
  border: 1px solid #2a2a2a;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  margin-bottom: 4px;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  border-color: #3a3a3a;
}

.faq-item h4 {
  font-size: 1.1875rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.5;
}

.faq-item p {
  color: #b8b8b8;
  font-size: 1.0625rem;
  line-height: 1.85;
  margin: 0;
}

.footer {
  background-color: #0a0a0a;
  padding: 40px 20px;
  margin-top: 60px;
  border-top: 1px solid #1a1a1a;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.footer-links a {
  color: #cccccc;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-primary);
}

.footer-copy p {
  font-size: 0.85rem;
  color: #cccccc;
  text-align: center;
}

.footer-copy a {
  color: var(--accent-primary);
}

@media (max-width: 1024px) {
  .navbar {
    padding: 20px 40px;
    flex-wrap: wrap;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 50px 30px;
    gap: 40px;
  }

  .hero-title-main {
    font-size: 2.2rem;
  }

  .hero-title-accent {
    font-size: 1.4rem;
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
  }

  .bonus-showcase-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .trust-security-content,
  .responsible-gambling-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .trust-features,
  .responsible-features {
    grid-template-columns: 1fr;
  }

  .games {
    padding: 20px;
  }

  .faq {
    padding: 20px;
  }

  .table-of-contents {
    padding: 30px 20px;
  }

  .player-reviews {
    padding: 40px 20px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: row;
    align-items: center;
    padding: 15px 20px;
    position: relative;
  }

  .menu-toggle {
    display: flex !important;
    order: 2;
    margin-left: auto;
  }

  .navbar-menu {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: #0a0a0a;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px 30px;
    gap: 0;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    border-left: 1px solid #1a1a1a;
  }

  .navbar-menu.active {
    right: 0;
  }

  .navbar-menu li {
    width: 100%;
    border-bottom: 1px solid #1a1a1a;
  }

  .navbar-menu li a {
    display: block;
    width: 100%;
    padding: 15px 0;
    font-size: 1.1rem;
    color: #e5e5e5;
  }

  .navbar-menu li a:hover {
    color: var(--primary-color);
    background-color: transparent;
  }

  .navbar .auth-buttons {
    display: none;
  }

  /* Mobile Auth Buttons - Show on mobile only */
  .navbar-menu li.mobile-auth-buttons {
    display: block;
    border-bottom: none;
    padding: 20px 0;
    margin-top: 10px;
    border-top: 2px solid #1a1a1a;
  }

  .navbar-menu li.mobile-auth-buttons a {
    display: inline-block;
    width: calc(50% - 5px);
    margin: 0;
    padding: 12px 20px;
    text-align: center;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .navbar-menu li.mobile-auth-buttons a:first-child {
    margin-right: 10px;
  }

  .navbar-menu li.mobile-auth-buttons a.btn-login {
    background-color: #ffffff;
    color: #1a1a1a;
    border: 2px solid #ffffff;
  }

  .navbar-menu li.mobile-auth-buttons a.btn-login:hover {
    background-color: transparent;
    color: #ffffff;
  }

  .navbar-menu li.mobile-auth-buttons a.btn-register {
    background-color: var(--accent-primary);
    color: #ffffff;
    border: 2px solid var(--accent-primary);
  }

  .navbar-menu li.mobile-auth-buttons a.btn-register:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
  }

  /* Mobile menu overlay */
  .menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .menu-overlay.active {
    display: block;
    opacity: 1;
  }

  .hero {
    padding: 40px 20px;
  }

  .hero-title-main {
    font-size: 1.8rem;
  }

  .hero-title-accent {
    font-size: 1.2rem;
  }

  .hero-features {
    flex-direction: column;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }

  .features-header h2,
  .games-header h2,
  .bonus-showcase-text h2,
  .faq-header h2 {
    font-size: 1.8rem;
  }

  .games-intro h3,
  .faq h3 {
    font-size: 1.3rem;
  }

  .footer-container {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 12px 15px;
  }

  .menu-toggle {
    display: flex !important;
    padding: 8px;
  }

  .navbar-menu {
    width: 100%;
    right: -100%;
  }

  .navbar-menu.active {
    right: 0;
  }

  .navbar-menu {
    width: 100%;
    right: -100%;
  }

  .navbar-menu.active {
    right: 0;
  }

  .hero {
    padding: 25px 15px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .features,
  .bonus-showcase,
  .games,
  .trust-security,
  .responsible-gambling,
  .faq {
    padding: 40px 20px;
  }

  .table-of-contents {
    padding: 25px 15px;
  }

  .toc-container h2 {
    font-size: 1.5rem;
  }

  .toc-list a {
    font-size: 0.9rem;
    padding: 12px 16px;
    padding-left: 40px;
  }

  .player-reviews {
    padding: 30px 15px;
  }

  .reviews-header h2 {
    font-size: 1.8rem;
  }

  .trust-features,
  .responsible-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .responsible-links {
    flex-direction: column;
  }

  .support-link {
    width: 100%;
    justify-content: center;
  }

  .games {
    padding: 15px;
  }

  .faq {
    padding: 15px;
  }

  .footer {
    padding: 30px 15px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}