@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;800&family=Inter:wght@300;400;500;700&display=swap');

:root {
  /* Colors */
  --bg-deep: #08080a;
  --bg-soft: #0d0d12;
  --primary: #ff0000;
  --primary-glow: rgba(242, 88, 88, 0.4);
  --accent: #c64747;
  --accent-glow: rgba(198, 71, 71, 0.3);
  --success: #2ecc71;
  --warning: #f1c40f;
  --text-main: #ffffff;
  --text-muted: #978e8e;
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-highlight: rgba(255, 255, 255, 0.12);

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.8);

  /* Layout */
  --max-width: 1400px;
  --nav-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-deep);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  margin: 0;
  padding: 0;
}

/* 3D Background Canvas */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(88, 101, 242, 0.1) 0%, transparent 80%);
  pointer-events: none;
  z-index: 0;
  animation: pulseFog 10s ease-in-out infinite alternate;
}

@keyframes pulseFog {
  from {
    opacity: 0.2;
    transform: scale(1);
  }
  to {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

h1,
h2,
h3,
.heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

/* Background Effects */
.bg-blobs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  filter: blur(100px);
  opacity: 0.3;
  animation: float 20s infinite alternate;
}

.blob-1 {
  top: -200px;
  right: -100px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
}

.blob-2 {
  bottom: -200px;
  left: -100px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
}

@keyframes float {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(50px, 50px) scale(1.1);
  }
}

/* Advanced Header */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 0.8rem 2rem;
  background: linear-gradient(to bottom, rgba(8, 8, 10, 0.95), rgba(8, 8, 10, 0.8));
  border-bottom: 1px solid transparent;
}

nav.scrolled {
  background: rgba(10, 10, 11, 0.98);
  backdrop-filter: blur(25px);
  padding: 0.7rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.nav-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Desktop'ta sol logo gizli, mobilde görünür */
.logo.mobile-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--primary);
  text-decoration: none;
  display: none; /* Desktop'ta gizli */
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 10px var(--primary-glow));
}

.logo-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
  box-shadow: 0 0 15px var(--primary-glow);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover .logo-img {
  transform: rotate(360deg);
}

/* Nav içindeki logo item görünsün */
.nav-logo-item {
  display: flex !important;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.5rem 1.5rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease;
  margin: 0 auto; /* Tam ortala */
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  white-space: nowrap;
}

.nav-icon {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover .nav-icon {
  transform: scale(1.15);
}

.nav-links a.discord-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
}

.nav-links a.discord-link .nav-icon {
  fill: var(--primary);
  stroke: none;
}

.nav-links a.discord-link:hover {
  filter: drop-shadow(0 0 8px var(--primary-glow));
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

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

.nav-links li:first-child a::after {
  display: none;
}

/* Hamburger Menu Button */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
  position: relative;
}

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

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.cta-btn {
  background: linear-gradient(135deg, var(--primary) 0%, #4752c4 100%);
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 10px 20px rgba(88, 101, 242, 0.3);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 0, 0, 0.5);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 2rem 5rem 2rem;
  margin-bottom: 5rem;
  overflow: hidden;
  perspective: 1200px;
  background: transparent;
}

