@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&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@1.11.1/font/bootstrap-icons.css');

:root {
  --primary-color: #C50102;
  --secondary-color: #0a0a0a;
  --third-color: #1a1a1a;
  --accent-color: #FF0000;
  --accent-gold: #FFD700;
  --text-primary: #FFFFFF;
  --text-secondary: #CCCCCC;
  --text-muted: #888888;
  --gradient-primary: linear-gradient(135deg, #C50102 0%, #FF0000 50%, #8B0000 100%);
  --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px rgba(197, 1, 2, 0.5);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Ubuntu', sans-serif;
  background: var(--gradient-dark);
  background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url(../images/background.jpg);
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Navbar */
.navbar {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid rgba(197, 1, 2, 0.3);
  box-shadow: var(--shadow-md);
}

.navbar .logo img {
  height: 55px;
  transition: transform 0.3s ease;
}

.navbar .logo:hover img {
  transform: scale(1.05);
}

.navbar-menu {
  display: flex;
  gap: 30px;
  list-style: none;
}

.navbar-menu li a {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 8px;
  position: relative;
  transition: all 0.3s ease;
}

.navbar-menu li a::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.navbar-menu li a:hover {
  color: var(--accent-color);
}

.navbar-menu li a:hover::after {
  width: 80%;
}

.navbar .auth-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 12px 28px;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.btn-login {
  background: var(--text-primary);
  color: var(--secondary-color);
  border: 2px solid var(--text-primary);
}

.btn-login:hover {
  background: transparent;
  color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-register {
  background: var(--gradient-primary);
  color: var(--text-primary);
  border: 2px solid var(--primary-color);
}

.btn-register:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-primary);
  border: 2px solid var(--primary-color);
}

.btn-primary:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--accent-gold);
}

.btn-secondary:hover {
  background: var(--gradient-gold);
  color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.btn-play {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 25px;
  background: var(--gradient-primary);
  color: var(--text-primary);
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-play:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* Main Container */
main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Hero Section */
.hero {
  position: relative;
  background: var(--gradient-primary);
  padding: 80px 60px;
  margin-bottom: 60px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(197, 1, 2, 0.3) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 25px;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Welcome Bonus Section */
.welcome-bonus {
  background: rgba(26, 26, 26, 0.9);
  padding: 60px 50px;
  border-radius: 20px;
  margin-bottom: 60px;
  box-shadow: var(--shadow-md);
}

.welcome-bonus-content {
  text-align: center;
}

.welcome-bonus-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 25px;
}

.welcome-bonus-content > p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 50px;
  line-height: 1.8;
}

.bonus-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.highlight-item {
  background: var(--gradient-dark);
  padding: 40px 30px;
  border-radius: 15px;
  border: 2px solid rgba(197, 1, 2, 0.3);
  transition: all 0.3s ease;
  text-align: center;
}

.highlight-item:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-glow);
}

.highlight-item i {
  font-size: 3.5rem;
  color: var(--accent-gold);
  margin-bottom: 20px;
  display: block;
}

.highlight-item h3 {
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 600;
}

.highlight-item p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

/* Bonus Types Section */
.bonus-types {
  background: rgba(26, 26, 26, 0.9);
  padding: 60px 50px;
  border-radius: 20px;
  margin-bottom: 60px;
  box-shadow: var(--shadow-md);
}

.bonus-types-content {
  text-align: center;
}

.bonus-types-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 25px;
}

.bonus-types-content > p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 50px;
  line-height: 1.8;
}

.bonus-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.bonus-type-card {
  background: var(--gradient-dark);
  padding: 40px 30px;
  border-radius: 15px;
  border: 2px solid rgba(197, 1, 2, 0.3);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
}

.bonus-type-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-glow);
}

.bonus-type-card i {
  font-size: 3.5rem;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: block;
}

.bonus-type-card h4 {
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 600;
}

.bonus-type-card p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.bonus-amount {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--text-primary);
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 1.1rem;
}

/* Claim Bonus Section */
.claim-bonus {
  background: rgba(26, 26, 26, 0.9);
  padding: 60px 50px;
  border-radius: 20px;
  margin-bottom: 60px;
  box-shadow: var(--shadow-md);
}

.claim-bonus-content {
  text-align: center;
}

.claim-bonus-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 25px;
}

.claim-bonus-content > p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 50px;
  line-height: 1.8;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.step-item {
  background: var(--gradient-dark);
  padding: 40px 30px;
  border-radius: 15px;
  border: 2px solid rgba(197, 1, 2, 0.3);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
}

.step-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-glow);
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: var(--text-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-md);
}

.step-item h4 {
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 600;
}

