:root {
  --bg: #000;
  --text: #fff;
  --muted: rgba(255,255,255,.70);
  --muted2: rgba(255,255,255,.60);
  --muted3: rgba(255,255,255,.80);
  --border: rgba(255,255,255,.10);
  --border2: rgba(255,255,255,.20);
  --ring: rgba(255,255,255,.08);
  --container: 80rem;
  
  /* Enhanced colors */
  --purple-500: rgb(168, 85, 247);
  --purple-600: rgb(147, 51, 234);
  --fuchsia-500: rgb(217, 70, 239);
  --fuchsia-600: rgb(192, 38, 211);
  --cyan-400: rgb(34, 211, 238);
  --blue-500: rgb(59, 130, 246);
}

* { 
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { 
  scroll-behavior: smooth;
}

html, body { 
  height: 100%;
  overflow-x: hidden;
}

body.site {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { 
  background: rgba(217, 70, 239, 0.3);
  color: #fff;
}

a { 
  color: inherit; 
  text-decoration: none;
  transition: all 0.3s ease;
}

img { 
  display: block; 
  max-width: 100%;
  height: auto;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 2rem;
  }
}

@media (min-width: 768px) {
  .container {
    padding: 0 2.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 3rem;
  }
}

/* ===== PARTICLES BACKGROUND ===== */
.particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.3;
}

/* Mobilde parçacıkları azalt */
@media (max-width: 767px) {
  .particles-container {
    opacity: 0.15;
  }
}

#particlesCanvas {
  width: 100%;
  height: 100%;
}

/* ===== ENHANCED GLOW EFFECTS ===== */
.top-glow {
  pointer-events: none;
  position: fixed;
  left: 0; 
  right: 0; 
  top: 0;
  z-index: 1;
  height: 20rem;
  background: radial-gradient(ellipse at top, rgba(217,70,239,.25) 0%, transparent 70%);
  filter: blur(60px);
}

.ambient-glow {
  pointer-events: none;
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  z-index: 0;
  animation: float 20s ease-in-out infinite;
}

/* Mobilde ambient glow'u kapat */
@media (max-width: 767px) {
  .ambient-glow {
    display: none;
  }
}

.ambient-glow-1 {
  top: 20%;
  right: -10%;
  background: radial-gradient(circle, var(--fuchsia-500), transparent);
  animation-delay: -5s;
}

.ambient-glow-2 {
  bottom: 10%;
  left: -10%;
  background: radial-gradient(circle, var(--purple-500), transparent);
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(50px, -50px) scale(1.1); }
  50% { transform: translate(-30px, 30px) scale(0.9); }
  75% { transform: translate(40px, 20px) scale(1.05); }
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,.70);
  backdrop-filter: blur(20px) saturate(180%);
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  gap: 2rem;
}

@media (min-width: 768px) {
  .header-inner {
    padding: 0.5rem 0;
  }
}

@media (min-width: 768px) {
  .header-inner {
    padding: 0.5rem 0;
  }
}

@media (min-width: 1024px) {
  .header-inner {
    padding: 0.5rem 0;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  position: relative;
  z-index: 10;
}

.brand-logo-wrapper {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
}

.brand-logo {
  width: 100%;
  height: 100%;
  border-radius: .875rem;
  object-fit: cover;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
  margin-left: 5px;
}

.brand:hover .brand-logo {
  transform: scale(1.05) rotate(5deg);
}

.brand-logo-glow {
  position: absolute;
  inset: -5px;
  background: linear-gradient(135deg, var(--fuchsia-500), var(--purple-500));
  border-radius: 1rem;
  opacity: 0;
  filter: blur(15px);
  transition: opacity 0.3s ease;
  z-index: 1;
}

.brand:hover .brand-logo-glow {
  opacity: 0.6;
}

.brand-name {
  font-family: Orbitron, sans-serif;
  font-weight: 900;
  letter-spacing: .03em;
  font-size: 1.125rem;
  background: linear-gradient(135deg, #fff, rgba(255,255,255,0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav {
  display: none;
  gap: 3rem;
  font-size: .9rem;
  align-items: center;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .nav {
    gap: 3.5rem;
    margin-right: 2%;
  }
}

.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  opacity: .80;
  transition: opacity .3s ease;
}

.nav-link:hover {
  opacity: 1;
}

.nav-link-underline {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--fuchsia-500), var(--purple-500));
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover .nav-link-underline {
  width: 100%;
}

