@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: #BC9129;
  --secondary-color: #000000;
  --third-color: #111111;
  --text-primary: #FFFFFF;
  --text-secondary: #AAAAAA;
  --accent-primary: #D6B342;
}

* {
  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;
  padding-top: 90px;
}


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

/* Announcement Bar Styles */
.announcement-bar {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 16px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--primary-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.announcement-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  animation: wave-flow 3s linear infinite;
}

@keyframes wave-flow {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

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

.announcement-icon {
  font-size: 2rem;
  animation: bounce 1.5s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.announcement-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.announcement-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), #D4A641);
  color: #000;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: fit-content;
}

.announcement-message {
  margin: 0;
  font-size: 1rem;
  color: #FFFFFF;
  font-weight: 500;
  line-height: 1.5;
}

.announcement-message .highlight {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.1rem;
}

.announcement-btn {
  background: var(--text-primary);
  color: var(--secondary-color);
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}

.announcement-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  background: #f0f0f0;
}

.announcement-btn i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.announcement-btn:hover i {
  transform: translateX(3px);
}

.announcement-close {
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 50%;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.announcement-close:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.announcement-bar.hidden {
  display: none;
}

.navbar {
  background-color: var(--secondary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  width: 100%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

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

.navbar-menu {
  display: flex;
  gap: 20px;
  list-style: none;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}

.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;
  align-items: center;
  flex-shrink: 0;
}

.navbar .auth-buttons img {
  display: block;
  height: 38px;
  width: auto;
}

/* Table of Contents */
.table-of-contents {
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
}

.toc-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.toc-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 40px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

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

.toc-item {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(214, 179, 66, 0.2);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.toc-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(188, 145, 41, 0.2);
}

.toc-link {
  display: flex;
  align-items: center;
  padding: 20px;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.toc-link:hover {
  background: rgba(188, 145, 41, 0.1);
}

.toc-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-primary));
  color: var(--secondary-color);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.9rem;
  margin-right: 15px;
  flex-shrink: 0;
}

.toc-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 768px) {
  body { padding-top: 120px; }
  .table-of-contents {
    padding: 40px 0;
  }
  
  .toc-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  
  .toc-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .toc-link {
    padding: 15px;
  }
  
  .toc-number {
    width: 35px;
    height: 35px;
    font-size: 0.8rem;
    margin-right: 12px;
  }
  
  .toc-text {
    font-size: 0.95rem;
  }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-primary));
  color: var(--secondary-color);
  border: 2px solid rgba(214, 179, 66, 0.6);
  box-shadow: 0 8px 24px rgba(188, 145, 41, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1200;
}

.back-to-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(188, 145, 41, 0.5);
  border-color: var(--primary-color);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:focus {
  outline: 3px solid var(--primary-color);
  outline-offset: 3px;
}

@media (max-width: 768px) {
  .back-to-top { 
    right: 16px; 
    bottom: 16px; 
    width: 50px; 
    height: 50px; 
    font-size: 1.1rem;
  }
}

.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;
  background: linear-gradient(135deg, #1a0f0f 0%, #2d1b1b 50%, #1a0f0f 100%);
  padding: 40px 0;
  margin-top: 20px;
  border-radius: 20px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(188, 145, 41, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(214, 179, 66, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Hero Left Section */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(188, 145, 41, 0.2), rgba(214, 179, 66, 0.15));
  backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: 30px;
  width: fit-content;
  border: 1px solid rgba(188, 145, 41, 0.3);
}

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

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

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
}

.title-line {
  font-size: 2.8rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.2;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFD700;
  margin: 10px 0;
  line-height: 1.4;
  padding: 12px 25px;
  background: linear-gradient(135deg, rgba(188, 145, 41, 0.25), rgba(214, 179, 66, 0.2));
  border-left: 4px solid #FFD700;
  border-radius: 8px;
  display: inline-block;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 215, 0, 0.3);
  box-shadow: 0 4px 15px rgba(188, 145, 41, 0.3);
}

.hero-description {
  font-size: 1.1rem;
  color: #E0E0E0;
  line-height: 1.8;
  margin: 0;
}

