/* =====================================================================
   Hello Kitty Planet - Winter Version Design
   Theme: Winter Wonderland | Style: Premium Glassmorphism (Ice)
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Winter & Ice Palette */
  --color-ice-white: #ffffff;
  --color-ice-blue-light: #e0f7fa;
  --color-ice-blue-med: #b2ebf2;
  --color-ice-blue-dark: #00bcd4;
  --color-frost-pink: #f8bbd0;
  /* Cool Pink */
  --color-neon-pink: #ff4081;
  /* Vibrant Pink Accent */
  --color-soft-rose: #fff0f5;
  /* Background Tint */
  --color-deep-blue: #0277bd;
  /* Text/Accent */
  --color-night-blue: #01579b;
  /* Darker Text */

  --font-primary: 'Nunito', sans-serif;

  /* Glass/Ice Effects */
  --glass-bg: rgba(255, 255, 255, 0.45);
  --glass-blur: blur(24px);
  --glass-border: 1px solid rgba(255, 255, 255, 0.8);

  /* Shadows & Glows */
  --shadow-soft: 0 12px 48px rgba(0, 188, 212, 0.15);
  --shadow-button: 0 4px 14px rgba(0, 188, 212, 0.4);
  --glow-ice: 0 0 20px rgba(178, 235, 242, 0.6);
  --glow-rose: 0 0 25px rgba(248, 187, 208, 0.5);
  /* Pink Glow */

  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

html {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: var(--font-primary);
  /* Solid background matching footer end color to prevent bottom bar */
  background: #ffe4e1;
  color: var(--color-night-blue);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  /* Snowflake Cursor */
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M12 2L14 7L19 7L15 11L17 16L12 13L7 16L9 11L5 7L10 7L12 2Z" fill="%2381d4fa" stroke="%230277bd" stroke-width="1.5"/></svg>') 12 12, auto;
}

/* Hover Cursor - Sparkle */
a:hover,
button:hover,
.platform-btn:hover,
.dlc-btn:hover,
.get-btn:hover,
.thumbnail:hover,
.character-icon:hover {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M16 2L18.5 10L26 10L20 15L22.5 23L16 18L9.5 23L12 15L6 10L13.5 10L16 2Z" fill="%23f48fb1" stroke="%23ec407a" stroke-width="1.5"/></svg>') 16 16, pointer;
}

/* ────────────────────────────────────────────────
   HEADER - Frosty Look
───────────────────────────────────────────────── */

.header {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 3px solid rgba(255, 192, 203, 0.3);
  box-shadow:
    0 4px 30px rgba(179, 229, 252, 0.3),
    0 0 40px rgba(255, 182, 193, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.4rem 1.5rem;
  transition: var(--transition);
}

.header.scrolled {
  padding: 0.3rem 1.5rem;
  background: rgba(255, 255, 255, 0.85);
  /* Whiter when scrolled */
  box-shadow: 0 10px 40px rgba(1, 87, 155, 0.15);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  gap: 1rem;
}

.menu-toggle {
  display: none;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: var(--color-deep-blue);
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 2rem;
  flex: 0;
  list-style: none;
  /* ← nokta vuruşu */
}

.nav-links a {
  color: var(--color-deep-blue);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  padding: 5px 10px;
  border-radius: 20px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-ice-blue-dark);
  background: rgba(224, 247, 250, 0.5);
  text-shadow: 0 0 15px rgba(79, 195, 247, 0.5);
}

.logo {
  flex: 1;
  display: flex;
  justify-content: center;
}

.logo img {
  height: 140px;
  margin: -30px 0;
  /* Significantly larger logo to overcome internal image whitespace */
  width: auto;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.8));
}

.header.scrolled .logo img {
  height: 90px;
  margin: -15px 0;
}

.social-links {
  display: flex;
  gap: 1rem;
  flex: 1;
  justify-content: flex-end;
}