.nav-link-cta {
  padding: .5rem 1.25rem;
  background: linear-gradient(135deg, var(--fuchsia-500), var(--purple-500));
  border-radius: .75rem;
  opacity: 1;
  box-shadow: 0 4px 15px rgba(217, 70, 239, 0.3);
  transition: all 0.3s ease;
}

.nav-link-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 70, 239, 0.4);
}

.nav-link-cta .nav-link-underline {
  display: none;
}

.menu-btn {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--border2);
  background: rgba(255,255,255,.05);
  color: var(--text);
  border-radius: .75rem;
  padding: .65rem .75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-right: 5px;
}

.menu-btn:hover {
  background: rgba(255,255,255,.08);
  border-color: var(--border2);
}

.menu-btn-line {
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-btn[aria-expanded="true"] .menu-btn-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-btn[aria-expanded="true"] .menu-btn-line:nth-child(2) {
  opacity: 0;
}

.menu-btn[aria-expanded="true"] .menu-btn-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mnav {
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,.95);
  backdrop-filter: blur(20px);
  animation: slideDown 0.3s ease;
}

.mnav.is-hidden { 
  display: none; 
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mnav-inner {
  display: grid;
  gap: .5rem;
  padding: 1rem 0;
  font-size: .9rem;
}

.mnav-link { 
  padding: .75rem 1rem;
  border-radius: .5rem;
  transition: all 0.3s ease;
  font-weight: 600;
}

.mnav-link:hover {
  background: rgba(255,255,255,.05);
  padding-left: 1.5rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100svh; /* Safari için */
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -10;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 30s ease-in-out infinite alternate;
}

/* Mobilde animasyonu durdur */
@media (max-width: 767px) {
  .hero-bg-img {
    animation: none;
    object-position: center;
  }
}

@keyframes kenburns {
  0% { transform: scale(1) translateX(0); }
  100% { transform: scale(1.1) translateX(-2%); }
}

.hero-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.95) 0%,
    rgba(0,0,0,.75) 40%,
    rgba(0,0,0,.4) 70%,
    rgba(0,0,0,.2) 100%
  );
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(217,70,239,.15), transparent 50%);
}

.hero-inner {
  position: relative;
  padding: 6rem 0 4rem;
  max-width: 1000px;
  text-align: center;
}

@media (min-width: 768px) {
  .hero-inner {
    padding: 10rem 0 8rem;
    text-align: left;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border2);
  border-radius: 2rem;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, var(--fuchsia-500), var(--purple-500));
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
  font-family: Orbitron, sans-serif;
  font-weight: 900;
  letter-spacing: -.03em;
  font-size: clamp(2rem, 8vw, 4.5rem);
  line-height: 1.1;
  margin: 0 0 1.5rem;
}

.hero-title-line {
  display: block;
  animation: fadeInUp 0.8s ease both;
}

.hero-title-line:nth-child(1) {
  animation-delay: 0.3s;
}

.hero-title-line:nth-child(2) {
  animation-delay: 0.5s;
}

