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

:root {
  --primary-color: #7c3aed;
  --primary-dark: #6d28d9;
  --primary-light: #a78bfa;
  --secondary-color: #ec4899;
  --accent-color: #f59e0b;
  --gold-color: #fbbf24;
  --bg-dark: #1a1a2e;
  --bg-darker: #0f0f1e;
  --bg-card: #252541;
  --text-light: #ffffff;
  --text-gray: #a0a0b8;
  --success-color: #10b981;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Header */
.header {
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--primary-color);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-light);
}

.logo-icon {
  font-size: 2rem;
}

.logo-text {
  background: linear-gradient(135deg, var(--primary-light), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
}

.nav-link:hover {
  color: var(--primary-light);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: var(--text-light);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-light);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}

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

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: 2px solid var(--primary-color);
  cursor: pointer;
  display: inline-block;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--text-light);
  color: var(--text-light);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
}

.btn-outline:hover {
  background: var(--text-light);
  color: var(--bg-dark);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(236, 72, 153, 0.2) 0%, transparent 50%);
  z-index: 0;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  animation: fadeInLeft 1s ease-out;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--gold-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(251, 191, 36, 0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.hero-features {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.feature-badge {
  background: rgba(124, 58, 237, 0.2);
  border: 1px solid var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.feature-icon {
  font-size: 1.2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  animation: fadeInRight 1s ease-out;
}

/* Slot Machine */
.slot-machine {
  background: linear-gradient(135deg, var(--bg-card), var(--bg-darker));
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border: 2px solid var(--primary-color);
}

.slot-screen {
  background: linear-gradient(180deg, #1a1a3e, #0a0a1e);
  border-radius: 15px;
  padding: 1.5rem;
  border: 3px solid var(--gold-color);
  box-shadow: inset 0 0 20px rgba(251, 191, 36, 0.2);
}

.jackpot-display {
  display: flex;
  justify-content: space-around;
  margin-bottom: 1rem;
  gap: 0.5rem;
}

.jackpot-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(124, 58, 237, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--primary-light);
}

.jackpot-label {
  font-size: 0.7rem;
  color: var(--gold-color);
  font-weight: bold;
}

.jackpot-amount {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: bold;
}

.slot-reels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.reel {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border: 2px solid var(--primary-color);
}

.symbol {
  font-size: 3rem;
  text-align: center;
  animation: spin 3s infinite linear;
}

.symbol:nth-child(2) {
  animation-delay: 0.3s;
}

.symbol:nth-child(3) {
  animation-delay: 0.6s;
}

/* Casino Banner */
.casino-banner {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  padding: 2rem 0;
  margin: 3rem 0;
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.casino-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.casino-icon {
  font-size: 3rem;
}

.casino-logo h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.rating {
  display: flex;
  gap: 0.25rem;
}

.star {
  color: var(--gold-color);
  font-size: 1.2rem;
}

.banner-text {
  flex: 1;
  font-size: 1.2rem;
  text-align: center;
}

/* Sections */
.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, var(--primary-light), var(--text-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about {
  padding: 4rem 0;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-content p {
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* Game Info Table */
.game-info {
  padding: 4rem 0;
  background: rgba(37, 37, 65, 0.3);
}

.info-table {
  max-width: 900px;
  margin: 0 auto 3rem;
  background: var(--bg-card);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(124, 58, 237, 0.2);
}

.info-row:last-child {
  border-bottom: none;
}

.info-row:nth-child(even) {
  background: rgba(124, 58, 237, 0.05);
}

.info-label {
  color: var(--text-gray);
  font-weight: 600;
}

.info-value {
  color: var(--text-light);
  text-align: right;
}

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

/* Features Section */
.features {
  padding: 4rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

.feature-icon-large {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-light);
}

.feature-card p {
  color: var(--text-gray);
  line-height: 1.6;
}

/* Theme Section */
.theme-section {
  padding: 4rem 0;
  background: rgba(37, 37, 65, 0.3);
}

.theme-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.theme-text p {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1.05rem;
}

.slot-preview {
  background: linear-gradient(135deg, var(--bg-card), var(--bg-darker));
  border-radius: 20px;
  padding: 3rem;
  border: 2px solid var(--primary-color);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.preview-symbols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.preview-symbol {
  font-size: 3.5rem;
  text-align: center;
  animation: float 3s ease-in-out infinite;
}

.preview-symbol:nth-child(2n) {
  animation-delay: 0.5s;
}

.preview-symbol:nth-child(3n) {
  animation-delay: 1s;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(236, 72, 153, 0.2));
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--gold-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-text {
  font-size: 1.3rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
}

.cta-icon {
  color: var(--success-color);
  font-size: 1.5rem;
  font-weight: bold;
}

/* Footer */
.footer {
  background: var(--bg-darker);
  padding: 3rem 0 2rem;
  border-top: 2px solid var(--primary-color);
}

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

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary-light);
}

.footer-disclaimer {
  color: var(--text-gray);
  font-size: 0.9rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(124, 58, 237, 0.2);
}

/* Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

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

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

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

/* Responsive Design */
@media (max-width: 968px) {
  .nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 3rem;
  }

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

  .banner-content {
    justify-content: center;
    text-align: center;
  }

  .info-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .info-value {
    text-align: left;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-features {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 640px) {

  .feature-badge {
    display: none;
  }
  
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 2rem 0;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 0.75rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-features {
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }

  .feature-badge {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }

  .feature-icon {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn-large {
    width: 100%;
    text-align: center;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  .btn-outline {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  .slot-machine {
    padding: 1rem;
  }

  .slot-screen {
    padding: 1rem;
  }

  .slot-reels {
    gap: 0.5rem;
  }

  .reel {
    padding: 0.5rem;
  }

  .symbol {
    font-size: 2rem;
  }

  .jackpot-display {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .jackpot-item {
    flex: 1 1 calc(50% - 0.25rem);
    min-width: 120px;
    padding: 0.4rem 0.75rem;
  }

  .jackpot-label {
    font-size: 0.65rem;
  }

  .jackpot-amount {
    font-size: 0.9rem;
  }

  .casino-banner {
    padding: 1.5rem 0;
    margin: 2rem 0;
  }

  .banner-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .casino-logo {
    flex-direction: column;
    gap: 0.5rem;
  }

  .casino-icon {
    font-size: 2.5rem;
  }

  .casino-logo h3 {
    font-size: 1.25rem;
  }

  .rating {
    justify-content: center;
  }

  .star {
    font-size: 1rem;
  }

  .banner-text {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
  }

  .about,
  .game-info,
  .features,
  .theme-section {
    padding: 2.5rem 0;
  }

  .about-content p {
    font-size: 1rem;
  }

  .info-table {
    margin: 0 auto 2rem;
  }

  .info-row {
    padding: 0.75rem 1rem;
  }

  .info-label,
  .info-value {
    font-size: 0.9rem;
  }

  .features-grid {
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .feature-icon-large {
    font-size: 2.5rem;
  }

  .feature-card h3 {
    font-size: 1.25rem;
  }

  .feature-card p {
    font-size: 0.95rem;
  }

  .slot-preview {
    padding: 2rem;
  }

  .preview-symbols {
    gap: 1rem;
  }

  .preview-symbol {
    font-size: 2.5rem;
  }

  .theme-text p {
    font-size: 1rem;
  }

  .cta-section {
    padding: 3rem 0;
  }

  .cta-title {
    font-size: 1.75rem;
    line-height: 1.3;
  }

  .cta-text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }

  .cta-features {
    flex-direction: column;
    gap: 0.75rem;
  }

  .cta-feature {
    font-size: 1rem;
  }

  .cta-icon {
    font-size: 1.25rem;
  }

  .footer {
    padding: 2rem 0 1.5rem;
  }

  .footer-logo {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .footer-disclaimer {
    font-size: 0.85rem;
    padding-top: 1.5rem;
  }
}
