
@font-face {
  font-family: 'Pricedown';
  src: url('fonts/pricedown.ttf') format('truetype');
}

.gta-title {
  font-family: 'Pricedown', sans-serif;
  font-size: 64px;
  letter-spacing: 3px;
  color: #ff5ccd; /* Vice City pembe */
  text-shadow:
    2px 2px 0 #00f7ff,
    4px 4px 0 rgba(0,0,0,0.6);
  text-align: center;
}

/* Mobil */
@media (max-width: 768px) {
  .gta-title {
    font-size: 38px;
  }
}



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

body {
  font-family: 'Inter', sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

/* LOADER */
#loader {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 4px;
  font-size: 14px;
  z-index: 999;
  transition: opacity .8s ease, visibility .8s ease;
}

#loader.hide {
  opacity: 0;
  visibility: hidden;
}

/* VIDEO */
.bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -5;
}

/* OVERLAY */
.overlay {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(255,80,160,.08), transparent 40%),
    radial-gradient(circle at 80% 90%, rgba(0,200,255,.06), transparent 40%),
    linear-gradient(180deg, rgba(0,0,0,.65), rgba(0,0,0,.95));
  z-index: -4;
}

/* GRAIN */
.grain {
  position: fixed;
  inset: 0;
  background-image: url("https://grainy-gradients.vercel.app/noise.svg");
  opacity: 0.07;
  pointer-events: none;
  z-index: -3;
}

/* CONTENT */
.content {
  min-height: 100vh;
  padding: 90px 20px;
  text-align: center;
}

/* HERO */
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 86px;
  letter-spacing: 6px;
  color: #f5e6c8;
  text-shadow: 0 0 30px rgba(245,230,200,.15);
}

.hero p {
  margin-top: 18px;
  letter-spacing: 3px;
  font-size: 14px;
  opacity: .75;
}

.hero-buttons {
  margin-top: 45px;
}

.hero-buttons a {
  display: inline-block;
  margin: 10px;
  padding: 16px 44px;
  border-radius: 40px;
  border: 1px solid rgba(245,230,200,.4);
  color: #f5e6c8;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: .4s;
}

.hero-buttons a:hover {
  background: rgba(245,230,200,.9);
  color: #000;
}

/* SECTIONS */
section {
  max-width: 820px;
  margin: 140px auto;
}

h2 {
  font-family: 'Playfair Display', serif;
  letter-spacing: 5px;
  margin-bottom: 25px;
  color: #f5e6c8;
}

.about p {
  font-size: 18px;
  line-height: 1.7;
  opacity: .85;
}

/* SERVICES */
.services {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.service {
  font-size: 18px;
  letter-spacing: 4px;
  padding: 26px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  opacity: .8;
  transition: .4s;
}

.service:hover {
  opacity: 1;
  color: #f5e6c8;
}

/* FOOTER */
footer {
  margin-top: 160px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: .45;
}

/* GLITCH (ÇOK HAFİF) */
.glitch {
  position: relative;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  opacity: .35;
}

.glitch::before {
  color: #ff5fbf;
  transform: translate(2px,0);
}

.glitch::after {
  color: #5fd9ff;
  transform: translate(-2px,0);
}

/* MOBILE */
@media(max-width:600px) {
  .hero h1 {
    font-size: 48px;
    letter-spacing: 4px;
  }
}


.gta-title {
  font-family: 'Pricedown', sans-serif;
  font-size: 64px;
  letter-spacing: 3px;
  text-align: center;

  /* Vice City renkleri */
  color: #ff5ccd; /* neon pembe */

  /* Derinlik & premium görünüm */
  text-shadow:
    2px 2px 0 #00f7ff,
    4px 4px 0 rgba(0, 0, 0, 0.6);

  margin: 0;
}

@media (max-width: 768px) {
  .gta-title {
    font-size: 38px;
    letter-spacing: 2px;
  }
}


.top-logo {
  position: fixed;
  bottom: 135px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}

.top-logo img {
  width: 170px;
  height: auto;
  max-width: 70vw;
  filter: drop-shadow(0 0 20px rgba(255, 0, 150, 0.6));
}

/* Mobil */
@media (max-width: 768px) {
  .top-logo img {
    width: 130px;
  }
}

@keyframes neonGlow {
  from {
    filter: drop-shadow(0 0 10px rgba(255, 0, 150, 0.4));
  }
  to {
    filter: drop-shadow(0 0 30px rgba(0, 255, 255, 0.8));
  }
}
