
:root {
  --primary-color: #ffd700;
  --secondary-color: #ff6b00;
  --accent-color: #ff0055;
  --text-color: #ffffff;
  --text-secondary: #cccccc;
  --background-color: #1a0033;
  --card-background: #2a0052;
  --header-background: #0d001a;
  --footer-background: #0d001a;
  --button-primary: linear-gradient(135deg, #ffd700 0%, #ff6b00 100%);
  --button-secondary: linear-gradient(135deg, #ff0055 0%, #8c0032 100%);
  --button-text: #000000;
  --border-radius: 10px;
  --box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
  --transition-speed: 0.3s;
  --gold-gradient: linear-gradient(135deg, #ffd700 0%, #ffb347 50%, #ffd700 100%);
  --neon-shadow: 0 0 10px rgba(255, 215, 0, 0.7), 0 0 20px rgba(255, 215, 0, 0.5), 0 0 30px rgba(255, 215, 0, 0.3);
}

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

body {
  font-family: 'Exo 2', sans-serif;
  background-color: var(--background-color);
  background-image: radial-gradient(circle at 50% 50%, #2a0052 0%, #1a0033 50%, #0d001a 100%);
  color: var(--text-color);
  line-height: 1.6;
}

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

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

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

header {
  background-color: var(--header-background);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  border-bottom: 2px solid var(--primary-color);
}

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

.logo {
  height: 40px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

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

.btn {
  padding: 12px 25px;
  border-radius: var(--border-radius);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition-speed) ease;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.5s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

.btn-login {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.btn-login:hover {
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.btn-register {
  background: var(--button-primary);
  color: var(--button-text);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.btn-register:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.7);
}

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

.slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 0, 51, 0.8) 0%, rgba(13, 0, 26, 0.4) 100%);
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  max-width: 600px;
  padding: 30px;
  background-color: rgba(42, 0, 82, 0.8);
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius);
  box-shadow: var(--neon-shadow);
}

.slide-content h2 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: var(--primary-color);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  font-weight: 800;
}

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

.jackpot-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 25px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

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

.slider-dot {
  width: 15px;
  height: 15px;
  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(--primary-color);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

.section-title {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--gold-gradient);
  border-radius: 2px;
  box-shadow: var(--neon-shadow);
}

.section-subtitle {
  text-align: center;
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.games-section {
  padding: 40px 0 60px;
  margin-bottom: 60px;
}

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

.game-card {
  background-color: var(--card-background);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: all var(--transition-speed) ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.3);
  position: relative;
}

.game-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 215, 0, 0.3);
  border-color: var(--primary-color);
}

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

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

.jackpot-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gold-gradient);
  color: var(--button-text);
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  z-index: 2;
}

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

.jackpot-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.btn-play {
  display: block;
  width: 100%;
  padding: 12px;
  background: var(--button-primary);
  color: var(--button-text);
  text-align: center;
  border-radius: var(--border-radius);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition-speed) ease;
  position: relative;
  overflow: hidden;
}

.btn-play::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.5s ease;
  z-index: 0;
}

.btn-play:hover::before {
  left: 100%;
}

.btn-play:hover {
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.bonuses-section {
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(42, 0, 82, 0.9) 0%, rgba(26, 0, 51, 0.9) 100%);
  margin-bottom: 60px;
  border-top: 2px solid var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

.bonuses-container {
  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: 0 10px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.3);
  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: var(--gold-gradient);
}

.bonus-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 215, 0, 0.3);
  border-color: var(--primary-color);
}

.bonus-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

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

.bonus-value {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

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

.bonus-cta {
  display: inline-block;
  padding: 12px 25px;
  background: var(--button-primary);
  color: var(--button-text);
  border-radius: var(--border-radius);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition-speed) ease;
  position: relative;
  overflow: hidden;
}

.bonus-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.5s ease;
  z-index: 0;
}

.bonus-cta:hover::before {
  left: 100%;
}

.bonus-cta:hover {
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

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

.registration-container {
  background: linear-gradient(135deg, rgba(42, 0, 82, 0.9) 0%, rgba(26, 0, 51, 0.9) 100%);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border: 2px solid var(--primary-color);
  position: relative;
  overflow: hidden;
}

.registration-container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
  z-index: 0;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.registration-content {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 40px;
}

.registration-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.registration-description {
  font-size: 1.1rem;
  color: var(--text-color);
  max-width: 800px;
  margin: 0 auto 30px;
}

.registration-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.step-card {
  background-color: var(--card-background);
  border-radius: var(--border-radius);
  padding: 30px;
  width: 100%;
  max-width: 300px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.3);
  transition: all var(--transition-speed) ease;
  position: relative;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 215, 0, 0.3);
  border-color: var(--primary-color);
}

.step-number {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 50px;
  height: 50px;
  background: var(--gold-gradient);
  color: var(--button-text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.step-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary-color);
  padding-left: 20px;
}

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

.registration-cta {
  text-align: center;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--button-primary);
  color: var(--button-text);
  border-radius: var(--border-radius);
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all var(--transition-speed) ease;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.5s ease;
  z-index: 0;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.7);
}

/* Footer */
footer {
  background-color: var(--footer-background);
  padding: 60px 0 20px;
  border-top: 2px solid var(--primary-color);
}

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

.footer-title {
  font-size: 1.3rem;
  margin-bottom: 25px;
  color: var(--primary-color);
  text-align: center;
  position: relative;
  padding-bottom: 15px;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--gold-gradient);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.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, 215, 0, 0.2);
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.float {
  animation: float 3s ease-in-out infinite;
}

@keyframes glow {
  0% { box-shadow: 0 0 5px rgba(255, 215, 0, 0.5); }
  50% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.8); }
  100% { box-shadow: 0 0 5px rgba(255, 215, 0, 0.5); }
}

.glow {
  animation: glow 2s ease-in-out infinite;
}


@media (max-width: 992px) {
  .slide-content {
    left: 5%;
    max-width: 90%;
  }
  
  .jackpot-amount {
    font-size: 2rem;
  }
}

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

@media (max-width: 480px) {
  .header-container {
    flex-direction: column;
    gap: 15px;
  }
  
  .slide-content {
    padding: 20px;
  }
  
  .slide-content h2 {
    font-size: 2rem;
  }
  
  .jackpot-amount {
    font-size: 1.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .registration-steps {
    flex-direction: column;
    align-items: center;
  }
}