@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('bootstrap-icons.css');

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

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

body {
  font-family: 'Ubuntu', sans-serif;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../images/background.jpg);
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--text-primary);
  line-height: 1.6;
}


a {
  text-decoration: none;
  color: var(--accent-primary);
}

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;
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.navbar {
  background-color: var(--secondary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
}

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

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

.navbar-menu li a {
  color: var(--text-primary);
  font-size: 1.2rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.3s ease, color 0.3s ease;
}

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

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

.btn-login {
  background-color: var(--text-primary);
  color: var(--secondary-color);
  border: 2px solid var(--text-primary);
}

.btn-register {
  background-color: transparent;
  color: var(--text-primary);
  border: 2px solid var(--text-primary);
}

.btn-login:hover {
  background-color: transparent;
  color: var(--text-primary);
}

.btn-register:hover {
  background-color: var(--text-primary);
  color: var(--secondary-color);
}

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

.hero {
  position: relative;
  padding: 0;
  top: 20px;
  margin-bottom: 20px;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.98), rgba(0, 0, 0, 0.98));
  padding: 60px 50px;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(254, 168, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.hero-container::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(254, 168, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

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

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent-primary), var(--primary-color));
  color: var(--text-primary);
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 20px rgba(254, 168, 0, 0.4);
  transition: transform 0.3s ease;
}

.hero-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(254, 168, 0, 0.5);
}

.hero-badge i {
  font-size: 1rem;
}

.hero-content h1 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 25px;
  line-height: 1.2;
  font-weight: 700;
  background: linear-gradient(135deg, #FFFFFF 0%, #FEA800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  margin-bottom: 35px;
  color: var(--text-secondary);
  font-size: 1.15rem;
  line-height: 1.8;
  max-width: 95%;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn-primary-hero {
  background: linear-gradient(135deg, var(--accent-primary), var(--primary-color));
  color: var(--text-primary);
  padding: 15px 35px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(254, 168, 0, 0.4);
  border: 2px solid transparent;
}

.btn-primary-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(254, 168, 0, 0.6);
  border-color: var(--primary-color);
}

.btn-secondary-hero {
  background: transparent;
  color: var(--text-primary);
  padding: 15px 35px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-primary);
  box-shadow: 0 4px 15px rgba(254, 168, 0, 0.2);
}

.btn-secondary-hero:hover {
  background: rgba(254, 168, 0, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(254, 168, 0, 0.4);
}

.hero-visual {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s ease;
}

.hero-image-container:hover {
  transform: scale(1.05);
}

.hero-image-container img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(254, 168, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
}

.hero-decorative-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.decorative-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(254, 168, 0, 0.1), rgba(254, 153, 1, 0.05));
  animation: float 6s ease-in-out infinite;
}

.circle-1 {
  width: 120px;
  height: 120px;
  top: 10%;
  right: 5%;
  animation-delay: 0s;
}

.circle-2 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  right: 15%;
  animation-delay: 2s;
}

.circle-3 {
  width: 60px;
  height: 60px;
  top: 50%;
  right: 10%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-20px) scale(1.1);
    opacity: 0.8;
  }
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin: 50px 0;
  padding: 0;
}

.trust-card {
  text-align: center;
  padding: 35px 25px;
  background: linear-gradient(135deg, var(--third-color), var(--secondary-color));
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.trust-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-primary);
  box-shadow: 0 8px 30px rgba(254, 168, 0, 0.4);
}

.trust-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--accent-primary), var(--primary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(254, 168, 0, 0.3);
}

.trust-card i {
  font-size: 2.5rem;
  color: var(--text-primary);
}

.trust-card h4 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin: 0 0 8px 0;
  font-weight: 600;
}

.trust-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0;
}

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

.section-header h2 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-primary), var(--primary-color));
  color: var(--text-primary);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-content {
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.95), rgba(0, 0, 0, 0.95));
  padding: 40px;
  border-radius: 15px;
  margin-top: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(254, 168, 0, 0.1);
}

