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

:root {
  --primary-color: #ff4081;
  --secondary-color: #00bcd4;
  --accent-color: #ffc107;
  --pink-bright: #ff69b4;
  --blue-bright: #00d4ff;
  --purple-bright: #9c27b0;
  --orange-bright: #ff9800;
  --green-bright: #4caf50;
  --text-dark: #2d1b69;
  --text-light: #ffffff;
  --bg-light: #fef7ff;
  --bg-gradient: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
  --bg-dark: #2d1b69;
  --gradient-primary: linear-gradient(
    135deg,
    #ff4081 0%,
    #ff9800 50%,
    #00bcd4 100%
  );
  --gradient-secondary: linear-gradient(
    135deg,
    #9c27b0 0%,
    #ff4081 50%,
    #00d4ff 100%
  );
  --gradient-rainbow: linear-gradient(
    45deg,
    #ff4081,
    #ff9800,
    #ffc107,
    #4caf50,
    #00bcd4,
    #9c27b0
  );
  --shadow: 0 15px 35px rgba(255, 64, 129, 0.3);
  --shadow-hover: 0 20px 40px rgba(255, 64, 129, 0.4);
  --border-radius: 25px;
  --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
  background: var(--bg-gradient);
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="0.9em" font-size="20">💕</text></svg>')
      0 0,
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="0.9em" font-size="15">✨</text></svg>')
      50px 50px,
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="0.9em" font-size="12">🌟</text></svg>')
      100px 0;
  background-size: 200px 200px, 150px 150px, 100px 100px;
  opacity: 0.1;
  animation: floatingHearts 20s infinite linear;
  pointer-events: none;
  z-index: -1;
}

@keyframes floatingHearts {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-100px);
  }
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.8rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-light);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: var(--shadow-hover);
  animation: wiggle 0.5s ease-in-out;
}

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

@keyframes wiggle {
  0%,
  7% {
    transform: translateY(-5px) scale(1.05) rotateZ(0);
  }
  15% {
    transform: translateY(-5px) scale(1.05) rotateZ(-5deg);
  }
  20% {
    transform: translateY(-5px) scale(1.05) rotateZ(5deg);
  }
  25% {
    transform: translateY(-5px) scale(1.05) rotateZ(-5deg);
  }
  30% {
    transform: translateY(-5px) scale(1.05) rotateZ(5deg);
  }
  35% {
    transform: translateY(-5px) scale(1.05) rotateZ(-2deg);
  }
  40%,
  100% {
    transform: translateY(-5px) scale(1.05) rotateZ(0);
  }
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--text-light);
}

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

.btn-small {
  padding: 8px 16px;
  font-size: 0.85rem;
  border-radius: 15px;
  opacity: 0.9;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 240, 245, 0.9) 100%
  );
  backdrop-filter: blur(15px);
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(255, 64, 129, 0.2);
  border-bottom: 2px solid rgba(255, 192, 203, 0.3);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo img {
  height: 40px;
  width: auto;
  transition: all 0.3s ease;
}

.nav-logo img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

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

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

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  margin: 3px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #87ceeb 0%, #98fb98 50%, #ffb6c1 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "💕 ✨ 🏠 💖 🌟 🎉 💫 🌈 🎵 💝 🎊 ⭐ 💗 🎁 🌸 💎 🦄 🌺 💞 🎭";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.3);
  animation: floatingEmojis 30s infinite linear;
  white-space: nowrap;
  line-height: 4;
  overflow: hidden;
}

@keyframes floatingEmojis {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 2rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.hero-content {
  color: var(--text-light);
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease;
}

.highlight {
  background: var(--gradient-rainbow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: rainbowShine 3s ease-in-out infinite;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

@keyframes rainbowShine {
  0%,
  100% {
    filter: hue-rotate(0deg);
  }
  50% {
    filter: hue-rotate(360deg);
  }
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease 0.6s both;
}

.secondary-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-platforms {
  animation: fadeInUp 1s ease 0.8s both;
}

.hero-platforms span {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

.platforms {
  display: flex;
  gap: 1rem;
}

.platforms img {
  height: 40px;
  opacity: 0.8;
  transition: var(--transition);
}

.platforms img:hover {
  opacity: 1;
  transform: scale(1.1);
}

.hero-video {
  text-align: center;
  animation: fadeInRight 1s ease;
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-hover);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 192, 203, 0.1) 100%
  );
  border: 3px solid rgba(255, 255, 255, 0.3);
  width: 100%;
  min-height: 350px;
}

.game-trailer {
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius);
  object-fit: cover;
  transition: var(--transition);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 5;
}