.hero-title-gradient {
  background: linear-gradient(135deg, var(--fuchsia-500), var(--purple-500), var(--cyan-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: fadeInUp 0.8s ease 0.5s both, shimmer 8s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  margin: 0 0 2rem;
  max-width: 600px;
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: rgba(255,255,255,.85);
  line-height: 1.6;
  animation: fadeInUp 0.8s ease 0.7s both;
}

@media (min-width: 768px) {
  .hero-subtitle {
    margin: 0 0 2rem;
  }
}

/* Mobilde subtitle'ı ortala */
@media (max-width: 767px) {
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease 0.9s both;
  justify-content: center;
}

@media (min-width: 768px) {
  .hero-actions {
    justify-content: flex-start;
  }
}

.hero-stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 1.1s both;
  justify-content: center;
}

@media (min-width: 768px) {
  .hero-stats {
    justify-content: flex-start;
  }
}

.hero-stat {
  text-align: center;
  min-width: 70px;
}

.hero-stat-number {
  font-family: Orbitron, sans-serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  background: linear-gradient(135deg, #fff, rgba(255,255,255,0.6));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.hero-stat-label {
  font-size: clamp(0.75rem, 2vw, 0.85rem);
  color: var(--muted2);
  margin-top: .25rem;
}

.hero-stat-divider {
  width: 1px;
  background: var(--border2);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  opacity: 0.6;
  animation: bounce 2s ease infinite;
}

/* Mobilde scroll indicator'ı gizle */
@media (max-width: 767px) {
  .hero-scroll-indicator {
    display: none;
  }
}

.hero-scroll-text {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.hero-scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== MARQUEE ===== */
.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,.80);
  backdrop-filter: blur(10px);
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  width: 100%;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 1.5rem 0;
  font-size: .9rem;
  color: rgba(255,255,255,.60);
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-label {
  font-weight: 700;
  color: rgba(255,255,255,.80);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .75rem;
}

.marquee-sep {
  width: 3rem;
  height: 1px;
  background: var(--border);
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  color: rgba(255,255,255,.70);
  transition: color 0.3s ease;
}

.marquee-icon {
  opacity: 0.5;
}

/* ===== SECTIONS ===== */
.section {
  padding: 4rem 0;
  position: relative;
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }
}

.section-news {
  background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(43,10,57,0.3), rgba(0,0,0,0));
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .section-head {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
  }
}

.section-badge {
  display: inline-block;
  padding: .35rem .85rem;
  background: rgba(217,70,239,.15);
  border: 1px solid rgba(217,70,239,.3);
  border-radius: 2rem;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--fuchsia-500);
  margin-bottom: .75rem;
}

.section-title {
  font-family: Orbitron, sans-serif;
  font-weight: 900;
  letter-spacing: -.02em;
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0;
  line-height: 1.2;
}

.section-description {
  margin-top: .5rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  font-weight: 700;
  color: rgba(255,255,255,.70);
  padding: .75rem 1.25rem;
  border: 1px solid var(--border2);
  border-radius: .75rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.section-link:hover {
  color: #fff;
  border-color: var(--border2);
  background: rgba(255,255,255,.05);
  transform: translateX(5px);
}

.section-link svg {
  transition: transform 0.3s ease;
}

.section-link:hover svg {
  transform: translateX(3px);
}

/* ===== GRIDS ===== */
.grid { 
  display: grid; 
  gap: 2rem;
}

.grid-games { 
  grid-template-columns: 1fr;
}

.grid-news { 
  grid-template-columns: 1fr;
}

/* ===== CARDS ===== */
.card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  overflow: hidden;
  background: linear-gradient(to bottom, rgba(255,255,255,.04), rgba(255,255,255,.02));
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(217,70,239,.05), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--border2);
  box-shadow: 0 20px 40px rgba(0,0,0,.5), 0 0 0 1px var(--border2);
}

.card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  padding: .4rem .85rem;
  border-radius: 2rem;
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  backdrop-filter: blur(10px);
}

.card-badge-featured {
  background: linear-gradient(135deg, var(--fuchsia-500), var(--purple-500));
  color: #fff;
  box-shadow: 0 4px 15px rgba(217,70,239,.4);
}

.card-badge-soon {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
}

.card-media {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,.03);
}

.card-media-16x10 {
  aspect-ratio: 16 / 10;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover .card-img {
  transform: scale(1.08);
}

.card-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6), transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover .card-media-overlay {
  opacity: 1;
}