.section-content h2 {
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.section-content h3 {
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-top: 25px;
  margin-bottom: 15px;
}

.section-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 15px;
}

.quick-guide {
  margin-top: 40px;
}

.guide-steps {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin: 40px 0;
}

.guide-step {
  display: flex;
  gap: 25px;
  background: linear-gradient(135deg, var(--third-color), rgba(17, 17, 17, 0.8));
  padding: 25px;
  border-radius: 15px;
  border-left: 5px solid var(--accent-primary);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.guide-step:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(254, 168, 0, 0.3);
}

.step-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-primary), var(--primary-color));
  color: var(--text-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(254, 168, 0, 0.4);
}

.step-content {
  flex: 1;
}

.step-content h3 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 12px;
  font-weight: 600;
}

.step-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.disclaimer-box {
  background: linear-gradient(135deg, rgba(254, 168, 0, 0.1), rgba(254, 153, 1, 0.1));
  padding: 20px 25px;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
  margin-top: 30px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.disclaimer-box i {
  font-size: 1.5rem;
  color: var(--accent-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.disclaimer-box p {
  margin: 0;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.6;
}

.about-us {
  margin-top: 60px;
}

.about-us-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-us-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-us-header h2 {
  font-size: 2.3rem;
  color: var(--text-primary);
  margin: 20px 0 15px 0;
  font-weight: 700;
  line-height: 1.3;
}

.about-us-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin: 0;
}

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

.review-card {
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.95), rgba(0, 0, 0, 0.95));
  border-radius: 20px;
  padding: 35px;
  border: 2px solid rgba(254, 168, 0, 0.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-primary), var(--primary-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.review-card:hover::before {
  transform: scaleX(1);
}

.review-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-primary);
  box-shadow: 0 12px 40px rgba(254, 168, 0, 0.3);
}

.review-card-featured {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.98), rgba(0, 0, 0, 0.98));
  border-color: rgba(254, 168, 0, 0.3);
}

.review-card-featured::before {
  height: 5px;
}

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

.review-icon-wrapper {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-primary), var(--primary-color));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(254, 168, 0, 0.3);
  transition: transform 0.3s ease;
}

.review-card:hover .review-icon-wrapper {
  transform: rotate(5deg) scale(1.1);
}

.review-icon-wrapper i {
  font-size: 1.8rem;
  color: var(--text-primary);
}

.review-card h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin: 0;
  font-weight: 700;
  flex: 1;
}

.review-card-body {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.05rem;
}

.review-card-body p {
  margin-bottom: 15px;
  color: var(--text-secondary);
}

.review-card-body p:last-child {
  margin-bottom: 0;
}

.review-card-warning {
  border-color: rgba(255, 152, 0, 0.3);
}

.review-card-warning .review-icon-wrapper {
  background: linear-gradient(135deg, #FF9800, #FF6F00);
}

.about-us-visual {
  margin-top: 20px;
}

.about-us-image-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s ease;
  max-width: 1000px;
  margin: 0 auto;
}

.about-us-image-card:hover {
  transform: scale(1.02);
}

.about-us-image-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-us-image-card:hover img {
  transform: scale(1.1);
}

.image-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-card-content {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-primary);
  font-size: 1.2rem;
  font-weight: 600;
}

.image-card-content i {
  font-size: 1.8rem;
  color: var(--accent-primary);
}

.bonus {
  margin-top: 50px;
}

.bonus-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  align-items: start;
}

.bonus-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}


.bonus-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 10px;
}

.bonus-intro h3 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.bonus-intro p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.bonus-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.bonus-intro h2 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 700;
}

.bonus-intro p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.bonus-card {
  background: linear-gradient(135deg, var(--third-color), rgba(17, 17, 17, 0.8));
  padding: 30px;
  border-radius: 15px;
  text-align: left;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.bonus-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-primary);
  box-shadow: 0 10px 30px rgba(254, 168, 0, 0.3);
}

