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


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;
  position: sticky;
  top: 0;
  z-index: 1100;
  box-shadow: 0 0 0 rgba(0,0,0,0); /* subtle by default */
}

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

.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) {
  .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;
  }
}

@media (max-width: 768px) {
  .navbar .auth-buttons img { height: 34px; }
}

/* Announcement Bar */
.announcement-bar {
  background: linear-gradient(90deg, rgba(15, 10, 5, 0.98), rgba(25, 20, 15, 0.95));
  border-bottom: 1px solid rgba(188, 145, 41, 0.25);
  position: relative;
}

.announcement-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.announcement-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary-color), #FFD700);
  color: #000;
  font-weight: 800;
  font-size: 0.8rem;
  box-shadow: 0 4px 12px rgba(188, 145, 41, 0.4);
  flex-shrink: 0;
}

.announcement-text {
  color: #EAEAEA;
  font-size: 0.95rem;
  line-height: 1.5;
  flex: 1;
}

.announcement-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.announcement-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary-color), #FFD700);
  color: #000;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.85rem;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(188, 145, 41, 0.45);
}

.announcement-cta:hover { filter: brightness(1.05); }

.announcement-close {
  background: transparent;
  border: none;
  color: #AAA;
  font-size: 1.2rem;
  cursor: pointer;
}

.announcement-close:hover { color: #FFF; }

@media (max-width: 768px) {
  .announcement-inner { flex-wrap: wrap; gap: 12px; }
  .announcement-actions { margin-left: auto; }
  .announcement-text { font-size: 0.9rem; }
}

.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 Section - New Design */
.hero {
  background: linear-gradient(180deg, rgba(20, 15, 10, 0.95), rgba(10, 5, 0, 0.98));
  padding: 80px 50px;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}

/* Info Corner - New Section */
.info-corner-section {
  background: linear-gradient(180deg, rgba(15, 10, 5, 0.98), rgba(25, 20, 15, 0.95));
  padding: 80px 50px;
  border-radius: 25px;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.info-corner-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;
}

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

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

.info-corner-title {
  font-size: 2rem;
  color: #FFFFFF;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.info-corner-intro {
  font-size: 1.1rem;
  color: #E0E0E0;
  line-height: 1.8;
}

.info-corner-table {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 2px solid rgba(188, 145, 41, 0.2);
  overflow: hidden;
}

.info-row {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
  border-top: 1px solid rgba(188, 145, 41, 0.2);
}

.info-row:first-child {
  border-top: none;
}

.info-head {
  background: linear-gradient(135deg, rgba(188, 145, 41, 0.3), rgba(214, 179, 66, 0.2));
}

.info-cell {
  padding: 22px 26px;
  color: #FFFFFF;
  font-size: 1rem;
}

.term-col {
  background: rgba(0, 0, 0, 0.15);
}

.term-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(188, 145, 41, 0.15);
  border: 1px solid rgba(188, 145, 41, 0.35);
  color: #FFD700;
  padding: 8px 14px;
  border-radius: 14px;
  font-weight: 700;
}

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

.meaning-col {
  color: #E0E0E0;
  line-height: 1.7;
}

.info-corner-footer {
  margin-top: 30px;
}

.info-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  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: 16px;
  padding: 18px 20px;
}

.info-note i {
  font-size: 1.4rem;
  color: var(--primary-color);
}

.info-note p {
  margin: 0;
  color: #EAEAEA;
}

@media (max-width: 1024px) {
  .info-row { grid-template-columns: 260px 1fr; }
}

@media (max-width: 768px) {
  .info-corner-section { padding: 60px 30px; }
  .info-row { grid-template-columns: 1fr; }
  .term-col { background: rgba(0, 0, 0, 0.25); }
}

@media (max-width: 480px) {
  .info-corner-section { padding: 40px 20px; }
  .info-cell { padding: 16px 18px; }
}

