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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

h1 {
  font-size: 1.75rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  color: #555;
}

strong {
  color: #0052cc;
  font-weight: 600;
}

/* Text Orange Class */
.text-orange {
  color: #ffa500;
}

/* Header - Changed background to dark to contrast with white logo */
.header {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav {
  padding: 0.75rem 0;
}

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

.nav-brand {
  display: flex;
  align-items: center;
}

.logo {
  height: 40px;
  width: auto;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.cta-button {
  background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
  color: #fff !important;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 165, 0, 0.4);
}

/* Hero Section - Added background image */
.hero {
  background: linear-gradient(135deg, #0052cc 0%, #003d99 50%, #002266 100%);
  color: #fff;
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("https://hebbkx1anhila5yf.public.blob.vercel-storage.com/mostbet-registro-R0h20nT9toky8OOYDBrQCbrsgFRSAG.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.1;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  text-align: center;
  margin-bottom: 2rem;
}

.hero-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-item i {
  color: #ffa500;
  font-size: 1.25rem;
}

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

.cta-primary {
  background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 165, 0, 0.3);
  border: none;
  cursor: pointer;
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 165, 0, 0.4);
}

.cta-primary.large {
  font-size: 1.25rem;
  padding: 1.25rem 2.5rem;
}

.cta-secondary {
  background: transparent;
  color: #fff;
  padding: 1rem 2rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.hero-image {
  text-align: center;
  margin-top: 2rem;
}

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

/* App Hero Specific Styles */
.app-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 4rem 0;
}

.app-hero .hero-content {
  text-align: center;
  margin-bottom: 0;
  max-width: 800px;
}

.hero-image-app {
  text-align: center;
}

.hero-image-app img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Hero Divider */
.hero-divider {
  height: 2px;
  width: 80%;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 2rem auto;
  border-radius: 1px;
}

/* Comparison Section */
.comparison-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

.comparison-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2rem;
}

.comparison-table {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow-x: auto;
  border: 1px solid #ddd;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  border-bottom: 1px solid #ddd;
  min-width: 800px;
}

.comparison-row.header {
  background: #0052cc;
  color: #fff;
  font-weight: 600;
}

.comparison-row.header > div {
  padding: 1rem;
  text-align: center;
}

.comparison-row > div {
  border-right: 1px solid #eee;
}

.comparison-row > div:last-child {
  border-right: none;
}

.comparison-row:not(.header) > div {
  padding: 1rem;
  text-align: center;
  border-right: 1px solid #eee;
  font-size: 0.9rem;
}

.comparison-row:not(.header) > div:first-child {
  text-align: left;
  font-weight: 600;
}

.comparison-row:not(.header) > div:last-child {
  border-right: none;
}

.comparison-row:not(.header):hover {
  background: #f0f8ff;
}

/* Download Section */
.download-section {
  padding: 4rem 0;
  background: #fff;
}

.download-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2rem;
}

.download-content {
  display: grid;
  gap: 4rem;
}

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

.download-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.download-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.download-card.android {
  border-color: #4caf50;
}

.download-card.ios {
  border-color: #007aff;
}

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

.download-card.android .download-icon {
  color: #4caf50;
}

.download-card.ios .download-icon {
  color: #007aff;
}

.download-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.download-card p {
  margin-bottom: 1.5rem;
  color: #666;
}

.download-card ul {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.download-card li {
  padding: 0.75rem 0;
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.4;
}

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

.download-card .cta-primary {
  margin-top: 1rem;
}

.installation-steps {
  background: #f8f9fa;
  padding: 3rem;
  border-radius: 12px;
}

.installation-steps h3 {
  text-align: center;
  margin-bottom: 2rem;
  color: #0052cc;
}

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

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

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

.step h4 {
  margin-bottom: 1rem;
  color: #0052cc;
}

.step p {
  color: #666;
  font-size: 0.9rem;
}

/* Features Section */
.features-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

.features-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2rem;
}

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