.hero-cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cta-primary {
  background: linear-gradient(135deg, var(--primary-color), #D4A641);
  color: #000000;
  border: none;
  padding: 16px 35px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(188, 145, 41, 0.4);
}

.cta-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(188, 145, 41, 0.5);
  background: linear-gradient(135deg, #D4A641, var(--primary-color));
}

.cta-primary i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.cta-primary:hover i {
  transform: translateX(5px);
}

.cta-secondary {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid var(--primary-color);
  padding: 16px 35px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.cta-secondary:hover {
  background: rgba(188, 145, 41, 0.1);
  border-color: #D4A641;
  transform: translateY(-3px);
}

.cta-secondary i {
  font-size: 1.2rem;
  color: var(--primary-color);
}

.hero-features {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 600;
}

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

/* Hero Right Section */
.hero-right {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-card {
  position: absolute;
  background: linear-gradient(135deg, rgba(188, 145, 41, 0.2), rgba(214, 179, 66, 0.15));
  backdrop-filter: blur(15px);
  border: 2px solid rgba(188, 145, 41, 0.3);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.card-1 {
  top: 10%;
  left: 10%;
  width: 250px;
}

.card-2 {
  bottom: 10%;
  right: 10%;
  width: 220px;
  animation-delay: 1.5s;
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-amount {
  font-size: 2.5rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1;
}

.card-bonus {
  font-size: 1rem;
  font-weight: 600;
  color: #D4A641;
}

.hero-card:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: var(--primary-color);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

.floating-icon {
  position: absolute;
  font-size: 4rem;
  opacity: 0.3;
  animation: float-icon 4s ease-in-out infinite;
}

.icon-1 {
  top: 20%;
  right: 15%;
  animation-delay: 0s;
}

.icon-2 {
  top: 50%;
  left: 5%;
  animation-delay: 1.3s;
}

.icon-3 {
  bottom: 30%;
  right: 5%;
  animation-delay: 2.6s;
}

@keyframes float-icon {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

.about-us {
  margin-top: 40px;
  padding: 50px 0;
  background: linear-gradient(180deg, rgba(27, 27, 27, 0.8), rgba(17, 17, 17, 0.9));
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.about-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.about-us-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.about-title {
  font-size: 3rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #FFFFFF, var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-highlight {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(135deg, rgba(188, 145, 41, 0.2), rgba(214, 179, 66, 0.15));
  border-left: 4px solid var(--primary-color);
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(188, 145, 41, 0.2);
}

.about-intro {
  font-size: 1.3rem;
  font-weight: 600;
  color: #E0E0E0;
  margin: 0;
  line-height: 1.6;
}

.about-intro strong {
  color: var(--primary-color);
}

.about-description {
  text-align: center;
  margin-bottom: 50px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(188, 145, 41, 0.15), rgba(214, 179, 66, 0.1));
  border-radius: 20px;
  border: 2px solid rgba(188, 145, 41, 0.4);
  box-shadow: 0 10px 40px rgba(188, 145, 41, 0.2);
  position: relative;
  overflow: hidden;
}

.about-description::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(188, 145, 41, 0.05) 10px,
    rgba(188, 145, 41, 0.05) 20px
  );
  pointer-events: none;
}

.about-description p {
  font-size: 1.3rem;
  color: #FFFFFF;
  line-height: 2;
  margin: 0;
  position: relative;
  z-index: 1;
  font-weight: 500;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

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

.benefit-item {
  display: flex;
  gap: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  padding: 35px;
  border-radius: 20px;
  border: 2px solid rgba(188, 145, 41, 0.3);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.benefit-item:hover::before {
  left: 100%;
}

.benefit-item:hover {
  background: linear-gradient(135deg, rgba(188, 145, 41, 0.15), rgba(214, 179, 66, 0.1));
  border-color: var(--primary-color);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(188, 145, 41, 0.3);
}

.benefit-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FFD700, var(--primary-color));
  border-radius: 16px;
  font-size: 2rem;
  color: #000;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
  transform: rotate(10deg) scale(1.1);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6);
}

.benefit-content {
  position: relative;
  z-index: 1;
}

.benefit-content h4 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 12px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.benefit-content p {
  font-size: 1.05rem;
  color: #D8D8D8;
  line-height: 1.7;
  margin: 0;
}

.about-footer {
  text-align: center;
  padding: 30px;
  background: rgba(188, 145, 41, 0.1);
  border-radius: 15px;
  border: 2px solid rgba(188, 145, 41, 0.3);
}

.about-message {
  font-size: 1.2rem;
  color: #E0E0E0;
  line-height: 1.8;
  margin: 0;
}

.about-message strong {
  color: var(--primary-color);
  font-weight: 700;
}

.why-choose {
  margin-top: 40px;
  padding: 0;
}

.bonus-carousel {
  width: 100%;
  max-width: 800px;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
  margin: 50px auto;
}

.bonus-carousel a {
  flex-shrink: 0;
  width: 100%;
}

.bonus-carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.bonus-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.bonus-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 20px;
  width: 100%;
  max-width: 800px;
  margin: 30px auto;
  height: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.bonus-banner:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(188, 145, 41, 0.2);
}

.bonus-banner img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

.why-choose-wrapper {
  margin: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.98), rgba(20, 15, 10, 0.95));
  padding: 80px 50px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
}

.why-choose-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--primary-color), #FFD700, var(--primary-color), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.why-choose-intro {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.why-choose-title {
  font-size: 3.2rem;
  color: #FFFFFF;
  margin-bottom: 30px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.2;
  background: linear-gradient(135deg, #FFFFFF, var(--primary-color), #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(188, 145, 41, 0.3);
}