.bonus-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-primary), var(--primary-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(254, 168, 0, 0.3);
}

.bonus-card i {
  font-size: 1.8rem;
  color: var(--text-primary);
}

.bonus-card h4 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 12px;
  font-weight: 600;
}

.bonus-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.bonus-images-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bonus-image-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.bonus-image-card:hover {
  transform: scale(1.02);
}

.bonus-image-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.bonus-image-card:hover img {
  transform: scale(1.1);
}

.image-overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
  padding: 20px;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
}

.games {
  margin-top: 50px;
  padding: 40px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.95), rgba(0, 0, 0, 0.95));
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(254, 168, 0, 0.1);
}

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

.games-header h2 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 700;
}

.games-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
}

.games-intro h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.games-intro p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.game-card {
  background: linear-gradient(135deg, var(--third-color), rgba(17, 17, 17, 0.8));
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.game-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-primary);
  box-shadow: 0 10px 30px rgba(254, 168, 0, 0.4);
}

.game-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
}

.game-image-wrapper img {
  width: 100%;
  height: auto;
  min-height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.game-card:hover .game-image-wrapper img {
  transform: scale(1.1);
}

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
  opacity: 1;
}

.btn-play-small {
  padding: 12px 30px;
  background: linear-gradient(135deg, var(--accent-primary), var(--primary-color));
  color: var(--text-primary);
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(254, 168, 0, 0.4);
}

.btn-play-small:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(254, 168, 0, 0.6);
}

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

.game-card-content h4 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin: 0 0 12px 0;
  font-weight: 600;
}

.game-card-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.games-tabs {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.tab-button {
  padding: 12px 30px;
  background: linear-gradient(135deg, var(--third-color), rgba(17, 17, 17, 0.8));
  color: var(--text-primary);
  border: 2px solid transparent;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
}

.tab-button i {
  font-size: 1.1rem;
}

.tab-button:hover {
  border-color: var(--accent-primary);
  transform: translateY(-2px);
}

.tab-button.active {
  background: linear-gradient(135deg, var(--accent-primary), var(--primary-color));
  color: var(--text-primary);
  border-color: var(--accent-primary);
  box-shadow: 0 5px 15px rgba(254, 168, 0, 0.4);
}

.game-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, var(--accent-primary), var(--primary-color));
  color: var(--text-primary);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(254, 168, 0, 0.4);
  z-index: 2;
}

.faq {
  margin-top: 50px;
  padding: 40px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.95), rgba(0, 0, 0, 0.95));
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(254, 168, 0, 0.1);
}

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

.faq-header h2 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 10px;
  font-weight: 700;
}

.faq-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: linear-gradient(135deg, var(--third-color), rgba(17, 17, 17, 0.8));
  border-radius: 12px;
  border: 2px solid transparent;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.faq-item:hover {
  border-color: var(--accent-primary);
  box-shadow: 0 5px 20px rgba(254, 168, 0, 0.2);
}

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

.faq-item.active .faq-question {
  background: rgba(254, 168, 0, 0.1);
}

.faq-question h4 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin: 0;
  font-weight: 600;
  flex: 1;
}

.faq-question i {
  font-size: 1.2rem;
  color: var(--accent-primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 25px;
}

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

.faq-answer p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
  padding-top: 15px;
}

/* Breadcrumbs & SEO helpers */
.breadcrumbs {
  max-width: 1200px;
  margin: 10px auto 20px auto;
  padding: 0 16px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.breadcrumbs ol {
  list-style: none;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}
.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumbs li:not(:last-child)::after {
  content: "›";
  color: var(--text-secondary);
  opacity: 0.8;
}
.breadcrumbs a {
  color: var(--text-secondary);
}
.breadcrumbs a:hover {
  color: var(--primary-color);
}
.seo-highlight {
  color: var(--primary-color);
  font-weight: 700;
  margin: 8px 0 6px;
}
.internal-links {
  margin: 50px auto;
}
.internal-links .content-wrapper {
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.95), rgba(0, 0, 0, 0.95));
  border: 1px solid rgba(254, 168, 0, 0.15);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}