.game-trailer:hover {
  transform: scale(1.02);
  filter: brightness(1.1) saturate(1.1);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.1);
  opacity: 1;
  transition: var(--transition);
  pointer-events: none;
  border-radius: var(--border-radius);
  z-index: 2;
}

.hero-video:hover .video-overlay {
  opacity: 0;
  visibility: hidden;
}

.hero-video .game-trailer::-webkit-media-controls,
.hero-video .game-trailer::-webkit-media-controls-panel {
  z-index: 10 !important;
  position: relative !important;
}

.hero-video .game-trailer::-webkit-media-controls-play-button,
.hero-video .game-trailer::-webkit-media-controls-volume-slider,
.hero-video .game-trailer::-webkit-media-controls-mute-button,
.hero-video .game-trailer::-webkit-media-controls-fullscreen-button,
.hero-video .game-trailer::-webkit-media-controls-timeline {
  z-index: 15 !important;
  pointer-events: auto !important;
}

.play-button {
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 0 20px rgba(255, 64, 129, 0.8);
  animation: pulse 2s infinite;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

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

/* Video hover effect */
.hero-video::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    transparent,
    rgba(255, 64, 129, 0.3),
    transparent 30%,
    rgba(0, 188, 212, 0.3),
    transparent 60%,
    rgba(255, 193, 7, 0.3),
    transparent
  );
  animation: videoGlow 6s linear infinite;
  pointer-events: none;
  z-index: -1;
  border-radius: var(--border-radius);
}

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

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-header p {
  color: #666;
  font-size: 1.2rem;
}

/* YouTube Videos Section */
.youtube-videos {
  padding: 100px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  position: relative;
  overflow: hidden;
}

.youtube-videos::before {
  content: "💖 🎬 ✨ 🎮 💫 🎭 🌟 💕";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 3rem;
  opacity: 0.1;
  animation: floatingEmojis 20s infinite linear;
  pointer-events: none;
  z-index: 1;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 4rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.video-container {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.video-container:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.video-info {
  margin-top: 1.5rem;
  text-align: center;
}

.video-info h3 {
  color: white;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.video-info p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.5;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments for videos */
@media (max-width: 1024px) {
  .videos-grid {
    gap: 2.5rem;
    max-width: 900px;
  }

  .video-container {
    padding: 1.8rem;
  }

  .video-info h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .videos-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 3rem;
  }

  .video-container {
    padding: 1.5rem;
    margin: 0 1rem;
  }

  .video-info h3 {
    font-size: 1.3rem;
  }

  .video-info p {
    font-size: 0.95rem;
  }
}

@media (max-width: 600px) {
  .videos-grid {
    gap: 2rem;
    margin-top: 2.5rem;
  }

  .video-container {
    padding: 1.2rem;
    margin: 0 0.5rem;
  }

  .video-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
  }

  .video-info p {
    font-size: 0.9rem;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  .videos-grid {
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .video-container {
    padding: 1rem;
    margin: 0;
  }

  .video-info h3 {
    font-size: 1.1rem;
  }

  .video-info p {
    font-size: 0.85rem;
  }
}

/* What is Section */
.what-is {
  padding: 6rem 0;
  background: linear-gradient(135deg, #ffeef8 0%, #f0f8ff 50%, #f5fffa 100%);
  position: relative;
  overflow: hidden;
}

.what-is::before {
  content: "🌸 🌺 🌼 🌻 🌷 🌹 🌸 🌺 🌼 🌻 🌷 🌹";
  position: absolute;
  top: 20%;
  left: -100%;
  font-size: 2rem;
  color: rgba(255, 192, 203, 0.3);
  animation: flowersFloat 25s linear infinite;
  white-space: nowrap;
}

.what-is::after {
  content: "⭐ ✨ 💫 🌟 ⭐ ✨ 💫 🌟 ⭐ ✨ 💫 🌟";
  position: absolute;
  bottom: 20%;
  right: -100%;
  font-size: 1.5rem;
  color: rgba(255, 215, 0, 0.4);
  animation: starsFloat 20s linear infinite reverse;
  white-space: nowrap;
}

@keyframes flowersFloat {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(100vw + 100%));
  }
}

@keyframes starsFloat {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100vw - 100%));
  }
}

