/* Steam Loader Pro - Modern CSS Styles */

:root {
  --primary: #1a1a2e;
  --secondary: #16213e;
  --accent: #0f3460;
  --highlight: #a78bfa;
  --text: #ffffff;
  --text-secondary: #cbd5e1;
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --border: #334155;
  --shadow: rgba(0, 0, 0, 0.3);
  --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* ===== LOADING ANIMATIONS ===== */

/* Page Loader */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loader-content {
  text-align: center;
  color: white;
}

.loader-logo {
  margin-bottom: 30px;
  animation: logoFloat 2s ease-in-out infinite;
}

.loader-logo img {
  width: 80px;
  height: 80px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(167, 139, 250, 0.3);
}

.loader-spinner {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.spinner-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-radius: 50%;
  animation: spin 1.5s linear infinite;
}

.spinner-ring:nth-child(1) {
  border-top-color: #a78bfa;
  animation-delay: 0s;
}

.spinner-ring:nth-child(2) {
  border-right-color: #3b82f6;
  animation-delay: -0.5s;
  width: 70%;
  height: 70%;
  top: 15%;
  left: 15%;
}

.spinner-ring:nth-child(3) {
  border-bottom-color: #10b981;
  animation-delay: -1s;
  width: 40%;
  height: 40%;
  top: 30%;
  left: 30%;
}

.loader-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #cbd5e1;
  animation: textPulse 2s ease-in-out infinite;
}

/* ===== HERO ANIMATIONS ===== */

/* Galaxy Background Effect */
.galaxy-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(167, 139, 250, 0.1) 0%, transparent 70%);
}

.stars-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(2px 2px at 20px 30px, #fff, transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(167, 139, 250, 0.8), transparent),
    radial-gradient(1px 1px at 90px 40px, #fff, transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(59, 130, 246, 0.6), transparent),
    radial-gradient(2px 2px at 160px 30px, #fff, transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: twinkle 4s ease-in-out infinite alternate;
}

.stars-1 {
  animation-delay: 0s;
  opacity: 1;
}

.stars-2 {
  animation-delay: -2s;
  opacity: 0.7;
  background-size: 250px 120px;
}

.stars-3 {
  animation-delay: -4s;
  opacity: 0.5;
  background-size: 300px 150px;
}

.nebula {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  animation: nebulaPulse 8s ease-in-out infinite;
}

.nebula-1 {
  width: 300px;
  height: 200px;
  top: 20%;
  left: 10%;
  background: radial-gradient(ellipse, rgba(167, 139, 250, 0.3), rgba(167, 139, 250, 0.1), transparent);
  animation-delay: 0s;
}

.nebula-2 {
  width: 250px;
  height: 150px;
  bottom: 30%;
  right: 15%;
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.2), rgba(16, 185, 129, 0.1), transparent);
  animation-delay: -4s;
}

.shooting-star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: linear-gradient(45deg, #fff, rgba(167, 139, 250, 0.8));
  border-radius: 50%;
  animation: shootingStar 3s linear infinite;
}

.shooting-star::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), transparent);
  transform: translateX(-50px);
}

.shooting-star-1 {
  top: 20%;
  left: 80%;
  animation-delay: 0s;
}

.shooting-star-2 {
  top: 60%;
  left: 20%;
  animation-delay: -1.5s;
}