.why-choose-subtitle {
  font-size: 1.4rem;
  color: #E8E8E8;
  line-height: 2;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  font-weight: 400;
}

.why-choose-subtitle strong {
  color: var(--primary-color);
  font-weight: 700;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 50px;
  position: relative;
  z-index: 2;
}

.bonus-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.4));
  padding: 45px 40px;
  border-radius: 25px;
  border: 2px solid rgba(188, 145, 41, 0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 25px;
  backdrop-filter: blur(10px);
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(188, 145, 41, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.bonus-card:hover::before {
  opacity: 1;
}

.bonus-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.7s ease;
}

.bonus-card:hover::after {
  left: 100%;
}

.bonus-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: var(--primary-color);
  box-shadow: 0 20px 50px rgba(188, 145, 41, 0.4);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(0, 0, 0, 0.3));
}

.bonus-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), #FFD700);
  color: #000;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 900;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6), inset 0 2px 10px rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 3px solid rgba(255, 215, 0, 0.3);
  position: relative;
  z-index: 1;
}

.bonus-card:hover .bonus-number {
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

.bonus-card h4 {
  font-size: 1.6rem;
  color: #FFFFFF;
  margin-bottom: 16px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.3px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.bonus-card p {
  color: #E8E8E8;
  font-size: 1.05rem;
  line-height: 1.9;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.2px;
}

.games {
  margin-top: 40px;
  padding: 0;
  position: relative;
}

.games-container {
  margin: 0;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.95), rgba(25, 20, 15, 0.9));
  padding: 80px 50px;
  border-radius: 30px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  position: relative;
}

.games-container::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--primary-color), #FFD700, var(--primary-color), transparent);
}

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

.games-title {
  font-size: 3rem;
  color: #FFFFFF;
  font-weight: 900;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #FFFFFF, var(--primary-color), #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.games-subtitle {
  font-size: 1.3rem;
  color: #E0E0E0;
  line-height: 1.9;
  max-width: 1000px;
  margin: 0 auto;
  font-weight: 400;
}

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

.game-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.4));
  border-radius: 25px;
  overflow: hidden;
  border: 2px solid rgba(188, 145, 41, 0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  backdrop-filter: blur(10px);
}

.game-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--primary-color);
  box-shadow: 0 20px 50px rgba(188, 145, 41, 0.3);
}

.game-image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

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

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

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.game-play-btn {
  background: linear-gradient(135deg, var(--primary-color), #FFD700);
  color: #000;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(188, 145, 41, 0.4);
}

.game-play-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(188, 145, 41, 0.5);
}

.game-content {
  padding: 35px;
}

.game-name {
  font-size: 1.8rem;
  color: #FFFFFF;
  font-weight: 800;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.game-description {
  font-size: 1.05rem;
  color: #D8D8D8;
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 400;
}

.game-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.game-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #E8E8E8;
  font-size: 0.95rem;
}

.game-features li i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

/* Info Hub Section */
.info-hub {
  margin-top: 40px;
}

.info-hub-container {
  background: linear-gradient(180deg, rgba(20, 15, 10, 0.95), rgba(10, 5, 0, 0.98));
  padding: 80px 50px;
  border-radius: 30px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
}

.info-hub-header {
  text-align: center;
  margin-bottom: 60px;
}

.info-hub-title {
  font-size: 3rem;
  color: #FFFFFF;
  font-weight: 900;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #FFFFFF, var(--primary-color), #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.info-hub-intro {
  font-size: 1.4rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.info-hub-subtitle {
  font-size: 1.2rem;
  color: #E0E0E0;
  line-height: 1.8;
}

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

.info-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.3));
  padding: 35px;
  border-radius: 20px;
  border: 2px solid rgba(188, 145, 41, 0.2);
  transition: all 0.4s ease;
  text-align: center;
}

.info-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 40px rgba(188, 145, 41, 0.3);
}

.info-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.info-title {
  font-size: 1.5rem;
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 15px;
}

.info-description {
  font-size: 1rem;
  color: #D8D8D8;
  line-height: 1.8;
  margin: 0;
}

.info-tagline {
  text-align: center;
  font-size: 1.3rem;
  color: #E0E0E0;
  font-weight: 600;
  padding: 30px;
  background: linear-gradient(135deg, rgba(188, 145, 41, 0.15), rgba(214, 179, 66, 0.1));
  border-left: 4px solid var(--primary-color);
  border-radius: 15px;
  margin: 50px 0;
}

.section-title {
  font-size: 2.5rem;
  color: #FFFFFF;
  font-weight: 800;
  margin-bottom: 20px;
  text-align: center;
}

.section-description {
  font-size: 1.2rem;
  color: #E0E0E0;
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: center;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--primary-color);
  font-weight: 600;
  text-align: center;
  margin-bottom: 25px;
}

.section-note {
  font-size: 1.1rem;
  color: #E0E0E0;
  line-height: 1.8;
  margin-top: 30px;
  text-align: center;
  font-style: italic;
}

