/* ==========================================================================
   1. Reset and Base Styles
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

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

/* ==========================================================================
   2. Typography
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

/* ==========================================================================
   3. Buttons & Common Components
   ========================================================================== */
.btn {
  display: inline-block;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #e55a2b, #e8851a);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #333;
  border: 2px solid #333;
}

.btn-secondary:hover {
  background: #333;
  color: white;
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
}

th,
td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}

th {
  background: #2c3e50;
  color: white;
  font-weight: 600;
}

td {
  color: #333;
}

.table-responsive {
  overflow-x: auto;
}

/* ==========================================================================
   4. Header
   ========================================================================== */
.header {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo img {
  height: 50px;
  width: auto;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-list a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-list a:hover {
  color: #ff6b35;
}

.nav-list a.active {
  color: #ff6b35;
  font-weight: 600;
}

.header-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* ==========================================================================
   5. Footer
   ========================================================================== */
.footer {
  background: #2c3e50;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  color: white;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #ff6b35;
}

.footer-logo img {
  width: 150px; /* Corrected width */
  height: auto; /* To maintain aspect ratio */
  margin-bottom: 1rem;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.payment-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.age-restriction {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.age-badge {
  background: #e74c3c;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1.2rem;
}

.license-info p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* ==========================================================================
   6. Page Sections
   ========================================================================== */

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Bonus Page Hero */
.bonus-hero {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
}

.bonus-hero .hero-text h1 {
  color: white;
}

.bonus-hero .hero-text p {
  color: rgba(255, 255, 255, 0.9);
}

/* Stats Section */
.stats {
  padding: 80px 0;
  background: white;
}

.stats h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.stats > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: #666;
  font-size: 1.1rem;
}

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

.stat-item {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border-left: 4px solid #ff6b35;
}

.stat-item h3 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: #666;
  margin: 0;
}

/* Bonus Section (Main Page) */
.bonus {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
}

.bonus h2,
.bonus h3 {
  color: white;
}

.bonus p {
  color: rgba(255, 255, 255, 0.9);
}

.bonus-table {
  margin: 3rem 0;
}

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

.promotion-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.promotion-item h4 {
  color: white;
  margin-bottom: 1rem;
}

/* Games Section */
.games {
  padding: 80px 0;
  background: white;
}

.games h2 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.games > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: #666;
  font-size: 1.1rem;
}

.games-showcase {
  text-align: center;
  margin: 3rem 0;
}

.games-showcase img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.games-categories {
  display: grid;
  gap: 3rem;
}

.game-category {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
}

.game-category h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.top-games {
  margin-top: 2rem;
}

.top-games ol {
  padding-left: 1.5rem;
}

.top-games li {
  margin-bottom: 0.5rem;
  color: #666;
}

/* Mobile Experience */
.mobile-experience {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
}

.mobile-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.mobile-text h2 {
  color: white;
  margin-bottom: 1rem;
}

.mobile-text p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.mobile-text ul {
  list-style: none;
  margin-bottom: 2rem;
}

.mobile-text li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.mobile-text li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4caf50;
  font-weight: bold;
}

.mobile-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Registration Section */
.registration {
  padding: 80px 0;
  background: white;
}

.registration h2 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.registration > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: #666;
  font-size: 1.1rem;
}

.registration-steps {
  margin-top: 3rem;
}

.registration-steps h3 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 2rem;
}

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

.step {
  text-align: center;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 12px;
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  background: #ff6b35;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  margin: 0 auto 1rem;
}

.step h4 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.step p {
  color: #666;
  margin: 0;
}

/* Payments Section */
.payments {
  padding: 80px 0;
  background: #f8f9fa;
}

.payments h2 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.payments > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: #666;
  font-size: 1.1rem;
}

.pix-highlight {
  background: white;
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pix-content {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.pix-content img {
  border-radius: 50%;
}

.pix-text h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.pix-text ul {
  list-style: none;
}

.pix-text li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.pix-text li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4caf50;
  font-weight: bold;
}

/* Security Section */
.security {
  padding: 80px 0;
  background: white;
}

.security h2 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.security > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: #666;
  font-size: 1.1rem;
}

.security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.security-item {
  text-align: center;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 12px;
  border-top: 4px solid #4caf50;
}

.security-item h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.security-item p {
  color: #666;
  margin: 0;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background: #f8f9fa;
}

.faq h2 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 3rem;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  margin-bottom: 1rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  background: #2c3e50;
  color: white;
  padding: 1.5rem;
  margin: 0;
  cursor: pointer;
}

.faq-item p {
  padding: 1.5rem;
  margin: 0;
  color: #666;
}

/* Author Section */
.author {
  padding: 80px 0;
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: white;
}

.author-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: start;
}

.author-image img {
  border-radius: 50%;
  width: 200px;
  height: 200px;
  object-fit: cover;
}