/* Hero Content Animations */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 1.5rem 1.2rem;
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
  border-radius: 20px;
  border: 2px solid rgba(167, 139, 250, 0.3);
  backdrop-filter: blur(15px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  min-width: 140px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #a78bfa, #3b82f6, #10b981);
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.stat-item:hover {
  transform: translateY(-8px) scale(1.05);
  border-color: rgba(167, 139, 250, 0.6);
  box-shadow:
    0 20px 50px rgba(167, 139, 250, 0.3),
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.stat-number {
  display: block;
  font-family: 'Orbitron', monospace;
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #a78bfa, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 20px rgba(167, 139, 250, 0.3);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.95rem;
  color: #e2e8f0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

/* ===== HERO CTA BUTTON ===== */

.hero-cta-section {
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 2rem;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2.5rem;
  background: linear-gradient(135deg, #a78bfa 0%, #3b82f6 50%, #10b981 100%);
  border-radius: 25px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 10px 40px rgba(167, 139, 250, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.hero-cta-btn::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.6s ease;
}

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

.hero-cta-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow:
    0 20px 60px rgba(167, 139, 250, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.hero-cta-btn:hover .cta-icon {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(10deg) scale(1.1);
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
}

.cta-text {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
}

.cta-subtext {
  font-size: 0.9rem;
  opacity: 0.8;
  font-weight: 500;
}

.cta-arrow {
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.hero-cta-btn:hover .cta-arrow {
  transform: translateX(5px);
}

/* Pulse Animation */
.hero-cta-btn {
  animation: ctaPulse 3s ease-in-out infinite;
}

@keyframes ctaPulse {

  0%,
  100% {
    box-shadow:
      0 10px 40px rgba(167, 139, 250, 0.3),
      0 0 0 1px rgba(255, 255, 255, 0.1);
  }

  50% {
    box-shadow:
      0 15px 50px rgba(167, 139, 250, 0.4),
      0 0 0 1px rgba(255, 255, 255, 0.15);
  }
}

/* Fade Up Animations */
.animate-fade-up,
.animate-fade-up-delay,
.animate-fade-up-delay-2 {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-fade-up.animate-active,
.animate-fade-up-delay.animate-active,
.animate-fade-up-delay-2.animate-active {
  opacity: 1;
  transform: translateY(0);
}

.animate-fade-up-delay {
  transition-delay: 0.2s;
}

.animate-fade-up-delay-2 {
  transition-delay: 0.4s;
}

/* ===== SCROLL ANIMATIONS ===== */

/* Scroll-triggered animations */
.animate-in-view {
  animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Button Loading States */
.action-btn.loading,
.buy-btn.loading {
  pointer-events: none;
  opacity: 0.8;
}

.action-btn.loading i,
.buy-btn.loading i {
  animation: spin 1s linear infinite;
}

/* ===== KEYFRAME ANIMATIONS ===== */

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

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

@keyframes logoFloat {

  0%,
  100% {
    transform: translateY(0px) scale(1);
  }

  50% {
    transform: translateY(-10px) scale(1.05);
  }
}

@keyframes textPulse {

  0%,
  100% {
    opacity: 0.7;
  }

  50% {
    opacity: 1;
  }
}


@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes twinkle {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }
}

@keyframes nebulaPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

@keyframes shootingStar {
  0% {
    transform: translateX(0) translateY(0);
    opacity: 1;
  }

  70% {
    opacity: 1;
  }

  100% {
    transform: translateX(-200px) translateY(100px);
    opacity: 0;
  }
}

/* ===== RESPONSIVE ANIMATIONS ===== */

@media (max-width: 768px) {
  .hero-stats {
    gap: 1.5rem;
    margin-top: 1.5rem;
  }

  .stat-item {
    padding: 1.2rem 1rem;
    min-width: 120px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .hero-cta-section {
    margin-top: 2rem;
  }

  .hero-cta-btn {
    padding: 1.2rem 2rem;
    gap: 1rem;
    font-size: 1rem;
  }

  .cta-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .cta-text {
    font-size: 1.1rem;
  }

  .cta-subtext {
    font-size: 0.8rem;
  }

  .nebula {
    display: none;
    /* Hide nebula on mobile for performance */
  }

  .shooting-star {
    display: none;
    /* Hide shooting stars on mobile for performance */
  }

  .stars-layer {
    opacity: 0.5;
    /* Reduce stars opacity on mobile */
  }

  .loader-logo img {
    width: 60px;
    height: 60px;
  }

  .loader-spinner {
    width: 60px;
    height: 60px;
  }
}

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

body {
  font-family: 'Rajdhani', sans-serif;
  background: var(--primary);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* General font styling for all text elements */
h1,
h2,
h3,
h4,
h5,
h6,
.hero-title,
.hero-desc,
.info-title,
.info-card,
.navbar-logo,
.navbar-link,
.feature-card h3,
.feature-card p,
.action-btn,
.t-head h2,
.t-head p,
.t-card .t-name,
.t-card .t-text,
.faq-question,
.faq-answer {
  font-family: 'Rajdhani', sans-serif;
}

/* Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text);
}

.navbar-logo img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

/* Mobil navbar sosyal medya ikonları */
.navbar-mobile-socials {
  display: none;
  align-items: center;
  gap: 0.75rem;
  margin-left: 1rem;
}

.mobile-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.mobile-social-icon.discord-icon {
  background: linear-gradient(135deg, #5865f2, #4752c4);
}

.mobile-social-icon.discord-icon:hover {
  background: linear-gradient(135deg, #4752c4, #3c45a5);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(88, 101, 242, 0.4);
}

.mobile-social-icon.instagram-icon {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.mobile-social-icon.instagram-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(220, 39, 67, 0.4);
}

.navbar-content-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

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

.navbar-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.navbar-link:hover {
  color: var(--highlight);
}

.navbar-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--highlight);
  transition: width 0.3s ease;
}

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

.navbar-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.navbar-user-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(167, 139, 250, 0.1);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.navbar-user-info:hover {
  background: rgba(167, 139, 250, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(167, 139, 250, 0.3);
}

.navbar-user-info i {
  font-size: 1.2rem;
  color: var(--highlight);
}

.user-email {
  font-weight: 500;
  color: var(--text-secondary);
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.discord-link {
  background: #5865f2;
  color: white;
}

.discord-link:hover {
  background: #4752c4;
  transform: translateY(-2px);
}

.instagram-link {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
}

.instagram-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 39, 67, 0.4);
}

.logout-link {
  background: #ef4444;
  color: white;
}

.logout-link:hover {
  background: #dc2626;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

.navbar-hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 0.5rem;
}

.navbar-hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero-box {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(15, 52, 96, 0.8)), url('https://steamloader.com.tr/images/banner.png');
  background-size: 130%;
  background-position: center 40%;
  background-repeat: no-repeat;
  min-height: 35vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
}

.hero-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(167, 139, 250, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 2rem;
}

.hero-title {
  font-size: 5.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--highlight), #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(167, 139, 250, 0.3);
  animation: titleGlow 3s ease-in-out infinite alternate;
}

.hero-desc {
  font-size: 2.5rem;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.4;
  animation: fadeInUp 1s ease-out 0.5s both;
}

@keyframes titleGlow {
  0% {
    filter: drop-shadow(0 0 20px rgba(167, 139, 250, 0.3));
  }

  100% {
    filter: drop-shadow(0 0 40px rgba(167, 139, 250, 0.6));
  }
}

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

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

/* Glow Overlay */
.glow-overlay {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* Loader Info Text Section */
.loader-info-text {
  padding: 2rem 0;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.05), rgba(255, 255, 255, 0.01));
}

.info-card {
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  color: var(--text-secondary);
  box-shadow: 0 12px 30px var(--shadow);
  line-height: 1.6;
  font-size: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.info-title {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  text-align: center;
  line-height: 1.3;
}

@media (max-width: 600px) {
  .info-title {
    font-size: 1.3rem;
  }

  .info-card {
    padding: 1.5rem;
    font-size: 0.9rem;
  }

  .info-card p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .info-card strong {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .info-title {
    font-size: 1.1rem;
  }

  .info-card {
    padding: 1rem;
    font-size: 0.85rem;
  }

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

  .info-card strong {
    font-size: 0.9rem;
  }
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Features Section */
.features-highlight {
  padding: 4rem 0;
}

.features-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--secondary);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px var(--shadow);
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--highlight);
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Modern Action Buttons */
.action-buttons-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
  margin: 2rem 0;
  border-radius: 20px;
  margin-left: 2rem;
  margin-right: 2rem;
}

.action-buttons-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 1.25rem 2.5rem;
  border-radius: 16px;
  font-weight: 600;
  font-size: 1.6rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-width: 180px;
}

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

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

.primary-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
}

.secondary-btn {
  background: rgba(167, 139, 250, 0.1);
  color: var(--highlight);
  border: 2px solid var(--highlight);
  backdrop-filter: blur(10px);
}

.secondary-btn:hover {
  background: rgba(167, 139, 250, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(167, 139, 250, 0.3);
}

.action-btn i {
  font-size: 1.2rem;
}

.action-description {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-top: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Video Section */
.features {
  padding: 4rem 0;
}

.appbox {
  margin-bottom: 3rem;
}

/* Modern Demo Section - Enhanced - v2024 */
.demo-section {
  padding: 5rem 0;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}

.demo-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #a78bfa, #3b82f6, #10b981);
  border-radius: 2px;
}

.demo-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.demo-title {
  font-family: 'Orbitron', monospace;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--highlight);
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, #a78bfa 0%, #3b82f6 50%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.demo-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
}

.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Video Section */
.demo-video-wrapper {
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid rgba(167, 139, 250, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.demo-video-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #a78bfa, #3b82f6, #10b981);
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

.demo-video-header {
  margin-bottom: 1rem;
}

.video-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(167, 139, 250, 0.15);
  color: var(--highlight);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(167, 139, 250, 0.3);
}

.video-badge i {
  font-size: 0.8rem;
}

.demo-video-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: auto;
  margin: auto 0;
  flex-shrink: 0;
}

.demo-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

/* Screenshots Section */
.demo-screenshots {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
  justify-content: flex-start;
}

.screenshot-item {
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.7), rgba(15, 23, 42, 0.9));
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(167, 139, 250, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 220px;
}

.screenshot-item:hover {
  transform: translateY(-5px);
  border-color: rgba(167, 139, 250, 0.4);
  box-shadow: 0 12px 30px rgba(167, 139, 250, 0.2);
}

.screenshot-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #a78bfa, #3b82f6);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.screenshot-item:hover::before {
  opacity: 1;
}

.screenshot-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1rem;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.screenshot-badge i {
  font-size: 0.75rem;
}

.screenshot-container {
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
  background: rgba(0, 0, 0, 0.5);
  min-height: 180px;
}

.screenshot-container:hover {
  transform: scale(1.02);
}

.demo-screenshot {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 12px;
  object-fit: contain;
  background: #000;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .demo-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .demo-title {
    font-size: 2.2rem;
  }

  .demo-screenshots {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
  }
}

@media (max-width: 768px) {
  .demo-section {
    padding: 3rem 0;
  }

  .demo-title {
    font-size: 1.8rem;
  }

  .demo-subtitle {
    font-size: 1rem;
  }

  .demo-video-wrapper {
    padding: 1rem;
  }

  .demo-screenshots {
    display: flex;
    flex-direction: column;
  }

  .screenshot-item {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .demo-header {
    margin-bottom: 2rem;
  }

  .demo-title {
    font-size: 1.6rem;
  }

  .demo-grid {
    gap: 1.5rem;
  }
}

/* Pricing Section */
.pricing-section {
  padding: 4rem 0;
  background: var(--primary);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(4, 355px);
  /* 4 kart tek satırda */
  gap: 2rem;
  /* kartlar arası boşluk */
  justify-content: center;
  /* tüm grid ortalansın */
  justify-items: center;
  /* her kart kendi kolonunda ortalansın */
  margin-top: 3rem;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive grid için media query'ler */
@media (max-width: 1600px) {
  .pricing-cards {
    grid-template-columns: repeat(4, 355px);
    gap: 1.5rem;
  }
}

@media (max-width: 1400px) {
  .pricing-cards {
    grid-template-columns: repeat(2, 355px);
    gap: 2rem;
  }
}

@media (max-width: 800px) {
  .pricing-cards {
    grid-template-columns: repeat(1, 355px);
    gap: 2rem;
  }
}

.pricing-card {
  background: var(--primary);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.3s ease;
  height: fit-content;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px var(--shadow);
}

.pricing-card.recommended {
  border: 2px solid var(--highlight);
  transform: scale(1.05);
}

/* Önerilen kart için özel border */
.pricing-card.border-2 {
  border: 2px solid var(--highlight) !important;
}

.pricing-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--highlight);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--highlight);
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
}

.features-list {
  list-style: none;
  margin-bottom: 2rem;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.features-list i {
  color: var(--success);
  font-size: 1.1rem;
}

.buy-button {
  display: block;
  width: 100%;
  background: var(--gradient);
  color: white;
  text-align: center;
  padding: 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: auto;
}

.buy-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

/* Testimonials */
.testimonials-section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px
}

.testimonials-section .testimonial-slider-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0
}