.feature-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0052cc 0%, #003d99 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: #fff;
}

.feature-card h3 {
  margin-bottom: 1rem;
  color: #0052cc;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
}

/* Mobile Bonuses Section */
.mobile-bonuses-section {
  padding: 4rem 0;
  background: #fff;
}

.mobile-bonuses-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2rem;
}

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

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

.bonus-image img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.bonuses-list {
  display: grid;
  gap: 2rem;
}

.bonus-item {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #ffa500;
}

.bonus-item h3 {
  color: #0052cc;
  margin-bottom: 1rem;
}

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

.bonus-item strong {
  color: #ffa500;
  font-size: 1.1rem;
}

/* VIP Mobile Section */
.vip-mobile-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
}

.vip-mobile-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2rem;
}

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

.vip-mobile-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.vip-mobile-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #cd7f32, #b8860b);
}

.vip-mobile-card.silver::before {
  background: linear-gradient(90deg, #c0c0c0, #a8a8a8);
}

.vip-mobile-card.gold::before {
  background: linear-gradient(90deg, #ffd700, #ffb347);
}

.vip-mobile-card.diamond::before {
  background: linear-gradient(90deg, #b9f2ff, #00bfff);
}

.vip-mobile-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.vip-mobile-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.vip-requirement {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.vip-mobile-card ul {
  list-style: none;
  text-align: left;
}

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

.vip-mobile-card li::before {
  content: "★";
  position: absolute;
  left: 0;
  color: #ffa500;
}

/* Tech Specs Section */
.tech-specs-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

.tech-specs-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2rem;
}

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

.spec-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.spec-card h3 {
  color: #0052cc;
  margin-bottom: 1.5rem;
  text-align: center;
}

.spec-card ul {
  list-style: none;
}

.spec-card li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  padding-left: 1.5rem;
}

.spec-card li:last-child {
  border-bottom: none;
}

.spec-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ffa500;
  font-weight: bold;
}

/* Final CTA Section */
.final-cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #0052cc 0%, #003d99 100%);
  color: #fff;
  text-align: center;
}

.final-cta-section h2 {
  color: #fff;
  margin-bottom: 2rem;
  font-size: 2rem;
}

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

.final-cta-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 3rem 0;
}

.final-cta-buttons .cta-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.final-cta-buttons .cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.cta-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  font-style: italic;
  margin: 2rem 0 0 0;
}

/* Registration Image Center */
.registration-image-center {
  text-align: center;
  margin: 3rem auto;
  display: block;
}

.registration-image-center img {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Platform Overview */
.platform-overview {
  padding: 4rem 0;
  background: #f8f9fa;
}

.platform-overview h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2rem;
}

.info-table {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #eee;
  transition: background 0.3s ease;
}

.info-row:hover {
  background: #f8f9fa;
}

.info-row:last-child {
  border-bottom: none;
}

.info-label {
  padding: 1.25rem;
  font-weight: 600;
  background: #f8f9fa;
  border-right: 1px solid #eee;
}

.info-value {
  padding: 1.25rem;
  color: #555;
}

/* Trust Section */
.trust-section {
  padding: 4rem 0;
  background: #fff;
}

.trust-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.trust-section p {
  max-width: 800px;
  margin: 0 auto 2rem;
  text-align: center;
  font-size: 1.1rem;
}

.security-features {
  max-width: 600px;
  margin: 3rem auto;
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #0052cc;
}

.security-features h3 {
  margin-bottom: 1.5rem;
  color: #0052cc;
}

.security-features ul {
  list-style: none;
}

.security-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 1.5rem;
}

.security-features li:last-child {
  border-bottom: none;
}

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

.trust-cta {
  text-align: center;
  margin-top: 2rem;
}

.trust-cta .cta-secondary {
  color: #0052cc;
  border-color: #0052cc;
}

.trust-cta .cta-secondary:hover {
  background: #0052cc;
  color: #fff;
}

/* Registration Section */
/* ===== BONOS PAGE SPECIFIC STYLES ===== */

