/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #fff;
  background: #0a0a0a;
  overflow-x: hidden;
}

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

/* Header */
.header {
  background: rgba(0, 0, 0, 0.95);
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  border-bottom: 2px solid #ffd700;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: bold;
  color: #ffd700;
}

.logo-icon {
  font-size: 32px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 16px;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #000;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.btn-secondary {
  background: transparent;
  color: #ffd700;
  border: 2px solid #ffd700;
}

.btn-secondary:hover {
  background: #ffd700;
  color: #000;
}

.btn-header {
  padding: 10px 25px;
  font-size: 14px;
}

.btn-large {
  padding: 16px 40px;
  font-size: 18px;
}

.pulse {
  animation: pulse 2s infinite;
}

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

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a0a00 0%, #4a1a00 50%, #1a0a00 100%);
  z-index: -1;
}

.hero-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 140, 0, 0.1) 0%, transparent 50%);
}

.hero-content {
  text-align: center;
  z-index: 2;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.title-main {
  font-size: 56px;
  font-weight: bold;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.title-sub {
  font-size: 24px;
  color: #ffed4e;
}

.hero-description {
  font-size: 20px;
  margin-bottom: 40px;
  color: #ddd;
}

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

.hero-features {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
}

.feature-icon {
  font-size: 32px;
}

/* Hero Decorations */
.hero-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.coin {
  position: absolute;
  font-size: 48px;
  animation: float 6s ease-in-out infinite;
  opacity: 0.6;
}

.coin-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.coin-2 {
  top: 60%;
  right: 15%;
  animation-delay: 1s;
}

.coin-3 {
  bottom: 20%;
  left: 20%;
  animation-delay: 2s;
}

.coin-4 {
  top: 40%;
  right: 10%;
  animation-delay: 3s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Section Title */
.section-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 50px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Game Preview Section */
.game-preview {
  padding: 100px 0;
  background: #0f0f0f;
}

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

.game-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.game-card:hover {
  transform: translateY(-10px);
  border-color: #ffd700;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.game-card-icon {
  font-size: 64px;
  margin-bottom: 20px;
}

.game-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #ffd700;
}

.game-card p {
  color: #ccc;
  line-height: 1.6;
}

/* Bonus Section */
.bonus-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #2a1a00 0%, #1a0a00 100%);
  position: relative;
  overflow: hidden;
}

.bonus-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.bonus-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.bonus-title {
  font-size: 36px;
  margin-bottom: 30px;
  color: #ffd700;
}

.bonus-list {
  list-style: none;
  margin-bottom: 40px;
}

.bonus-list li {
  font-size: 20px;
  margin-bottom: 15px;
  padding-left: 10px;
}

.bonus-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bonus-badge {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 50px rgba(255, 215, 0, 0.5);
  animation: pulse 2s infinite;
}

.badge-content {
  text-align: center;
}

.badge-percent {
  display: block;
  font-size: 72px;
  font-weight: bold;
  color: #000;
}

.badge-text {
  display: block;
  font-size: 32px;
  font-weight: bold;
  color: #000;
}

/* How to Play Section */
.how-to-play {
  padding: 100px 0;
  background: #0a0a0a;
}

.steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.step {
  text-align: center;
  max-width: 250px;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 36px;
  font-weight: bold;
  color: #000;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #ffd700;
}

.step p {
  color: #ccc;
}

.step-arrow {
  font-size: 48px;
  color: #ffd700;
}

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

/* Winners Section */
.winners {
  padding: 100px 0;
  background: #0f0f0f;
}

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

.winner-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  padding: 25px;
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-left: 4px solid #ffd700;
  animation: slideIn 0.5s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.winner-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.winner-avatar {
  font-size: 40px;
}

.winner-details h4 {
  color: #ffd700;
  margin-bottom: 5px;
}

.winner-details p {
  color: #999;
  font-size: 14px;
}

.winner-amount {
  font-size: 24px;
  font-weight: bold;
  color: #4ade80;
}

/* FAQ Section */
.faq {
  padding: 100px 0;
  background: #0a0a0a;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #1a1a1a;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #2a2a2a;
}

.faq-question {
  padding: 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  color: #ffd700;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #2a2a2a;
}

.faq-toggle {
  font-size: 28px;
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 25px 25px;
  color: #ccc;
  line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a0a00 0%, #4a1a00 100%);
  text-align: center;
}

.final-cta-content h2 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #ffd700;
}

.final-cta-content > p {
  font-size: 24px;
  margin-bottom: 40px;
  color: #ddd;
}

.disclaimer {
  margin-top: 30px;
  font-size: 14px;
  color: #999;
}

/* Footer */
.footer {
  background: #000;
  padding: 40px 0;
  text-align: center;
  border-top: 2px solid #ffd700;
}

.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: bold;
  color: #ffd700;
  margin-bottom: 20px;
}

.footer-text {
  color: #999;
  font-size: 14px;
  line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .title-main {
    font-size: 36px;
  }

  .title-sub {
    font-size: 18px;
  }

  .hero-description {
    font-size: 16px;
  }

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

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

  .bonus-badge {
    width: 200px;
    height: 200px;
  }

  .badge-percent {
    font-size: 48px;
  }

  .badge-text {
    font-size: 24px;
  }

  .step-arrow {
    display: none;
  }

  .section-title {
    font-size: 32px;
  }

  .logo-text {
    font-size: 16px;
  }

  .header-content {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .title-main {
    font-size: 28px;
  }

  .btn-large {
    padding: 14px 30px;
    font-size: 16px;
  }

  .game-card {
    padding: 30px 20px;
  }

  .final-cta-content h2 {
    font-size: 32px;
  }

  .final-cta-content > p {
    font-size: 18px;
  }
}