.testimonial-slider .swiper-wrapper {
  align-items: stretch
}

.testimonial-slider .swiper-slide {
  height: auto;
  display: flex
}

.testimonial-slider .swiper-slide>.testimonial-card {
  width: 100%
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  padding: 22px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .18);
  transition: transform .25s ease, box-shadow .25s ease;
  min-height: 260px
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .28)
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(167, 139, 250, .35), rgba(99, 102, 241, .35));
  color: #e9e8ff
}

.testimonial-username {
  font-weight: 600;
  letter-spacing: .2px
}

.testimonial-comment {
  margin-top: 6px;
  color: #e6e6f0;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
  overflow-wrap: anywhere
}

@media (max-width: 1024px) {
  .testimonial-comment {
    -webkit-line-clamp: 4;
    line-clamp: 4
  }
}

@media (max-width: 640px) {
  .testimonial-comment {
    -webkit-line-clamp: 5;
    line-clamp: 5
  }
}

.testimonials-note {
  opacity: .7;
  margin-top: 14px;
  text-align: center
}

.testimonials {
  padding: 4rem 0;
}

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

.text-review-card {
  background: var(--secondary);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  height: fit-content;
  display: flex;
  flex-direction: column;
}

.text-review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px var(--shadow);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.review-user {
  font-weight: 600;
  color: var(--highlight);
}