/* Bonos Hero Specific */
.bonos-hero {
  background: linear-gradient(135deg, #0052cc 0%, #003d99 50%, #002266 100%);
}

/* Bonus Overview Section */
.bonus-overview-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

.bonus-overview-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2rem;
  color: #0052cc;
}

/* Bonos Table Wrapper */
.bonos-table-wrapper {
  overflow-x: auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin: 2rem 0;
}

/* Bonos Overview Table */
.bonos-overview-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}

.bonos-overview-table thead tr {
  background: linear-gradient(135deg, #0052cc 0%, #003d99 100%);
  color: #fff;
}

.bonos-overview-table th {
  padding: 1.25rem;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.bonos-overview-table th:last-child {
  border-right: none;
}

.bonos-overview-table tbody tr {
  transition: background-color 0.3s ease;
}

.bonos-overview-table tbody tr:nth-child(even) {
  background: #f8f9fa;
}

.bonos-overview-table tbody tr:hover {
  background: #e3f2fd;
  transform: scale(1.01);
}

.bonos-overview-table td {
  padding: 1rem;
  text-align: center;
  border-right: 1px solid #eee;
  border-bottom: 1px solid #eee;
  font-size: 0.9rem;
}

.bonos-overview-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: #0052cc;
}

.bonos-overview-table td:last-child {
  border-right: none;
}

/* Welcome Bonus Section */
.welcome-bonus-section {
  padding: 4rem 0;
  background: #fff;
}

.welcome-bonus-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.welcome-bonus-text h2 {
  margin-bottom: 2rem;
  color: #0052cc;
}

.welcome-bonus-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #555;
}

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

.bonus-option {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #0052cc;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bonus-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.bonus-option.sports {
  border-left-color: #28a745;
}

.bonus-option.casino {
  border-left-color: #ffa500;
}

.bonus-option h3 {
  color: #0052cc;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.bonus-highlight {
  background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
  color: #fff;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

/* Bonos Feature Lists */
.bonos-feature-list {
  list-style: none;
  padding: 0;
}

.bonos-feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
  color: #555;
}

.bonos-feature-list li:last-child {
  border-bottom: none;
}

.bonos-feature-list li i {
  color: #28a745;
  font-size: 1rem;
  min-width: 16px;
}

.bonus-option.casino .bonos-feature-list li i {
  color: #ffa500;
}

.welcome-bonus-image {
  text-align: center;
}

.welcome-bonus-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Sports Promotions Section */
.sports-promotions-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

.sports-promotions-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: #0052cc;
}

.promotion-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
}

.promotion-card h3 {
  color: #0052cc;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.promotion-card p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #555;
}

/* Bonos Express Table */
.bonos-express-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.bonos-express-table thead tr {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: #fff;
}

.bonos-express-table th {
  padding: 1.25rem;
  text-align: center;
  font-weight: 600;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.bonos-express-table th:last-child {
  border-right: none;
}

.bonos-express-table tbody tr:nth-child(even) {
  background: #f8f9fa;
}

.bonos-express-table tbody tr:hover {
  background: #e8f5e8;
}

.bonos-express-table td {
  padding: 1rem;
  text-align: center;
  border-right: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.bonos-express-table td:last-child {
  border-right: none;
}

.boost-percentage {
  background: #28a745;
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-weight: 600;
  font-size: 0.9rem;
}

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

.promotion-features .feature-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-top: 4px solid #28a745;
}

.promotion-features .feature-card h4 {
  color: #0052cc;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.promotion-features .feature-card p {
  color: #666;
  margin-bottom: 1.5rem;
}

/* Bonos Benefit Lists */
.bonos-benefit-list {
  list-style: none;
  padding: 0;
}

.bonos-benefit-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0f0;
  color: #555;
}

.bonos-benefit-list li:last-child {
  border-bottom: none;
}

.bonos-benefit-list li i {
  color: #28a745;
  font-size: 1rem;
  min-width: 16px;
}