.hero::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% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.hero-container {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-left {
  flex: 1;
}

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

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

.hero-title {
  font-size: 3rem;
  color: #FFFFFF;
  font-weight: 900;
  margin-bottom: 25px;
  line-height: 1.2;
}

.title-line {
  display: block;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #FFD700;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.5;
  background: linear-gradient(135deg, var(--primary-color), #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.hero-tagline {
  font-size: 1.05rem;
  color: #D0D0D0;
  line-height: 1.7;
  margin-bottom: 40px;
  font-style: italic;
}

.hero-cta-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary-color), #FFD700);
  color: #000;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(188, 145, 41, 0.4);
  text-decoration: none;
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(188, 145, 41, 0.5);
  color: #000;
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid rgba(188, 145, 41, 0.3);
  text-decoration: none;
}

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

.hero-features {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

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

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

.hero-right {
  flex: 1;
  position: relative;
}

.hero-image-container {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  position: absolute;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.3));
  border-radius: 20px;
  padding: 25px;
  border: 2px solid rgba(188, 145, 41, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  animation: float 6s ease-in-out infinite;
}

.hero-card:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(188, 145, 41, 0.4);
}

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

.card-1 {
  top: 20px;
  left: 20px;
  animation-delay: 0s;
}

.card-2 {
  top: 120px;
  right: 20px;
  animation-delay: 2s;
}

.card-3 {
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 4s;
}

.card-content {
  text-align: center;
}

.card-label {
  display: block;
  font-size: 0.8rem;
  color: #FFD700;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.card-amount {
  display: block;
  font-size: 2rem;
  color: #FFFFFF;
  font-weight: 900;
  margin-bottom: 5px;
}

.card-bonus {
  display: block;
  font-size: 0.9rem;
  color: #E0E0E0;
  font-weight: 600;
}

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

.icon-1 {
  top: 50px;
  left: 10px;
  animation-delay: 1s;
}

.icon-2 {
  top: 200px;
  right: 10px;
  animation-delay: 3s;
}

.icon-3 {
  bottom: 100px;
  left: 10px;
  animation-delay: 5s;
}

.icon-4 {
  top: 100px;
  right: 50px;
  animation-delay: 2s;
}