.feature-list {
  max-width: 800px;
  margin: 30px auto;
}

.feature-list-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  margin-bottom: 15px;
  border-left: 4px solid var(--primary-color);
}

.feature-emoji {
  font-size: 2rem;
  flex-shrink: 0;
}

.feature-text {
  color: #E0E0E0;
  font-size: 1.05rem;
  line-height: 1.7;
}

.feature-text strong {
  color: var(--primary-color);
  font-weight: 700;
}

/* How to Start Section - New Design */
.how-to-start-section {
  background: linear-gradient(180deg, rgba(20, 15, 10, 0.95), rgba(10, 5, 0, 0.98));
  border-top: 3px solid var(--primary-color);
  position: relative;
  overflow: hidden;
}

.how-to-start-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--primary-color), #FFD700, var(--primary-color), transparent);
  animation: shimmer 3s infinite;
}

.start-header {
  text-align: center;
  margin-bottom: 60px;
}

.time-estimate {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(188, 145, 41, 0.15);
  padding: 10px 20px;
  border-radius: 25px;
  border: 1px solid rgba(188, 145, 41, 0.3);
  margin-top: 20px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFD700;
}

.time-estimate i {
  font-size: 1.1rem;
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.step-card {
  display: flex;
  align-items: center;
  gap: 40px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.3));
  padding: 40px;
  border-radius: 25px;
  border: 2px solid rgba(188, 145, 41, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  transition: left 0.6s ease;
}

.step-card:hover::before {
  left: 100%;
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 40px rgba(188, 145, 41, 0.3);
}

.step-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), #FFD700);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 900;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
  border: 3px solid rgba(255, 215, 0, 0.3);
}

.step-icon {
  width: 50px;
  height: 50px;
  background: rgba(188, 145, 41, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-color);
  border: 2px solid rgba(188, 145, 41, 0.3);
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 1.8rem;
  color: #FFFFFF;
  font-weight: 800;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.step-description {
  font-size: 1.1rem;
  color: #E0E0E0;
  line-height: 1.7;
  margin-bottom: 20px;
}

.step-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.feature-tag {
  background: rgba(188, 145, 41, 0.15);
  color: #FFD700;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(188, 145, 41, 0.3);
}

.step-action-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), #FFD700);
  color: #000;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(188, 145, 41, 0.4);
  text-decoration: none;
}

.step-action-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(188, 145, 41, 0.5);
  color: #000;
}

.step-note {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 150, 0, 0.15);
  padding: 8px 15px;
  border-radius: 15px;
  border: 1px solid rgba(0, 150, 0, 0.3);
  font-size: 0.9rem;
  color: #90EE90;
  font-weight: 600;
  margin-top: 15px;
}

.step-note i {
  font-size: 1rem;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}

.connector-line {
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), #FFD700);
  position: relative;
}

.connector-arrow {
  position: absolute;
  right: -15px;
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 900;
}

.support-section {
  margin-top: 60px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(188, 145, 41, 0.15), rgba(214, 179, 66, 0.1));
  border-radius: 20px;
  border: 2px solid rgba(188, 145, 41, 0.3);
}

.support-content {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.support-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), #FFD700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #000;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

.support-text h4 {
  font-size: 1.5rem;
  color: #FFFFFF;
  font-weight: 800;
  margin-bottom: 10px;
}

.support-text p {
  font-size: 1.05rem;
  color: #E0E0E0;
  line-height: 1.7;
  margin-bottom: 20px;
}

.support-options {
  display: flex;
  gap: 15px;
}

.support-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.support-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  color: #FFFFFF;
}

/* Security Section - New Design */
.security-section {
  background: linear-gradient(180deg, rgba(20, 15, 10, 0.95), rgba(10, 5, 0, 0.98));
  border-top: 3px solid var(--primary-color);
  position: relative;
  overflow: hidden;
}

.security-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--primary-color), #FFD700, var(--primary-color), transparent);
  animation: shimmer 3s infinite;
}

.security-header {
  text-align: center;
  margin-bottom: 60px;
}

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

.security-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.3));
  border-radius: 20px;
  padding: 40px 30px;
  border: 2px solid rgba(188, 145, 41, 0.2);
  transition: all 0.4s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.security-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  transition: left 0.6s ease;
}

.security-card:hover::before {
  left: 100%;
}

.security-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 40px rgba(188, 145, 41, 0.3);
}

.security-icon-wrapper {
  margin-bottom: 25px;
}

.security-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), #FFD700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 2.5rem;
  color: #000;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
  border: 3px solid rgba(255, 215, 0, 0.3);
}

.security-card-title {
  font-size: 1.5rem;
  color: #FFFFFF;
  font-weight: 800;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.security-card-description {
  font-size: 1.05rem;
  color: #E0E0E0;
  line-height: 1.7;
  margin: 0;
}

.responsible-gaming-section {
  background: linear-gradient(135deg, rgba(220, 20, 60, 0.1), rgba(255, 20, 147, 0.05));
  border-radius: 20px;
  padding: 50px 40px;
  border: 2px solid rgba(220, 20, 60, 0.3);
  margin-bottom: 40px;
}

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

.responsible-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #DC143C, #FF1493);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: #FFFFFF;
  box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
}