/* Casino Incentives Section */
.casino-incentives-section {
  padding: 4rem 0;
  background: #fff;
}

.casino-incentives-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.casino-incentives-image {
  text-align: center;
}

.casino-incentives-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.casino-incentives-text h2 {
  margin-bottom: 2rem;
  color: #0052cc;
}

.cashback-system,
.daily-game-promo,
.crypto-bonuses {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  border-left: 4px solid #ffa500;
}

.cashback-system h3,
.daily-game-promo h3,
.crypto-bonuses h3 {
  color: #0052cc;
  margin-bottom: 1.5rem;
}

.cashback-system p,
.daily-game-promo p,
.crypto-bonuses p {
  color: #555;
  margin-bottom: 1.5rem;
}

/* Bonos Cashback List */
.bonos-cashback-list {
  list-style: none;
  padding: 0;
}

.bonos-cashback-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
  color: #555;
}

.bonos-cashback-list li:last-child {
  border-bottom: none;
}

.bonos-cashback-list li i {
  color: #ffa500;
  font-size: 1rem;
}

/* Bonos Crypto List */
.bonos-crypto-list {
  list-style: none;
  padding: 0;
}

.bonos-crypto-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
  color: #555;
}

.bonos-crypto-list li:last-child {
  border-bottom: none;
}

.bonos-crypto-list li i {
  color: #f7931a;
  font-size: 1rem;
}

/* Loyalty Program Section */
.loyalty-program-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

.loyalty-program-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #0052cc;
}

.loyalty-program-section > .container > p {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  color: #555;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Bonos Loyalty Table */
.bonos-loyalty-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}