.what-is-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.what-is-text h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

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

.stat {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 240, 245, 0.9) 100%
  );
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  border: 3px solid transparent;
  background-clip: padding-box;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.stat::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-rainbow);
  border-radius: var(--border-radius);
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}

.stat:hover::before {
  opacity: 1;
}

.stat:hover {
  transform: translateY(-5px) scale(1.02);
  animation: sparkle 0.6s ease-in-out;
}

@keyframes sparkle {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.2) saturate(1.2);
  }
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
}

.what-is-image img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

/* Why Section */
.why {
  padding: 6rem 0;
  background: white;
}

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

.why-card {
  text-align: center;
  padding: 2rem;
  border-radius: var(--border-radius);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.8) 100%
  );
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    transparent,
    rgba(255, 64, 129, 0.1),
    transparent 30%
  );
  animation: rotate 4s linear infinite;
  pointer-events: none;
}

.why-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-color);
}

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

.why-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  animation: bounce 2s infinite;
}

.why-emoji {
  font-size: 3rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.why-card h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

/* Features Section */
.features {
  padding: 6rem 0;
  background: var(--bg-light);
}

.features-grid {
  display: grid;
  gap: 3rem;
}

.feature-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: center;
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card:nth-child(even) {
  grid-template-columns: 2fr 1fr;
}

.feature-card:nth-child(even) .feature-image {
  order: 2;
}

.feature-image img {
  width: 100%;
  border-radius: var(--border-radius);
}

.feature-content h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* How to Section */
.how-to {
  padding: 6rem 0;
  background: white;
}

.how-to-steps {
  display: grid;
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h3 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

/* FAQ Section */
.faq {
  padding: 6rem 0;
  background: linear-gradient(135deg, #fff0f5 0%, #f0fff0 50%, #f0f8ff 100%);
  position: relative;
}

.faq::before {
  content: "❓ 💡 🤔 💭 ❗ 💡 ❓ 🤔 💭 ❗";
  position: absolute;
  top: 10%;
  left: -50%;
  font-size: 2.5rem;
  color: rgba(255, 105, 180, 0.2);
  animation: questionFloat 30s linear infinite;
  white-space: nowrap;
}

@keyframes questionFloat {
  0% {
    transform: translateX(0) rotate(0deg);
  }
  100% {
    transform: translateX(calc(100vw + 50%)) rotate(360deg);
  }
}

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

.faq-item {
  background: white;
  margin-bottom: 1rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  background: white;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-question h3 {
  color: var(--text-dark);
  margin: 0;
  font-size: 1.1rem;
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  transition: var(--transition);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 200px;
}

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

/* Footer */
.footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-logo img {
  height: 50px;
  width: auto;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.footer-logo img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.footer-logo p {
  opacity: 0.8;
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link img {
  width: 30px;
  height: 30px;
  opacity: 0.8;
  transition: var(--transition);
}

.social-link:hover img {
  opacity: 1;
  transform: scale(1.1);
}

.footer-section h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--text-light);
  text-decoration: none;
  opacity: 0.8;
  transition: var(--transition);
}

.footer-section a:hover {
  opacity: 1;
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  opacity: 0.8;
  transition: var(--transition);
}

.footer-links a:hover {
  opacity: 1;
}

/* Footer Credits - Subtle external link */
.footer-credits {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-credit-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-light);
  text-decoration: none;
  opacity: 0.4;
  font-size: 0.7rem;
  transition: opacity 0.3s ease;
  font-weight: 300;
}

.footer-credit-link:hover {
  opacity: 0.6;
  color: var(--text-light);
}

.credit-icon {
  font-size: 0.85rem;
  opacity: 0.5;
}

.credit-text {
  font-weight: 300;
  letter-spacing: 0.3px;
}

/* Mobile optimization for footer credits */
@media (max-width: 768px) {
  .footer-credits {
    margin-top: 1rem;
    padding-top: 1rem;
  }
  
  .footer-credit-link {
    font-size: 0.65rem;
    gap: 0.3rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

  .hamburger {
    display: flex;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

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

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

  .secondary-buttons {
    gap: 0.5rem;
    justify-content: center;
  }

  .btn-small {
    padding: 6px 12px;
    font-size: 0.8rem;
  }

  .hero-video {
    margin-top: 2rem;
    max-width: 100%;
    min-height: 280px;
  }

  .game-trailer {
    min-height: 280px;
    max-height: 400px;
    object-fit: cover;
  }

  .play-button {
    font-size: 3rem;
  }

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

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

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

  .feature-card {
    grid-template-columns: 1fr !important;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

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

  .btn-large {
    padding: 12px 30px;
    font-size: 1rem;
  }

  .hero-video {
    min-height: 250px;
  }

  .game-trailer {
    min-height: 250px;
    max-height: 350px;
  }

  .play-button {
    font-size: 2.5rem;
  }
}

@keyframes excitementShake {
  0%,
  100% {
    transform: translateY(-5px) scale(1.05) rotateZ(0);
  }
  10% {
    transform: translateY(-5px) scale(1.1) rotateZ(-3deg);
  }
  20% {
    transform: translateY(-5px) scale(1.1) rotateZ(3deg);
  }
  30% {
    transform: translateY(-5px) scale(1.1) rotateZ(-3deg);
  }
  40% {
    transform: translateY(-5px) scale(1.1) rotateZ(3deg);
  }
  50% {
    transform: translateY(-5px) scale(1.1) rotateZ(-2deg);
  }
  60% {
    transform: translateY(-5px) scale(1.1) rotateZ(2deg);
  }
  70% {
    transform: translateY(-5px) scale(1.1) rotateZ(-1deg);
  }
  80% {
    transform: translateY(-5px) scale(1.1) rotateZ(1deg);
  }
  90% {
    transform: translateY(-5px) scale(1.05) rotateZ(0);
  }
}

@keyframes excitementFloat {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: translateY(-50px) scale(1.2) rotate(180deg);
  }
  100% {
    opacity: 0;
    transform: translateY(-150px) scale(0.5) rotate(360deg);
  }
}

@keyframes flashEffect {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* Excitement button special styling */
#excitement-btn {
  position: relative;
  overflow: hidden;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

#excitement-btn::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: rotate(45deg);
  animation: buttonShine 2s infinite;
}

@keyframes buttonShine {
  0% {
    transform: translateX(-200%) translateY(-200%) rotate(45deg);
  }
  50% {
    transform: translateX(0%) translateY(0%) rotate(45deg);
  }
  100% {
    transform: translateX(200%) translateY(200%) rotate(45deg);
  }
}

/* Enhanced button hover for excitement */
#excitement-btn:hover {
  transform: translateY(-8px) scale(1.08);
  box-shadow: 0 25px 50px rgba(255, 64, 129, 0.6);
  filter: brightness(1.2);
}

.video-unmute-hint {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 64, 129, 0.9);
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(255, 64, 129, 0.3);
  animation: pulseHint 2s infinite;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.video-unmute-hint:hover {
  background: rgba(255, 64, 129, 1);
  transform: scale(1.05);
}

.video-unmute-hint.hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
}

@keyframes pulseHint {
  0%,
  100% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.02);
  }
}

/* Special styling for Videos nav button */
.nav-link[href="#videos"] {
  position: relative;
  background: linear-gradient(135deg, #ff4081 0%, #ff9800 50%, #00bcd4 100%);
  color: white !important;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 64, 129, 0.4);
  animation: videoButtonPulse 2s infinite;
  overflow: hidden;
}

.nav-link[href="#videos"]:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 64, 129, 0.6);
  animation: videoButtonExcite 0.6s ease-in-out;
}

