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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 50%, #1a0a2e 100%);
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Header */
.header {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid #ff4081;
}

.header .container {
  display: block;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
}

.logo-text {
  font-size: 24px;
  font-weight: bold;
  background: linear-gradient(45deg, #ff4081, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-link:hover {
  color: #ff4081;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff4081;
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #ffffff;
  border-radius: 3px;
  transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

.btn-primary {
  background: linear-gradient(45deg, #ff4081, #ff6b9d);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 64, 129, 0.4);
}

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

.btn-pink {
  background: linear-gradient(45deg, #ff4081, #ff6b9d);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 64, 129, 0.4);
}

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

.btn-play {
  background: linear-gradient(45deg, #ff4081, #ff6b9d);
  color: #ffffff;
  padding: 15px 40px;
  font-size: 18px;
  margin-top: 20px;
}

.btn-large {
  padding: 18px 50px;
  font-size: 20px;
}

.pulse {
  animation: pulse 2s infinite;
}

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

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

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(255, 64, 129, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(138, 43, 226, 0.2) 0%, transparent 50%);
  animation: bgMove 10s ease-in-out infinite;
}

@keyframes bgMove {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.1) rotate(5deg);
  }
}

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

.hero-title {
  font-size: 64px;
  font-weight: bold;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #ffd700, #ff4081, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s infinite;
  background-size: 200% auto;
}

@keyframes shimmer {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

.hero-subtitle {
  font-size: 24px;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.hero-game-preview {
  margin: 40px 0;
  display: flex;
  justify-content: center;
}

.game-frame {
  background: linear-gradient(135deg, #2d1b4e, #1a0a2e);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border: 3px solid #ff4081;
  max-width: 500px;
}

.game-screen {
  background: linear-gradient(135deg, #4a148c, #6a1b9a);
  border-radius: 15px;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.game-screen::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.03) 0px,
    transparent 1px,
    transparent 2px,
    rgba(255, 255, 255, 0.03) 3px
  );
  pointer-events: none;
}

.win-banner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.win-icon {
  font-size: 80px;
  margin-bottom: 20px;
  animation: rotate 3s linear infinite;
}

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

.win-text {
  font-size: 20px;
  font-weight: bold;
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.hero-actions {
  margin-top: 40px;
}

.hero-note {
  margin-top: 20px;
  color: #b0b0b0;
  font-size: 14px;
}

.hero-note a {
  color: #ff4081;
  text-decoration: none;
}

.hero-note a:hover {
  text-decoration: underline;
}

/* Game Info Section */
.game-info {
  padding: 60px 0;
  background: rgba(0, 0, 0, 0.3);
}

.game-card {
  background: linear-gradient(135deg, rgba(45, 27, 78, 0.8), rgba(26, 10, 46, 0.8));
  border-radius: 20px;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 64, 129, 0.3);
}

.game-icon {
  width: 100px;
  height: 100px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.game-details {
  flex: 1;
}

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

.game-rating {
  font-size: 24px;
}

.star {
  color: #ffd700;
}

.game-bonus {
  flex: 1;
}

.bonus-text {
  font-size: 18px;
  color: #e0e0e0;
}

/* About Section */
.about {
  padding: 80px 0;
}

.section-title {
  font-size: 42px;
  text-align: center;
  margin-bottom: 40px;
  background: linear-gradient(45deg, #ffd700, #ff4081);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
  color: #e0e0e0;
}

.about-content p {
  margin-bottom: 20px;
}

/* Features Section */
.features {
  padding: 80px 0;
  background: rgba(0, 0, 0, 0.3);
}

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

.feature-card {
  background: linear-gradient(135deg, rgba(45, 27, 78, 0.6), rgba(26, 10, 46, 0.6));
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 2px solid rgba(255, 64, 129, 0.2);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 64, 129, 0.3);
  border-color: rgba(255, 64, 129, 0.5);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.feature-title {
  font-size: 20px;
  margin-bottom: 10px;
  color: #ff4081;
}

.feature-text {
  font-size: 16px;
  color: #e0e0e0;
}

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

/* Gameplay Section */
.gameplay {
  padding: 80px 0;
}

.gameplay-content {
  max-width: 900px;
  margin: 0 auto;
}

.gameplay-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 20px;
}

.gameplay-image {
  margin-top: 40px;
  text-align: center;
}

.gameplay-image img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border: 3px solid #ff4081;
}

/* Bonuses Section */
.bonuses {
  padding: 80px 0;
  background: rgba(0, 0, 0, 0.3);
}

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

.bonus-card {
  background: linear-gradient(135deg, rgba(45, 27, 78, 0.8), rgba(26, 10, 46, 0.8));
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  transition: transform 0.3s;
  border: 2px solid rgba(255, 64, 129, 0.3);
}

.bonus-card:hover {
  transform: scale(1.05);
  border-color: rgba(255, 64, 129, 0.6);
}

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

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

.bonus-text {
  font-size: 16px;
  color: #e0e0e0;
}

/* CTA Section */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(255, 64, 129, 0.2), rgba(138, 43, 226, 0.2));
}

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

.cta-title {
  font-size: 48px;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #ffd700, #ff4081);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-text {
  font-size: 22px;
  margin-bottom: 40px;
  color: #e0e0e0;
}

/* Footer */
.footer {
  background: rgba(0, 0, 0, 0.8);
  padding: 60px 0 30px;
  border-top: 2px solid #ff4081;
}

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

.footer-title {
  font-size: 20px;
  margin-bottom: 20px;
  color: #ff4081;
}

.footer-text {
  color: #b0b0b0;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ff4081;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 64, 129, 0.3);
  color: #808080;
}

.footer-warning {
  margin-top: 10px;
  font-size: 14px;
  color: #ff6b6b;
}

/* Responsive */
@media (max-width: 768px) {
  .header .container {
    flex-direction: column;
    gap: 15px;
  }

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

  .nav-wrapper {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    border-top: 2px solid #ff4081;
  }

  .nav-wrapper.active {
    transform: translateX(0);
  }

  .nav {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    width: 100%;
  }

  .nav-link {
    font-size: 18px;
    padding: 10px;
  }

  .header .btn-primary {
    width: 100%;
    text-align: center;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .game-card {
    flex-direction: column;
    text-align: center;
  }

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

  .cta-title {
    font-size: 36px;
  }

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

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