.card-play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.card:hover .card-play-btn {
  transform: scale(1);
}

.card-lock-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 2px solid rgba(255,255,255,.3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.card-media-ring {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px var(--border);
  pointer-events: none;
}

.card-body { 
  padding: 1.5rem;
  position: relative;
  z-index: 1;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .75rem;
  margin-bottom: .75rem;
}

.card-platform,
.card-genre {
  padding: .3rem .7rem;
  background: rgba(255,255,255,.08);
  border-radius: .5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.card-title {
  margin: 0 0 .5rem;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.3;
}

.card-text {
  margin: 0 0 1rem;
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.6;
}

.card-stats {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.card-stat {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 700;
  color: var(--muted);
}

.card-stat svg {
  color: var(--fuchsia-500);
}

.card-actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

/* Neon card animation */
.neon-card {
  position: relative;
  animation: neonPulse 6s ease-in-out infinite;
}

@keyframes neonPulse {
  0%, 100% {
    box-shadow: 
      0 0 20px rgba(244, 114, 182, 0.3),
      0 0 40px rgba(129, 140, 248, 0.2),
      0 20px 40px rgba(0,0,0,.4);
  }
  25% {
    box-shadow: 
      0 0 25px rgba(56, 189, 248, 0.4),
      0 0 50px rgba(59, 130, 246, 0.3),
      0 20px 40px rgba(0,0,0,.4);
  }
  50% {
    box-shadow: 
      0 0 30px rgba(52, 211, 153, 0.4),
      0 0 60px rgba(129, 230, 217, 0.3),
      0 20px 40px rgba(0,0,0,.4);
  }
  75% {
    box-shadow: 
      0 0 25px rgba(251, 191, 36, 0.4),
      0 0 50px rgba(248, 113, 113, 0.3),
      0 20px 40px rgba(0,0,0,.4);
  }
}

.neon-card:hover {
  transform: translateY(-12px);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border-radius: 1rem;
  padding: .875rem 1.5rem;
  font-weight: 800;
  font-size: .9rem;
  border: 1px solid transparent;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* Mobilde daha kolay dokunma */
@media (max-width: 767px) {
  .btn {
    padding: 1rem 1.75rem;
    font-size: .95rem;
    min-height: 48px; /* Dokunma hedefi */
  }
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: .6rem 1rem;
  border-radius: .75rem;
  font-size: .85rem;
  min-height: auto;
}

.btn-icon {
  transition: transform 0.3s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn:hover .btn-icon {
  transform: translateX(3px);
}

.btn-primary {
  background: #fff;
  color: #000;
  box-shadow: 0 4px 15px rgba(255,255,255,.2);
}

.btn-primary:hover {
  background: rgba(255,255,255,.95);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,255,255,.3);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: var(--border2);
}

.btn-ghost:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.3);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: var(--border2);
}

.btn-outline:hover {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.3);
}

.btn-gradient {
  color: #fff;
  background: linear-gradient(135deg, var(--fuchsia-500), var(--purple-500));
  box-shadow: 0 8px 20px rgba(217,70,239,.3);
  border: none;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(217,70,239,.4);
}

.btn-outline-fuchsia {
  border: 1px solid rgba(232,121,249,.5);
  background: rgba(0,0,0,.3);
  color: rgba(251,207,232,.95);
  backdrop-filter: blur(10px);
}

.btn-outline-fuchsia:hover {
  border-color: rgba(232,121,249,.8);
  background: rgba(232,121,249,.15);
  transform: translateY(-2px);
}

.btn-shine::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
  transition: left 0.5s ease;
}

.btn-shine:hover::before {
  left: 100%;
}

/* Mobilde shine efektini kapat */
@media (max-width: 767px) {
  .btn-shine::before {
    display: none;
  }
}