.bonos-loyalty-table thead tr {
  background: linear-gradient(135deg, #6f42c1 0%, #5a32a3 100%);
  color: #fff;
}

.bonos-loyalty-table th {
  padding: 1.25rem;
  text-align: center;
  font-weight: 600;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.bonos-loyalty-table th:last-child {
  border-right: none;
}

.bonos-loyalty-table tbody tr {
  transition: all 0.3s ease;
}

.bonos-loyalty-table tbody tr:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.bonos-loyalty-table td {
  padding: 1rem;
  text-align: center;
  border-right: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.bonos-loyalty-table td:first-child {
  text-align: left;
  font-weight: 600;
}

.bonos-loyalty-table td:last-child {
  border-right: none;
}

/* Loyalty Level Colors */
.loyalty-bronze {
  background: linear-gradient(135deg, #fdf6e3 0%, #f5e6d3 100%);
}

.loyalty-silver {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.loyalty-gold {
  background: linear-gradient(135deg, #fff9c4 0%, #ffeaa7 100%);
}

.loyalty-platinum {
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
}

.loyalty-vip {
  background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
}

/* Medal Icons */
.bronze-medal {
  color: #cd7f32;
}

.silver-medal {
  color: #c0c0c0;
}

.gold-medal {
  color: #ffd700;
}

.platinum-gem {
  color: #e5e4e2;
}

.vip-crown {
  color: #9c27b0;
}

/* Promo Codes Section */
.promo-codes-section {
  padding: 4rem 0;
  background: #fff;
}

.promo-codes-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: #0052cc;
}

.promo-codes-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.promo-codes-info h3,
.promo-codes-types h3 {
  color: #0052cc;
  margin-bottom: 1.5rem;
}

.promo-codes-info p {
  color: #555;
  margin-bottom: 1.5rem;
}

/* Bonos Promo Sources */
.bonos-promo-sources {
  list-style: none;
  padding: 0;
}

.bonos-promo-sources li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  margin-bottom: 0.75rem;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #0052cc;
  color: #555;
  transition: transform 0.3s ease;
}

.bonos-promo-sources li:hover {
  transform: translateX(5px);
}

.bonos-promo-sources li i {
  color: #0052cc;
  font-size: 1.1rem;
  min-width: 20px;
}

.code-examples {
  display: grid;
  gap: 1rem;
}

.code-item {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  border: 2px dashed #0052cc;
  text-align: center;
  transition: all 0.3s ease;
}

.code-item:hover {
  background: #e3f2fd;
  transform: scale(1.05);
}

.code-name {
  font-family: "Courier New", monospace;
  font-size: 1.25rem;
  font-weight: bold;
  color: #0052cc;
  background: #fff;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
  display: inline-block;
  border: 1px solid #0052cc;
}

.code-desc {
  color: #666;
  font-size: 0.9rem;
}

/* Payment Methods Section */
.payment-methods-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

.payment-methods-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: #0052cc;
}

/* Bonos Payment Table */
.bonos-payment-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
}

.bonos-payment-table thead tr {
  background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
  color: #fff;
}

.bonos-payment-table th {
  padding: 1.25rem;
  text-align: center;
  font-weight: 600;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.bonos-payment-table th:last-child {
  border-right: none;
}

.bonos-payment-table tbody tr:nth-child(even) {
  background: #f8f9fa;
}

.bonos-payment-table tbody tr:hover {
  background: #e8f4f8;
}

.bonos-payment-table td {
  padding: 1rem;
  text-align: center;
  border-right: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.bonos-payment-table td:first-child {
  text-align: left;
  font-weight: 600;
}

.bonos-payment-table td:last-child {
  border-right: none;
}

/* Payment Method Icons */
.nequi-icon {
  color: #ff6b35;
}

.daviplata-icon {
  color: #e74c3c;
}

.pse-icon {
  color: #3498db;
}

.efecty-icon {
  color: #f39c12;
}

.card-icon {
  color: #2c3e50;
}

/* Payment Badges */
.instant-badge {
  background: #28a745;
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.free-badge {
  background: #17a2b8;
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Mobile Responsive for Bonos Tables */
@media (max-width: 768px) {
  .bonos-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .bonos-overview-table,
  .bonos-express-table,
  .bonos-loyalty-table,
  .bonos-payment-table {
    display: block;
    white-space: nowrap;
  }

  .bonos-overview-table thead,
  .bonos-express-table thead,
  .bonos-loyalty-table thead,
  .bonos-payment-table thead {
    display: none;
  }

  .bonos-overview-table tbody,
  .bonos-express-table tbody,
  .bonos-loyalty-table tbody,
  .bonos-payment-table tbody {
    display: block;
  }

  .bonos-overview-table tr,
  .bonos-express-table tr,
  .bonos-loyalty-table tr,
  .bonos-payment-table tr {
    display: block;
    border: 1px solid #ddd;
    margin-bottom: 1rem;
    border-radius: 8px;
    padding: 1rem;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .bonos-overview-table td,
  .bonos-express-table td,
  .bonos-loyalty-table td,
  .bonos-payment-table td {
    display: block;
    text-align: left !important;
    border: none;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 140px;
  }

  .bonos-overview-table td:before,
  .bonos-express-table td:before,
  .bonos-loyalty-table td:before,
  .bonos-payment-table td:before {
    content: attr(data-label);
    position: absolute;
    left: 0;
    width: 130px;
    font-weight: 600;
    color: #0052cc;
  }

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

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

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

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

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

@media (max-width: 480px) {
  .bonus-option {
    padding: 1.5rem;
  }

  .promotion-card {
    padding: 1.5rem;
  }

  .cashback-system,
  .daily-game-promo,
  .crypto-bonuses {
    padding: 1.5rem;
  }

  .bonos-overview-table td,
  .bonos-express-table td,
  .bonos-loyalty-table td,
  .bonos-payment-table td {
    padding-left: 120px;
  }

  .bonos-overview-table td:before,
  .bonos-express-table td:before,
  .bonos-loyalty-table td:before,
  .bonos-payment-table td:before {
    width: 110px;
    font-size: 0.9rem;
  }
}

/* ===== FOOTER STYLES (BONOS PAGE SPECIFIC) ===== */

/* Footer */
.footer {
  background: linear-gradient(135deg, #0052cc 0%, #003d99 100%);
  color: #fff;
  padding: 3rem 0 1rem;
  margin-top: 0;
}

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

.footer-section {
  padding: 0;
}

.footer-section h3 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-section p {
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.6;
  opacity: 0.9;
}

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

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

.footer-section a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
  opacity: 0.9;
}

.footer-section a:hover {
  color: #ffa500;
  transform: translateX(3px);
  opacity: 1;
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-logo .logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1); /* Makes logo white */
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: #fff;
  margin: 0;
  opacity: 0.9;
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
  background: #ffa500;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
  border-color: #ffa500;
}

.footer-social a i {
  font-size: 1rem;
}

/* Footer Mobile Responsive */
@media (max-width: 768px) {
  .footer {
    padding: 2rem 0 1rem;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

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

@media (max-width: 480px) {
  .footer {
    padding: 1.5rem 0 1rem;
  }

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

  .footer-section {
    text-align: center;
  }

  .footer-logo {
    text-align: center;
  }

  .footer-bottom p {
    font-size: 0.8rem;
    line-height: 1.4;
  }
}

/* Ensure footer sticks to bottom if content is short */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* Additional footer enhancements for bonos page */
.footer-section h3::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: #ffa500;
  margin-top: 0.5rem;
  border-radius: 1px;
}

@media (max-width: 480px) {
  .footer-section h3::after {
    margin: 0.5rem auto 0;
  }
}

/* Smooth scroll behavior for footer links */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.footer-section a:focus,
.footer-social a:focus {
  outline: 2px solid #ffa500;
  outline-offset: 2px;
}

/* Enhanced FAQ Section Styling */
.faq-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #f0f2f5 0%, #e0e2e5 100%);
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: #0052cc;
  font-size: 2.2rem;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid #ddd;
}

.faq-item {
  border-left: 5px solid #0052cc;
  margin-bottom: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
  border-bottom: 1px solid #eee;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.faq-item summary {
  padding: 1.8rem 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: #0052cc;
  cursor: pointer;
  list-style: none;
  position: relative;
  background: #fff;
  transition: background 0.3s ease;
  border: none;
  outline: none;
}

.faq-item summary:hover {
  background: #f8f9fa;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: bold;
  color: #0052cc;
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  color: #ffa500;
}

.faq-item[open] summary {
  background: #f0f8ff;
  border-bottom: 1px solid #e3f2fd;
}

.faq-content {
  padding: 0 2rem 2rem;
  background: #fff;
  line-height: 1.8;
  color: #555;
  font-size: 1rem;
}

.faq-content p {
  margin-bottom: 1rem;
  color: #555;
}

.faq-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.faq-content li {
  margin-bottom: 0.5rem;
  color: #666;
}

/* Enhanced Image Centering - Updated for bonos.html */
img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  height: auto;
}

/* Specific image containers for bonos.html */
.hero-image,
.bonus-image,
.casino-image,
.mobile-image,
.welcome-bonus-image,
.casino-incentives-image,
.registration-image-center {
  text-align: center;
  display: block;
  margin: 2rem auto;
  width: 100%;
}

.hero-image img,
.bonus-image img,
.casino-image img,
.mobile-image img,
.welcome-bonus-image img,
.casino-incentives-image img,
.registration-image-center img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Specific fixes for bonos.html layout sections */
.welcome-bonus-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.casino-incentives-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

/* Force image centering in grid layouts */
.welcome-bonus-image {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.casino-incentives-image {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Ensure logo images in header/footer don't get affected */
.nav-brand img,
.footer-logo img {
  display: inline-block;
  margin: 0;
}

/* Mobile responsive image centering */
@media (max-width: 768px) {
  .welcome-bonus-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .welcome-bonus-image,
  .casino-incentives-image {
    margin: 1.5rem auto;
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .welcome-bonus-image,
  .casino-incentives-image {
    margin: 1rem auto;
    max-width: 95%;
  }
}