/* Loyalty Section - New Design */
.loyalty-section {
  background: linear-gradient(180deg, rgba(15, 10, 5, 0.98), rgba(25, 20, 15, 0.95));
  padding: 80px 50px;
  border-radius: 25px;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

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

.loyalty-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

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

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

.loyalty-subtitle {
  font-size: 1.3rem;
  color: #FFD700;
  font-weight: 700;
  margin-bottom: 20px;
  font-style: italic;
}

.loyalty-intro {
  font-size: 1.1rem;
  color: #E0E0E0;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.loyalty-table {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.2));
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(188, 145, 41, 0.3);
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.table-header {
  display: grid;
  grid-template-columns: 280px 1fr;
  background: linear-gradient(135deg, rgba(188, 145, 41, 0.4), rgba(214, 179, 66, 0.3));
  padding: 25px 30px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

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

.table-cell {
  color: #FFFFFF;
  font-size: 1.1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.table-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  padding: 25px 30px;
  border-top: 1px solid rgba(188, 145, 41, 0.2);
  transition: all 0.3s ease;
  position: relative;
  background: rgba(255, 255, 255, 0.02);
}

.table-row:hover {
  background: rgba(188, 145, 41, 0.1);
  transform: translateX(5px);
}

.table-row.bronze:hover {
  border-left: 4px solid #CD7F32;
}

.table-row.silver:hover {
  border-left: 4px solid #C0C0C0;
}

.table-row.gold:hover {
  border-left: 4px solid #FFD700;
}

.table-row.platinum:hover {
  border-left: 4px solid #E5E4E2;
}

.tier-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.bronze-badge {
  background: linear-gradient(135deg, #CD7F32, #8B6914);
  color: #FFFFFF;
  border: 2px solid rgba(205, 127, 50, 0.6);
}

.silver-badge {
  background: linear-gradient(135deg, #C0C0C0, #808080);
  color: #FFFFFF;
  border: 2px solid rgba(192, 192, 192, 0.6);
}

.gold-badge {
  background: linear-gradient(135deg, #FFD700, #B8860B);
  color: #000;
  border: 2px solid rgba(255, 215, 0, 0.6);
}

.platinum-badge {
  background: linear-gradient(135deg, #E5E4E2, #A8A8A8);
  color: #000;
  border: 2px solid rgba(229, 228, 226, 0.6);
}

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

.benefit-list {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}

.benefit-item {
  color: #E0E0E0;
  font-size: 1rem;
  line-height: 1.6;
  padding: 8px 16px;
  background: rgba(188, 145, 41, 0.15);
  border-radius: 12px;
  border: 1px solid rgba(188, 145, 41, 0.3);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(188, 145, 41, 0.25);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.loyalty-footer {
  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);
  text-align: center;
}

.points-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.info-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: 1.8rem;
  color: #000;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

.info-text h3 {
  font-size: 1.3rem;
  color: #FFFFFF;
  font-weight: 800;
  margin-bottom: 8px;
}

.info-text p {
  font-size: 1rem;
  color: #E0E0E0;
  line-height: 1.6;
  margin: 0;
}

/* Welcome Bonus Section - New Design */
.welcome-bonus-section {
  background: linear-gradient(180deg, rgba(15, 10, 5, 0.98), rgba(25, 20, 15, 0.95));
  padding: 80px 50px;
  border-radius: 25px;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.welcome-bonus-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;
}

.bonus-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

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

.bonus-number {
  display: inline-block;
  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;
  margin: 0 auto 25px;
  box-shadow: 0 8px 25px rgba(188, 145, 41, 0.6);
}

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

.bonus-subtitle {
  font-size: 1.2rem;
  color: #FFD700;
  font-weight: 600;
  font-style: italic;
}

.bonus-content {
  display: grid;
  gap: 40px;
}

.bonus-description {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 20px;
  border: 2px solid rgba(188, 145, 41, 0.2);
}

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

.section-subtitle {
  font-size: 1.8rem;
  color: #FFFFFF;
  font-weight: 800;
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.step-item {
  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;
  position: relative;
  overflow: hidden;
}

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

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

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

.step-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 20px;
  font-size: 2rem;
  color: #000;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

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

.step-content p {
  font-size: 1rem;
  color: #E0E0E0;
  line-height: 1.6;
  margin: 0;
}

.bonus-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.bonus-highlight,
.example-box {
  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);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.4s ease;
}

.bonus-highlight:hover,
.example-box:hover {
  transform: translateY(-3px);
  border-color: var(--primary-color);
  box-shadow: 0 12px 35px rgba(188, 145, 41, 0.2);
}

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

.highlight-content h4,
.example-content h4 {
  font-size: 1.2rem;
  color: #FFFFFF;
  font-weight: 800;
  margin-bottom: 10px;
}

.highlight-content p,
.example-content p {
  font-size: 1rem;
  color: #E0E0E0;
  line-height: 1.7;
  margin: 0;
}

.highlight-content strong,
.example-content strong {
  color: #FFD700;
  font-weight: 700;
}

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

.feature-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);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary-color);
  box-shadow: 0 12px 35px rgba(188, 145, 41, 0.2);
}

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

.feature-content h4 {
  font-size: 1.2rem;
  color: #FFFFFF;
  font-weight: 800;
  margin-bottom: 10px;
}

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

.bonus-cta {
  text-align: center;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(135deg, var(--primary-color), #FFD700);
  color: #000;
  padding: 18px 40px;
  border-radius: 35px;
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(188, 145, 41, 0.4);
  text-decoration: none;
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(188, 145, 41, 0.5);
  color: #000;
}

/* Featured Games Section - New Design */
.featured-games-section {
  background: linear-gradient(180deg, rgba(20, 15, 10, 0.95), rgba(15, 10, 5, 0.98));
  padding: 80px 50px;
  border-radius: 25px;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.featured-games-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;
}

.games-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

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

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

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

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

.games-subtitle {
  font-size: 1.1rem;
  color: #E0E0E0;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

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

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

.game-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.game-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s 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: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.game-play-btn {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), #FFD700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

.game-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.8);
}

.game-content {
  padding: 25px;
}

.game-name {
  font-size: 1.3rem;
  color: #FFFFFF;
  font-weight: 800;
  margin-bottom: 10px;
}

.game-description {
  font-size: 0.95rem;
  color: #E0E0E0;
  line-height: 1.6;
  margin-bottom: 15px;
}

.game-features {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

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

.games-footer {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  padding-top: 40px;
  border-top: 2px solid rgba(188, 145, 41, 0.2);
}

.games-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  width: 100%;
  max-width: 800px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 2px solid rgba(188, 145, 41, 0.2);
  transition: all 0.3s ease;
}

.stat-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

.stat-number {
  font-size: 2.2rem;
  color: #FFD700;
  font-weight: 900;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: #E0E0E0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.games-cta {
  text-align: center;
}

/* Live Bonus Tracker Section - High Engagement */
.live-bonus-tracker {
  background: linear-gradient(135deg, rgba(10, 5, 0, 0.98), rgba(20, 15, 10, 0.95));
  padding: 80px 50px;
  border-radius: 25px;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.live-bonus-tracker::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, transparent, #FF0000, #FFD700, #FF0000, transparent);
  animation: shimmer 3s infinite;
}

.tracker-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

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

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 0, 0, 0.2);
  border: 2px solid #FF0000;
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.live-dot {
  width: 12px;
  height: 12px;
  background: #FF0000;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.live-text {
  color: #FF0000;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.tracker-subtitle {
  font-size: 1.2rem;
  color: #FFD700;
  font-weight: 600;
  font-style: italic;
}

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

.stat-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);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

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

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

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

.stat-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: 1.8rem;
  color: #000;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
  flex-shrink: 0;
}

.stat-content {
  flex: 1;
}

.stat-number {
  font-size: 2.2rem;
  color: #FFD700;
  font-weight: 900;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 1rem;
  color: #E0E0E0;
  font-weight: 600;
}

.live-feed {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.3));
  border-radius: 20px;
  border: 2px solid rgba(188, 145, 41, 0.2);
  padding: 30px;
  margin-bottom: 40px;
}