.nav-link[href="#videos"]::before {
  content: "🎬";
  margin-right: 8px;
  font-size: 1.2em;
  animation: videoIconSpin 3s linear infinite;
}

.nav-link[href="#videos"]::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.5s;
}

.nav-link[href="#videos"]:hover::after {
  left: 100%;
}

/* Add sparkle effect */
.nav-link[href="#videos"] {
  overflow: visible;
}

.nav-link[href="#videos"]::before {
  content: "🎬";
  margin-right: 8px;
  font-size: 1.2em;
  animation: videoIconBounce 2s ease-in-out infinite;
  display: inline-block;
}

@keyframes videoButtonPulse {
  0%,
  100% {
    box-shadow: 0 4px 15px rgba(255, 64, 129, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 6px 20px rgba(255, 64, 129, 0.6),
      0 0 0 4px rgba(255, 64, 129, 0.2);
    transform: scale(1.02);
  }
}

@keyframes videoButtonExcite {
  0%,
  100% {
    transform: translateY(-2px) scale(1.05) rotate(0deg);
  }
  25% {
    transform: translateY(-2px) scale(1.05) rotate(-2deg);
  }
  75% {
    transform: translateY(-2px) scale(1.05) rotate(2deg);
  }
}

@keyframes videoIconBounce {
  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-3px) rotate(-5deg) scale(1.1);
  }
  50% {
    transform: translateY(-1px) rotate(0deg) scale(1.05);
  }
  75% {
    transform: translateY(-2px) rotate(5deg) scale(1.1);
  }
}