.responsible-title {
  font-size: 2rem;
  color: #FFFFFF;
  font-weight: 800;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.responsible-subtitle {
  font-size: 1.1rem;
  color: #E0E0E0;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

.responsible-tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.responsible-tool {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  padding: 30px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.responsible-tool:hover {
  border-color: rgba(255, 20, 147, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 20, 147, 0.2);
}

.tool-icon {
  width: 60px;
  height: 60px;
  background: rgba(220, 20, 60, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: #FF69B4;
}

.tool-title {
  font-size: 1.3rem;
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 12px;
}

.tool-description {
  font-size: 1rem;
  color: #E0E0E0;
  line-height: 1.6;
  margin: 0;
}

.security-footer {
  background: linear-gradient(135deg, rgba(188, 145, 41, 0.2), rgba(214, 179, 66, 0.1));
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  border: 2px solid rgba(188, 145, 41, 0.3);
}

.footer-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.footer-message {
  font-size: 1.2rem;
  color: #FFFFFF;
  font-weight: 600;
  line-height: 1.8;
  margin: 0;
  font-style: italic;
}

.games-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.game-category-item {
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  color: #E0E0E0;
  font-size: 1.05rem;
  text-align: center;
  border: 2px solid rgba(188, 145, 41, 0.2);
}

.game-category-item strong {
  color: var(--primary-color);
  font-weight: 700;
}

/* Different Section - New Design */
.different-section {
  background: linear-gradient(180deg, rgba(20, 15, 10, 0.95), rgba(10, 5, 0, 0.98));
  border-top: 3px solid var(--primary-color);
  position: relative;
  overflow: hidden;
}

.different-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--primary-color), #FFD700, var(--primary-color), transparent);
  animation: shimmer 3s infinite;
}

.different-header {
  text-align: center;
  margin-bottom: 60px;
}

.different-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), #FFD700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2.5rem;
  color: #000;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
  border: 3px solid rgba(255, 215, 0, 0.3);
}

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

.different-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.3));
  border-radius: 20px;
  padding: 40px 30px;
  border: 2px solid rgba(188, 145, 41, 0.2);
  transition: all 0.4s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.different-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  transition: left 0.6s ease;
}

.different-card:hover::before {
  left: 100%;
}

.different-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 40px rgba(188, 145, 41, 0.3);
}

.different-card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), #FFD700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: #000;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
  border: 3px solid rgba(255, 215, 0, 0.3);
}

.different-card-title {
  font-size: 1.4rem;
  color: #FFFFFF;
  font-weight: 800;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.different-card-description {
  font-size: 1rem;
  color: #E0E0E0;
  line-height: 1.7;
  margin: 0;
}

.different-footer {
  background: linear-gradient(135deg, rgba(188, 145, 41, 0.2), rgba(214, 179, 66, 0.1));
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  border: 2px solid rgba(188, 145, 41, 0.3);
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary-color), #FFD700);
  color: #000;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
  box-shadow: 0 6px 20px rgba(188, 145, 41, 0.4);
}

.footer-badge i {
  font-size: 1.2rem;
}

.section-conclusion {
  font-size: 1.3rem;
  color: #FFFFFF;
  font-weight: 700;
  line-height: 1.8;
  margin: 0;
  font-style: italic;
}

.bonus-info-section,
.how-to-start-section,
.security-section,
.community-stories-section,
.different-section {
  margin: 60px 0;
  padding: 40px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  border-top: 3px solid var(--primary-color);
}

/* Community Stories Section */
.community-stories-section {
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.95), rgba(25, 20, 15, 0.9));
  border-top: 3px solid var(--primary-color);
  position: relative;
  overflow: hidden;
}

.community-stories-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--primary-color), #FFD700, var(--primary-color), transparent);
  animation: shimmer 3s infinite;
}

.live-wins-ticker {
  background: linear-gradient(135deg, rgba(188, 145, 41, 0.15), rgba(214, 179, 66, 0.1));
  border: 2px solid rgba(188, 145, 41, 0.3);
  border-radius: 15px;
  padding: 20px;
  margin: 30px 0;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 25px rgba(188, 145, 41, 0.2);
}

.ticker-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(188, 145, 41, 0.3);
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 800;
  color: #FFD700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #FF0000;
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.ticker-time {
  font-size: 0.85rem;
  color: #D0D0D0;
  font-weight: 600;
  font-family: 'Courier New', monospace;
}

.ticker-content {
  display: flex;
  animation: ticker-scroll 25s linear infinite;
  white-space: nowrap;
}