.social-links a {
  color: white;
  background: var(--color-ice-blue-dark);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 188, 212, 0.3);
}

.social-links a:hover {
  transform: translateY(-3px) rotate(8deg);
  background: var(--color-frost-pink);
  box-shadow: 0 6px 15px rgba(248, 187, 208, 0.6);
}

.social-links svg {
  width: 20px;
  height: 20px;
}

/* ────────────────────────────────────────────────
   HERO - Winter Gradient Overlay
───────────────────────────────────────────────── */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  /* Full screen */
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  /* Content at bottom */
  justify-content: center;
  /* Fallback icy background */
  background: radial-gradient(circle at center, #e0f7fa 0%, #b3e5fc 100%);
}

.hero::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 400px;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 30%,
      rgba(255, 255, 255, 0.7) 60%,
      rgba(255, 255, 255, 0.95) 85%,
      #ffffff 100%);
  z-index: 3;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

/* Vignette Effect on Video */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(ellipse at center,
      transparent 0%,
      transparent 40%,
      rgba(0, 0, 0, 0.3) 80%,
      rgba(0, 0, 0, 0.6) 100%);
  pointer-events: none;
}

/* Ice Overlay on Video */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  /* Gradient from clear to snowy white at bottom */
  background: linear-gradient(to bottom,
      rgba(227, 242, 253, 0.1) 0%,
      rgba(227, 242, 253, 0.3) 60%,
      rgba(255, 255, 255, 0.95) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding-bottom: 8vh;
  width: 100%;
  max-width: 1200px;
  padding-left: 1rem;
  padding-right: 1rem;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  color: #0277bd;
  /* Deep blue text */
  text-shadow:
    0 2px 0 #fff,
    0 5px 20px rgba(179, 229, 252, 0.8),
    0 0 60px rgba(255, 182, 193, 0.4);
  margin-bottom: 30px;
  line-height: 1.1;
  letter-spacing: -1px;
  animation: floatTitle 4s ease-in-out infinite;
}

@keyframes floatTitle {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.subtitle-winter {
  font-size: 0.4em;
  color: var(--color-frost-pink);
  text-transform: uppercase;
  letter-spacing: 4px;
  display: block;
  margin-top: 10px;
  background: linear-gradient(90deg, #00bcd4, #ec407a);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

/* PREMIUM BUTTONS - The requested "Quality" improvement */
.platform-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.platform-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 50px;
  /* Pill shape */

  /* Glass + Gradient Background */
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(225, 245, 254, 0.95) 100%);
  backdrop-filter: blur(10px);
  border: 2px solid white;

  color: var(--color-deep-blue);
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;

  /* 3D-ish feel shadows */
  box-shadow:
    0 10px 25px rgba(2, 119, 189, 0.15),
    inset 0 -4px 0 rgba(0, 0, 0, 0.03);
  /* Subtle inset for depth */

  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* Bouncy transition */
  position: relative;
  overflow: hidden;
}

/* Shine effect on hover */
.platform-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  transition: 0.5s;
}

.platform-btn:hover::before {
  left: 100%;
}

.platform-btn:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow:
    0 15px 35px rgba(2, 119, 189, 0.25),
    0 0 20px rgba(178, 235, 242, 0.6);
  border-color: var(--color-ice-blue-med);
  color: var(--color-ice-blue-dark);
}

.platform-btn svg {
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease;
}

.platform-btn:hover svg {
  transform: rotate(10deg) scale(1.1);
}

/* Individual Brand Colors (Subtle border glow on hover) */
.platform-btn.apple:hover {
  border-color: #ff80ab;
  color: #d81b60;
}

.platform-btn.nintendo:hover {
  border-color: #ff5252;
  color: #d32f2f;
}

.platform-btn.steam:hover {
  border-color: #4fc3f7;
  color: #0288d1;
}

.platform-btn.playstation:hover {
  border-color: #448aff;
  color: #1565c0;
}

