* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lexend", ui-sans-serif, system-ui, sans-serif;
  background-color: #1a0f0f;
  color: #ededed;
  line-height: 1.5;
  min-height: 100vh;
}

.container {
  max-width: 1536px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-4xl {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.accent-color {
  color: #ffcc00;
}

.bg-accent {
  background-color: #ffcc00;
}

.bg-main {
  background-color: #1a0f0f;
}

.bg-header {
  background-color: #cc0000;
}

.text-main {
  color: #1a0f0f;
}

.gradient-header {
  background: linear-gradient(to bottom, #cc0000, rgba(204, 0, 0, 0.8), transparent);
}

.gradient-red-yellow {
  background: linear-gradient(to bottom right, #cc0000, #ff6600, #ffcc00);
}

.gradient-orange-red {
  background: linear-gradient(to bottom right, #ff6600, #cc0000);
}

.gradient-yellow-orange {
  background: linear-gradient(to bottom right, #ffcc00, #ff6600);
}

/* Header Styles */
.header {
  background: linear-gradient(to bottom, #cc0000, rgba(204, 0, 0, 0.8), transparent);
  color: #ededed;
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 1rem 0 2rem 0;
}

.header-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.logo {
  font-size: 1.875rem;
  font-weight: 700;
  color: #ffcc00;
  text-decoration: none;
}

.nav-links {
  display: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: #ededed;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #ffcc00;
}

.header-buttons {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  align-items: center;
}

.btn-login {
  background: white;
  color: #1a0f0f;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 500;
  transition: color 0.3s;
  display: none;
}

.btn-login:hover {
  color: #ffcc00;
}

.btn-register {
  background: #ffcc00;
  color: #1a0f0f;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: background-color 0.3s;
}

.btn-register:hover {
  background: rgba(255, 204, 0, 0.8);
}

/* Hero Section */
.hero {
  padding: 2rem 0;
}

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

.hero-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-title {
  font-size: 3.75rem;
  font-weight: 700;
  color: #ffcc00;
  line-height: 1;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  margin-top: 1rem;
}

.hero-bonus-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-top: 2rem;
}

.hero-bonus-amount {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ff6600;
  margin-top: 0.5rem;
}

.payment-icons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.payment-icon {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-cta {
  margin-top: 2rem;
}

.btn-hero {
  background: #ffcc00;
  color: #1a0f0f;
  padding: 1rem 1.5rem;
  border-radius: 9999px;
  text-decoration: none;
  font-size: 1.875rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: background-color 0.3s;
  display: inline-block;
}

.btn-hero:hover {
  background: white;
}

.hero-terms {
  font-size: 0.75rem;
  margin-top: 1rem;
}

.hero-banner {
  max-width: 100%;
}

.banner-placeholder {
  width: 100%;
  height: 24rem;
  background: linear-gradient(to bottom right, #cc0000, #ff6600, #ffcc00);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-decoration: none;
  color: white;
}

.banner-icon {
  font-size: 3.75rem;
  margin-bottom: 1rem;
}

.banner-title {
  font-size: 1.5rem;
  font-weight: 700;
}

.banner-subtitle {
  font-size: 1.125rem;
  color: #ffcc00;
}

/* Features Section */
.features {
  padding: 2rem 0 4rem 0;
  text-align: center;
}

.features-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1536px;
  margin: 0 auto;
}

.feature-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 204, 0, 0.3);
  padding: 1rem;
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
}

.feature-card:hover {
  background: rgba(255, 204, 0, 0.1);
  border-color: rgba(255, 204, 0, 0.5);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}

.feature-description {
  font-size: 0.875rem;
  flex-grow: 1;
}

.feature-icon {
  text-align: right;
  margin-top: auto;
}

.icon {
  font-size: 3rem;
  color: #ffcc00;
}

/* Games Section */
.games {
  padding: 4rem 0;
}

.games-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: 1rem;
}

.games-subtitle {
  font-size: 1.25rem;
  color: white;
  font-weight: 700;
  margin: 2rem 0 1rem 0;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.game-item {
  text-decoration: none;
  display: block;
}

.game-placeholder {
  aspect-ratio: 1;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.game-placeholder:hover {
  transform: scale(1.05);
}

.game-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  transition: transform 0.3s;
}

.game-image:hover {
  transform: scale(1.05);
}

.providers-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
  text-align: center;
  margin: 4rem 0 2rem 0;
}

.providers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-bottom: 4rem;
}

.provider-item {
  background: rgba(204, 0, 0, 0.2);
  border: 1px solid rgba(255, 204, 0, 0.3);
  padding: 1rem 0.5rem;
  border-radius: 0.75rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.provider-text {
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
}

/* Info Card */
.info-card {
  padding: 4rem 0;
}

.info-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: 2rem;
}

.info-table-container {
  background: #ffcc00;
  color: #1a0f0f;
  border-radius: 1.5rem;
  padding: 2rem;
}

.info-table {
  width: 100%;
  font-size: 1.125rem;
}

.info-table th {
  text-align: right;
  padding-right: 2rem;
  width: 24rem;
}

.info-table td {
  padding: 0.5rem;
}

.info-table a {
  text-decoration: underline;
  color: #cc0000;
}

.info-table a:hover {
  text-decoration: none;
}

/* Content Sections */
.content-section {
  background: rgba(204, 0, 0, 0.2);
  border: 1px solid rgba(255, 204, 0, 0.3);
  padding: 4rem 2rem;
  border-radius: 1.5rem;
  margin: 1rem auto;
  max-width: 1280px;
  text-align: center;
}

.content-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
  margin-bottom: 2rem;
}

.content-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin: 2rem 0 1rem 0;
}

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

.content-list {
  color: white;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 1.25rem;
  list-style: disc;
  list-style-position: inside;
  justify-content: center;
}

.bonus-table {
  width: 100%;
  text-align: center;
  margin: 1rem 0;
  overflow-x: auto;
}

.bonus-table th,
.bonus-table td {
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.bonus-table th {
  font-weight: 700;
  background: rgba(255, 204, 0, 0.2);
}

/* Footer */
.footer {
  background: linear-gradient(to bottom, #1a0f0f, #cc0000);
  color: #ededed;
  margin-top: 4rem;
  padding: 4rem 0;
}

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

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffcc00;
  text-decoration: none;
}

.footer-badge {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
}

.footer-warning {
  font-size: 0.875rem;
  color: #ffcc00;
}

.footer-disclaimer {
  font-size: 0.875rem;
}

.footer-disclaimer a {
  color: #ffcc00;
  text-decoration: underline;
}

.footer-disclaimer a:hover {
  text-decoration: none;
}

/* Responsive Design */
@media (min-width: 640px) {
  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .providers-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (min-width: 768px) {
  .container {
    padding: 0 4rem;
  }

  .container-4xl {
    padding: 0 4rem;
  }

  .header-grid {
    grid-template-columns: auto 1fr auto;
  }

  .nav-links {
    display: flex;
    margin-left: auto;
  }

  .btn-login {
    display: inline-block;
  }

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

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

  .hero-bonus-amount {
    font-size: 2.25rem;
  }

  .btn-hero {
    font-size: 2.25rem;
  }

  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .games-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .info-table {
    font-size: 1.5rem;
  }

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

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}
