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

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
}

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

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

h1 {
  font-size: 2.5rem;
  color: #7f152e;
}

h2 {
  font-size: 2rem;
  color: #7f152e;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  color: #7f152e;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.7;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background-color: #d61800;
  color: white;
}

.btn-primary:hover {
  background-color: #b01400;
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background-color: #d43f00;
  transform: translateY(-2px);
}

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

/* Header */
.header {
  background-color: #7f152e;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

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

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #edae01;
}

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

.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-color: white;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #7f152e 0%, #d61800 100%);
  color: white;
  padding: 4rem 0;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.bonus-hero {
  background: linear-gradient(135deg, #e94f08 0%, #edae01 100%);
}

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

.hero-text h1 {
  color: white;
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

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

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Overview Section */
.overview {
  padding: 4rem 0;
  background-color: #fdf8f5;
}

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

.overview-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.overview-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.overview-item h3 {
  color: #7f152e;
  margin-bottom: 0.5rem;
}

/* Why Choose Section */
.why-choose {
  padding: 4rem 0;
}

.feature {
  margin-bottom: 3rem;
}

.feature h3 {
  color: #d61800;
  margin-bottom: 1rem;
}

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

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

.feature li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #edae01;
  font-weight: bold;
}

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

.pillar {
  background-color: #fdf8f5;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  color: #7f152e;
}

/* Games Section */
.games {
  padding: 4rem 0;
  background-color: #fdf8f5;
}

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

.game-category {
  margin-bottom: 3rem;
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.game-category ul {
  list-style: none;
  padding-left: 0;
}

.game-category li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.game-category li::before {
  content: "🎮";
  position: absolute;
  left: 0;
}

.top-games {
  background: linear-gradient(135deg, #7f152e, #d61800);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  margin: 2rem 0;
}

.top-games h4 {
  color: white;
  margin-bottom: 1rem;
}

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

.top-games li {
  padding: 0.3rem 0;
}

/* Mobile Section */
.mobile-section {
  padding: 4rem 0;
}

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

.mobile-features {
  margin-top: 1rem;
}

.feature-group {
  margin-bottom: 2rem;
}

.feature-group h4 {
  color: #e94f08;
  margin-bottom: 0.5rem;
}

.feature-group ul {
  list-style: none;
  padding-left: 0;
}

.feature-group li {
  padding: 0.3rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.feature-group li::before {
  content: "📱";
  position: absolute;
  left: 0;
}

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

/* How to Start Section */
.how-to-start {
  padding: 4rem 0;
  background-color: #fdf8f5;
}

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

.step {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  position: relative;
}

.step-number {
  position: absolute;
  top: -15px;
  left: 2rem;
  background-color: #d61800;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.step h3 {
  margin-top: 1rem;
  color: #7f152e;
}

.step ul,
.step ol {
  padding-left: 1.5rem;
}

.step li {
  padding: 0.3rem 0;
}

.cta-section {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, #7f152e, #d61800);
  color: white;
  border-radius: 15px;
}

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

.cta-section p {
  margin-bottom: 1rem;
}

/* Bonus Page Specific Styles */
.welcome-bonus {
  padding: 4rem 0;
}

.bonus-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.bonus-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.main-bonus .bonus-header {
  background: linear-gradient(135deg, #d61800, #e94f08);
}

.free-spins .bonus-header {
  background: linear-gradient(135deg, #e94f08, #edae01);
}

.bonus-header {
  padding: 2rem;
  color: white;
  text-align: center;
}

.bonus-header h3 {
  color: white;
  margin-bottom: 1rem;
}

.bonus-amount {
  font-size: 2rem;
  font-weight: 900;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.bonus-content {
  padding: 2rem;
}

.bonus-terms {
  background-color: #fdf8f5;
  padding: 2rem;
  border-radius: 15px;
  margin-top: 2rem;
  border-left: 5px solid #edae01;
}

/* Cashback System */
.cashback-system {
  padding: 4rem 0;
  background-color: #fdf8f5;
}

.cashback-table {
  overflow-x: auto;
  margin-top: 2rem;
}

.cashback-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.cashback-table th {
  background-color: #7f152e;
  color: white;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

.cashback-table td {
  padding: 1rem;
  border-bottom: 1px solid #eee;
}

.cashback-table tr:hover {
  background-color: #fdf8f5;
}

.cashback-table tr.highlight {
  background-color: #edae01;
  color: #7f152e;
  font-weight: 600;
}

/* VIP Program */
.vip-program {
  padding: 4rem 0;
}

.vip-intro {
  margin-bottom: 3rem;
}

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

.vip-level {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.vip-level.premium {
  border: 3px solid #edae01;
}

.level-header {
  padding: 1.5rem;
  color: white;
  text-align: center;
}

.level-header.cromo {
  background: linear-gradient(135deg, #8e8e8e, #a8a8a8);
}
.level-header.bronze {
  background: linear-gradient(135deg, #cd7f32, #e6a85c);
}
.level-header.prata {
  background: linear-gradient(135deg, #c0c0c0, #e8e8e8);
}
.level-header.ouro {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
}
.level-header.platina {
  background: linear-gradient(135deg, #e5e4e2, #f7f7f7);
}
.level-header.diamante {
  background: linear-gradient(135deg, #b9f2ff, #e0f6ff);
}
.level-header.diamante-vermelho {
  background: linear-gradient(135deg, #d61800, #ff4444);
}

.level-header h4 {
  color: white;
  margin-bottom: 0.5rem;
}

.level-requirement {
  font-size: 0.9rem;
  opacity: 0.9;
}

.vip-level ul {
  padding: 1.5rem;
  list-style: none;
}

.vip-level li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.vip-level li::before {
  content: "⭐";
  position: absolute;
  left: 0;
}

/* Bonus Tips */
.bonus-tips {
  padding: 4rem 0;
  background-color: #fdf8f5;
}

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

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

.tip-card h3 {
  color: #d61800;
  margin-bottom: 1rem;
}

.tip-content h4 {
  color: #e94f08;
  margin: 1rem 0 0.5rem 0;
}

.tip-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
}

.tip-content li {
  padding: 0.3rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.tip-content li::before {
  content: "💡";
  position: absolute;
  left: 0;
}

/* Author Section */
.author-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #7f152e, #d61800);
  color: white;
}

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

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

.author-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

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

.credential {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 10px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

/* Welcome Package */
.welcome-package {
  padding: 4rem 0;
  background-color: #fdf8f5;
}

.package-structure {
  margin-top: 2rem;
}

.bonus-table {
  overflow-x: auto;
  margin: 2rem 0;
}

.bonus-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.bonus-table th {
  background-color: #7f152e;
  color: white;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

.bonus-table td {
  padding: 1rem;
  border-bottom: 1px solid #eee;
}

.bonus-table tr:hover {
  background-color: #fdf8f5;
}

.bonus-table tr.highlight {
  background-color: #edae01;
  color: #7f152e;
  font-weight: 600;
}

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

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

.example-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background-color: #fdf8f5;
  border-radius: 10px;
}

.example-step .step-number {
  background-color: #d61800;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

/* No Deposit Bonus */
.no-deposit-bonus {
  padding: 4rem 0;
}

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

.way-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.way-card:hover {
  transform: translateY(-5px);
}

.way-card h4 {
  color: #d61800;
  margin-bottom: 1rem;
}

.important-note {
  background-color: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 10px;
  padding: 1rem;
  margin-top: 2rem;
}

.free-spins-details {
  background: linear-gradient(135deg, #e94f08, #edae01);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  margin-top: 2rem;
}

.free-spins-details h3 {
  color: white;
}

/* Regular Promotions */
.regular-promotions {
  padding: 4rem 0;
  background-color: #fdf8f5;
}

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

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

.promotion-card.featured {
  border: 3px solid #edae01;
  background: linear-gradient(135deg, #ffffff, #fdf8f5);
}

.promotion-card h3 {
  color: #7f152e;
  margin-bottom: 1rem;
}

.promotion-card ul {
  list-style: none;
  padding-left: 0;
}

.promotion-card li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.promotion-card li::before {
  content: "💰";
  position: absolute;
  left: 0;
}

/* VIP Program */
.vip-table {
  margin: 2rem 0;
}

.vip-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.vip-table th {
  background: linear-gradient(135deg, #7f152e, #d61800);
  color: white;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

.vip-table td {
  padding: 1rem;
  border-bottom: 1px solid #eee;
}

.vip-table tr:hover {
  background-color: #fdf8f5;
}

.vip-table tr.highlight {
  background: linear-gradient(135deg, #edae01, #fff);
  font-weight: 600;
}

.vip-rewards {
  background: linear-gradient(135deg, #7f152e, #d61800);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  margin-top: 2rem;
}

.vip-rewards h3 {
  color: white;
}

/* Promo Codes */
.promo-codes {
  padding: 4rem 0;
  background-color: #fdf8f5;
}

.promo-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}

.sources-list {
  margin: 2rem 0;
}

.source-item {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.source-item h4 {
  color: #d61800;
  margin-bottom: 0.5rem;
}

.activation-steps {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  margin-top: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.activation-steps h3 {
  color: #7f152e;
}

.activation-steps ol {
  padding-left: 1.5rem;
}

.activation-steps li {
  padding: 0.5rem 0;
}

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

/* Terms and Conditions */
.terms-conditions {
  padding: 4rem 0;
}

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

.term-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #edae01;
}

.term-item h4 {
  color: #d61800;
  margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
  padding: 4rem 0;
  background-color: #fdf8f5;
}

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

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

.faq-item h4 {
  color: #7f152e;
  margin-bottom: 1rem;
}

/* Final CTA */
.final-cta {
  padding: 4rem 0;
  background: linear-gradient(135deg, #7f152e, #d61800);
  color: white;
}

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

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

.cta-content p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* Footer */
.footer {
  background-color: #7f152e;
  color: white;
  padding: 3rem 0 1rem;
}

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

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

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

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

.footer-section a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

.payment-method {
  background-color: #e94f08;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 600;
}

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

.social-link {
  background-color: #e94f08;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.social-link:hover {
  background-color: #d43f00;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: center;
}

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

.age-badge {
  background-color: #edae01;
  color: #7f152e;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 900;
  font-size: 1.2rem;
}

.license-info {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .container {
    padding: 0 15px;
  }

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

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

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

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  /* Header Mobile */
  .header {
    padding: 0.5rem 0;
  }

  .header-content {
    flex-wrap: wrap;
    position: relative;
  }

  .logo img {
    height: 40px;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #7f152e;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .nav.active {
    display: block;
  }

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

  .header-actions {
    gap: 0.5rem;
  }

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

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

  /* Hero Mobile */
  .hero {
    padding: 2rem 0;
    min-height: auto;
  }

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

  .hero-text h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-cta {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 280px;
  }

  /* Typography Mobile */
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  /* Sections Mobile */
  .overview,
  .why-choose,
  .games,
  .mobile-section,
  .how-to-start,
  .welcome-package,
  .no-deposit-bonus,
  .regular-promotions,
  .vip-program,
  .promo-codes,
  .terms-conditions,
  .faq-section,
  .final-cta,
  .author-section {
    padding: 2rem 0;
  }

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

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

  .overview-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .overview-item {
    padding: 1.5rem;
  }

  .games-categories {
    padding: 0;
  }

  .game-category {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

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

  /* Footer Mobile */
  .footer {
    padding: 2rem 0 1rem;
  }

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

  .footer-bottom {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
  }

  .age-restriction {
    justify-content: center;
  }

  .payment-methods,
  .social-links {
    justify-content: center;
  }

  /* Bonus page mobile styles */
  .bonus-details {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .bonus-table,
  .cashback-table,
  .vip-table {
    font-size: 0.8rem;
    overflow-x: auto;
  }

  .bonus-table th,
  .bonus-table td,
  .cashback-table th,
  .cashback-table td,
  .vip-table th,
  .vip-table td {
    padding: 0.5rem 0.3rem;
    white-space: nowrap;
  }

  .bonus-table table,
  .cashback-table table,
  .vip-table table {
    min-width: 500px;
  }

  /* Bonus Page Specific Mobile */
  .ways-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .promo-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  /* Feature Groups Mobile */
  .feature-group ul {
    padding-left: 1rem;
  }

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

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

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

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }

  /* Extra small mobile adjustments */
  .hero-text h1 {
    font-size: 1.5rem;
  }

  .hero-text p {
    font-size: 0.9rem;
  }

  .btn-large {
    padding: 12px 20px;
    font-size: 0.95rem;
  }

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

  .step-number {
    position: static;
    margin-bottom: 1rem;
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .step {
    padding: 1.5rem 1rem;
  }

  .overview-item,
  .game-category,
  .bonus-card,
  .way-card,
  .promotion-card,
  .term-item,
  .faq-item,
  .tip-card {
    padding: 1rem;
  }

  .error-number {
    font-size: 4rem;
  }

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

  .error-message {
    font-size: 0.9rem;
  }

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

  .error-actions .btn {
    width: 100%;
    max-width: 250px;
  }

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

  .search-box {
    padding: 1rem 0.5rem;
  }
}

@media (max-width: 360px) {
  /* Very small screens */
  .container {
    padding: 0 8px;
  }

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

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

  .btn-large {
    padding: 12px 18px;
    font-size: 0.9rem;
  }

  .overview-item,
  .game-category,
  .step {
    padding: 1rem 0.8rem;
  }

  .bonus-table,
  .cashback-table,
  .vip-table {
    font-size: 0.7rem;
  }

  .error-number {
    font-size: 3rem;
  }

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

/* Landscape orientation fixes */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 1rem 0;
  }

  .error-404 {
    min-height: auto;
    padding: 1rem 0;
  }

  .floating-icons {
    display: none;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .logo img,
  .footer-logo img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .btn:hover,
  .overview-item:hover,
  .step:hover,
  .bonus-card:hover,
  .way-card:hover,
  .promotion-card:hover {
    transform: none;
  }

  .btn:active {
    transform: scale(0.95);
  }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .floating-icon {
    animation: none;
  }
}
