@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: #C50102;
  --secondary-color: #000000;
  --third-color: #111111;
  --text-primary: #FFFFFF;
  --text-secondary: #AAAAAA;
  --accent-primary: #FF0000;
  --gold-color: #FFD700;
  --dark-gold: #B8860B;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --info-color: #17a2b8;
  --light-bg: #1a1a1a;
  --border-color: #333333;
}

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

/* Breadcrumb Navigation */
.breadcrumb {
  background: rgba(0, 0, 0, 0.8);
  padding: 10px 0;
  margin-top: 0;
}

.breadcrumb-list {
  list-style: none;
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
  content: "›";
  margin: 0 10px;
  color: var(--gold-color);
  font-weight: bold;
}

.breadcrumb-item a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: var(--gold-color);
}

.breadcrumb-item:last-child span {
  color: var(--gold-color);
  font-weight: 600;
}

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.png);
  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);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-primary) 100%);
  color: var(--text-primary);
  border: 2px solid var(--primary-color);
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(197, 1, 2, 0.3);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--primary-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 1, 2, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border: 2px solid var(--gold-color);
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

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

.btn-large {
  padding: 15px 40px;
  font-size: 1.2rem;
}

.btn-play {
  background: linear-gradient(135deg, var(--gold-color) 0%, var(--dark-gold) 100%);
  color: var(--secondary-color);
  border: none;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 10px;
}

.btn-play:hover {
  background: linear-gradient(135deg, var(--dark-gold) 0%, var(--gold-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

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

.hero {
  position: relative;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--third-color) 100%);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 80px 50px;
  margin-top: 20px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  color: var(--text-primary);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  letter-spacing: -0.02em;
}

.hero-image {
  margin: 30px 0;
  text-align: center;
}

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

.hero-content p {
  margin-bottom: 40px;
  color: var(--text-primary);
  font-size: 1.25rem;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  background: rgba(0, 0, 0, 0.3);
  padding: 20px;
  border-radius: 10px;
  backdrop-filter: blur(5px);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Welcome Bonus Section */
.welcome-bonus {
  margin: 60px 0;
  padding: 60px 0;
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--third-color) 100%);
  border-radius: 15px;
}

.welcome-bonus h2 {
  text-align: center;
  font-size: 2.2rem;
  color: var(--text-primary);
  margin-bottom: 30px;
  font-weight: 700;
}

.bonus-banner {
  text-align: center;
  margin: 30px 0 40px 0;
}

.bonus-banner img {
  max-width: 60%;
  width: 60%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  display: block;
  margin: 0 auto;
  text-align: center;
}

.bonus-highlight {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  align-items: center;
  background: var(--secondary-color);
  padding: 40px;
  border-radius: 15px;
  border: 1px solid var(--border-color);
  margin-bottom: 40px;
}

.bonus-amount {
  text-align: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--gold-color) 100%);
  padding: 40px;
  border-radius: 15px;
  color: var(--text-primary);
}

.bonus-amount .currency {
  font-size: 3rem;
  font-weight: 700;
  vertical-align: top;
}

.bonus-amount .amount {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
}

.bonus-amount .bonus-text {
  display: block;
  font-size: 1.2rem;
  margin-top: 10px;
  font-weight: 600;
}

.bonus-details h3 {
  font-size: 1.5rem;
  color: var(--gold-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.bonus-details ul {
  list-style: none;
  padding: 0;
}

.bonus-details li {
  color: var(--text-secondary);
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.bonus-details li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-color);
  font-weight: bold;
}

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

.terms-note {
  margin-top: 15px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Bonus Carousel Section */
/* Bonus Promotions Section */
.bonus-promotions {
  margin: 60px 0;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--third-color) 100%);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.bonus-promotions::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="promo-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="%23FFD700" opacity="0.1"/><circle cx="10" cy="10" r="1" fill="%23FFD700" opacity="0.05"/><circle cx="40" cy="40" r="1.5" fill="%23FFD700" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23promo-pattern)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

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

.bonus-promotions h2 {
  text-align: center;
  font-size: 2.8rem;
  color: var(--text-primary);
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.bonus-promotions .section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.2rem;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

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

.promotion-card {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(17, 17, 17, 0.8) 100%);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 215, 0, 0.3);
  transition: all 0.4s ease;
  position: relative;
}

.promotion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: var(--gold-color);
}

.promotion-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.1);
}

.promotion-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.3s ease;
  max-width: 100%;
  max-height: 100%;
}

.promotion-card:hover .promotion-image img {
  transform: scale(1.05);
}

.promotion-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-primary) 100%);
  color: var(--text-primary);
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(197, 1, 2, 0.4);
}

.promotion-content {
  padding: 25px;
  text-align: center;
}

.promotion-content h3 {
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.promotion-content p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.promotions-cta {
  text-align: center;
  margin: 50px 0 40px 0;
}

.promotions-cta .btn {
  font-size: 1.2rem;
  padding: 15px 40px;
  border-radius: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(197, 1, 2, 0.4);
  transition: all 0.3s ease;
}

.promotions-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(197, 1, 2, 0.6);
}

/* Bonus Types Section */
.bonus-types {
  margin: 60px 0;
  padding: 60px 0;
  background: linear-gradient(135deg, var(--third-color) 0%, var(--light-bg) 100%);
  border-radius: 15px;
}

.bonus-types h2 {
  text-align: center;
  font-size: 2.2rem;
  color: var(--text-primary);
  margin-bottom: 50px;
  font-weight: 700;
}

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