.step-item p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

/* Bonus Terms Section */
.bonus-terms {
  background: rgba(26, 26, 26, 0.9);
  padding: 60px 50px;
  border-radius: 20px;
  margin-bottom: 60px;
  box-shadow: var(--shadow-md);
}

.bonus-terms-content {
  text-align: center;
}

.bonus-terms-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 25px;
}

.bonus-terms-content > p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 50px;
  line-height: 1.8;
}

.terms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.term-item {
  background: var(--gradient-dark);
  padding: 35px 30px;
  border-radius: 15px;
  border: 2px solid rgba(197, 1, 2, 0.3);
  transition: all 0.3s ease;
  text-align: left;
}

.term-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-glow);
}

.term-item i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 15px;
  display: block;
}

.term-item h4 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 600;
}

.term-item p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

/* Bonus Calculator Section */
.bonus-calculator {
  background: var(--gradient-primary);
  padding: 60px 50px;
  border-radius: 20px;
  margin-bottom: 60px;
  box-shadow: var(--shadow-lg);
}

.calculator-content {
  text-align: center;
}

.calculator-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 25px;
}

.calculator-content > p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 50px;
  line-height: 1.8;
}

.calculator-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.calc-item {
  background: rgba(0, 0, 0, 0.4);
  padding: 40px 30px;
  border-radius: 15px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  text-align: left;
}

.calc-item h4 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 20px;
  font-weight: 600;
}

.calc-item p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.calc-result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0;
}

.calc-label {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.calc-value {
  color: var(--accent-gold);
  font-size: 1.8rem;
  font-weight: 800;
}

.calc-note {
  font-style: italic;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.calc-tips {
  list-style: none;
  margin-top: 20px;
}

.calc-tips li {
  padding: 12px 0;
  color: var(--text-secondary);
  font-size: 1.05rem;
  position: relative;
  padding-left: 25px;
}

.calc-tips li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: 700;
}

/* Reload Bonuses Section */
.reload-bonuses {
  background: rgba(26, 26, 26, 0.9);
  padding: 60px 50px;
  border-radius: 20px;
  margin-bottom: 60px;
  box-shadow: var(--shadow-md);
}

.reload-content {
  text-align: center;
}

.reload-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 25px;
}

.reload-content > p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 50px;
  line-height: 1.8;
}

.reload-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.reload-feature {
  background: var(--gradient-dark);
  padding: 40px 30px;
  border-radius: 15px;
  border: 2px solid rgba(197, 1, 2, 0.3);
  transition: all 0.3s ease;
  text-align: center;
}

.reload-feature:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-glow);
}

.reload-feature i {
  font-size: 3.5rem;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: block;
}

.reload-feature h4 {
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 600;
}

.reload-feature p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

/* Cashback Section */
.cashback {
  background: rgba(26, 26, 26, 0.9);
  padding: 60px 50px;
  border-radius: 20px;
  margin-bottom: 60px;
  box-shadow: var(--shadow-md);
}

.cashback-content {
  text-align: center;
}

.cashback-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 25px;
}

.cashback-content > p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 50px;
  line-height: 1.8;
}

.cashback-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.cashback-item {
  background: var(--gradient-dark);
  padding: 40px 30px;
  border-radius: 15px;
  border: 2px solid rgba(197, 1, 2, 0.3);
  transition: all 0.3s ease;
  text-align: center;
}

.cashback-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-glow);
}

.cashback-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.cashback-icon i {
  font-size: 2.5rem;
  color: var(--text-primary);
}

.cashback-item h4 {
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 600;
}

.cashback-item p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

/* VIP Program Section */
.vip-program {
  background: rgba(26, 26, 26, 0.9);
  padding: 60px 50px;
  border-radius: 20px;
  margin-bottom: 60px;
  box-shadow: var(--shadow-md);
}

.vip-content {
  text-align: center;
}

.vip-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 25px;
}

.vip-content > p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 50px;
  line-height: 1.8;
}

.vip-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.vip-tier {
  background: var(--gradient-dark);
  padding: 40px 30px;
  border-radius: 15px;
  border: 2px solid rgba(197, 1, 2, 0.3);
  transition: all 0.3s ease;
  text-align: center;
}

.vip-tier:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-glow);
}

