:root {
  --primary-color: #6a11cb;
  --secondary-color: #2575fc;
  --accent-color: #ff9900;
  --text-color: #333333;
  --text-light: #ffffff;
  --text-secondary: #666666;
  --background-color: #f5f7ff;
  --card-background: #ffffff;
  --header-background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  --footer-background: #1a1a2e;
  --button-primary: linear-gradient(135deg, #ff9900 0%, #ff5500 100%);
  --button-secondary: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  --button-text: #ffffff;
  --border-radius: 12px;
  --box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  --transition-speed: 0.3s;
}

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

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

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

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

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

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

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

.logo {
  height: 40px;
}

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

.btn {
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition-speed) ease;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

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

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}


.hero {
  position: relative;
  height: 75vh;
  max-height: 600px;
  overflow: hidden;
  margin-bottom: 60px;
}

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

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

.slide-content {
  max-width: 600px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--border-radius);
  margin-left: 10%;
  box-shadow: var(--box-shadow);
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.slide-content h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.slide-content p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: var(--text-secondary);
}

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

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

.slider-dot.active {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  transform: scale(1.2);
}


.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 2.5px;
}

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

.game-card {
  background-color: var(--card-background);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: all var(--transition-speed) ease;
  box-shadow: var(--box-shadow);
  position: relative;
}

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

.game-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: all var(--transition-speed) ease;
}

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

.game-info {
  padding: 20px;
}

.game-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

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

.game-features {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.game-feature {
  font-size: 0.8rem;
  padding: 4px 8px;
  background-color: #f0f0f0;
  border-radius: 20px;
  color: var(--text-secondary);
}

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

.btn-play:hover {
  background: linear-gradient(135deg, #7c21db 0%, #3585fc 100%);
  box-shadow: 0 5px 15px rgba(106, 17, 203, 0.4);
}


.bonuses {
  background: linear-gradient(135deg, #f5f7ff 0%, #e0e6ff 100%);
  padding: 80px 0;
  margin-bottom: 60px;
  border-radius: var(--border-radius);
}

.bonus-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.bonus-tab {
  padding: 12px 24px;
  background-color: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-speed) ease;
}

.bonus-tab.active {
  color: var(--primary-color);
  border-bottom: 3px solid var(--primary-color);
}

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

.bonus-card {
  background-color: var(--card-background);
  border-radius: var(--border-radius);
  padding: 30px;
  width: 100%;
  max-width: 350px;
  box-shadow: var(--box-shadow);
  transition: all var(--transition-speed) ease;
  position: relative;
  overflow: hidden;
}

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

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

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

.bonus-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.bonus-value {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.bonus-description {
  margin-bottom: 25px;
  color: var(--text-secondary);
}

.bonus-cta {
  display: inline-block;
  padding: 12px 24px;
  background: var(--button-primary);
  color: var(--button-text);
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: all var(--transition-speed) ease;
}

.bonus-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 153, 0, 0.4);
}


.registration {
  padding: 60px 0;
  margin-bottom: 60px;
}

.registration-container {
  background-color: var(--card-background);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--box-shadow);
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.registration-content {
  flex: 1;
  min-width: 300px;
}

.registration-content h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.registration-content p {
  margin-bottom: 30px;
  color: var(--text-secondary);
}

.registration-steps {
  flex: 1;
  min-width: 300px;
}

.step {
  display: flex;
  margin-bottom: 30px;
  position: relative;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 40px;
  left: 20px;
  height: calc(100% - 10px);
  width: 2px;
  background-color: #e0e6ff;
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-right: 20px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-content h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.step-content p {
  color: var(--text-secondary);
}

.registration-cta {
  text-align: center;
  margin-top: 40px;
}


footer {
  background-color: var(--footer-background);
  padding: 60px 0 20px;
  color: var(--text-light);
}

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

.footer-title {
  font-size: 1.3rem;
  margin-bottom: 25px;
  color: var(--accent-color);
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
}

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

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

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

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}
/* Animations */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.pulse {
  animation: pulse 2s infinite;
}


@media (max-width: 992px) {
  .slide-content {
    margin-left: 5%;
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .slide-content h2 {
    font-size: 2rem;
  }
  
  .games-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  
  .bonus-content {
    flex-direction: column;
    align-items: center;
  }
  
  .bonus-card {
    max-width: 100%;
  }
  
  .registration-container {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .header-container {
    flex-direction: column;
    gap: 15px;
  }
  
  .slide-content {
    padding: 20px;
  }
  
  .slide-content h2 {
    font-size: 1.5rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .bonus-tabs {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .bonus-tab {
    width: 100%;
    text-align: center;
  }
}