.bonus-type-card {
  background: var(--secondary-color);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.bonus-type-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--gold-color) 100%);
}

.bonus-type-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.bonus-icon {
  margin-bottom: 20px;
}

.bonus-icon i {
  font-size: 3rem;
  color: var(--gold-color);
}

.bonus-type-card h3 {
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 600;
}

.bonus-type-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.bonus-type-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.bonus-type-card li {
  color: var(--text-secondary);
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
  font-size: 0.95rem;
}

.bonus-type-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold-color);
  font-weight: bold;
}

/* Bonus Games Section */
.bonus-games {
  margin: 60px 0;
  padding: 60px 0;
  background: var(--light-bg);
  border-radius: 15px;
}

.bonus-games h2 {
  text-align: center;
  font-size: 2.2rem;
  color: var(--text-primary);
  margin-bottom: 20px;
  font-weight: 700;
}

.bonus-games p {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 50px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.game-card {
  background: var(--secondary-color);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.game-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.game-card h4 {
  color: var(--text-primary);
  font-size: 1.1rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.game-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.games-cta {
  text-align: center;
  margin: 50px 0 40px 0;
}

.games-cta .btn {
  font-size: 1.2rem;
  padding: 15px 40px;
  border-radius: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(197, 1, 2, 0.4);
  transition: all 0.3s ease;
}

.games-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(197, 1, 2, 0.6);
}

/* Bonus Terms Section */
.bonus-terms {
  margin: 60px 0;
  padding: 60px 0;
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--third-color) 100%);
  border-radius: 15px;
}

.bonus-terms h2 {
  text-align: center;
  font-size: 2.2rem;
  color: var(--text-primary);
  margin-bottom: 50px;
  font-weight: 700;
}

.terms-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.terms-section {
  background: var(--secondary-color);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid var(--border-color);
}

.terms-section h3 {
  font-size: 1.3rem;
  color: var(--gold-color);
  margin-bottom: 20px;
  font-weight: 600;
}

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

.terms-section li {
  color: var(--text-secondary);
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.terms-section li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold-color);
  font-weight: bold;
}

.terms-note {
  background: var(--secondary-color);
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid var(--warning-color);
  text-align: center;
}

.terms-note p {
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.terms-note a {
  color: var(--gold-color);
  text-decoration: underline;
}

.terms-note a:hover {
  color: var(--dark-gold);
}

/* FAQ Section */
.faq {
  margin: 60px 0;
  padding: 60px 0;
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--third-color) 100%);
  border-radius: 15px;
}

.faq h2 {
  text-align: center;
  font-size: 2.2rem;
  color: var(--text-primary);
  margin-bottom: 50px;
  font-weight: 700;
}

.faq-item {
  background: var(--secondary-color);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.faq-item h3 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
  padding-right: 30px;
}

.faq-item h3::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5rem;
  color: var(--gold-color);
  transition: transform 0.3s ease;
}

.faq-item.active h3::after {
  transform: rotate(45deg);
}

.faq-item p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.faq-item.active p {
  max-height: 500px;
  opacity: 1;
  margin-top: 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;
}

.why-choose-intro h2 {
  font-size: 1.6rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.why-choose-intro p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.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);
}

.games-intro h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.games-intro p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.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 h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.faq-item {
  background-color: var(--third-color);
  border-radius: 10px;
  padding: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-item h4 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 10px;
  position: relative;
}

.faq-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.faq-item.active p {
  max-height: 500px;
  opacity: 1;
}

.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-content h1 {
    font-size: 2.5rem;
  }

  .hero-image img {
    max-width: 450px;
  }

  .bonus-banner img {
    max-width: 100%;
  }

  .promotions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .promotion-card {
    padding: 20px;
  }

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

  .promotion-content {
    padding: 20px;
  }

  .promotion-content h3 {
    font-size: 1.2rem;
  }

  .promotion-image {
    height: 150px;
  }

  .promotion-image {
    height: 120px;
  }

  .bonus-highlight {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

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

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

  .final-thoughts {
    flex-direction: column;
  }

  .final-thoughts-banner,
  .final-thoughts-intro {
    max-width: 100%;
    border-radius: 10px;
  }

  .final-thoughts-intro {
    padding: 20px;
  }

  .why-choose-grid {
    flex-direction: column;
  }

  .games {
    padding: 20px;
  }

  .faq {
    padding: 20px;
  }
}

@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: 40px 20px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-image img {
    max-width: 350px;
  }

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

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

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

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

  .bonus-amount .amount {
    font-size: 4rem;
  }

  .bonus-amount .currency {
    font-size: 2.5rem;
  }

  .final-thoughts-intro h3,
  .why-choose-intro h2,
  .games-intro h3,
  .faq h2 {
    font-size: 1.3rem;
  }

  .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: 30px 15px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-image img {
    max-width: 280px;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .bonus-amount .amount {
    font-size: 3rem;
  }

  .bonus-amount .currency {
    font-size: 2rem;
  }

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

  .final-thoughts-intro {
    padding: 15px;
  }

  .why-choose-details {
    padding: 20px;
  }

  .games {
    padding: 15px;
  }

  .faq {
    padding: 15px;
  }

  .footer {
    padding: 30px 15px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .container {
    padding: 0 15px;
  }

  .bonus-type-card,
  .terms-section {
    padding: 20px;
  }
}