.win-item {
  display: inline-block;
  margin-right: 80px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #FFFFFF;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  animation: win-glow 3s ease-in-out infinite alternate;
}

@keyframes win-glow {
  0% {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  }
  100% {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 215, 0, 0.3);
  }
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

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

.story-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.3));
  border-radius: 20px;
  padding: 30px;
  border: 2px solid rgba(188, 145, 41, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.story-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  transition: left 0.6s ease;
}

.story-card:hover::before {
  left: 100%;
}

.story-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--primary-color);
  box-shadow: 0 15px 40px rgba(188, 145, 41, 0.3);
}

.player-avatar {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 20px;
}

.story-content h4 {
  font-size: 1.3rem;
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}

.story-content p {
  font-size: 1.05rem;
  color: #E0E0E0;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
  text-align: center;
}

.story-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: rgba(188, 145, 41, 0.15);
  border-radius: 10px;
  border: 1px solid rgba(188, 145, 41, 0.3);
}

.win-amount {
  font-size: 1.2rem;
  font-weight: 800;
  color: #FFD700;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.game-played {
  font-size: 0.9rem;
  color: #D0D0D0;
  font-weight: 600;
}

.community-cta {
  text-align: center;
  margin-top: 50px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(188, 145, 41, 0.2), rgba(214, 179, 66, 0.1));
  border-radius: 20px;
  border: 2px solid rgba(188, 145, 41, 0.3);
}

.community-cta h3 {
  font-size: 2rem;
  color: #FFFFFF;
  font-weight: 800;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.community-cta p {
  font-size: 1.2rem;
  color: #E0E0E0;
  margin-bottom: 30px;
  font-weight: 600;
}

.community-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), #FFD700);
  color: #000;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(188, 145, 41, 0.4);
  text-decoration: none;
}

.community-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(188, 145, 41, 0.5);
  color: #000;
}

/* Author Section - E-E-A-T Boost */
.author-section {
  background: linear-gradient(180deg, rgba(15, 10, 5, 0.98), rgba(25, 20, 15, 0.95));
  padding: 80px 50px;
  border-top: 3px solid var(--primary-color);
  position: relative;
  overflow: hidden;
}

.author-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--primary-color), #FFD700, var(--primary-color), transparent);
  animation: shimmer 3s infinite;
}

.author-container {
  max-width: 1200px;
  margin: 0 auto;
}

.author-header {
  text-align: center;
  margin-bottom: 60px;
}

.author-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.3));
  border-radius: 25px;
  padding: 50px;
  border: 2px solid rgba(188, 145, 41, 0.3);
  margin-bottom: 50px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.author-profile {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 2px solid rgba(188, 145, 41, 0.2);
}

.author-avatar {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--primary-color), #FFD700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: #000;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6);
  border: 4px solid rgba(255, 215, 0, 0.3);
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 2rem;
  color: #FFFFFF;
  font-weight: 900;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.author-title {
  font-size: 1.2rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 20px;
}

.author-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.credential-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(188, 145, 41, 0.15);
  color: #FFD700;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(188, 145, 41, 0.3);
}

.credential-badge i {
  font-size: 1.1rem;
}

.author-bio h4 {
  font-size: 1.5rem;
  color: #FFFFFF;
  font-weight: 800;
  margin-bottom: 15px;
}

.author-bio > p {
  font-size: 1.1rem;
  color: #E0E0E0;
  line-height: 1.8;
  margin-bottom: 30px;
}

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

.expertise-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border-left: 3px solid var(--primary-color);
}

.expertise-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.expertise-item span {
  font-size: 1rem;
  color: #E0E0E0;
  line-height: 1.6;
}

.expertise-item strong {
  color: #FFFFFF;
  font-weight: 700;
}

.author-commitment {
  display: flex;
  gap: 25px;
  background: linear-gradient(135deg, rgba(188, 145, 41, 0.15), rgba(214, 179, 66, 0.1));
  padding: 30px;
  border-radius: 20px;
  border: 2px solid rgba(188, 145, 41, 0.3);
  margin-bottom: 40px;
}

.commitment-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), #FFD700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #000;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

.commitment-text h5 {
  font-size: 1.3rem;
  color: #FFFFFF;
  font-weight: 800;
  margin-bottom: 12px;
}

.commitment-text p {
  font-size: 1.05rem;
  color: #E0E0E0;
  line-height: 1.8;
  margin: 0;
}

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

.verification-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.verification-item i {
  font-size: 1.8rem;
  color: var(--primary-color);
  flex-shrink: 0;
}

.verification-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.verification-text strong {
  font-size: 0.9rem;
  color: #FFFFFF;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.verification-text span {
  font-size: 1rem;
  color: #E0E0E0;
}

.editorial-standards {
  background: rgba(0, 0, 0, 0.2);
  padding: 50px;
  border-radius: 25px;
  border: 2px solid rgba(188, 145, 41, 0.2);
}

