@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css');

:root {
  --primary-color: #FBB1F7;
  --secondary-color: #000000;
  --third-color: #111111;
  --text-primary: #FFFFFF;
  --text-secondary: #AAAAAA;
  --accent-primary: #740083;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Ubuntu', sans-serif;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../images/background.gif);
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--text-primary);
  line-height: 1.6;
}


a {
  text-decoration: none;
  color: var(--accent-primary);
}

img {
  max-width: 100%;
  height: auto;
  width: auto;
}

.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  transition: background 0.3s ease;
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.navbar {
  background-color: var(--secondary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
}

.navbar .logo img {
  height: 50px;
  align-items: center;
}

.navbar-menu {
  display: flex;
  gap: 20px;
  list-style: none;
}

.navbar-menu li a {
  color: var(--text-primary);
  font-size: 1.2rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.3s ease, color 0.3s ease;
}

.navbar-menu li a:hover {
  color: var(--primary-color);
}

.navbar .auth-buttons {
  display: flex;
  gap: 10px;
}

.btn-login {
  background-color: var(--text-primary);
  color: var(--secondary-color);
  border: 2px solid var(--text-primary);
}

.btn-register {
  background-color: transparent;
  color: var(--text-primary);
  border: 2px solid var(--text-primary);
}

.btn-login:hover {
  background-color: transparent;
  color: var(--text-primary);
}

.btn-register:hover {
  background-color: var(--text-primary);
  color: var(--secondary-color);
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Breadcrumbs */
.breadcrumbs {
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 10px 0;
}

.breadcrumbs ol {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 10px;
  color: var(--text-secondary);
  opacity: 0.5;
}

.breadcrumbs a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: var(--primary-color);
}

.breadcrumbs li:last-child {
  color: var(--text-primary);
  font-weight: 500;
}

/* Section Label */
.section-label {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--accent-primary), var(--primary-color));
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
  margin-bottom: 15px;
}

/* Hero Section - Unique Bonus Design */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, rgba(116, 0, 131, 0.2) 0%, rgba(17, 17, 17, 0.95) 100%);
  padding: 60px 50px;
  margin-top: 20px;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(251, 177, 247, 0.3);
  box-shadow: 0 10px 40px rgba(116, 0, 131, 0.4);
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(251, 177, 247, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(116, 0, 131, 0.15) 0%, transparent 50%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(251, 177, 247, 0.25);
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 25px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 30px;
  font-weight: 400;
}

.hero-bonus-highlight {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 35px;
  padding: 25px;
  background: rgba(116, 0, 131, 0.2);
  border-radius: 15px;
  border: 1px solid rgba(251, 177, 247, 0.3);
}

.bonus-amount {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.bonus-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.bonus-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bonus-plus {
  font-size: 2rem;
  color: var(--text-primary);
  font-weight: 700;
}

.hero-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--accent-primary), var(--primary-color));
  color: var(--text-primary);
  padding: 15px 35px;
  font-size: 1.1rem;
  border: none;
  box-shadow: 0 5px 20px rgba(116, 0, 131, 0.4);
  transition: all 0.3s ease;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(116, 0, 131, 0.6);
}

.btn-hero-secondary {
  background: transparent;
  color: var(--text-primary);
  padding: 15px 35px;
  font-size: 1.1rem;
  border: 2px solid var(--text-primary);
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background: var(--text-primary);
  color: var(--secondary-color);
}

.hero-image {
  position: relative;
  z-index: 2;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
}

.final-thoughts {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 40px;
}

.final-thoughts-banner {
  flex: 1;
  max-width: 50%;
  overflow: hidden;
}

.final-thoughts-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 0 0 10px;
}

.final-thoughts-intro {
  flex: 1;
  max-width: 50%;
  padding: 30px;
  background-color: var(--secondary-color);
  border-radius: 0 10px 10px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.final-thoughts-intro h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.final-thoughts-intro p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.why-choose {
  display: block;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.why-choose-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 10px;
}

/* Welcome Bonus Section - Card Grid Design */
.welcome-bonus {
  margin-top: 60px;
  padding: 50px 40px;
  background: var(--secondary-color);
  border-radius: 20px;
  border: 2px solid rgba(251, 177, 247, 0.1);
}

.welcome-bonus-header {
  text-align: center;
  margin-bottom: 50px;
}

.welcome-bonus-header h2 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 700;
}

.welcome-bonus-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.welcome-bonus-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.bonus-detail-card {
  padding: 35px 25px;
  background: var(--third-color);
  border-radius: 15px;
  border: 1px solid rgba(251, 177, 247, 0.1);
  transition: all 0.3s ease;
}

.bonus-detail-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(116, 0, 131, 0.3);
}