.feed-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(188, 145, 41, 0.2);
}

.feed-header h3 {
  font-size: 1.4rem;
  color: #FFFFFF;
  font-weight: 800;
  margin: 0;
}

.feed-timer {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FFD700;
  font-weight: 700;
}

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

.feed-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(188, 145, 41, 0.2);
  transition: all 0.3s ease;
}

.feed-item:hover {
  background: rgba(188, 145, 41, 0.1);
  border-color: var(--primary-color);
  transform: translateX(5px);
}

.player-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color), #FFD700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #000;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.feed-content {
  flex: 1;
}

.player-name {
  font-size: 1rem;
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 2px;
}

.bonus-action {
  font-size: 0.9rem;
  color: #E0E0E0;
  margin-bottom: 2px;
}

.bonus-amount {
  font-size: 1rem;
  color: #FFD700;
  font-weight: 700;
}

.feed-time {
  font-size: 0.8rem;
  color: #AAAAAA;
  font-weight: 600;
}

.tracker-cta {
  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: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-content h4 {
  font-size: 1.4rem;
  color: #FFFFFF;
  font-weight: 800;
  margin-bottom: 8px;
}

.cta-content p {
  font-size: 1.1rem;
  color: #E0E0E0;
  line-height: 1.6;
  margin: 0;
}

.tracker-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #FF0000, #FFD700);
  color: #000;
  padding: 18px 35px;
  border-radius: 35px;
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
  text-decoration: none;
  flex-shrink: 0;
}