.standards-title {
  font-size: 2rem;
  color: #FFFFFF;
  font-weight: 900;
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.standard-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.3));
  padding: 30px;
  border-radius: 20px;
  border: 2px solid rgba(188, 145, 41, 0.2);
  text-align: center;
  transition: all 0.4s ease;
}

.standard-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 40px rgba(188, 145, 41, 0.3);
}

.standard-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), #FFD700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: #000;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

.standard-card h4 {
  font-size: 1.3rem;
  color: #FFFFFF;
  font-weight: 800;
  margin-bottom: 12px;
}

.standard-card p {
  font-size: 1rem;
  color: #E0E0E0;
  line-height: 1.7;
  margin: 0;
}

.faq {
  margin-top: 40px;
}

.faq-container {
  background: linear-gradient(180deg, rgba(20, 15, 10, 0.95), rgba(10, 5, 0, 0.98));
  padding: 80px 50px;
  border-radius: 30px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
}

.faq-title {
  font-size: 3rem;
  color: #FFFFFF;
  font-weight: 900;
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #FFFFFF, var(--primary-color), #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-subtitle {
  font-size: 1.2rem;
  color: #E0E0E0;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.8;
}

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

.faq-item {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.3));
  border-radius: 15px;
  margin-bottom: 20px;
  border: 2px solid rgba(188, 145, 41, 0.2);
  overflow: hidden;
  transition: all 0.4s ease;
}

.faq-item:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(188, 145, 41, 0.2);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
  user-select: none;
  -webkit-tap-highlight-color: rgba(188, 145, 41, 0.3);
  position: relative;
  z-index: 1;
}

.faq-question:hover {
  background: rgba(188, 145, 41, 0.1);
}

.faq-question h4 {
  font-size: 1.3rem;
  color: #FFFFFF;
  font-weight: 700;
  margin: 0;
  flex: 1;
  pointer-events: none;
}

.faq-question i {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
  pointer-events: none;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  background: rgba(0, 0, 0, 0.2);
}

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

.faq-answer p {
  color: #E0E0E0;
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0;
}

.faq-item.active {
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(188, 145, 41, 0.3);
}