.internal-links h3 {
  color: var(--text-primary);
  margin-bottom: 10px;
}
.internal-links p {
  color: var(--text-secondary);
  line-height: 1.7;
}
.internal-links a {
  color: var(--primary-color);
  font-weight: 600;
}

.footer {
  background-color: var(--secondary-color);
  padding: 40px 20px;
  margin-top: 40px;
  border-top: 1px solid var(--);
}

.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: var(--text-secondary);
  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: var(--text-secondary);
  text-align: center;
  margin-bottom: 10px;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-align: center;
  max-width: 800px;
  margin: 20px auto 0;
  line-height: 1.6;
  opacity: 0.8;
}

.banking {
  margin-top: 40px;
}

.banking-timeline {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin: 40px 0;
  flex-wrap: wrap;
  position: relative;
}

.timeline-step {
  flex: 1;
  min-width: 220px;
  text-align: center;
  padding: 35px 25px;
  background: linear-gradient(135deg, var(--third-color), rgba(17, 17, 17, 0.8));
  border-radius: 15px;
  position: relative;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.timeline-step:hover {
  transform: translateY(-5px);
  border-color: var(--accent-primary);
  box-shadow: 0 8px 30px rgba(254, 168, 0, 0.3);
}

.timeline-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--accent-primary), var(--primary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(254, 168, 0, 0.3);
}

.timeline-step i {
  font-size: 2.5rem;
  color: var(--text-primary);
}

.timeline-connector {
  position: absolute;
  top: 50%;
  right: -30px;
  width: 30px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-primary), transparent);
  transform: translateY(-50%);
}

.timeline-step:last-child .timeline-connector {
  display: none;
}

.timeline-step h4 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 12px;
  font-weight: 600;
}

.timeline-step p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.banking-note {
  background: linear-gradient(135deg, rgba(254, 168, 0, 0.1), rgba(254, 153, 1, 0.1));
  padding: 20px 25px;
  border-radius: 12px;
  border-left: 4px solid var(--accent-primary);
  margin-top: 30px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.banking-note i {
  font-size: 1.5rem;
  color: var(--accent-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.banking-note p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
}

.mobile-section {
  margin-top: 50px;
}

.mobile-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.95), rgba(0, 0, 0, 0.95));
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(254, 168, 0, 0.1);
}

.mobile-content h2 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 20px;
  font-weight: 700;
}