.review-date {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.review-stars {
  color: #fbbf24;
  font-size: 1.1rem;
}

.review-text {
  color: var(--text-secondary);
  line-height: 1.5;
  margin-top: auto;
  font-size: 0.9rem;
}

/* FAQ Section - Minimal Design */
.faq-section {
  padding: 6rem 0;
  background: var(--primary);
  position: relative;
}

.faq-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.faq-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(167, 139, 250, 0.1);
  border: 1px solid rgba(167, 139, 250, 0.2);
  border-radius: 20px;
  color: var(--highlight);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.faq-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.faq-subtitle {
  font-size: 1.05rem;
  color: #94a3b8;
  font-weight: 400;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.faq-item {
  background: rgba(30, 41, 59, 0.3);
  border-radius: 12px;
  border: 1px solid rgba(167, 139, 250, 0.1);
  overflow: hidden;
  transition: all 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(167, 139, 250, 0.3);
  background: rgba(30, 41, 59, 0.4);
}

.faq-item.active {
  border-color: rgba(167, 139, 250, 0.4);
  background: rgba(30, 41, 59, 0.5);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: #e2e8f0;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-question:hover {
  color: #f1f5f9;
}

.faq-q-text {
  flex: 1;
  line-height: 1.5;
}

.faq-icon {
  font-size: 0.875rem;
  color: var(--highlight);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  padding: 0 1.5rem;
  color: #cbd5e1;
  line-height: 1.7;
  font-size: 0.95rem;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  background: rgba(15, 23, 42, 0.3);
  border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 1.25rem 1.5rem;
  opacity: 1;
  border-top-color: rgba(167, 139, 250, 0.15);
}

/* Responsive FAQ */
@media (max-width: 768px) {
  .faq-section {
    padding: 4rem 0;
  }

  .faq-title {
    font-size: 1.8rem;
  }

  .faq-subtitle {
    font-size: 1rem;
  }

  .faq-question {
    padding: 1rem 1.25rem;
    font-size: 1rem;
  }

  .faq-answer {
    font-size: 0.9rem;
  }

  .faq-item.active .faq-answer {
    padding: 1rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 3rem 0;
  }

  .faq-title {
    font-size: 1.5rem;
  }

  .faq-subtitle {
    font-size: 0.95rem;
  }

  .faq-question {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
  }

  .faq-answer {
    font-size: 0.875rem;
  }
}

/* Contact Section */
.contact-section {
  padding: 4rem 0;
}

.contact-container {
  max-width: 600px;
  text-align: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--secondary);
  color: var(--text);
  text-decoration: none;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  font-weight: 500;
}

.contact-link:hover {
  background: var(--highlight);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(167, 139, 250, 0.4);
}

/* Lightbox */
#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 12px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 2001;
}

/* Mobile Menu */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1500;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.open {
  display: block;
  opacity: 1;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background: var(--primary);
  z-index: 1501;
  padding: 2rem;
  transition: right 0.3s ease;
  border-left: 1px solid var(--border);
  transform: translateX(100%);
  visibility: hidden;
}

.mobile-menu.open {
  right: 0;
  transform: translateX(0);
  visibility: visible;
}

.mobile-menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-menu-list {
  list-style: none;
  margin-top: 3rem;
}

.mobile-menu-list li {
  margin-bottom: 1rem;
}