/* ────────────────────────────────────────────────
   DLC SECTION - Frost Card
───────────────────────────────────────────────── */
.dlc-section {
  background: linear-gradient(180deg,
      #ffffff 0%,
      #fef9fb 12%,
      #fdf3f7 24%,
      #fcedf4 36%,
      #fbe7f1 48%,
      #fae1ed 60%,
      #f9dbe9 72%,
      #f9cedd 86%,
      #f8bbd0 100%);
  padding: 8rem 2rem;
  position: relative;
}

/* Soft gradient transition from hero */


.dlc-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 20;
}

.dlc-image {
  flex: 1;
  min-width: 320px;
}

.dlc-image img {
  width: 100%;
  border-radius: 30px;
  /* Card Depth */
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.1),
    0 0 0 8px rgba(255, 255, 255, 0.6);
  /* White frame */
  transition: transform 0.5s ease;
}

.dlc-image img:hover {
  transform: rotate(-1deg) scale(1.02);
}

.dlc-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #8e24aa;
  /* Purple/Pink winter tone */
  margin-bottom: 0.5rem;
}

.dlc-subtitle {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-ice-blue-dark);
  margin-bottom: 1.5rem;
}

.dlc-description {
  color: #455a64;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.dlc-availability {
  color: var(--color-deep-blue);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  padding: 10px 20px;
  background: rgba(225, 245, 254, 0.5);
  border-radius: 12px;
  display: inline-block;
}