/* Add a glowing border effect */
.nav-link[href="#videos"] {
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
}

.nav-link[href="#videos"]::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    #ff4081,
    #ff9800,
    #00bcd4,
    #9c27b0,
    #ff4081
  );
  border-radius: 22px;
  z-index: -1;
  animation: rainbowBorder 3s linear infinite;
  opacity: 0.7;
}

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

/* Add floating particles effect */
.nav-link[href="#videos"] {
  position: relative;
  overflow: visible;
}

.nav-link[href="#videos"]:hover {
  animation: videoButtonShake 0.5s ease-in-out;
}

@keyframes videoButtonShake {
  0%,
  100% {
    transform: translateY(-2px) scale(1.05) translateX(0);
  }
  10% {
    transform: translateY(-2px) scale(1.05) translateX(-2px);
  }
  20% {
    transform: translateY(-2px) scale(1.05) translateX(2px);
  }
  30% {
    transform: translateY(-2px) scale(1.05) translateX(-2px);
  }
  40% {
    transform: translateY(-2px) scale(1.05) translateX(2px);
  }
  50% {
    transform: translateY(-2px) scale(1.05) translateX(-1px);
  }
  60% {
    transform: translateY(-2px) scale(1.05) translateX(1px);
  }
  70% {
    transform: translateY(-2px) scale(1.05) translateX(-1px);
  }
  80% {
    transform: translateY(-2px) scale(1.05) translateX(1px);
  }
  90% {
    transform: translateY(-2px) scale(1.05) translateX(0);
  }
}

/* Videos nav item container */
.videos-nav-item {
  position: relative;
  display: inline-block;
}

/* HOT badge styling */
.hot-badge {
  position: absolute;
  top: -8px;
  right: -12px;
  background: linear-gradient(135deg, #ff4444 0%, #ff6b6b 100%);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(255, 68, 68, 0.5);
  animation: hotBadgePulse 1.5s ease-in-out infinite;
  z-index: 10;
  border: 2px solid white;
}

.hot-badge::before {
  content: "🔥";
  margin-right: 2px;
  animation: fireFlicker 0.8s ease-in-out infinite alternate;
}

@keyframes hotBadgePulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 2px 8px rgba(255, 68, 68, 0.5);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.8),
      0 0 0 3px rgba(255, 68, 68, 0.3);
  }
}

@keyframes fireFlicker {
  0% {
    transform: rotate(-2deg) scale(1);
  }
  100% {
    transform: rotate(2deg) scale(1.1);
  }
}

/* Enhanced Videos button with badge */
.videos-nav-item:hover .hot-badge {
  animation: hotBadgeExcite 0.5s ease-in-out;
}

@keyframes hotBadgeExcite {
  0%,
  100% {
    transform: scale(1.1) rotate(0deg);
  }
  25% {
    transform: scale(1.2) rotate(-5deg);
  }
  75% {
    transform: scale(1.2) rotate(5deg);
  }
}