.mobile-menu-list .navbar-link {
  display: block;
  padding: 1rem;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.mobile-menu-list .navbar-link:hover {
  background: rgba(167, 139, 250, 0.1);
}

.mobile-menu-user {
  padding: 1rem 0;
  margin-top: 2rem;
  border-top: 1px solid rgba(167, 139, 250, 0.2);
  border-bottom: 1px solid rgba(167, 139, 250, 0.2);
}

.mobile-user-email {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: rgba(167, 139, 250, 0.1);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.9rem;
}

.mobile-user-email i {
  font-size: 1.5rem;
  color: var(--highlight);
}

.mobile-user-email span {
  font-weight: 500;
  color: var(--text-secondary);
}

.mobile-menu-socials {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Responsive Design */
@media (max-width: 900px) {
  .navbar-list {
    display: none;
  }

  .navbar-social {
    display: none;
  }

  .navbar-hamburger {
    display: flex;
  }

  /* Mobilde navbar sosyal medya ikonlarını göster */
  .navbar-mobile-socials {
    display: flex !important;
  }

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

  .hero-desc {
    font-size: 1.6rem;
  }

  .appbox {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .appbox>div {
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
  }

  .appbox>div img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 14px;
    box-shadow: 0 2px 16px #0006;
    object-fit: cover;
  }

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

  .pricing-card.recommended {
    transform: none;
  }

  .text-reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-info {
    flex-direction: column;
  }

  /* Mobile menu güvenlik önlemleri */
  .mobile-menu:not(.open) {
    right: -100% !important;
    transform: translateX(100%) !important;
    visibility: hidden !important;
  }

  .mobile-menu-overlay:not(.open) {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }

  /* Mobil menüde sosyal bağlantıları göster */
  .mobile-menu-socials {
    display: flex !important;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 1rem;
  }

  .navbar {
    padding: 0.75rem 1.5rem;
  }

  /* Mobilde navbar sosyal medya ikonlarını daha iyi konumlandır */
  .navbar-mobile-socials {
    gap: 1rem !important;
    margin-left: 1.5rem !important;
  }

  .mobile-social-icon {
    width: 44px !important;
    height: 44px !important;
    font-size: 1.3rem !important;
  }

  .hero-box {
    min-height: 35vh;
    padding: 0 1rem;
  }

  .hero-content {
    max-width: 100%;
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
  }

  .hero-desc {
    font-size: 1.8rem;
  }

  .action-buttons-grid {
    flex-direction: column;
    gap: 1rem;
  }

  .action-btn {
    width: 100%;
    justify-content: center;
  }

  .mobile-menu {
    width: 100%;
  }

  .text-reviews-grid {
    grid-template-columns: 1fr;
  }

  .appbox {
    flex-direction: column !important;
    gap: 2rem !important;
  }

  .appbox>div img {
    width: 300px !important;
    height: 200px !important;
    max-width: 100% !important;
    object-fit: cover !important;
  }

  /* Mobilde yazı boyutları */
  h2 {
    font-size: 1.4rem !important;
  }

  h3 {
    font-size: 1.2rem !important;
  }

  .feature-card h3 {
    font-size: 1.1rem !important;
  }

  .feature-card p {
    font-size: 0.9rem !important;
  }

  .video-caption h4 {
    font-size: 1rem !important;
  }

  .video-caption p {
    font-size: 0.85rem !important;
  }

  .action-description {
    font-size: 0.85rem !important;
  }
}

@media (max-width: 480px) {
  .hero-box {
    min-height: 35vh;
    padding: 0 0.5rem;
  }

  .hero-content {
    padding: 0 0.5rem;
  }

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

  .hero-desc {
    font-size: 1.6rem;
  }

  .appbox>div img {
    width: 250px !important;
    height: 160px !important;
    max-width: 100% !important;
    object-fit: cover !important;
  }

  /* Daha küçük ekranlarda yazı boyutları */
  h2 {
    font-size: 1.2rem !important;
  }

  h3 {
    font-size: 1rem !important;
  }

  .feature-card h3 {
    font-size: 1rem !important;
  }

  .feature-card p {
    font-size: 0.8rem !important;
  }

  .video-caption h4 {
    font-size: 0.9rem !important;
  }

  .video-caption p {
    font-size: 0.8rem !important;
  }

  .action-description {
    font-size: 0.8rem !important;
  }

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

  .search-input {
    padding: 12px 20px 12px 45px;
    font-size: 1rem;
  }

  .online-button {
    padding: 10px 14px;
    font-size: 0.9rem;
  }

  .game-banner {
    height: 100px;
  }

  .game-title {
    font-size: 0.8rem;
  }

  .game-info {
    padding: 8px;
  }

  .online-label {
    font-size: 0.7rem;
    padding: 4px 8px;
    bottom: 4px;
    right: 4px;
  }
}

@media (max-width: 360px) {
  .appbox>div img {
    width: 200px !important;
    height: 130px !important;
    max-width: 100% !important;
    object-fit: cover !important;
  }
}

/* Scroll Offset */
.scroll-offset {
  scroll-margin-top: 100px;
}

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

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

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

.feature-card,
.pricing-card,
.text-review-card {
  animation: fadeInUp 0.6s ease forwards;
}

/* Hover Effects */
.feature-card:hover,
.pricing-card:hover,
.text-review-card:hover {
  border-color: var(--highlight);
}

/* Focus States */
button:focus,
a:focus {
  outline: 2px solid var(--highlight);
  outline-offset: 2px;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.app-sample-img,
.library-sample-img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 14px;
  box-shadow: 0 2px 16px #0006;
  background: #181825;
  cursor: pointer;
  transition: box-shadow 0.3s, transform 0.3s;
  object-fit: cover;
}

/* Mobil Sosyal Medya Alt Çubuğu - Normal Akış */
.mobile-social-bar {
  position: static;
  display: none;
}

@media (max-width: 768px) {
  .mobile-social-bar {
    position: static !important;
    display: flex !important;
    justify-content: center !important;
    gap: 1rem !important;
    padding: 1rem !important;
    background: transparent !important;
    border-top: none !important;
    box-shadow: none !important;
    margin-top: 1rem !important;
    width: 100% !important;
    height: auto !important;
  }

  .mobile-social-bar .social-link {
    padding: 0.5rem 1rem !important;
    border-radius: 12px !important;
    color: white !important;
    font-size: 1.4rem !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .mobile-social-bar .discord-link {
    background: #5865f2 !important;
  }

  .mobile-social-bar .discord-link:hover {
    background: #4752c4 !important;
    transform: translateY(-2px) !important;
  }

  .mobile-social-bar .instagram-link {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) !important;
  }

  .mobile-social-bar .instagram-link:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(220, 39, 67, 0.4) !important;
  }

  /* Body padding'i kaldır */
  body {
    padding-bottom: 0 !important;
  }
}

/* Testimonials v2 */
.testimonials-v2 {
  padding: 50px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.testimonials-v2 .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
  overflow: hidden;
}

.testimonials-v2 .t-head {
  text-align: center;
  margin-bottom: 28px;
}

.testimonials-v2 .t-head h2 {
  font-size: 2.2rem;
  margin: 0 0 8px;
}

.testimonials-v2 .t-head p {
  color: #a1a1aa;
}

.testimonials-v2 .testimonials-swiper {
  overflow: hidden;
  max-width: 100%;
  position: relative;
}

.testimonials-v2 .swiper-wrapper {
  align-items: stretch;
  max-width: 100%;
  gap: 24px;
}

.testimonials-v2 .swiper-slide {
  height: auto;
  display: flex;
  width: calc(33.333% - 16px);
  min-width: 300px;
  flex-shrink: 0;
}

.testimonials-v2 .t-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 22px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .18);
  max-width: 100%;
  min-height: 280px;
}

.testimonials-v2 .t-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(167, 139, 250, .35), rgba(99, 102, 241, .35));
  color: #e9e8ff;
}

.testimonials-v2 .t-name {
  font-weight: 600;
}

.testimonials-v2 .t-text {
  color: #e6e6f0;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;
}

.testimonials-v2 .t-controls {
  position: absolute;
  inset: 0;
  pointer-events: none;
  max-width: 100%;
}

.testimonials-v2 .t-prev,
.testimonials-v2 .t-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: auto !important;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  border: 2px solid rgba(167, 139, 250, .3);
  background: linear-gradient(135deg, rgba(167, 139, 250, .2), rgba(99, 102, 241, .2));
  color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(167, 139, 250, .2);
  cursor: pointer;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.testimonials-v2 .t-prev {
  left: 10px;
}

.testimonials-v2 .t-next {
  right: 10px;
}

/* Okların hover efekti */
.testimonials-v2 .t-prev:hover,
.testimonials-v2 .t-next:hover {
  transform: translateY(-50%) scale(1.1);
  border-color: rgba(167, 139, 250, .6);
  background: linear-gradient(135deg, rgba(167, 139, 250, .4), rgba(99, 102, 241, .4));
  box-shadow: 0 8px 30px rgba(167, 139, 250, .4);
}