.bonus-detail-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-primary), var(--primary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.bonus-detail-card h3 {
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 600;
}

.bonus-detail-card p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.bonus-features {
  list-style: none;
  padding: 0;
}

.bonus-features li {
  padding: 8px 0;
  padding-left: 25px;
  color: var(--text-secondary);
  position: relative;
  font-size: 0.95rem;
}

.bonus-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

/* Bonus Types Section - Modern Grid */
.bonus-types {
  margin-top: 60px;
  padding: 50px 40px;
  background: linear-gradient(135deg, rgba(116, 0, 131, 0.1) 0%, rgba(17, 17, 17, 0.8) 100%);
  border-radius: 20px;
  border: 1px solid rgba(251, 177, 247, 0.2);
}

.bonus-types-header {
  text-align: center;
  margin-bottom: 50px;
}

.bonus-types-header h3 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 700;
}

.bonus-types-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.bonus-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.bonus-type-card {
  padding: 30px 25px;
  background: var(--secondary-color);
  border-radius: 15px;
  border: 2px solid rgba(251, 177, 247, 0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.bonus-type-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 40px rgba(116, 0, 131, 0.4);
}

.bonus-type-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.bonus-type-header i {
  font-size: 2rem;
  color: var(--primary-color);
}

.bonus-type-header h4 {
  font-size: 1.3rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0;
}

.bonus-type-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.bonus-type-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(116, 0, 131, 0.1);
  border-radius: 10px;
}

.bonus-type-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
}

.bonus-type-plus {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.bonus-type-cta {
  display: inline-block;
  text-align: center;
  padding: 12px 25px;
  background: linear-gradient(135deg, var(--accent-primary), var(--primary-color));
  color: var(--text-primary);
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.bonus-type-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(116, 0, 131, 0.4);
}

.why-choose-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.why-choose-card {
  flex: 1;
  min-width: 200px;
  background-color: var(--third-color);
  padding: 20px;
  border-radius: 10px;
  text-align: left;
  transition: transform 0.3s ease;
}

.why-choose-card:hover {
  transform: translateY(-5px);
}

.why-choose-card h4 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.why-choose-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

.why-choose-card i {
  display: block;
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--accent-primary);
}

.games {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 30px;
  border-radius: 10px;
  background-color: var(--secondary-color);
}

/* Claim Bonus Section - Step Design */
.claim-bonus {
  margin-top: 60px;
  padding: 50px 40px;
  background: var(--secondary-color);
  border-radius: 20px;
  border: 2px solid rgba(251, 177, 247, 0.1);
}

.claim-bonus-header {
  text-align: center;
  margin-bottom: 50px;
}

.claim-bonus-header h3 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 700;
}

.claim-bonus-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.claim-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.claim-step {
  display: flex;
  gap: 25px;
  padding: 30px;
  background: var(--third-color);
  border-radius: 15px;
  border-left: 4px solid var(--accent-primary);
  transition: all 0.3s ease;
}

.claim-step:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(116, 0, 131, 0.3);
}

.claim-step-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-primary), var(--primary-color));
  color: var(--text-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(116, 0, 131, 0.4);
}

.claim-step-content h4 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 10px;
  font-weight: 600;
}

.claim-step-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Bonus Terms Section */
.bonus-terms {
  margin-top: 60px;
  padding: 50px 40px;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.9) 0%, rgba(116, 0, 131, 0.1) 100%);
  border-radius: 20px;
  border: 1px solid rgba(251, 177, 247, 0.2);
}

.bonus-terms-header {
  text-align: center;
  margin-bottom: 40px;
}

.bonus-terms-header h3 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 700;
}

.bonus-terms-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.bonus-terms-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.terms-card {
  padding: 30px;
  background: var(--secondary-color);
  border-radius: 15px;
  border: 1px solid rgba(251, 177, 247, 0.1);
}

.terms-card h4 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 600;
}

.terms-card p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Bonus Tips Section */
.bonus-tips {
  margin-top: 60px;
  padding: 50px 40px;
  background: var(--secondary-color);
  border-radius: 20px;
  border: 2px solid rgba(251, 177, 247, 0.1);
}

.bonus-tips-header {
  text-align: center;
  margin-bottom: 50px;
}

.bonus-tips-header h3 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 700;
}

.bonus-tips-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.bonus-tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.tip-card {
  padding: 30px 25px;
  background: var(--third-color);
  border-radius: 15px;
  border: 1px solid rgba(251, 177, 247, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.tip-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(116, 0, 131, 0.3);
}

.tip-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.tip-card h4 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 600;
}

.tip-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Games Section Update */
.games-header {
  text-align: center;
  margin-bottom: 40px;
}

.games-header h3 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 700;
}

.games-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.game-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 15px;
}

.game-overlay-bonus {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(116, 0, 131, 0.9);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
}

.game-card h4 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 10px;
  font-weight: 600;
}

.game-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 15px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.game-card {
  background-color: var(--third-color);
  border-radius: 10px;
  overflow: hidden;
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease;
}