/* DLC Buttons Grid */
.dlc-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.dlc-btn {
  padding: 12px 24px;
  border-radius: 25px;
  background: white;
  border: 2px solid #e1f5fe;
  color: var(--color-deep-blue);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.dlc-btn:hover {
  background: var(--color-deep-blue);
  color: white;
  border-color: var(--color-deep-blue);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(2, 119, 189, 0.25);
}

/* ────────────────────────────────────────────────
   SWITCH SECTION - Ice Box
───────────────────────────────────────────────── */
.switch-section {
  background: linear-gradient(180deg,
      #e0f7fa 0%,
      #e8f9fb 20%,
      #f0fbfc 40%,
      #f5fcfd 60%,
      #fafefe 80%,
      #ffffff 100%);
  padding: 5rem 2rem 6rem;
  position: relative;
  z-index: 0;
}



.switch-header {
  text-align: center;
  margin-bottom: 4rem;
}

.switch-icon {
  background: linear-gradient(135deg, #f06292, #ef5350);
  /* Reddish pink for Switch */
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 25px rgba(239, 83, 80, 0.4);
  transform: rotate(-10deg);
}

.switch-icon svg {
  width: 40px;
  height: 40px;
  fill: white;
}

.switch-title {
  font-size: 2.8rem;
  color: #c62828;
  font-weight: 900;
}

.switch-products {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.switch-product {
  flex: 1;
  min-width: 300px;
  max-width: 450px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 3rem;
  text-align: center;
  border: 1px solid white;
  box-shadow: 0 20px 40px rgba(176, 190, 197, 0.15);
  transition: transform 0.4s ease;
}

.switch-product:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(176, 190, 197, 0.25);
  background: white;
}

.product-title {
  font-size: 1.8rem;
  color: #37474f;
  margin-bottom: 0.5rem;
}

.product-image img {
  max-height: 220px;
  margin: 2rem 0;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.get-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 800;
  text-decoration: none;
  background: linear-gradient(90deg, #f06292, #ec407a);
  color: white;
  box-shadow: 0 8px 16px rgba(233, 30, 99, 0.3);
  transition: all 0.3s ease;
}

.get-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(233, 30, 99, 0.4);
  filter: brightness(1.1);
}

/* ────────────────────────────────────────────────
   TRY FREE SECTION & OTHERS
───────────────────────────────────────────────── */
.try-free-section {
  background: linear-gradient(180deg,
      #ffffff 0%,
      #fafcfe 10%,
      #f5f9fd 20%,
      #f0f6fc 32%,
      #ebf4fb 44%,
      #e6f1fa 56%,
      #e3f0f9 68%,
      #e0eff8 80%,
      #ddeef7 90%,
      #d9ecf6 100%);
  padding: 8rem 2rem;
  color: white;
  border-radius: 0;
  margin: 0;
  position: relative;
}

/* Soft gradient transition from previous section */


.try-free-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #0277bd;
  position: relative;
  z-index: 20;
}

.try-free-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 20;
}

.try-free-content {
  flex: 1;
  min-width: 300px;
}

.try-free-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #455a64;
}

.apple-arcade-btn {
  background: white;
  color: #111;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 800;
  display: inline-block;
  text-decoration: none;
  margin-top: 1rem;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.apple-arcade-btn:hover {
  background: #e1f5fe;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.try-free-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.try-free-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* ────────────────────────────────────────────────
   CHARACTERS - Snow Cards
───────────────────────────────────────────────── */
.characters-section {
  background: linear-gradient(180deg,
      #e8f4fd 0%,
      #e6f3fd 10%,
      #e4f2fd 20%,
      #e2f1fd 30%,
      #dff0fc 42%,
      #dceefc 54%,
      #d8ecfb 68%,
      #d0e9fa 82%,
      #b3e5fc 100%);
  padding: 8rem 2rem;
  position: relative;
}

/* Soft gradient transition from previous section */


.characters-title {
  text-align: center;
  font-size: 3rem;
  color: #0d47a1;
  margin-bottom: 3rem;
  font-weight: 900;
  position: relative;
  z-index: 20;
}

.character-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  position: relative;
  z-index: 20;
}

.character-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  /* Soft shadow */
  overflow: hidden;
  transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: white;
}

.character-icon:hover {
  transform: scale(1.2);
  border-color: var(--color-ice-blue-dark);
  box-shadow: 0 10px 20px rgba(0, 188, 212, 0.25);
}

.character-showcase {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(15px);
  border-radius: 40px;
  padding: 2rem;
  border: 1px solid white;
  display: flex;
  align-items: center;
  box-shadow: 0 20px 60px rgba(179, 229, 252, 0.4);
  position: relative;
  z-index: 20;
}

.nav-arrow {
  background: #0277bd;
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  transition: 0.3s;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-arrow:hover {
  background: #01579b;
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(2, 119, 189, 0.4);
}

.nav-arrow svg {
  fill: white;
  width: 24px;
  height: 24px;
}

.character-display {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 2rem;
}

.character-image {
  flex: 0 0 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.character-image img {
  height: 350px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.15));
  transition: opacity 0.3s ease, transform 0.4s ease;
}

.character-image:hover img {
  transform: scale(1.05);
}

.character-image .copyright {
  font-size: 0.75rem;
  color: #90a4ae;
  margin-top: 1rem;
}

.character-info h3 {
  font-size: 2.2rem;
  color: #1565c0;
  margin-bottom: 1rem;
}

/* Modals & Utils */
.video-modal,
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: rgba(1, 87, 155, 0.9);
  /* Dark blue overlay */
  backdrop-filter: blur(10px);
}

.video-modal.active,
.lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.video-content {
  position: relative;
  width: 80%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.video-content iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.close-btn {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 40px;
  cursor: pointer;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 0 50px rgba(255, 255, 255, 0.2);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 50px;
  cursor: pointer;
  background: none;
  border: none;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 60px;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  user-select: none;
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.3);
}

.back-to-top {
  background: var(--color-ice-blue-dark);
  color: white;
  /* ... existing structure */
}

/* Media Gallery */
.media-section {
  padding: 8rem 2rem;
  background: linear-gradient(180deg,
      #d9ecf6 0%,
      #dcedf7 12%,
      #e0eff8 24%,
      #e4f1f9 36%,
      #e8f3fa 48%,
      #ecf5fb 60%,
      #eff7fc 72%,
      #f2f8fd 84%,
      #f5fafd 100%);
  position: relative;
  overflow: hidden;
}

/* Soft gradient transition from previous section */


.media-header {
  text-align: center;
  margin-bottom: 3rem;
}

.media-tab {
  background: #0277bd;
  color: white;
  padding: 10px 40px;
  border-radius: 30px;
  font-size: 1.2rem;
  font-weight: 800;
  display: inline-block;
  margin-bottom: 2rem;
}

.media-gallery {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 20;
}

.media-main {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(2, 119, 189, 0.2);
  margin-bottom: 2rem;
  cursor: pointer;
}

.media-main img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.media-main:hover img {
  transform: scale(1.02);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: white;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.play-button svg {
  width: 40px;
  height: 40px;
  fill: #0277bd;
  margin-left: 5px;
}

.character-left,
.character-right {
  position: absolute;
  width: 200px;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

.character-left {
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
}

.character-right {
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
}

.floating {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(-50%);
  }

  50% {
    transform: translateY(-60%);
  }
}

.media-thumbnails {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.thumbnail {
  width: 150px;
  border-radius: 12px;
  border: 3px solid transparent;
  transition: 0.3s;
  cursor: pointer;
  overflow: hidden;
}

.thumbnail img {
  width: 100%;
  display: block;
}

.thumbnail.active,
.thumbnail:hover {
  border-color: #0277bd;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(2, 119, 189, 0.3);
}

/* ────────────────────────────────────────────────
   ABOUT SECTION
───────────────────────────────────────────────── */
.about-section {
  background: linear-gradient(180deg,
      #f5fafd 0%,
      #f6fbfd 10%,
      #f7fbfe 20%,
      #f8fcfe 30%,
      #f9fdff 42%,
      #fafeff 54%,
      #f6fcfe 68%,
      #f0f9ff 82%,
      #e8f4fd 100%);
  padding: 8rem 2rem;
  position: relative;
}

/* Soft gradient transition from previous section */


.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 20;
}

.about-content {
  flex: 1;
  min-width: 300px;
}

.about-content h2 {
  font-size: 2.5rem;
  color: #0277bd;
  margin-bottom: 1.5rem;
  font-weight: 900;
  line-height: 1.2;
}

.about-content p {
  font-size: 1.1rem;
  color: #455a64;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.community-btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(90deg, #00bcd4, #0277bd);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 8px 20px rgba(2, 119, 189, 0.3);
  transition: all 0.3s ease;
}

.community-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(2, 119, 189, 0.4);
}

.about-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.about-image .copyright {
  display: block;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #78909c;
}

/* Footer */
.footer {
  background: linear-gradient(180deg,
      #b3e5fc 0%,
      #c5ebfd 12%,
      #d7f0fd 24%,
      #e9f6fe 36%,
      #f5f0f0 50%,
      #ffeae8 64%,
      #ffe7e4 82%,
      #ffe4e1 100%);
  padding: 6rem 2rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Soft gradient transition from newsletter section */


.footer-logo {
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.footer-logo img {
  height: 200px;
  margin-bottom: -50px;
  filter: drop-shadow(0 5px 15px rgba(255, 255, 255, 0.7));
  margin: 0 auto -50px;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}

.footer-social a {
  background: rgba(255, 255, 255, 0.8);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-deep-blue);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.3, 1.5, 0.5, 1);
}

.footer-social a:hover {
  transform: translateY(-5px) scale(1.1);
  background: var(--color-neon-pink);
  color: white;
  box-shadow: var(--glow-rose);
}

.footer-social svg {
  width: 24px;
  height: 24px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.footer-links a {
  color: #546e7a;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--color-neon-pink);
}

.footer-copyright {
  color: #78909c;
  font-size: 0.9rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* ────────────────────────────────────────────────
   NEWSLETTER
───────────────────────────────────────────────── */
.newsletter-section {
  background: linear-gradient(180deg,
      #f8bbd0 0%,
      #f5c5d8 10%,
      #f2cfe0 20%,
      #efd9e8 30%,
      #ece3f0 42%,
      #e9edf8 54%,
      #e0eef9 68%,
      #d0e9fa 82%,
      #b3e5fc 92%,
      #ffffff 100%);
  padding: 8rem 2rem 10rem;
  position: relative;
  text-align: center;
  overflow: hidden;
}

/* Soft gradient transition from previous section */


.newsletter-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.8) 0%, transparent 20%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.8) 0%, transparent 20%);
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
}

.newsletter-characters {
  position: absolute;
  width: 120%;
  left: -10%;
  bottom: -20%;
  transform: translateY(20%);
  animation: float-characters 18s ease-in-out infinite;
  opacity: 1;
  /* Ensure visible */
  pointer-events: none;
}

@keyframes float-characters {

  0%,
  100% {
    transform: translateY(20%) rotate(0deg);
  }

  50% {
    transform: translateY(0%) rotate(2deg);
  }
}

.newsletter-content {
  position: relative;
  z-index: 20;
  max-width: 800px;
  margin: 0 auto;
}

.newsletter-content h2 {
  font-size: 3rem;
  color: #c2185b;
  /* Deep pink */
  margin-bottom: 1rem;
  font-weight: 900;
}

.newsletter-content p {
  font-size: 1.2rem;
  color: #455a64;
  margin-bottom: 2.5rem;
}

.newsletter-form {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(15px);
  padding: 2.5rem;
  border-radius: 30px;
  border: 4px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 15px 40px rgba(233, 30, 99, 0.15);
}

.newsletter-form label {
  display: block;
  font-weight: 800;
  color: #880e4f;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.email-input-container {
  display: flex;
  gap: 10px;
  background: white;
  padding: 6px;
  border-radius: 50px;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
  border: 2px solid #fce4ec;
}

.email-input-container input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 20px;
  font-size: 1rem;
  outline: none;
  color: #37474f;
}

.subscribe-btn {
  background: linear-gradient(90deg, #ec407a, #d81b60);
  color: white;
  border: none;
  border-radius: 40px;
  padding: 12px 30px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.subscribe-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(233, 30, 99, 0.5);
  filter: brightness(1.1);
}

.success-message {
  margin-top: 1rem;
  color: #00bcd4;
  font-weight: 800;
  display: none;
}

.success-message.show {
  display: block;
  animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ────────────────────────────────────────────────
   RESPONSIVE DESIGN
───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    align-items: center;
  }

  .nav-links.active {
    display: flex;
  }

  .hero-title {
    font-size: 4rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }

  .platform-buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .platform-btn {
    justify-content: center;
  }

  .dlc-container {
    flex-direction: column;
    text-align: center;
  }

  .dlc-buttons {
    justify-content: center;
  }

  .try-free-container {
    flex-direction: column;
    text-align: center;
  }

  .character-showcase {
    flex-direction: column;
    text-align: center;
  }

  .nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }

  .nav-arrow.prev {
    left: -10px;
  }

  .nav-arrow.next {
    right: -10px;
  }

  .email-input-container {
    flex-direction: column;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
  }

  .email-input-container input {
    background: white;
    border-radius: 50px;
    margin-bottom: 10px;
    border: 2px solid #fce4ec;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
  }

  .subscribe-btn {
    width: 100%;
  }

  .nav-links,
  .nav-links li,
  .nav-links a {
    list-style: none !important;
    list-style-type: none !important;
    background: none !important;
    /* pseudo öncesi temizlik */
  }

  .nav-links a::before {
    content: none !important;
    /* eğer ::before ile eklenmişse */
  }
}

/* Character Image Sizing Fix */
.character-image img {
  max-width: 80%; /* Reduce size to hide pixelation */
  height: auto;
  transition: opacity 0.2s ease;
}