.t-note {
  opacity: .7;
  margin-top: 14px;
  text-align: center;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(168, 139, 250, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(168, 139, 250, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* Tam sayfa genişliği için */
/* full-width kaldırıldı */

.testimonials-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #a78bfa, #c084fc, #e879f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(168, 139, 250, 0.3);
  text-align: center;
}

.testimonials-subtitle {
  color: #a1a1aa;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  font-weight: 400;
  text-align: center;
}

.testimonial-slider-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 0 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial-slider {
  padding: 10px 0;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  overflow: visible
}

/* Swiper slide boyutları */
.testimonial-slider .swiper-slide {
  width: 350px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding: 10px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Swiper wrapper'ı merkezle */
.testimonial-slider .swiper-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-card {
  background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
  padding: 35px 30px;
  border-radius: 20px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(168, 139, 250, 0.1),
    0 0 20px rgba(168, 139, 250, 0.15),
    0 0 40px rgba(168, 139, 250, 0.1);
  margin: 10px;
  border: 1px solid rgba(168, 139, 250, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #a78bfa, #c084fc, #e879f9);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(168, 139, 250, 0.2),
    0 0 30px rgba(168, 139, 250, 0.25),
    0 0 60px rgba(168, 139, 250, 0.15);
}

.testimonial-card:hover::before {
  transform: scaleX(1);
}

/* Swiper active slide styling */
.testimonial-slider .swiper-slide-active .testimonial-card {
  transform: scale(1.05);
  box-shadow:
    0 15px 50px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(168, 139, 250, 0.3),
    0 0 25px rgba(168, 139, 250, 0.3),
    0 0 50px rgba(168, 139, 250, 0.2);
}

.testimonial-slider .swiper-slide-active .testimonial-card::before {
  transform: scaleX(1);
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a78bfa, #c084fc);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 24px;
  color: white;
  box-shadow: 0 4px 20px rgba(168, 139, 250, 0.3);
  transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(168, 139, 250, 0.4);
}

.testimonial-username {
  color: #a78bfa;
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonial-comment {
  color: #e4e4e7;
  font-style: italic;
  line-height: 1.6;
  text-align: center;
  font-size: 1rem;
  margin: 0;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials-note {
  text-align: center;
  color: #71717a;
  font-size: 0.9rem;
  margin-top: 2rem;
  font-style: italic;
}

/* Custom navigation buttons */
.swiper-button-next,
.swiper-button-prev {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #a78bfa, #c084fc);
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(168, 139, 250, 0.3);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(168, 139, 250, 0.4);
  background: linear-gradient(135deg, #c084fc, #e879f9);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
}

/* Custom pagination */
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(168, 139, 250, 0.3);
  border-radius: 50%;
  transition: all 0.3s ease;
  margin: 0 6px;
}

.swiper-pagination-bullet-active {
  background: linear-gradient(135deg, #a78bfa, #c084fc);
  transform: scale(1.2);
  box-shadow: 0 0 15px rgba(168, 139, 250, 0.5);
}

/* Yorumlar kısmında sadece 2 sayfa göstergesi göster */
.testimonials-swiper .swiper-pagination-bullet:nth-child(n+3) {
  display: none !important;
}

/* Sayfa göstergesi container'ı */
.testimonials-swiper .swiper-pagination {
  position: relative;
  bottom: 20px;
  z-index: 10;
}

/* Sayfa göstergesi noktaları arasındaki boşluk */
.testimonials-swiper .swiper-pagination-bullet {
  margin: 0 8px;
  opacity: 0.6;
  transition: all 0.3s ease;
}

/* Aktif sayfa göstergesi */
.testimonials-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.2);
  background: linear-gradient(135deg, #a78bfa, #c084fc);
  box-shadow: 0 0 15px rgba(167, 139, 250, 0.5);
}

/* Testimonials v2 pagination stilleri */
.testimonials-v2 .swiper-pagination {
  position: relative;
  bottom: 20px;
  z-index: 10;
  text-align: center;
}

.testimonials-v2 .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(168, 139, 250, 0.3);
  border-radius: 50%;
  transition: all 0.3s ease;
  margin: 0 8px;
  opacity: 0.6;
}

.testimonials-v2 .swiper-pagination-bullet-active {
  background: linear-gradient(135deg, #a78bfa, #c084fc);
  transform: scale(1.2);
  box-shadow: 0 0 15px rgba(168, 139, 250, 0.5);
  opacity: 1;
}

/* Additional animations and effects */
@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

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

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

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

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

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

.testimonial-slider .swiper-slide {
  animation: fadeInUp 0.6s ease-out;
}

.testimonial-slider .swiper-slide-active {
  animation: slideInFromRight 0.8s ease-out;
}

.testimonial-slider .swiper-slide-prev {
  animation: slideInFromLeft 0.8s ease-out;
}

/* Smooth transitions for all elements */
.testimonial-card * {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover effects for navigation */
.swiper-button-next:hover,
.swiper-button-prev:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(168, 139, 250, 0.4);
  background: linear-gradient(135deg, #c084fc, #e879f9);
}

/* Responsive design improvements */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 30px 0;
  }

  .full-width-slider {
    padding: 25px 0;
  }

  .testimonials-title {
    font-size: 2rem;
  }

  .testimonials-subtitle {
    font-size: 1rem;
  }

  .testimonial-slider-container {
    padding: 0 80px;
  }

  .testimonial-slider .swiper-slide {
    width: 350px;
  }

  .testimonial-card {
    padding: 25px 20px;
    min-height: 240px;
  }

  .testimonial-avatar {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .testimonial-username {
    font-size: 1rem;
  }

  .testimonial-comment {
    font-size: 0.9rem;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 16px;
  }

  /* Testimonials v2 responsive */
  .testimonials-v2 .swiper-slide {
    width: calc(50% - 12px);
    min-width: 250px;
  }

  .testimonials-v2 .t-card {
    padding: 20px;
    min-height: 240px;
  }

  .testimonials-v2 .t-prev,
  .testimonials-v2 .t-next {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .testimonials-v2 .t-prev {
    left: 5px;
  }

  .testimonials-v2 .t-next {
    right: 5px;
  }
}

@media (max-width: 480px) {
  .testimonials-title {
    font-size: 1.8rem;
  }

  .testimonial-slider-container {
    padding: 0 50px;
  }

  .testimonial-slider .swiper-slide {
    width: 320px;
  }

  .testimonial-card {
    padding: 20px 15px;
    min-height: 220px;
  }

  .testimonial-avatar {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .testimonial-username {
    font-size: 0.9rem;
  }

  .testimonial-comment {
    font-size: 0.85rem;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 35px;
    height: 35px;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 14px;
  }

  /* Testimonials v2 responsive */
  .testimonials-v2 .swiper-slide {
    width: 100%;
    min-width: 200px;
  }

  .testimonials-v2 .t-card {
    padding: 18px 15px;
    min-height: 200px;
  }

  .testimonials-v2 .t-prev,
  .testimonials-v2 .t-next {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }

  .testimonials-v2 .t-prev {
    left: 2px;
  }

  .testimonials-v2 .t-next {
    right: 2px;
  }

  .testimonials-v2 .t-head h2 {
    font-size: 1.8rem;
  }

  .testimonials-v2 .t-head p {
    font-size: 0.9rem;
  }
}

/* Gradient text glow effect */
.gradient-text-glow {
  background: linear-gradient(135deg, #a78bfa, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(167, 139, 250, 0.5);
}

/* Modern Pricing Section Styles */
.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.bg-gray-900 {
  background-color: #111827;
}

.scroll-mt-24 {
  scroll-margin-top: 6rem;
}

.lazy-load-animated {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.lazy-load-animated[data-animate="true"] {
  opacity: 1;
  transform: translateY(0);
}

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

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.font-bold {
  font-weight: 700;
}

.font-orbitron {
  font-family: 'Orbitron', monospace;
}

.font-rajdhani {
  font-family: 'Rajdhani', sans-serif;
}

.text-center {
  text-align: center;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.text-gray-400 {
  color: #9ca3af;
}

.text-left {
  text-align: left;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.gap-16 {
  gap: 4rem;
}

.justify-items-center {
  justify-items: center;
}

/* Additional spacing for pricing cards */
.pricing-section .grid {
  margin: 0 auto;
  max-width: 1600px;
  justify-content: center;
}

.pricing-section .grid>div {
  margin: 0 auto;
}

.bg-gray-800 {
  background-color: #1f2937;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.p-6 {
  padding: 1.5rem;
}

.border {
  border-width: 1px;
}

.border-gray-700 {
  border-color: #374151;
}

.border-2 {
  border-width: 2px;
}

.border-cyan-500 {
  border-color: #06b6d4;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.transition-transform {
  transition-property: transform;
}

.duration-300 {
  transition-duration: 300ms;
}

.hover\:scale-105:hover {
  transform: scale(1.05);
}

.lazy-load-hidden {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.lazy-load-hidden.loaded {
  opacity: 1;
  transform: translateY(0);
}

.relative {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

.-mx-6 {
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}

.-mt-6 {
  margin-top: -1.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.h-48 {
  height: 12rem;
}

.bg-cover {
  background-size: cover;
}

.bg-center {
  background-position: center;
}

.rounded-t-lg {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.absolute {
  position: absolute;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.bg-black {
  background-color: #000000;
}

.bg-opacity-50 {
  background-color: rgba(0, 0, 0, 0.5);
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.rounded-md {
  border-radius: 0.375rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-white {
  color: #ffffff;
}

.space-y-2>*+* {
  margin-top: 0.5rem;
}

.text-gray-300 {
  color: #d1d5db;
}

.flex-grow {
  flex-grow: 1;
}

.flex.items-center {
  display: flex;
  align-items: center;
}

.w-5 {
  width: 1.25rem;
}

.h-5 {
  height: 1.25rem;
}

.text-green-400 {
  color: #4ade80;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-auto {
  margin-top: auto;
}

.bg-cyan-600 {
  background-color: #0891b2;
}

.text-white {
  color: #ffffff;
}

.font-bold {
  font-weight: 700;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.text-center {
  text-align: center;
}

.hover\:bg-cyan-500:hover {
  background-color: #06b6d4;
}

.transition-all {
  transition-property: all;
}

.duration-300 {
  transition-duration: 300ms;
}

.glow-effect {
  position: relative;
  overflow: hidden;
}

.glow-effect::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;
}

.glow-effect:hover::before {
  left: 100%;
}

.font-poppins {
  font-family: 'Rajdhani', sans-serif;
}

.gap-2 {
  gap: 0.5rem;
}

/* Corner Ribbon */
.corner-ribbon {
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--highlight);
  color: white;
  padding: 5px 40px;
  font-size: 14px;
  font-weight: bold;
  transform: rotate(45deg);
  z-index: 10;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Card Float Animation */
.card-float {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Responsive Grid */
@media (min-width: 640px) {
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Button Hover Effects */
button[data-url] {
  cursor: pointer;
  transition: all 0.3s ease;
}

button[data-url]:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(6, 182, 212, 0.4);
}

/* Background Image Fallback */
.bg-cover[data-bg] {
  background-image: var(--bg-image);
}

/* Custom Properties for Background Images */
[data-bg="https://reiden.com.tr/images/arkayakoymak1.png"] {
  --bg-image: url('https://reiden.com.tr/images/arkayakoymak1.png');
}

[data-bg="https://reiden.com.tr/images/arkayakoymak2.png"] {
  --bg-image: url('https://reiden.com.tr/images/arkayakoymak2.png');
}

[data-bg="https://reiden.com.tr/images/arkayakoymak3.png"] {
  --bg-image: url('https://reiden.com.tr/images/arkayakoymak3.png');
}

[data-bg="https://reiden.com.tr/images/arkayakoymak4.png"] {
  --bg-image: url('https://reiden.com.tr/images/arkayakoymak4.png');
}

/* --- Neon Pricing Cards --- */
.pricing-section {
  padding: 5rem 0;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, #0f0f1a 0%, #1a1a2e 100%);
}

.pricing-title-glow {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #a78bfa, #6366f1, #ec4899);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 25px rgba(167, 139, 250, 0.6);
  margin-bottom: 0.5rem;
}

.pricing-subtitle {
  color: #cbd5e1;
  margin-bottom: 3rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* 4 sütun - tüm kartlar yan yana */
  gap: 1.5rem;
  /* kartlar arasında boşluk azaltıldı */
  justify-items: center;
  margin-top: 3rem;
  max-width: 1400px;
  /* genişlik artırıldı */
  margin-left: auto;
  margin-right: auto;
}

.neon-card {
  width: 100%;
  /* Tam genişlik kullan */
  max-width: 320px;
  /* Maksimum genişlik */
  background: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  color: white;
  overflow: hidden;
  backdrop-filter: blur(12px);
  border: 2px solid rgba(167, 139, 250, 0.5);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6), 0 0 40px rgba(167, 139, 250, 0.3);
  transition: transform 0.3s ease;
  min-height: 520px;
  display: flex;
  flex-direction: column;
}

/* Tüm kartlar düz sırada yan yana */
.pricing-grid>.neon-card {
  transform: none;
  /* Zig-zag pozisyonlaması kaldırıldı */
}

/* Responsive tasarım */
@media (max-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 2 sütun */
    gap: 2rem;
    max-width: 800px;
  }
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    /* Tek sütun */
    gap: 2rem;
    max-width: 400px;
  }

  .neon-card {
    max-width: 100%;
  }
}

/* Hover animasyonu - Basit scale efekti */
.pricing-grid>.neon-card:hover {
  transform: scale(1.05);
  z-index: 2;
  box-shadow: 0 0 40px rgba(167, 139, 250, 0.8);
  border-color: rgba(167, 139, 250, 0.8);
  background: rgba(20, 20, 40, 0.9);
}

.neon-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(0px) brightness(0.7);
  z-index: -2;
}

/* Gradient overlay for better text readability */
.neon-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(15, 23, 42, 0.85) 30%,
      rgba(15, 23, 42, 0.95) 100%);
  z-index: -1;
  pointer-events: none;
}

.neon-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(167, 139, 250, 0.5);
  position: relative;
  z-index: 1;
}

.neon-card .price {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.08rem;
}

/* Eski fiyat - üstü çizili */
.neon-card .price .old-price {
  font-size: 1.35rem;
  font-weight: 700;
  color: #f1f5f9;
  text-decoration: line-through;
  text-decoration-thickness: 2.5px;
  text-decoration-color: #ef4444;
  opacity: 0.9;
  position: relative;
  letter-spacing: 0.5px;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.9), 0 0 15px rgba(255, 255, 255, 0.2);
  z-index: 1;
}

/* Yeni fiyat - parlak gradient */
.neon-card .price .new-price {
  font-size: 2.6rem;
  font-weight: 900;
  background: linear-gradient(135deg, #e0d7ff, #c4b5fd, #a78bfa);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  filter: drop-shadow(0 0 20px rgba(167, 139, 250, 0.8)) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.9));
  letter-spacing: -0.5px;
  z-index: 1;
}

@keyframes priceGlow {
  0% {
    filter: drop-shadow(0 0 10px rgba(167, 139, 250, 0.4));
  }

  100% {
    filter: drop-shadow(0 0 20px rgba(167, 139, 250, 0.8));
  }
}

/* İndirim badge */
.neon-card .discount-badge {
  position: absolute;
  top: 14px;
  left: 12px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  padding: 0.35rem 0.7rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(239, 68, 68, 0.5);
  z-index: 10;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.3px;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.neon-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  color: #cbd5e1;
  text-align: left;
  flex-grow: 1;
}

.neon-card ul li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 24px;
  font-size: 0.9rem;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
  color: #f1f5f9;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.neon-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #10b981;
}

.buy-btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
}

.buy-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(102, 126, 234, 0.6);
}

.recommended {
  border: 2px solid #a78bfa;
  transform: scale(1.05);
}

.recommended .badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #a78bfa;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Responsive Zig-Zag Kartlar */
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }

  /* Transform'ları kaldır, klasik tek kolon listeye düş */
  .pricing-grid>.neon-card:nth-child(1),
  .pricing-grid>.neon-card:nth-child(2),
  .pricing-grid>.neon-card:nth-child(3),
  .pricing-grid>.neon-card:nth-child(4) {
    transform: none;
  }

  .neon-card {
    width: 100%;
    max-width: 100%;
    padding: 1.8rem 1.2rem;
  }

  /* Mobile için gradient overlay - aynı efekt */
  .neon-card::before {
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(15, 23, 42, 0.85) 30%,
        rgba(15, 23, 42, 0.95) 100%);
  }

  /* Mobile için text shadow ve renkler */
  .neon-card h3 {
    font-size: 1.4rem;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(167, 139, 250, 0.5);
  }

  .neon-card ul li {
    color: #f1f5f9;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.5);
    font-size: 0.85rem;
  }

  .neon-card:hover {
    transform: translateY(-5px) scale(1.02);
  }

  .neon-card .price .old-price {
    font-size: 1.1rem;
    color: #f1f5f9;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.9), 0 0 15px rgba(255, 255, 255, 0.2);
  }

  .neon-card .price .new-price {
    font-size: 2rem;
    background: linear-gradient(135deg, #e0d7ff, #c4b5fd, #a78bfa);
    filter: drop-shadow(0 0 20px rgba(167, 139, 250, 0.8)) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.9));
  }
}

/* Fiyatlar kısmında Swiper okları yok, sadece grid layout kullanılıyor */

@media (max-width: 480px) {
  .pricing-grid {
    padding: 0 0.8rem;
    gap: 1rem;
  }

  .neon-card {
    padding: 1.5rem 1rem;
  }

  .pricing-title-glow {
    font-size: 2rem;
  }

  .neon-card h3 {
    font-size: 1.3rem;
  }

  .neon-card .price .old-price {
    font-size: 1rem;
  }

  .neon-card .price .new-price {
    font-size: 1.8rem;
  }

  .neon-card ul li {
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
  }

  .neon-card .discount-badge {
    font-size: 0.65rem;
    padding: 0.25rem 0.5rem;
    top: 10px;
    left: 10px;
  }

  .recommended .badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.6rem;
    top: 10px;
    right: 10px;
  }
}

/* Footer Styles */
.site-footer {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.3) 0%, rgba(15, 23, 42, 0.95) 50%, rgba(10, 15, 30, 0.98) 100%);
  border-top: 2px solid rgba(167, 139, 250, 0.2);
  margin-top: 80px;
  padding: 60px 0 30px;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(167, 139, 250, 0.5), transparent);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-family: 'Orbitron', monospace;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #a78bfa, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-section p {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #a78bfa, #3b82f6);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #a78bfa;
  transform: translateX(5px);
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
  border: 2px solid rgba(167, 139, 250, 0.3);
  color: #cbd5e1;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social-link:hover {
  background: linear-gradient(135deg, #a78bfa, #3b82f6);
  border-color: #a78bfa;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(167, 139, 250, 0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(167, 139, 250, 0.2);
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.footer-disclaimer {
  font-size: 0.85rem !important;
  color: #475569 !important;
  font-style: italic;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .site-footer {
    padding: 40px 0 20px;
    margin-top: 60px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-section {
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-links a:hover {
    transform: none;
  }
}

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

  .footer-section h3 {
    font-size: 1.1rem;
  }

  .footer-section p {
    font-size: 0.9rem;
  }
}