.mobile-content p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.mobile-image-wrapper {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.mobile-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.mobile-image-wrapper:hover img {
  transform: scale(1.05);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.feature-list li {
  padding: 15px 0 15px 50px;
  color: var(--text-secondary);
  position: relative;
  line-height: 1.7;
  font-size: 1.05rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li i {
  position: absolute;
  left: 0;
  top: 15px;
  color: var(--accent-primary);
  font-size: 1.3rem;
}

.mobile-warning {
  background: linear-gradient(135deg, rgba(254, 168, 0, 0.15), rgba(254, 153, 1, 0.15));
  padding: 20px 25px;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
  margin: 25px 0;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.mobile-warning i {
  font-size: 1.5rem;
  color: var(--accent-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.mobile-warning strong {
  color: var(--text-primary);
  display: block;
  margin-bottom: 5px;
}

.mobile-warning div {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

.comparison {
  margin-top: 40px;
}

.comparison-table-wrapper {
  overflow-x: auto;
  margin: 40px 0;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: linear-gradient(135deg, var(--third-color), rgba(17, 17, 17, 0.8));
  border-radius: 15px;
  overflow: hidden;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th {
  background: linear-gradient(135deg, var(--accent-primary), var(--primary-color));
  color: var(--text-primary);
  padding: 20px 15px;
  text-align: left;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comparison-table th:first-child {
  border-radius: 15px 0 0 0;
}

.comparison-table th:last-child {
  border-radius: 0 15px 0 0;
}

.comparison-table td {
  padding: 18px 15px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover {
  background-color: rgba(254, 168, 0, 0.1);
}

.badge-success {
  display: inline-block;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(76, 175, 80, 0.1));
  color: #4CAF50;
  padding: 5px 12px;
  border-radius: 15px;
  font-weight: 600;
  font-size: 0.85rem;
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.comparison-note {
  background: linear-gradient(135deg, rgba(254, 168, 0, 0.1), rgba(254, 153, 1, 0.1));
  padding: 20px 25px;
  border-radius: 12px;
  border-left: 4px solid var(--accent-primary);
  margin-top: 30px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.comparison-note i {
  font-size: 1.5rem;
  color: var(--accent-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.comparison-note p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
}

.safety {
  margin-top: 50px;
}

.safety-container {
  display: flex;
  gap: 40px;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.95), rgba(0, 0, 0, 0.95));
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(254, 168, 0, 0.1);
}

.safety-icon-wrapper {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--accent-primary), var(--primary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(254, 168, 0, 0.4);
}

.safety-icon-wrapper i {
  font-size: 3rem;
  color: var(--text-primary);
}

.safety-content {
  flex: 1;
}

.safety-content h2 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 700;
}

.safety-intro {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 25px;
  line-height: 1.7;
}

.safety-warning-box {
  background: linear-gradient(135deg, rgba(255, 152, 0, 0.15), rgba(255, 152, 0, 0.1));
  padding: 20px 25px;
  border-radius: 12px;
  border-left: 4px solid #FF9800;
  margin-bottom: 30px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.safety-warning-box i {
  font-size: 1.5rem;
  color: #FF9800;
  flex-shrink: 0;
  margin-top: 2px;
}

.safety-warning-box p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
}

.safety-warning-box strong {
  color: var(--text-primary);
}

.safety-content h3 {
  font-size: 1.4rem;
  color: var(--accent-primary);
  margin-bottom: 20px;
  font-weight: 600;
}

.safety-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.safety-checklist li {
  padding: 15px 0 15px 50px;
  color: var(--text-secondary);
  position: relative;
  line-height: 1.7;
  font-size: 1.05rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.safety-checklist li:last-child {
  border-bottom: none;
}

.safety-checklist li i {
  position: absolute;
  left: 0;
  top: 15px;
  color: var(--accent-primary);
  font-size: 1.5rem;
}

.safety-note {
  background: linear-gradient(135deg, rgba(254, 168, 0, 0.1), rgba(254, 153, 1, 0.1));
  padding: 20px 25px;
  border-radius: 12px;
  border-left: 4px solid var(--accent-primary);
}

.safety-note p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 1rem;
}

.responsible-gambling {
  margin-top: 50px;
}

.responsible-gambling-container {
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.95), rgba(0, 0, 0, 0.95));
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(254, 168, 0, 0.3);
}

.rg-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.rg-header i {
  font-size: 2.5rem;
  color: var(--accent-primary);
}

.rg-header h2 {
  font-size: 2rem;
  color: var(--text-primary);
  margin: 0;
  font-weight: 700;
}

.rg-intro {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
  line-height: 1.7;
}

.rg-rules h3 {
  font-size: 1.4rem;
  color: var(--accent-primary);
  margin-bottom: 20px;
  font-weight: 600;
}

.rg-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.rg-checklist li {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: rgba(254, 168, 0, 0.05);
  border-radius: 12px;
  margin-bottom: 15px;
  border-left: 4px solid var(--accent-primary);
  transition: all 0.3s ease;
}

.rg-checklist li:hover {
  background: rgba(254, 168, 0, 0.1);
  transform: translateX(5px);
}

.rg-checklist li i {
  font-size: 1.8rem;
  color: var(--accent-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.rg-checklist li strong {
  color: var(--text-primary);
  display: block;
  margin-bottom: 5px;
  font-size: 1.05rem;
}

.rg-checklist li div {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

.rg-warning {
  background: linear-gradient(135deg, rgba(255, 87, 34, 0.15), rgba(255, 87, 34, 0.1));
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid #FF5722;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.rg-warning i {
  font-size: 1.8rem;
  color: #FF5722;
  flex-shrink: 0;
  margin-top: 2px;
}

.rg-warning p {
  margin: 0;
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 1.05rem;
}

.rg-warning strong {
  color: var(--text-primary);
}

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

  .about-us-grid {
    grid-template-columns: 1fr;
  }

  .review-card-featured {
    grid-column: span 1;
  }

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

  .bonus-container {
    grid-template-columns: 1fr;
  }

  .mobile-container {
    grid-template-columns: 1fr;
  }

  .safety-container {
    flex-direction: column;
    align-items: center;
  }

  .safety-icon-wrapper {
    width: 80px;
    height: 80px;
  }

  .safety-icon-wrapper i {
    font-size: 2.5rem;
  }

  .bonus {
    flex-direction: column;
  }

  .bonus-banner,
  .bonus-details {
    max-width: 100%;
  }

  .games {
    padding: 20px;
  }

  .faq {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .navbar .auth-buttons {
    margin-top: 10px;
    width: 100%;
    gap: 20px;
    justify-content: center;
  }

  .navbar-menu {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    width: 100%;
  }

  .hero {
    padding: 30px;
  }

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

  .about-us-intro h2 {
    font-size: 1.4rem;
  }

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

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

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

  .hero {
    padding: 20px;
  }

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

  .about-us-intro {
    padding: 15px;
  }

  .bonus-details {
    padding: 20px;
  }

  .games {
    padding: 15px;
  }

  .faq {
    padding: 15px;
  }

  .footer {
    padding: 30px 15px;
  }

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

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

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

  .hero-content p {
    font-size: 1rem;
    max-width: 100%;
  }

  .hero-visual {
    order: -1;
    height: 300px;
  }

  .hero-image-container {
    max-width: 100%;
  }

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

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .decorative-circle {
    display: none;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-card {
    min-width: 100%;
  }

  .section-content {
    padding: 25px;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  .guide-step {
    flex-direction: column;
    text-align: center;
  }

  .step-number {
    margin: 0 auto 15px;
  }

  .about-us-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .review-card-featured {
    grid-column: span 1;
  }

  .review-card {
    padding: 25px;
  }

  .review-card-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .review-icon-wrapper {
    margin: 0 auto;
  }

  .about-us-header h2 {
    font-size: 1.6rem;
  }

  .about-us-subtitle {
    font-size: 1rem;
  }

  .bonus-container {
    grid-template-columns: 1fr;
  }

  .bonus-grid {
    flex-direction: column;
  }

  .games {
    padding: 25px;
  }

  .games-header h2 {
    font-size: 1.6rem;
  }

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

  .banking-timeline {
    flex-direction: column;
  }

  .timeline-step {
    min-width: 100%;
  }

  .timeline-connector {
    display: none;
  }

  .mobile-container {
    grid-template-columns: 1fr;
  }

  .mobile-content h2 {
    font-size: 1.6rem;
  }

  .comparison-table-wrapper {
    overflow-x: scroll;
  }

  .comparison-table {
    font-size: 0.85rem;
    min-width: 600px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 10px;
  }

  .safety-container {
    flex-direction: column;
    padding: 25px;
  }

  .safety-content h2 {
    font-size: 1.6rem;
  }

  .responsible-gambling-container {
    padding: 25px;
  }

  .rg-header {
    flex-direction: column;
    text-align: center;
  }

  .rg-header h2 {
    font-size: 1.6rem;
  }

  .rg-checklist li {
    flex-direction: column;
    text-align: center;
  }

  .faq {
    padding: 25px;
  }

  .faq-header h2 {
    font-size: 1.6rem;
  }

  .games-tabs {
    justify-content: center;
  }

  .tab-button {
    flex: 1;
    min-width: 100px;
    font-size: 0.9rem;
    padding: 10px 20px;
  }
}