.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-contact {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-contact p {
  margin: 8px 0;
}

.footer-contact a {
  color: var(--accent-primary);
  text-decoration: underline;
}

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

@media (max-width: 768px) {
  .footer-contact {
    font-size: 0.85rem;
  }
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-right {
    height: 400px;
  }

  .card-1,
  .card-2 {
    width: 200px;
  }

  .navbar {
    padding: 20px 40px;
    flex-wrap: wrap;
  }

  .about-us {
    padding: 40px 0;
  }

  .about-title {
    font-size: 2.2rem;
  }

  .about-intro {
    font-size: 1.1rem;
  }

  .about-description {
    padding: 25px;
  }

  .about-description p {
    font-size: 1.1rem;
  }

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

  .bonus-details {
    padding: 40px 30px;
  }

  .bonus-intro h3 {
    font-size: 2rem;
  }

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

  .bonus-card {
    padding: 30px;
  }

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

  .games-container {
    padding: 50px 35px;
  }

  .games-title {
    font-size: 2.2rem;
  }

  .games-subtitle {
    font-size: 1.15rem;
  }

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

  .game-content {
    padding: 30px;
  }

  .game-name {
    font-size: 1.5rem;
  }

  .faq-container {
    padding: 50px 35px;
  }

  .faq-title {
    font-size: 2.2rem;
  }

  .faq-subtitle {
    font-size: 1.05rem;
  }

  .faq-question h4 {
    font-size: 1.15rem;
  }
}

@media (max-width: 768px) {
  .steps-container {
    gap: 30px;
  }

  .step-card {
    flex-direction: column;
    text-align: center;
    gap: 25px;
    padding: 30px;
  }

  .step-visual {
    flex-direction: row;
    gap: 20px;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .step-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .author-section {
    padding: 60px 25px;
  }

  .author-card {
    padding: 30px 20px;
  }

  .author-profile {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .author-avatar {
    width: 100px;
    height: 100px;
    font-size: 3rem;
  }

  .author-name {
    font-size: 1.5rem;
  }

  .author-title {
    font-size: 1rem;
  }

  .author-credentials {
    justify-content: center;
  }

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

  .author-commitment {
    flex-direction: column;
    text-align: center;
  }

  .author-verification {
    grid-template-columns: 1fr;
  }

  .editorial-standards {
    padding: 30px 20px;
  }

  .standards-title {
    font-size: 1.5rem;
  }

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

  .step-title {
    font-size: 1.5rem;
  }

  .step-description {
    font-size: 1rem;
  }

  .step-features {
    justify-content: center;
  }

  .support-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .support-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }

  .security-main-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .security-card {
    padding: 30px 20px;
  }

  .security-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }

  .security-card-title {
    font-size: 1.3rem;
  }

  .responsible-gaming-section {
    padding: 40px 25px;
  }

  .responsible-icon {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }

  .responsible-title {
    font-size: 1.6rem;
  }

  .different-main-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .different-card {
    padding: 30px 20px;
  }

  .different-card-icon {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }

  .different-card-title {
    font-size: 1.2rem;
  }

  .different-footer {
    padding: 30px 20px;
  }

  .footer-badge {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .section-conclusion {
    font-size: 1.1rem;
  }

  .responsible-tools-grid {
    grid-template-columns: 1fr;
  }

  .responsible-tool {
    padding: 25px;
  }

  .tool-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .tool-title {
    font-size: 1.15rem;
  }

  .security-footer {
    padding: 30px 20px;
  }

  .footer-icon {
    font-size: 2.5rem;
  }

  .footer-message {
    font-size: 1.05rem;
  }

  .support-options {
    justify-content: center;
  }

  .announcement-content {
    flex-direction: column;
    gap: 10px;
  }

  .announcement-icon {
    order: 1;
  }

  .announcement-text {
    order: 2;
  }

  .announcement-btn {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .announcement-close {
    position: absolute;
    top: 10px;
    right: 10px;
    order: 4;
  }

  .announcement-message {
    font-size: 1rem;
  }

  .announcement-message strong {
    font-size: 1.1rem;
  }

  .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 .auth-buttons img {
    height: 34px;
  }

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

  .hero {
    padding: 30px 0;
  }

  .hero-container {
    gap: 20px;
  }

  .title-line {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
    padding: 10px 20px;
  }

  .hero-description {
    font-size: 1rem;
  }

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

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

  .hero-right {
    height: 300px;
  }

  .floating-icon {
    font-size: 2.5rem;
  }

  .about-title {
    font-size: 2rem;
  }

  .about-intro {
    font-size: 1rem;
    padding: 12px 25px;
  }

  .about-description {
    padding: 25px 20px;
  }

  .about-description p {
    font-size: 1.1rem;
  }

  .benefit-item {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }

  .benefit-icon {
    margin: 0 auto 15px;
  }

  .about-message {
    font-size: 1.1rem;
    padding: 20px;
  }

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

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

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

  .hero {
    padding: 20px 0;
  }

  .title-line {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    padding: 8px 15px;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .cta-primary,
  .cta-secondary {
    padding: 14px 30px;
    font-size: 1rem;
  }

  .hero-features {
    flex-direction: column;
    gap: 10px;
  }

  .hero-right {
    height: 250px;
  }

  .card-1,
  .card-2 {
    width: 160px;
    padding: 20px;
  }

  .card-amount {
    font-size: 2rem;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 6px 14px;
  }

  .floating-icon {
    font-size: 2rem;
  }

  .about-us {
    padding: 30px 0;
  }

  .about-title {
    font-size: 1.8rem;
  }

  .about-intro {
    font-size: 0.95rem;
    padding: 10px 20px;
  }

  .about-description {
    padding: 20px 15px;
  }

  .about-description p {
    font-size: 1rem;
    line-height: 1.8;
  }

  .benefit-item {
    padding: 20px;
  }

  .benefit-content h4 {
    font-size: 1.1rem;
  }

  .benefit-content p {
    font-size: 0.9rem;
  }

  .about-message {
    font-size: 1rem;
    padding: 15px;
  }

  .bonus-details {
    padding: 30px 20px;
  }

  .bonus-intro h3 {
    font-size: 1.8rem;
  }

  .bonus-intro p {
    font-size: 1.1rem;
  }

  .bonus-card {
    padding: 25px;
  }

  .bonus-card h4 {
    font-size: 1.2rem;
  }

  .bonus-card p {
     font-size: 0.95rem;
  }

  .bonus-number {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .games {
    padding: 15px;
  }

  .community-stories-section {
    padding: 30px 25px;
  }

  .live-wins-ticker {
    padding: 15px;
  }

  .ticker-header {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .live-indicator {
    font-size: 0.8rem;
  }

  .ticker-time {
    font-size: 0.75rem;
  }

  .win-item {
    font-size: 0.95rem;
    margin-right: 40px;
  }

  .player-stories-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .story-card {
    padding: 25px;
  }

  .player-avatar {
    font-size: 2.5rem;
  }

  .story-content h4 {
    font-size: 1.15rem;
  }

  .story-content p {
    font-size: 0.95rem;
  }

  .community-cta {
    padding: 30px 20px;
  }

  .community-cta h3 {
    font-size: 1.5rem;
  }

  .community-cta p {
    font-size: 1rem;
  }

  .community-btn {
    padding: 15px 30px;
    font-size: 1rem;
  }

  .faq-title {
    font-size: 1.8rem;
  }

  .faq-subtitle {
    font-size: 0.95rem;
  }

  .faq-question {
    padding: 20px 20px;
  }

  .faq-question h4 {
    font-size: 1.05rem;
  }

  .faq-answer p {
    font-size: 0.95rem;
  }

  .footer {
    padding: 30px 15px;
  }

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