.tier-badge {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.tier-badge.bronze {
  background: linear-gradient(135deg, #CD7F32 0%, #8B4513 100%);
  color: var(--text-primary);
}

.tier-badge.silver {
  background: linear-gradient(135deg, #C0C0C0 0%, #808080 100%);
  color: var(--secondary-color);
}

.tier-badge.gold {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: var(--secondary-color);
}

.tier-badge.platinum {
  background: linear-gradient(135deg, #E5E4E2 0%, #BCC6CC 100%);
  color: var(--secondary-color);
}

.vip-tier h4 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 25px;
  font-weight: 600;
}

.vip-tier ul {
  list-style: none;
  text-align: left;
}

.vip-tier ul li {
  padding: 12px 0;
  color: var(--text-secondary);
  font-size: 1.05rem;
  position: relative;
  padding-left: 25px;
}

.vip-tier ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: 700;
}

/* Bonus Games Section */
.bonus-games {
  background: rgba(26, 26, 26, 0.9);
  padding: 60px 50px;
  border-radius: 20px;
  margin-bottom: 60px;
  box-shadow: var(--shadow-md);
}

.games-intro {
  text-align: center;
  margin-bottom: 50px;
}

.games-intro h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.games-intro p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.game-card {
  background: var(--gradient-dark);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid rgba(197, 1, 2, 0.2);
  text-align: center;
}

.game-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-glow);
}

.game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.game-card:hover img {
  transform: scale(1.1);
}

/* Final Thoughts Section */
.final-thoughts {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  background: rgba(26, 26, 26, 0.8);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.final-thoughts-banner {
  flex: 1;
  max-width: 50%;
  overflow: hidden;
}

.final-thoughts-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.final-thoughts-banner:hover img {
  transform: scale(1.1);
}

.final-thoughts-intro {
  flex: 1;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.final-thoughts-intro h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 25px;
  line-height: 1.3;
}

.final-thoughts-intro p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 30px;
}

/* FAQ Section */
.faq {
  background: rgba(26, 26, 26, 0.9);
  padding: 60px 50px;
  border-radius: 20px;
  margin-bottom: 60px;
  box-shadow: var(--shadow-md);
}

.faq h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 40px;
  text-align: center;
}

.faq-item {
  background: var(--gradient-dark);
  border-radius: 15px;
  padding: 25px 30px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(197, 1, 2, 0.2);
}

.faq-item:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-sm);
}

.faq-item.active {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-glow);
}

.faq-item h4 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item h4::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

.faq-item.active h4::after {
  transform: rotate(45deg);
}

.faq-item p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease, margin 0.4s ease;
  opacity: 0;
}

.faq-item.active p {
  max-height: 500px;
  opacity: 1;
  margin-top: 15px;
}

/* Footer */
.footer {
  background: rgba(10, 10, 10, 0.95);
  padding: 60px 20px 40px;
  margin-top: 60px;
  border-top: 2px solid rgba(197, 1, 2, 0.3);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.footer-logo {
  text-align: center;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 15px;
}

.footer-logo p {
  color: var(--text-secondary);
  font-size: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-color);
  background: rgba(197, 1, 2, 0.1);
}

.footer-copy {
  text-align: center;
}

.footer-copy p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.footer-copy a {
  color: var(--accent-color);
}

.footer-copy a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .navbar {
    padding: 20px 40px;
  }

  main {
    padding: 30px 15px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 1024px) {
  .final-thoughts {
    flex-direction: column;
  }

  .final-thoughts-banner {
    max-width: 100%;
  }

  .final-thoughts-intro {
    padding: 40px;
  }

  .bonus-types-grid,
  .vip-tiers {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }

  .navbar-menu {
    flex-direction: row;
    gap: 15px;
  }

  .navbar .auth-buttons {
    width: 100%;
    justify-content: center;
  }

  .hero {
    padding: 50px 30px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .welcome-bonus,
  .bonus-types,
  .claim-bonus,
  .bonus-terms,
  .bonus-calculator,
  .reload-bonuses,
  .cashback,
  .vip-program,
  .bonus-games,
  .faq {
    padding: 40px 30px;
  }

  .welcome-bonus-content h2,
  .bonus-types-content h3,
  .claim-bonus-content h3,
  .bonus-terms-content h3,
  .calculator-content h3,
  .reload-content h3,
  .cashback-content h3,
  .vip-content h3,
  .games-intro h3,
  .faq h3 {
    font-size: 2rem;
  }

  .bonus-highlights,
  .bonus-types-grid,
  .steps-grid,
  .terms-grid,
  .reload-features,
  .cashback-details,
  .vip-tiers,
  .games-grid {
    grid-template-columns: 1fr;
  }

  .calculator-info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 40px 20px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .welcome-bonus,
  .bonus-types,
  .claim-bonus,
  .bonus-terms,
  .bonus-calculator,
  .reload-bonuses,
  .cashback,
  .vip-program,
  .bonus-games,
  .faq {
    padding: 30px 20px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}