.tracker-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(255, 0, 0, 0.5);
  color: #000;
}
.mobile-bonuses-section {
  background: linear-gradient(135deg, rgba(20, 15, 10, 0.95), rgba(15, 10, 5, 0.98));
  padding: 80px 50px;
  border-radius: 25px;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.mobile-bonuses-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;
}

.mobile-bonuses-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

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

.mobile-bonuses-title {
  font-size: 2.5rem;
  color: #FFFFFF;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.mobile-bonuses-subtitle {
  font-size: 1.2rem;
  color: #FFD700;
  font-weight: 600;
  font-style: italic;
}

.mobile-bonuses-content {
  text-align: center;
}

.mobile-bonuses-intro {
  font-size: 1.1rem;
  color: #E0E0E0;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

.benefit-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 50px rgba(188, 145, 41, 0.4);
}

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

.benefit-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: 1.8rem;
  color: #000;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

.benefit-badge {
  background: linear-gradient(135deg, var(--primary-color), #FFD700);
  color: #000;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.benefit-content h4 {
  font-size: 1.3rem;
  color: #FFFFFF;
  font-weight: 800;
  margin-bottom: 10px;
}

.benefit-content p {
  font-size: 1rem;
  color: #E0E0E0;
  line-height: 1.6;
  margin-bottom: 15px;
}

.benefit-highlight {
  background: rgba(188, 145, 41, 0.15);
  border: 1px solid rgba(188, 145, 41, 0.3);
  border-radius: 12px;
  padding: 8px 16px;
  display: inline-block;
}

.highlight-text {
  color: #FFD700;
  font-weight: 700;
  font-size: 0.9rem;
}

.mobile-guarantee {
  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: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
  text-align: left;
}

.guarantee-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.2rem;
  color: #000;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6);
  flex-shrink: 0;
}

.guarantee-text {
  flex: 1;
}

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

.guarantee-text p {
  font-size: 1.1rem;
  color: #E0E0E0;
  line-height: 1.7;
  margin: 0;
}

.guarantee-cta {
  flex-shrink: 0;
}

.mobile-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--primary-color), #FFD700);
  color: #000;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(188, 145, 41, 0.4);
  text-decoration: none;
}

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

/* Seasonal Promotions Section */
.seasonal-promotions-section {
  background: linear-gradient(180deg, rgba(20, 15, 10, 0.95), rgba(15, 10, 5, 0.98));
  padding: 80px 50px;
  border-radius: 25px;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.seasonal-promotions-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;
}

.seasonal-promotions-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

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

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

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

.seasonal-promotions-title {
  font-size: 2rem;
  color: #FFFFFF;
  font-weight: 800;
  line-height: 1.4;
}

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

.event-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;
  position: relative;
  overflow: hidden;
}

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

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

.event-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 50px rgba(188, 145, 41, 0.4);
}

.event-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);
}

.event-content h4 {
  font-size: 1.2rem;
  color: #FFFFFF;
  font-weight: 700;
  margin: 0;
}

.seasonal-promotions-footer {
  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);
  text-align: center;
}

.seasonal-promotions-footer p {
  font-size: 1.1rem;
  color: #E0E0E0;
  line-height: 1.7;
  margin: 0;
}
.faq {
  background: linear-gradient(180deg, rgba(15, 10, 5, 0.98), rgba(25, 20, 15, 0.95));
  padding: 80px 50px;
  border-radius: 25px;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.faq::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;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

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

.faq-title {
  font-size: 2.5rem;
  color: #FFFFFF;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

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

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
}

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

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

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

.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;
  background: rgba(0, 0, 0, 0.2);
}

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