/* 3D Grid Floor */
.hero::before {
  content: '';
  position: absolute;
  width: 300%;
  height: 300%;
  background-image: 
    linear-gradient(rgba(88, 101, 242, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(88, 101, 242, 0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  transform: rotateX(75deg) translateZ(-100px);
  top: 50%;
  left: -100%;
  z-index: 0;
  opacity: 0.5;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { transform: rotateX(75deg) translateZ(-100px) translateY(0); }
  100% { transform: rotateX(75deg) translateZ(-100px) translateY(60px); }
}

/* Floating 3D Logo Cubes */
.floating-3d-box {
  position: absolute;
  background: transparent;
  border: 2px solid rgba(255, 0, 0, 0.4);
  z-index: 2;
  transform-style: preserve-3d;
  box-shadow: 
    0 0 20px rgba(255, 0, 0, 0.2),
    inset 0 0 20px rgba(255, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.floating-3d-box::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background-image: url('logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.8;
  filter: brightness(1.2) contrast(1.1);
}

.box-1 {
  width: 100px;
  height: 100px;
  border-radius: 15px;
  top: 15%;
  left: 8%;
  animation: float3d-1 10s infinite ease-in-out;
  border-color: rgba(255, 0, 0, 0.5);
}

.box-2 {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  bottom: 25%;
  right: 8%;
  animation: float3d-2 12s infinite ease-in-out;
  border-color: rgba(241, 196, 15, 0.5);
  box-shadow: 
    0 0 20px rgba(241, 196, 15, 0.2),
    inset 0 0 20px rgba(241, 196, 15, 0.1);
}

.box-3 {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  top: 60%;
  left: 5%;
  border-color: rgba(64, 224, 208, 0.5);
  box-shadow: 
    0 0 20px rgba(64, 224, 208, 0.2),
    inset 0 0 20px rgba(64, 224, 208, 0.1);
  animation: float3d-3 8s infinite ease-in-out;
}

.box-4 {
  width: 90px;
  height: 90px;
  border-radius: 14px;
  top: 10%;
  right: 12%;
  border-color: rgba(50, 205, 50, 0.5);
  box-shadow: 
    0 0 20px rgba(50, 205, 50, 0.2),
    inset 0 0 20px rgba(50, 205, 50, 0.1);
  animation: float3d-4 14s infinite ease-in-out;
}

@keyframes float3d-1 {
  0%, 100% { 
    transform: translateY(0) rotateX(15deg) rotateY(15deg) rotateZ(0deg); 
    border-color: rgba(255, 0, 0, 0.5);
  }
  50% { 
    transform: translateY(-40px) rotateX(-10deg) rotateY(-15deg) rotateZ(5deg); 
    border-color: rgba(255, 0, 0, 0.8);
  }
}

@keyframes float3d-2 {
  0%, 100% { 
    transform: translateY(0) rotateX(-10deg) rotateY(-20deg) rotateZ(0deg); 
    border-color: rgba(241, 196, 15, 0.5);
  }
  50% { 
    transform: translateY(-30px) rotateX(15deg) rotateY(10deg) rotateZ(-5deg); 
    border-color: rgba(241, 196, 15, 0.8);
  }
}

@keyframes float3d-3 {
  0%, 100% { 
    transform: translateY(0) rotateX(5deg) rotateY(10deg) rotateZ(5deg); 
    border-color: rgba(64, 224, 208, 0.5);
  }
  50% { 
    transform: translateY(-25px) rotateX(-15deg) rotateY(-10deg) rotateZ(-5deg); 
    border-color: rgba(64, 224, 208, 0.8);
  }
}

@keyframes float3d-4 {
  0%, 100% { 
    transform: translateY(0) rotateX(-5deg) rotateY(20deg) rotateZ(-3deg); 
    border-color: rgba(50, 205, 50, 0.5);
  }
  50% { 
    transform: translateY(-35px) rotateX(10deg) rotateY(-20deg) rotateZ(3deg); 
    border-color: rgba(50, 205, 50, 0.8);
  }
}

.hero-container {
  width: 100%;
  max-width: var(--max-width);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  gap: 1rem;
}

/* Top Bar Stats */
.hero-top-bar {
  background: rgba(13, 13, 18, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.8rem 2.5rem;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  width: fit-content;
  margin: 0 auto;
}

.top-stat {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.top-stat .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  box-shadow: 0 0 10px currentColor;
}

.top-stat .dot.online {
  background-color: var(--success);
  color: var(--success);
}

.top-stat .label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.top-stat .label b {
  font-weight: 800;
  margin-right: 0.2rem;
}

.top-stat-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.15);
}

.top-link {
  color: var(--warning);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.top-link:hover {
  text-shadow: 0 0 10px var(--warning);
  transform: translateX(5px);
}

/* Background Floating Text */
.hero-bg-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-content: space-around;
  opacity: 0.1;
  padding: 5rem;
}

.hero-bg-text span {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 4rem;
  color: var(--text-main);
  letter-spacing: 0.1em;
  filter: blur(2px);
  user-select: none;
  animation: floatText 10s infinite ease-in-out;
}

@keyframes floatText {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

.hero-bg-text span:nth-child(3n) {
  font-size: 6rem;
  opacity: 0.05;
}

.hero-bg-text span:nth-child(2n+1) {
  font-size: 3rem;
  opacity: 0.15;
}

.hero-bg-text span:nth-child(4n) {
  animation-duration: 15s;
}

.hero-content {
  max-width: 1000px;
  text-align: center;
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero-main-title {
  font-size: clamp(2.5rem, 7vw, 5rem) !important;
  line-height: 0.9 !important;
  margin-bottom: 1.5rem !important;
  letter-spacing: -0.05em;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-main-title .gradient-text {
  background: linear-gradient(135deg, #ff0000 0%, #ff6b6b 50%, #ffa5a5 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text;
  animation: gradientShift 8s ease infinite;
  text-shadow: 0 0 30px rgba(255, 0, 0, 0.3);
  filter: drop-shadow(0 0 40px rgba(242, 88, 88, 0.3));
  display: block;
}

@keyframes gradientShift {
  0%, 100% {
    background: linear-gradient(135deg, #ff0000 0%, #ff6b6b 50%, #ffa5a5 100%);
  }
  50% {
    background: linear-gradient(135deg, #ffa5a5 0%, #ff0000 50%, #ff6b6b 100%);
  }
}

.hero-main-title .subtitle {
  font-size: 0.6em;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeInUp 1s ease 0.3s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-sub-text {
  font-size: 1.05rem !important;
  color: var(--text-muted) !important;
  margin-bottom: 2rem !important;
  max-width: 700px !important;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  animation: fadeInUp 1s ease 0.5s both;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-main);
  padding: 1rem 2.5rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.cta-btn {
  background: linear-gradient(135deg, var(--primary) 0%, #c44747 100%);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(242, 88, 88, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(242, 88, 88, 0.5);
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 6rem;
  width: 100%;
}

.stat-item {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 2rem;
  border-radius: 24px;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.stat-item:hover {
  border-color: var(--primary);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 0, 0, 0.15);
}

.stat-value {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: var(--primary);
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Sections */
section {
  padding: 10rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Info Hub (Pano) */
.info-panel {
  background: linear-gradient(135deg, var(--bg-soft) 0%, rgba(255, 0, 0, 0.03) 100%);
  border: 1px solid var(--glass-border);
  border-radius: 40px;
  padding: 4rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.info-panel::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  z-index: 0;
  opacity: 0.5;
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.panel-logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid var(--primary);
  box-shadow: 0 0 30px var(--primary-glow);
}

.panel-title h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.info-item {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 2rem;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.info-item:hover {
  background: var(--glass-highlight);
  border-color: var(--primary);
  transform: scale(1.02);
}

.info-label {
  display: block;
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.info-value {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}

.panel-footer {
  margin-top: 4rem;
  text-align: center;
  color: var(--text-muted);
  font-style: italic;
  position: relative;
  z-index: 1;
}

/* Store Section */
.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.section-header h2 span {
  background: linear-gradient(135deg, var(--primary), #fd6363);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.feature-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 3rem;
  border-radius: 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, var(--primary-glow), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-10px) rotateX(2deg);
  border-color: var(--primary);
  box-shadow: 0 30px 60px rgba(88, 101, 242, 0.15);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--bg-soft);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 2rem;
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.feature-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--primary) !important;
  display: block;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.feature-card p {
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

/* Store Section Icons */
.section-icon {
  width: 32px;
  height: 32px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5rem;
  stroke: var(--primary);
}

/* Store */
.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

/* Limited Time Banner */
.limited-time-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem auto;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.15), rgba(255, 107, 107, 0.15));
  border: 2px solid var(--primary);
  border-radius: 50px;
  max-width: 600px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 0, 0, 0.6);
  }
}

.flash-icon {
  width: 24px;
  height: 24px;
  fill: var(--primary);
  animation: flash 1.5s ease-in-out infinite;
}

@keyframes flash {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.limited-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.limited-text strong {
  color: var(--primary);
  font-weight: 800;
}

/* Countdown Timer */
.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem auto 0;
  max-width: 400px;
}

.time-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1rem 1.5rem;
  min-width: 80px;
}

.time-value {
  font-size: 2rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: var(--primary);
  line-height: 1;
}

.time-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}

.time-separator {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

/* Package Cards */
.package-card {
  background: var(--bg-soft);
  border: 1px solid var(--glass-border);
  padding: 2.5rem;
  border-radius: 32px;
  text-align: left;
  transition: all 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border-color: var(--primary);
}

.package-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, var(--bg-soft) 0%, rgba(241, 196, 15, 0.05) 100%);
  transform: scale(1.02);
}

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

.package-card.premium {
  border-color: #ffd700;
  background: linear-gradient(180deg, var(--bg-soft) 0%, rgba(255, 215, 0, 0.05) 100%);
  transform: scale(1.02);
}

.package-card.premium:hover {
  transform: scale(1.02) translateY(-5px);
  border-color: #ffd700;
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.badge {
  background: var(--primary);
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.premium-badge {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000;
}

.package-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--glass-border);
}

.package-header h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.package-icon {
  width: 28px;
  height: 28px;
  fill: var(--primary);
}

.price-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.old-price {
  font-size: 1.2rem;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 600;
}

.price {
  font-size: 3.5rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  display: block;
  color: var(--primary);
  line-height: 1;
}

.price span {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-left: 0.3rem;
}

.discount-badge {
  background: var(--primary);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

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

.features-list li {
  margin-bottom: 1.2rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.9rem;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.features-list li::before {
  display: none;
}

.feature-icon-small {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.2rem;
  stroke: var(--primary);
  fill: none;
}

.feature-icon-small[fill="currentColor"] {
  fill: var(--primary);
  stroke: none;
}

.features-list li strong {
  color: var(--text-main);
  font-weight: 600;
  white-space: nowrap;
}

.features-list .highlight {
  color: var(--primary);
  font-weight: 700;
  white-space: nowrap;
}

.premium-btn {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000;
  font-weight: 800;
}

.premium-btn:hover {
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.5);
}

/* Footer */
.advanced-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--glass-border);
  padding: 5rem 2rem 2rem 2rem;
  margin-top: 5rem;
  position: relative;
  z-index: 1;
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand .logo {
  margin-bottom: 1.5rem;
}

.brand-desc {
  color: var(--text-muted);
  max-width: 400px;
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-nav h4,
.footer-social h4 {
  color: var(--text-main);
  font-size: 1rem;
  margin-bottom: 2rem;
  letter-spacing: 0.1em;
}

.footer-nav .footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-nav .footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-nav .footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.social-icons {
  display: flex;
  gap: 1.5rem;
}

.social-btn {
  width: 45px;
  height: 45px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-btn svg {
  width: 20px;
  height: 20px;
}

.social-btn:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px var(--primary-glow);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-bottom .designer-credit a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
}

.footer-bottom .designer-credit a:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* Modals */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
}

.modal-content {
  background-color: var(--bg-soft);
  margin: 10% auto;
  padding: 3rem;
  border: 1px solid var(--glass-border);
  width: 80%;
  max-width: 600px;
  border-radius: 32px;
  position: relative;
  animation: modalFade 0.3s ease-out;
}

@keyframes modalFade {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close-btn {
  color: var(--text-muted);
  float: right;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: var(--primary);
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: span 2;
  }

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

  section {
    padding: 8rem 1.5rem;
  }

  .info-panel {
    padding: 3rem 2rem;
  }

  .panel-header {
    gap: 1.5rem;
  }

  .hero-top-bar {
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem 1.5rem;
  }

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

  .package-card.featured,
  .package-card.premium {
    transform: scale(1);
  }

  .countdown-timer {
    gap: 0.5rem;
  }

  .time-unit {
    padding: 0.8rem 1rem;
    min-width: 70px;
  }

  .time-value {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  /* Mobilde sol logo görünsün */
  .logo.mobile-logo {
    display: flex !important;
  }

  /* Hamburger Menu */
  .hamburger {
    display: flex;
  }

  /* Navigation */
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: rgba(13, 13, 18, 0.98);
    backdrop-filter: blur(25px);
    flex-direction: column;
    padding: 5rem 2rem 2rem 2rem;
    gap: 0;
    border-radius: 0;
    border-left: 1px solid var(--glass-border);
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .nav-links.active {
    display: flex;
    transform: translateX(0);
  }

  .nav-links li {
    width: 100%;
    margin: 0;
  }

  .nav-links a {
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    justify-content: flex-start;
  }

  .nav-links a:hover {
    background: var(--glass);
  }

  .nav-logo-item {
    display: none !important;
  }

  /* Mobile Overlay */
  .mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    backdrop-filter: blur(5px);
  }

  .mobile-overlay.active {
    display: block;
  }

  nav {
    padding: 1rem 2rem;
  }

  .logo {
    font-size: 1.3rem;
  }

  .logo-img {
    width: 45px;
    height: 45px;
  }

  /* Hero Section */
  .hero {
    height: auto;
    padding: 2rem 1rem;
    margin-bottom: 3rem;
  }

  .hero-main-title {
    font-size: clamp(2rem, 8vw, 3rem) !important;
    line-height: 1 !important;
  }

  .hero-main-title .subtitle {
    font-size: 0.5em;
  }

  .hero-sub-text {
    font-size: 1rem !important;
  }

  .hero-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-actions a {
    width: 100%;
    text-align: center;
  }

  .hero-top-bar {
    flex-direction: column;
    gap: 0.8rem;
  }

  .top-stat-divider {
    display: none;
  }

  /* Stats */
  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .stat-item {
    padding: 1.5rem;
  }

  .stat-value {
    font-size: 2rem;
  }

  /* Sections */
  section {
    padding: 6rem 1.5rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .section-header p {
    font-size: 0.95rem;
  }

  /* Features & Store Grid */
  .features-grid,
  .store-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feature-card,
  .package-card {
    padding: 2rem;
  }

  /* Package Cards */
  .package-card.featured {
    transform: scale(1);
  }

  .package-card.featured:hover {
    transform: scale(1);
  }

  .price {
    font-size: 2.5rem;
  }

  /* Info Panel */
  .info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .info-panel {
    padding: 2rem;
  }

  .panel-header {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .panel-logo {
    width: 80px;
    height: 80px;
  }

  .panel-title h2 {
    font-size: 1.8rem;
  }

  /* Countdown Timer */
  .limited-time-banner {
    flex-direction: column;
    padding: 1rem;
    gap: 0.5rem;
  }

  .limited-text {
    font-size: 0.9rem;
    text-align: center;
  }

  .flash-icon {
    width: 20px;
    height: 20px;
  }

  .countdown-timer {
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .time-unit {
    padding: 0.6rem 0.8rem;
    min-width: 60px;
  }

  .time-value {
    font-size: 1.3rem;
  }

  .time-label {
    font-size: 0.65rem;
  }

  .time-separator {
    font-size: 1.5rem;
  }

  /* Package Cards */
  .package-header h3 {
    font-size: 1.5rem;
  }

  .package-icon {
    width: 24px;
    height: 24px;
  }

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

  .discount-badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.8rem;
  }

  .feature-icon-small {
    width: 16px;
    height: 16px;
  }

  /* Floating Elements */
  .floating-3d-box {
    display: none;
  }

  .hero::before {
    display: none;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-nav,
  .footer-social {
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  /* Navigation */
  .cta-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
  }

  /* Hero */
  .hero {
    min-height: 60vh;
  }

  .hero-main-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem) !important;
    margin-bottom: 1rem !important;
  }

  .hero-main-title .subtitle {
    font-size: 0.45em;
  }

  .hero-sub-text {
    font-size: 0.9rem !important;
    margin-bottom: 2rem !important;
  }

  .hero-top-bar {
    padding: 0.8rem 1rem;
    gap: 0.5rem;
  }

  .top-stat .label {
    font-size: 0.75rem;
  }

  .hero-container {
    margin-top: -2rem;
  }

  /* Stats */
  .stats {
    grid-template-columns: 1fr;
  }

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

  .stat-item {
    padding: 1rem;
  }

  /* Sections */
  section {
    padding: 4rem 1rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .section-header p {
    font-size: 0.85rem;
  }

  /* Cards */
  .feature-card,
  .package-card {
    padding: 1.5rem;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
  }

  .feature-icon svg {
    width: 30px;
    height: 30px;
  }

  .feature-card h3 {
    font-size: 1.2rem;
  }

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

  .price {
    font-size: 2rem;
  }

  .features-list li {
    font-size: 0.9rem;
  }

  /* Info Panel */
  .info-item {
    padding: 1.5rem;
  }

  .info-label {
    font-size: 0.75rem;
  }

  .info-value {
    font-size: 1rem;
  }

  .panel-logo {
    width: 70px;
    height: 70px;
  }

  .panel-title h2 {
    font-size: 1.4rem;
  }

  /* Countdown Timer */
  .limited-time-banner {
    padding: 0.8rem;
  }

  .flash-icon {
    width: 18px;
    height: 18px;
  }

  .limited-text {
    font-size: 0.8rem;
  }

  .countdown-timer {
    gap: 0.3rem;
  }

  .time-unit {
    padding: 0.5rem 0.6rem;
    min-width: 50px;
  }

  .time-value {
    font-size: 1.1rem;
  }

  .time-label {
    font-size: 0.6rem;
  }

  .time-separator {
    font-size: 1.2rem;
  }

  .section-icon {
    width: 24px;
    height: 24px;
  }

  /* Footer */
  .advanced-footer {
    padding: 3rem 1rem 1.5rem 1rem;
  }

  .footer-nav h4,
  .footer-social h4 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .brand-desc {
    max-width: 100%;
    font-size: 0.9rem;
  }

  .footer-bottom {
    font-size: 0.8rem;
    gap: 0.5rem;
  }

  /* Modal */
  .modal-content {
    width: 90%;
    padding: 2rem;
    margin: 30% auto;
  }
}

@media (max-width: 480px) {
  /* Extra small screens */
  .logo {
    font-size: 1rem;
    gap: 0.5rem;
  }

  .logo-img {
    width: 35px;
    height: 35px;
  }

  .cta-btn,
  .btn-secondary {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }

  .hero-main-title {
    font-size: 1.3rem !important;
  }

  .hero-sub-text {
    font-size: 0.8rem !important;
  }

  section {
    padding: 3rem 0.75rem;
  }

  .section-header h2 {
    font-size: 1.2rem;
  }

  .stat-value {
    font-size: 1.5rem;
  }

  .price {
    font-size: 1.8rem;
  }
}

/* Accessibility & High Contrast */
@media (prefers-contrast: more) {
  :root {
    --text-muted: #c0c0c0;
    --glass-border: rgba(255, 255, 255, 0.2);
  }

  .feature-card,
  .package-card {
    border-width: 2px;
  }
}

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

  #bg-canvas {
    display: none;
  }

  .hero {
    height: auto;
  }
}