.author-info h2 {
  color: white;
  margin-bottom: 1.5rem;
}

.author-details {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.author-details p {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.author-info > p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

/* CTA Section */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  text-align: center;
}

.cta h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta .btn-secondary {
  border-color: white;
  color: white;
}

.cta .btn-secondary:hover {
  background: white;
  color: #ff6b35;
}

/* ==========================================================================
   7. BONUS PAGE SECTIONS
   ========================================================================== */

/* Bonus Overview Section */
.bonus-overview {
  padding: 80px 0;
  background: white;
}

.bonus-overview h2 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.bonus-overview > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: #666;
  font-size: 1.1rem;
}

.bonus-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.bonus-overview-item {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border-top: 4px solid #ff6b35;
  transition: transform 0.3s ease;
}

.bonus-overview-item:hover {
  transform: translateY(-5px);
}

.bonus-overview-item h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.bonus-value {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ff6b35;
  margin-bottom: 1rem;
}

.bonus-overview-item p {
  color: #666;
  margin: 0;
}

/* Welcome Package Section */
.welcome-package {
  padding: 80px 0;
  background: #f8f9fa;
}

.welcome-package h2 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.welcome-package > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: #666;
  font-size: 1.1rem;
}

.welcome-structure {
  margin: 3rem 0;
}

.welcome-structure h3 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 2rem;
}

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

.welcome-step {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.welcome-step .step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}

.welcome-step h4 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.welcome-step p {
  color: #666;
  margin: 0;
}

.bonus-example {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.bonus-example h3 {
  color: #2c3e50;
  margin-bottom: 1.5rem;
  text-align: center;
}

.bonus-total {
  text-align: center;
  font-size: 1.1rem;
  color: #2c3e50;
  margin-top: 1.5rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
}

/* Promotional Codes Section */
.promo-codes {
  padding: 80px 0;
  background: white;
}

.promo-codes h2 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.promo-codes > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: #666;
  font-size: 1.1rem;
}

.code-categories {
  margin: 3rem 0;
}

.code-categories h3 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 2rem;
}

.code-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.code-type {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #ff6b35;
}

.code-type h4 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.code-type p {
  color: #666;
  margin: 0;
}

.code-sources h3 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 2rem;
}

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

.source-item {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
}

.source-item h4 {
  color: white;
  margin-bottom: 1rem;
}

.source-item p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* VIP Program Section */
.vip-program {
  padding: 80px 0;
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: white;
}

.vip-program h2 {
  text-align: center;
  color: white;
  margin-bottom: 1rem;
}

.vip-program > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.vip-levels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.vip-level {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.vip-level:hover {
  transform: translateY(-5px);
}

.vip-badge {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.vip-level h3 {
  color: white;
  margin-bottom: 1rem;
}

.vip-level p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

/* Bonus Rules Section */
.bonus-rules {
  padding: 80px 0;
  background: #f8f9fa;
}

.bonus-rules h2 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.bonus-rules > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: #666;
  font-size: 1.1rem;
}

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

.rule-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.rule-item h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
  border-bottom: 2px solid #ff6b35;
  padding-bottom: 0.5rem;
}

.rule-item p {
  color: #666;
  margin-bottom: 1rem;
}

.rule-item ul {
  list-style: none;
  padding-left: 0;
}

.rule-item li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
  color: #666;
}

.rule-item li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ff6b35;
  font-weight: bold;
}

/* Strategies Section */
.strategies {
  padding: 80px 0;
  background: white;
}

.strategies h2 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.strategies > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: #666;
  font-size: 1.1rem;
}

.strategy-showcase {
  text-align: center;
  margin: 3rem 0;
}

.strategy-showcase img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.strategy-item {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  border-top: 4px solid #4caf50;
}

.strategy-item h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.strategy-item p {
  color: #666;
  margin-bottom: 1rem;
}

.strategy-item ul {
  list-style: none;
  padding-left: 0;
}

.strategy-item li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
  color: #666;
}

.strategy-item li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4caf50;
  font-weight: bold;
}

/* ==========================================================================
   8. Responsive Design
   ========================================================================== */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }

  .header-content {
    padding: 0.5rem 0;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .nav.active {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .header-actions {
    gap: 0.5rem;
  }

  .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

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

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

  .mobile-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

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

  .pix-content {
    flex-direction: column;
    text-align: center;
  }

  .author-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer-legal {
    flex-direction: column;
    text-align: center;
  }

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

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

  .security-features {
    grid-template-columns: 1fr;
  }

  .payment-methods {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }

  /* Bonus Page Responsive Adjustments */
  .bonus-overview-grid,
  .welcome-steps,
  .code-types,
  .sources-grid,
  .vip-levels,
  .rules-grid,
  .strategies-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
    max-width: 300px;
  }

  .table-responsive {
    font-size: 0.8rem;
  }

  th,
  td {
    padding: 0.5rem;
  }
}