/* Özel CSS Stilleri - Yadu Games */

/* Google Fonts - Inter */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");

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

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: #1f2937;
}

/* Hero Section Özel Stilleri */
.hero-section {
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.9) 0%, rgba(6, 95, 70, 0.8) 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(6, 95, 70, 0.6) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

/* Hover Efektleri */
.nav-link {
  position: relative;
  transition: all 0.3s ease;
}

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

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

/* Button Hover Efektleri */
.btn-primary {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

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

/* Responsive Typography */
@media (max-width: 640px) {
  .hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.3;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
  }

  .hero-subtitle {
    font-size: 2rem;
    line-height: 1.2;
  }
}

@media (min-width: 1025px) {
  .hero-title {
    font-size: 4rem;
    line-height: 1.1;
  }

  .hero-subtitle {
    font-size: 2.5rem;
    line-height: 1.2;
  }
}

/* Mobile Menu Animasyonu */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.mobile-menu.active {
  max-height: 200px;
  transition: max-height 0.3s ease-in;
}

/* Scroll Smooth */
html {
  scroll-behavior: smooth;
}

/* Focus States */
button:focus,
a:focus {
  outline: 2px solid #34d399;
  outline-offset: 2px;
}

/* Loading Animation */
@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.loading {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Responsive Styles */
@media (min-width: 1024px) {
  .lg\:padding-left-203px {
    padding-left: 203px;
  }

  .lg\:margin-left-139px {
    margin-left: 139px;
  }

  .lg\:height-73px {
    height: 73px;
  }

  .lg\:height-129px {
    height: 129px;
  }
}

@media (min-width: 640px) {
  .sm\:height-73px {
    height: 73px;
  }

  .sm\:height-129px {
    height: 129px;
  }
}

/* Card Hover Effect */
.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Shine Effect */
.shine-effect {
  position: relative;
  overflow: hidden;
}

.shine-effect::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}

.shine-effect:hover::before {
  animation: shine 0.75s;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}