/* ===== STUDIO ===== */
.studio {
  padding: 5rem 0;
  background: linear-gradient(to bottom, #1a0a2e 0%, #2b0a39 50%, #000 100%);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .studio {
    padding: 8rem 0;
  }
}

.studio::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2), transparent);
}

.studio-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .studio-inner {
    gap: 4rem;
  }
}

.studio-title {
  margin: 0 0 1.5rem;
  font-family: Orbitron, sans-serif;
  font-weight: 900;
  letter-spacing: -.02em;
  font-size: clamp(1.75rem, 5vw, 3rem);
  line-height: 1.2;
}

.studio-text {
  margin: 0 0 1.5rem;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: rgba(255,255,255,.85);
  line-height: 1.7;
}

.studio-features {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .studio-features {
    gap: 1.5rem;
  }
}

.studio-feature {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: 1rem;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .studio-feature {
    padding: 1.25rem;
  }
}

.studio-feature:hover {
  background: rgba(255,255,255,.05);
  border-color: var(--border2);
}

@media (min-width: 768px) {
  .studio-feature:hover {
    transform: translateX(8px);
  }
}

.studio-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: .75rem;
  background: linear-gradient(135deg, rgba(217,70,239,.2), rgba(168,85,247,.2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fuchsia-500);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .studio-feature-icon {
    width: 48px;
    height: 48px;
  }
}

.studio-feature-title {
  margin: 0 0 .25rem;
  font-size: .95rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .studio-feature-title {
    font-size: 1.05rem;
  }
}

.studio-feature-text {
  margin: 0;
  font-size: .85rem;
  color: var(--muted);
}

@media (min-width: 768px) {
  .studio-feature-text {
    font-size: .9rem;
  }
}

.studio-media {
  position: relative;
  order: -1;
}

@media (min-width: 768px) {
  .studio-media {
    order: 0;
  }
}

.studio-media-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  border: 1px solid var(--border);
}

@media (min-width: 768px) {
  .studio-media-wrapper {
    border-radius: 1.5rem;
  }
}

.studio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.studio-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6), transparent 60%);
}

.studio-glow {
  position: absolute;
  inset: -30px;
  background: linear-gradient(135deg, var(--fuchsia-500), var(--purple-500));
  opacity: 0.15;
  filter: blur(60px);
  z-index: -1;
  display: none;
}

@media (min-width: 768px) {
  .studio-glow {
    display: block;
  }
}

/* ===== NEWS CARDS ===== */
.news-card {
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  overflow: hidden;
  background: rgba(255,255,255,.02);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card:hover {
  transform: translateY(-8px);
  border-color: var(--border2);
  background: rgba(255,255,255,.04);
  box-shadow: 0 20px 40px rgba(0,0,0,.4);
}

.news-media-16x10 { 
  aspect-ratio: 16 / 10; 
  overflow: hidden;
  position: relative;
}

.news-img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card:hover .news-img {
  transform: scale(1.08);
}

.news-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7), transparent 50%);
}

.news-body { 
  padding: 1.5rem;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: .75rem;
}

.news-date { 
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  color: var(--muted2);
  font-weight: 600;
}

.news-category {
  padding: .3rem .7rem;
  background: rgba(217,70,239,.15);
  border: 1px solid rgba(217,70,239,.3);
  border-radius: .5rem;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--fuchsia-500);
}

.news-title { 
  margin: 0 0 .75rem;
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1.4;
}

.news-excerpt {
  margin: 0 0 1rem;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.6;
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  font-weight: 700;
  color: var(--fuchsia-500);
  transition: all 0.3s ease;
}

.news-link:hover {
  gap: .75rem;
}

.news-link svg {
  transition: transform 0.3s ease;
}

.news-link:hover svg {
  transform: translateX(3px);
}

/* ===== CAREERS ===== */
.careers {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, #000 0%, #1a0a2e 50%, #2b0a39 100%);
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .careers {
    padding: 8rem 0;
  }
}

.careers::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2), transparent);
}

.careers-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .careers-inner {
    gap: 4rem;
  }
}