.faq-answer p {
  color: #E0E0E0;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
  padding-top: 20px;
}

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

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

  .final-thoughts {
    flex-direction: column;
  }

  .final-thoughts-banner,
  .final-thoughts-intro {
    max-width: 100%;
    border-radius: 10px;
  }

  .final-thoughts-intro {
    padding: 20px;
  }

  .welcome-bonus-section {
    padding: 60px 30px;
  }

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

  .bonus-subtitle {
    font-size: 1.1rem;
  }

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

  .bonus-details {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bonus-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .featured-games-section {
    padding: 60px 30px;
  }

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

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .loyalty-section {
    padding: 60px 30px;
  }

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

  .table-header,
  .table-row {
    grid-template-columns: 220px 1fr;
    padding: 20px 25px;
  }

  .games {
    padding: 20px;
  }

  .live-bonus-tracker,
  .mobile-bonuses-section,
  .seasonal-promotions-section {
    padding: 60px 30px;
  }

  .tracker-title,
  .mobile-bonuses-title,
  .seasonal-promotions-title {
    font-size: 2rem;
  }

  .tracker-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tracker-cta {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .mobile-benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mobile-guarantee {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

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

  .faq {
    padding: 60px 30px;
  }

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

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

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

@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: 60px 30px;
  }

  .hero-container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

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

  .hero-subtitle {
    font-size: 1.1rem;
  }

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

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

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

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

  .hero-image-container {
    height: 400px;
  }

  .hero-card {
    padding: 20px;
  }

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

  .final-thoughts-intro h3,
  .why-choose-intro h2,
  .games-intro h3,
  .faq h3 {
    font-size: 1.3rem;
  }

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

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

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

  .navbar .auth-buttons {
    justify-content: center;
    width: 100%;
  }

  .hero {
    padding: 40px 20px;
  }

  .hero-container {
    gap: 30px;
  }

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

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

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

  .hero-tagline {
    font-size: 0.9rem;
  }

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

  .cta-primary,
  .cta-secondary {
    padding: 12px 25px;
    font-size: 0.9rem;
  }

  .hero-features {
    gap: 20px;
  }

  .hero-image-container {
    height: 300px;
  }

  .hero-card {
    padding: 15px;
  }

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

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

  .final-thoughts-intro {
    padding: 15px;
  }

  .welcome-bonus-section {
    padding: 40px 20px;
  }

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

  .bonus-subtitle {
    font-size: 1rem;
  }

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

  .step-item {
    padding: 20px;
  }

  .step-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .bonus-highlight,
  .example-box,
  .feature-card {
    padding: 20px;
    flex-direction: column;
    text-align: center;
  }

  .highlight-icon,
  .example-icon,
  .feature-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    margin: 0 auto 15px;
  }

  .cta-button {
    padding: 15px 30px;
    font-size: 1rem;
  }

  .featured-games-section {
    padding: 40px 20px;
  }

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

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

  .game-image-wrapper {
    height: 200px;
  }

  .games-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .loyalty-section {
    padding: 40px 20px;
  }

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

  .table-header,
  .table-row {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 15px;
  }

  .tier-badge {
    justify-content: center;
    padding: 12px 18px;
    font-size: 1rem;
  }

  .benefit-item {
    padding: 10px 16px;
    font-size: 1rem;
  }

  .points-info {
    flex-direction: column;
    text-align: center;
  }

  .info-icon {
    margin-bottom: 15px;
  }

  .live-bonus-tracker,
  .mobile-bonuses-section,
  .seasonal-promotions-section {
    padding: 40px 20px;
  }

  .tracker-title,
  .mobile-bonuses-title,
  .seasonal-promotions-title {
    font-size: 1.6rem;
  }

  .stat-card {
    padding: 20px;
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

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

  .live-feed {
    padding: 20px;
  }

  .feed-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .benefit-card {
    padding: 20px;
  }

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

  .mobile-guarantee {
    padding: 25px;
  }

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

  .event-card {
    padding: 20px;
  }

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

  .faq {
    padding: 40px 20px;
  }

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

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

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

  .faq-item.active .faq-answer {
    padding: 0 20px 20px;
  }

  .footer {
    padding: 30px 15px;
  }

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