@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: #FBB1F7;
  --secondary-color: #000000;
  --third-color: #111111;
  --text-primary: #FFFFFF;
  --text-secondary: #AAAAAA;
  --accent-primary: #740083;
}

* {
  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.gif);
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--text-primary);
  line-height: 1.6;
}


a {
  text-decoration: none;
  color: var(--accent-primary);
}

img {
  max-width: 100%;
  height: auto;
  width: auto;
}

.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  transition: background 0.3s ease;
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.navbar {
  background-color: var(--secondary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
}

.navbar .logo img {
  height: 50px;
  align-items: center;
}

.navbar-menu {
  display: flex;
  gap: 20px;
  list-style: none;
}

.navbar-menu li a {
  color: var(--text-primary);
  font-size: 1.2rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.3s ease, color 0.3s ease;
}

.navbar-menu li a:hover {
  color: var(--primary-color);
}

.navbar .auth-buttons {
  display: flex;
  gap: 10px;
}

.btn-login {
  background-color: var(--text-primary);
  color: var(--secondary-color);
  border: 2px solid var(--text-primary);
}

.btn-register {
  background-color: transparent;
  color: var(--text-primary);
  border: 2px solid var(--text-primary);
}

.btn-login:hover {
  background-color: transparent;
  color: var(--text-primary);
}

.btn-register:hover {
  background-color: var(--text-primary);
  color: var(--secondary-color);
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.hero {
  position: relative;
  background: linear-gradient(135deg, var(--text-secondary) 0%, var(--accent-primary) 100%);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 50px;
  top: 20px;
  border-radius: 10px;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 1.8rem;
  color: var(--text-primary);
}

.hero-content p {
  margin-bottom: 30px;
  color: var(--text-secondary);
}

.final-thoughts {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 40px;
}

.final-thoughts-banner {
  flex: 1;
  max-width: 50%;
  overflow: hidden;
}

.final-thoughts-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 0 0 10px;
}

.final-thoughts-intro {
  flex: 1;
  max-width: 50%;
  padding: 30px;
  background-color: var(--secondary-color);
  border-radius: 0 10px 10px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.final-thoughts-intro h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.final-thoughts-intro p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.why-choose {
  display: block;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.why-choose-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 10px;
}

.why-choose-intro h2 {
  font-size: 1.6rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.why-choose-intro p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.why-choose-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.why-choose-card {
  flex: 1;
  min-width: 200px;
  background-color: var(--third-color);
  padding: 20px;
  border-radius: 10px;
  text-align: left;
  transition: transform 0.3s ease;
}

.why-choose-card:hover {
  transform: translateY(-5px);
}

.why-choose-card h4 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.why-choose-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

.why-choose-card i {
  display: block;
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--accent-primary);
}

.games {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 30px;
  border-radius: 10px;
  background-color: var(--secondary-color);
}

.games-intro h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.games-intro p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.game-card {
  background-color: var(--third-color);
  border-radius: 10px;
  overflow: hidden;
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease;
}

.game-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.btn-play {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 20px;
  background-color: var(--accent-primary);
  color: var(--text-primary);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-play:hover {
  background-color: var(--primary-color)
}

.faq {
  margin-top: 20px;
  padding: 30px;
  border-radius: 10px;
  background-color: var(--secondary-color);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.faq-item {
  background-color: var(--third-color);
  border-radius: 10px;
  padding: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-item h4 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 10px;
  position: relative;
}

.faq-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.faq-item.active p {
  max-height: 500px;
  opacity: 1;
}

.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;
  }

  .why-choose-grid {
    flex-direction: column;
  }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .games {
    padding: 20px;
  }

  .faq {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .navbar .auth-buttons {
    margin-top: 10px;
    width: 100%;
    gap: 20px;
    justify-content: center;
  }

  .navbar-menu {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    width: 100%;
  }

  .hero {
    padding: 30px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .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: 20px;
  }

  .hero-content h1 {
    font-size: 1.3rem;
  }

  .final-thoughts-intro {
    padding: 15px;
  }

  .why-choose-details {
    padding: 20px;
  }

  .games {
    padding: 15px;
  }

  .faq {
    padding: 15px;
  }

  .footer {
    padding: 30px 15px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}

/* ============================================
   BONUS PAGE - COMPLETELY NEW DESIGNS
   ============================================ */

/* Section 1: Bonus Hero - Spotlight Design */
.bonus-hero-spotlight {
  margin-top: 20px;
  padding: 100px 50px;
  background: radial-gradient(ellipse at center, var(--accent-primary) 0%, var(--third-color) 100%);
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.spotlight-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(251, 177, 247, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: spotlightPulse 3s ease-in-out infinite;
}

@keyframes spotlightPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.spotlight-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.bonus-badge-large {
  display: inline-block;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(15px);
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 30px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.bonus-hero-spotlight h1 {
  font-size: 3rem;
  color: var(--text-primary);
  margin-bottom: 25px;
  line-height: 1.2;
  font-weight: 700;
}

.spotlight-subtitle {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 40px;
  line-height: 1.8;
  opacity: 0.95;
}

.bonus-highlight-box {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin: 50px 0;
  flex-wrap: wrap;
}

.highlight-item {
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  padding: 30px 40px;
  border-radius: 20px;
  border: 2px solid rgba(251, 177, 247, 0.3);
}

.highlight-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 10px;
}

.highlight-label {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
}

.spotlight-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-spotlight-primary {
  background: var(--text-primary);
  color: var(--secondary-color);
  padding: 18px 50px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.btn-spotlight-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.btn-spotlight-secondary {
  background: transparent;
  color: var(--text-primary);
  padding: 18px 50px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  border: 3px solid var(--text-primary);
  transition: all 0.3s ease;
}

.btn-spotlight-secondary:hover {
  background: var(--text-primary);
  color: var(--secondary-color);
}

/* Section 2: Welcome Bonus - Card Stack */
.bonus-welcome-stack {
  margin-top: 60px;
  padding: 60px 40px;
  background: var(--secondary-color);
}

.stack-header {
  text-align: center;
  margin-bottom: 60px;
}

.stack-header h2 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.stack-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.card-stack-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.stack-card {
  background: var(--third-color);
  border-radius: 20px;
  padding: 40px;
  border-left: 5px solid var(--primary-color);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.stack-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(251, 177, 247, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stack-card:hover {
  transform: translateX(20px);
  box-shadow: 0 15px 40px rgba(251, 177, 247, 0.3);
}

.stack-card:hover::before {
  opacity: 1;
}

.stack-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.stack-card-header i {
  font-size: 3rem;
  color: var(--primary-color);
}

.stack-card-header h3 {
  font-size: 1.8rem;
  color: var(--text-primary);
}

.stack-card-body p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.stack-features {
  list-style: none;
  margin: 25px 0;
}

.stack-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-primary);
  margin-bottom: 12px;
  font-size: 1rem;
}

.stack-features li i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.btn-stack {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 35px;
  background: var(--accent-primary);
  color: var(--text-primary);
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-stack:hover {
  background: var(--primary-color);
  transform: scale(1.05);
}

/* Section 3: Bonus Types - Hexagonal Grid */
.bonus-types-hex {
  margin-top: 60px;
  padding: 80px 40px;
  background: var(--third-color);
  position: relative;
}

.hex-header {
  text-align: center;
  margin-bottom: 60px;
}

.hex-header h2 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.hex-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.hex-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.hex-item {
  background: var(--secondary-color);
  padding: 50px 35px;
  border-radius: 0;
  text-align: center;
  position: relative;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transition: all 0.4s ease;
  border: 3px solid var(--accent-primary);
}

.hex-item:hover {
  transform: scale(1.1) rotate(5deg);
  border-color: var(--primary-color);
  box-shadow: 0 20px 50px rgba(251, 177, 247, 0.4);
  z-index: 10;
}

.hex-icon {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 25px;
}

.hex-item h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.hex-item p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

/* Section 4: How to Claim - Step Process */
.bonus-claim-process {
  margin-top: 60px;
  padding: 80px 40px;
  background: var(--secondary-color);
}

.process-header {
  text-align: center;
  margin-bottom: 60px;
}

.process-header h2 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.process-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.process-timeline {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--accent-primary) 100%);
  transform: translateX(-50%);
}

.process-step {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
}

.process-step:nth-child(odd) {
  flex-direction: row;
}

.process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.step-circle {
  width: 80px;
  height: 80px;
  background: var(--accent-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  box-shadow: 0 10px 30px rgba(116, 0, 131, 0.5);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  border: 5px solid var(--primary-color);
}

.step-content {
  flex: 1;
  background: var(--third-color);
  padding: 35px;
  border-radius: 20px;
  border: 2px solid var(--accent-primary);
}

.step-content h3 {
  font-size: 1.6rem;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.step-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Section 5: Bonus Terms - Comparison Table */
.bonus-terms-table {
  margin-top: 60px;
  padding: 80px 40px;
  background: var(--third-color);
}

.terms-header {
  text-align: center;
  margin-bottom: 60px;
}

.terms-header h2 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.terms-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.terms-comparison {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.comparison-card {
  background: var(--secondary-color);
  padding: 40px;
  border-radius: 20px;
  border: 2px solid var(--accent-primary);
  transition: all 0.4s ease;
}

.comparison-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 40px rgba(251, 177, 247, 0.3);
}

.comparison-card h3 {
  font-size: 1.6rem;
  color: var(--text-primary);
  margin-bottom: 20px;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 15px;
}

.comparison-card p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.comparison-example {
  background: rgba(251, 177, 247, 0.1);
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
  margin-top: 20px;
}

.comparison-example strong {
  color: var(--primary-color);
  display: block;
  margin-bottom: 8px;
}

.comparison-example {
  color: var(--text-primary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Section 6: Bonus Tips - Tips Grid */
.bonus-tips-grid {
  margin-top: 60px;
  padding: 80px 40px;
  background: var(--secondary-color);
}

.tips-header {
  text-align: center;
  margin-bottom: 60px;
}

.tips-header h2 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.tips-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.tips-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.tip-card {
  background: var(--third-color);
  padding: 40px 30px;
  border-radius: 20px;
  border: 2px solid var(--accent-primary);
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}

.tip-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.tip-card:hover {
  transform: translateY(-10px) rotate(2deg);
  border-color: var(--primary-color);
  box-shadow: 0 20px 50px rgba(251, 177, 247, 0.4);
}

.tip-card:hover::before {
  opacity: 0.15;
}

.tip-number {
  font-size: 4rem;
  font-weight: 700;
  color: var(--accent-primary);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.tip-card h3 {
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.tip-card p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* Section 7: Featured Games - Showcase */
.bonus-games-showcase {
  margin-top: 60px;
  padding: 80px 40px;
  background: var(--third-color);
}

.showcase-header {
  text-align: center;
  margin-bottom: 60px;
}

.showcase-header h2 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.showcase-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.showcase-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: all 0.4s ease;
}

.showcase-item:hover {
  transform: scale(1.05);
  z-index: 10;
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.showcase-item:hover img {
  transform: scale(1.1);
}

.showcase-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
  padding: 30px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.showcase-item:hover .showcase-overlay {
  transform: translateY(0);
}

.showcase-overlay h3 {
  color: var(--text-primary);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.showcase-overlay p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 15px;
}

.btn-showcase {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-showcase:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(251, 177, 247, 0.5);
}

/* Section 8: Bonus CTA - Split Design */
.bonus-cta-split {
  margin-top: 60px;
  display: flex;
  gap: 0;
  background: var(--secondary-color);
  border-radius: 30px;
  overflow: hidden;
}

.cta-visual {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.cta-visual::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(116, 0, 131, 0.4) 0%, transparent 100%);
}

.cta-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8) contrast(1.1);
}

.cta-content {
  flex: 1;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(180deg, var(--secondary-color) 0%, var(--third-color) 100%);
}

.cta-content h2 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 25px;
}

.cta-content p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.cta-features {
  display: flex;
  gap: 30px;
  margin: 35px 0;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-primary);
  font-weight: 600;
}

.cta-feature i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.btn-cta-primary {
  display: inline-block;
  padding: 18px 50px;
  background: var(--accent-primary);
  color: var(--text-primary);
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(116, 0, 131, 0.4);
  width: fit-content;
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(116, 0, 131, 0.6);
}

/* Section 9: Bonus FAQ - Accordion */
.bonus-faq-accordion {
  margin-top: 60px;
  padding: 80px 40px;
  background: var(--secondary-color);
}

.faq-header-section {
  text-align: center;
  margin-bottom: 60px;
}

.faq-header-section h2 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.faq-header-section p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.faq-accordion-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-accordion-item {
  background: var(--third-color);
  border-radius: 15px;
  margin-bottom: 20px;
  border: 2px solid var(--accent-primary);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-accordion-item.active {
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(251, 177, 247, 0.3);
}

.faq-accordion-header {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-accordion-header:hover {
  background: rgba(251, 177, 247, 0.1);
}

.faq-accordion-header h4 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin: 0;
}

.faq-accordion-header i {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-accordion-item.active .faq-accordion-header i {
  transform: rotate(180deg);
}

.faq-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 30px;
}

.faq-accordion-item.active .faq-accordion-content {
  max-height: 500px;
  padding: 0 30px 25px;
}

.faq-accordion-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0;
}

/* Responsive Styles for Bonus Page */
@media (max-width: 1024px) {
  .bonus-hero-spotlight {
    padding: 60px 30px;
  }
  
  .bonus-hero-spotlight h1 {
    font-size: 2.2rem;
  }
  
  .hex-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .terms-comparison,
  .tips-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-timeline::before {
    left: 30px;
  }
  
  .process-step {
    flex-direction: row !important;
    padding-left: 80px;
  }
  
  .bonus-cta-split {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .bonus-hero-spotlight,
  .bonus-welcome-stack,
  .bonus-types-hex,
  .bonus-claim-process,
  .bonus-terms-table,
  .bonus-tips-grid,
  .bonus-games-showcase,
  .bonus-faq-accordion {
    padding: 40px 20px;
  }
  
  .bonus-hero-spotlight h1 {
    font-size: 1.8rem;
  }
  
  .bonus-highlight-box {
    gap: 30px;
  }
  
  .hex-grid,
  .terms-comparison,
  .tips-container,
  .showcase-grid {
    grid-template-columns: 1fr;
  }
  
  .process-timeline::before {
    display: none;
  }
  
  .process-step {
    padding-left: 0;
  }
  
  .step-circle {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}