:root {
  --primary-color: #1e0b2d;
  --secondary-color: #5a1b8c;
  --accent-color: #ff3e7f;
  --text-color: #ffffff;
  --text-secondary: #cccccc;
  --background-color: #0a0a0a;
  --card-background: #1a1a1a;
  --header-background: #1e0b2d;
  --footer-background: #0a0a0a;
  --button-primary: #ff3e7f;
  --button-secondary: #5a1b8c;
  --button-text: #ffffff;
  --border-radius: 8px;
  --transition-speed: 0.3s;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all var(--transition-speed) ease;
}

a:hover {
  color: var(--text-color);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header Styles */
header {
  background-color: var(--header-background);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.logo {
  height: 40px;
}

.header-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 10px 20px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition-speed) ease;
  cursor: pointer;
  border: none;
}

.btn-login {
  background-color: transparent;
  border: 2px solid var(--button-primary);
  color: var(--button-text);
}

.btn-register {
  background-color: var(--button-primary);
  color: var(--button-text);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero {
  position: relative;
  height: 75vh;
  max-height: 600px;
  overflow: hidden;
  margin-bottom: 40px;
}

.slider {
  display: flex;
  transition: transform 0.5s ease;
  height: 100%;
}

.slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  max-width: 500px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: var(--border-radius);
}

.slide-content h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--accent-color);
}

.slide-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.slider-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all var(--transition-speed) ease;
}

.slider-dot.active {
  background-color: var(--accent-color);
}

/* Games Section */
.section-title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 30px;
  color: var(--accent-color);
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.game-card {
  background-color: var(--card-background);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: all var(--transition-speed) ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.game-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.game-info {
  padding: 15px;
}

.game-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.game-provider {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.btn-play {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: var(--button-secondary);
  color: var(--button-text);
  text-align: center;
  border-radius: var(--border-radius);
  margin-top: 10px;
  font-weight: 600;
  transition: all var(--transition-speed) ease;
}

.btn-play:hover {
  background-color: var(--accent-color);
}

/* Bonuses Section */
.bonuses {
  background-color: var(--card-background);
  padding: 40px 0;
  margin-bottom: 40px;
  border-radius: var(--border-radius);
}

.bonus-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.bonus-card {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  border-radius: var(--border-radius);
  padding: 25px;
  width: 100%;
  max-width: 350px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.bonus-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--accent-color);
}

.bonus-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

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

.bonus-terms {
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.registration {
  padding: 40px 0;
  margin-bottom: 40px;
}

.registration-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.step-card {
  background-color: var(--card-background);
  border-radius: var(--border-radius);
  padding: 25px;
  width: 100%;
  max-width: 300px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
}

.step-number {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.step-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  padding-left: 20px;
}

.step-description {
  color: var(--text-secondary);
}
footer {
  background-color: var(--footer-background);
  padding: 40px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section {
  margin-bottom: 30px;
}

.footer-title {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.payment-methods, .game-providers {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.payment-icon, .provider-icon {
  height: 30px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all var(--transition-speed) ease;
}

.payment-icon:hover, .provider-icon:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: var(--text-secondary);
}
@media (max-width: 768px) {
  .slide-content {
    left: 5%;
    max-width: 90%;
  }
  
  .slide-content h2 {
    font-size: 2rem;
  }
  
  .games-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
  
  .bonus-cards, .registration-steps {
    flex-direction: column;
    align-items: center;
  }
  
  .bonus-card, .step-card {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .header-container {
    flex-direction: column;
    gap: 15px;
  }
  
  .slide-content h2 {
    font-size: 1.5rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .game-image {
    height: 140px;
  }
}