.game-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.btn-play {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 20px;
  background-color: var(--accent-primary);
  color: var(--text-primary);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-play:hover {
  background-color: var(--primary-color)
}

.faq {
  margin-top: 20px;
  padding: 30px;
  border-radius: 10px;
  background-color: var(--secondary-color);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* FAQ Section Update */
.faq {
  margin-top: 60px;
  padding: 50px 40px;
  background: linear-gradient(135deg, rgba(116, 0, 131, 0.1) 0%, rgba(17, 17, 17, 0.9) 100%);
  border-radius: 20px;
  border: 1px solid rgba(251, 177, 247, 0.2);
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-header h3 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 700;
}

.faq-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background-color: var(--third-color);
  border-radius: 12px;
  padding: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(251, 177, 247, 0.1);
}

.faq-item:hover {
  border-color: var(--primary-color);
  background-color: rgba(116, 0, 131, 0.1);
}

.faq-item h4 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  position: relative;
  padding-right: 30px;
  font-weight: 600;
  line-height: 1.4;
}

.faq-item h4::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-item.active h4::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-item p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease, margin 0.4s ease;
  opacity: 0;
  margin-top: 0;
}

.faq-item.active {
  background-color: rgba(116, 0, 131, 0.15);
}

.faq-item.active p {
  max-height: 500px;
  opacity: 1;
  margin-top: 15px;
}

.footer {
  background-color: var(--secondary-color);
  padding: 40px 20px;
  margin-top: 40px;
  border-top: 1px solid var(--);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.footer-logo img {
  height: 50px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-primary);
}

.footer-copy p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-align: center;
}

@media (max-width: 1024px) {
  .navbar {
    padding: 20px 40px;
    flex-wrap: wrap;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 40px 30px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .welcome-bonus-content {
    grid-template-columns: 1fr;
  }

  .bonus-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .claim-steps {
    grid-template-columns: 1fr;
  }

  .bonus-terms-content {
    grid-template-columns: 1fr;
  }

  .bonus-tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .welcome-bonus,
  .bonus-types,
  .claim-bonus,
  .bonus-terms,
  .bonus-tips,
  .games,
  .faq {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .navbar .auth-buttons {
    margin-top: 10px;
    width: 100%;
    gap: 20px;
    justify-content: center;
  }

  .navbar-menu {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    width: 100%;
  }

  .hero {
    padding: 30px 20px;
    gap: 30px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-bonus-highlight {
    flex-direction: column;
    gap: 15px;
  }

  .bonus-plus {
    transform: rotate(90deg);
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    text-align: center;
  }

  .welcome-bonus-header h2,
  .bonus-types-header h3,
  .claim-bonus-header h3,
  .bonus-terms-header h3,
  .bonus-tips-header h3,
  .games-header h3,
  .faq-header h3 {
    font-size: 1.6rem;
  }

  .bonus-types-grid,
  .bonus-tips-grid {
    grid-template-columns: 1fr;
  }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .welcome-bonus,
  .bonus-types,
  .claim-bonus,
  .bonus-terms,
  .bonus-tips,
  .games,
  .faq {
    padding: 30px 20px;
  }

  .claim-step {
    flex-direction: column;
    text-align: center;
  }

  .claim-step-number {
    margin: 0 auto;
  }

  .footer-container {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 15px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .navbar-menu {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-bottom: 10px;
  }

  .navbar .auth-buttons {
    justify-content: center;
    width: 100%;
  }

  .hero {
    padding: 25px 15px;
    border-radius: 15px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-lead {
    font-size: 0.95rem;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 6px 15px;
  }

  .bonus-value {
    font-size: 2rem;
  }

  .section-label {
    font-size: 0.75rem;
    padding: 5px 12px;
  }

  .welcome-bonus-header h2,
  .bonus-types-header h3,
  .claim-bonus-header h3,
  .bonus-terms-header h3,
  .bonus-tips-header h3,
  .games-header h3,
  .faq-header h3 {
    font-size: 1.4rem;
  }

  .games-grid {
    grid-template-columns: 1fr;
  }

  .welcome-bonus,
  .bonus-types,
  .claim-bonus,
  .bonus-terms,
  .bonus-tips,
  .games,
  .faq {
    padding: 25px 15px;
    border-radius: 15px;
  }

  .bonus-detail-card,
  .bonus-type-card,
  .tip-card,
  .terms-card {
    padding: 20px 15px;
  }

  .claim-step {
    padding: 20px 15px;
    gap: 15px;
  }

  .claim-step-number {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .claim-step-content h4 {
    font-size: 1.2rem;
  }

  .faq-item {
    padding: 20px 15px;
  }

  .faq-item h4 {
    font-size: 1.1rem;
    padding-right: 25px;
  }

  .footer {
    padding: 30px 15px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}