.careers-title {
  font-family: Orbitron, sans-serif;
  font-weight: 900;
  letter-spacing: -.02em;
  font-size: clamp(1.75rem, 5vw, 3rem);
  margin: 0 0 1.5rem;
  line-height: 1.2;
}

.careers-text {
  margin: 0 0 1rem;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
}

.careers-benefits {
  margin: 2rem 0;
  display: grid;
  gap: .875rem;
}

@media (min-width: 768px) {
  .careers-benefits {
    gap: 1rem;
  }
}

.careers-benefit {
  display: flex;
  align-items: center;
  gap: .875rem;
  padding: .875rem;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: .875rem;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: .9rem;
}

@media (min-width: 768px) {
  .careers-benefit {
    padding: 1rem;
    gap: 1rem;
    font-size: 1rem;
  }
}

.careers-benefit:hover {
  background: rgba(255,255,255,.05);
  border-color: var(--border2);
}

@media (min-width: 768px) {
  .careers-benefit:hover {
    transform: translateX(8px);
  }
}

.careers-benefit-icon {
  width: 36px;
  height: 36px;
  border-radius: .625rem;
  background: linear-gradient(135deg, rgba(217,70,239,.2), rgba(168,85,247,.2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fuchsia-500);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .careers-benefit-icon {
    width: 40px;
    height: 40px;
  }
}

.careers-actions {
  margin-top: 2rem;
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .careers-actions {
    gap: 1rem;
  }
}

.careers-media {
  order: -1;
}

@media (min-width: 768px) {
  .careers-media {
    order: 0;
  }
}

.careers-media-wrapper {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}

@media (min-width: 768px) {
  .careers-media-wrapper {
    border-radius: 1.5rem;
  }
}

.careers-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.careers-glow {
  position: absolute;
  inset: -30px;
  background: linear-gradient(135deg, var(--purple-500), var(--fuchsia-500));
  opacity: 0.15;
  filter: blur(60px);
  z-index: -1;
  display: none;
}

@media (min-width: 768px) {
  .careers-glow {
    display: block;
  }
}

/* ===== CONTACT ===== */
.contact {
  border-top: 1px solid var(--border);
  background: linear-gradient(to bottom, rgba(0,0,0,.9), #000);
  padding-top: 4rem;
  position: relative;
}

@media (min-width: 768px) {
  .contact {
    padding-top: 6rem;
  }
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .contact-inner {
    gap: 4rem;
    padding-bottom: 6rem;
  }
}

.contact-title {
  font-family: Orbitron, sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin: 0 0 1rem;
}

.contact-description {
  margin: 0 0 2rem;
  color: var(--muted);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.7;
}

.contact-info {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: .875rem;
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  background: rgba(255,255,255,.05);
  border-color: var(--border2);
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: .625rem;
  background: linear-gradient(135deg, rgba(217,70,239,.2), rgba(168,85,247,.2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fuchsia-500);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .contact-info-icon {
    width: 44px;
    height: 44px;
  }
}

.contact-info-text {
  font-weight: 600;
  font-size: .9rem;
  color: rgba(255,255,255,.9);
  transition: color 0.3s ease;
  word-break: break-word;
}

@media (min-width: 768px) {
  .contact-info-text {
    font-size: 1rem;
  }
}

.contact-info-item:hover .contact-info-text {
  color: #fff;
}

.contact-social {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.contact-social-label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted2);
  margin-bottom: 1rem;
}

.contact-social-links {
  display: flex;
  gap: 1rem;
}

.contact-social-link {
  width: 48px;
  height: 48px;
  border-radius: .875rem;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.contact-social-link:active {
  transform: scale(0.95);
}

.contact-social-link:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--border2);
  transform: translateY(-4px);
}

.contact-form {
  display: grid;
  gap: 1.25rem;
  align-self: start;
}

@media (min-width: 768px) {
  .contact-form {
    gap: 1.5rem;
  }
}

.form-group {
  display: grid;
  gap: .5rem;
}

.form-label {
  font-size: .85rem;
  font-weight: 700;
  color: var(--muted);
}

.field {
  width: 100%;
  border-radius: .875rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  outline: none;
  color: var(--text);
  font-size: .95rem;
  transition: all 0.3s ease;
  font-family: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.field::placeholder {
  color: var(--muted2);
}

.field:focus {
  background: rgba(255,255,255,.06);
  border-color: var(--fuchsia-500);
  box-shadow: 0 0 0 3px rgba(217,70,239,.1);
}

.field-textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .field-textarea {
    min-height: 140px;
  }
}

.hp { 
  display: none; 
}

.form-msg {
  margin: 0;
  font-size: .9rem;
  color: var(--muted);
  padding: .75rem;
  border-radius: .5rem;
  text-align: center;
}

.form-msg.success {
  background: rgba(34,197,94,.1);
  color: rgb(134,239,172);
  border: 1px solid rgba(34,197,94,.3);
}

.form-msg.error {
  background: rgba(239,68,68,.1);
  color: rgb(252,165,165);
  border: 1px solid rgba(239,68,68,.3);
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,.98);
  padding: 4rem 0 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: 1.2fr 2.5fr;
    gap: 5rem;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-logo-wrapper {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
}

.footer-logo {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: .75rem;
  object-fit: cover;
}

.footer-tagline {
  margin: 0;
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: .75rem;
  margin-top: .5rem;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: .75rem;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social-link:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--border2);
  transform: translateY(-2px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2.5rem;
}

@media (min-width: 640px) {
  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-column-title {
  margin: 0;
  font-size: .85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #fff;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.footer-link {
  font-size: .9rem;
  color: var(--muted);
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.footer-link:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-copyright {
  margin: 0;
  font-size: .85rem;
  color: var(--muted2);
  font-weight: 600;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-bottom-links {
    justify-content: flex-end;
  }
}

.footer-bottom-link {
  font-size: .85rem;
  color: var(--muted2);
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-bottom-link:hover {
  color: #fff;
}

.footer-divider {
  color: var(--muted2);
  user-select: none;
}

/* ===== SCROLL ANIMATIONS ===== */
[data-scroll] {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-scroll="fade-up"] {
  transform: translateY(40px);
}

[data-scroll="fade-down"] {
  transform: translateY(-40px);
}

[data-scroll="fade-left"] {
  transform: translateX(40px);
}

[data-scroll="fade-right"] {
  transform: translateX(-40px);
}

[data-scroll].is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ===== RESPONSIVE ===== */
@media (min-width: 640px) {
  .grid-games { 
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .nav { 
    display: flex;
    margin-right: 2%;
  }
  
  .menu-btn { 
    display: none;
  }

  .hero-inner { 
    padding: 10rem 0 8rem;
  }

  .grid-news { 
    grid-template-columns: repeat(2, 1fr);
  }

  .studio-inner { 
    grid-template-columns: 1fr 1fr;
  }

  .careers-inner { 
    grid-template-columns: 1fr 1fr;
  }

  .contact-inner { 
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .grid-games { 
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-news { 
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== MOBILE-SPECIFIC OPTIMIZATIONS ===== */
@media (max-width: 767px) {
  /* Touch optimizations */
  * {
    -webkit-tap-highlight-color: rgba(217, 70, 239, 0.1);
  }

  /* Prevent text selection on interactive elements */
  button, a {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
  }

  /* Optimize animations for mobile */
  .card:hover {
    transform: none;
  }

  .card:active {
    transform: scale(0.98);
  }

  /* Disable hover effects on mobile */
  .studio-feature:hover,
  .careers-benefit:hover,
  .btn:hover {
    transform: none;
  }

  /* Mobile grid improvements */
  .grid {
    gap: 1.5rem;
  }

  /* Marquee speed for mobile */
  @keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .hero-bg-img {
    animation: none !important;
  }
  
  .particles-container {
    display: none;
  }
}