:root {
  --bg: #0a0a0a;
  --text: #eeeeee;
  --accent: #e30613;
  --card: #1a1a1a;
}

[data-theme="light"] {
  --bg: #f8f8f8;
  --text: #111111;
  --card: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  transition: all 0.5s ease;
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(15px);
  z-index: 1000;
  padding: 1.3rem 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(227, 6, 19, 0.25);
}

[data-theme="light"] header {
  background: rgba(248, 248, 248, 0.97);
}

.logo {
  font-size: 2.7rem;
  font-weight: 900;
  letter-spacing: 4px;
  color: white;
  text-shadow: 0 0 30px var(--accent);
}

[data-theme="light"] .logo { color: #000; }

nav a {
  color: white;
  text-decoration: none;
  margin: 0 20px;
  font-weight: 500;
  font-size: 1.1rem;
  position: relative;
}

[data-theme="light"] nav a { color: #111; }

nav a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: width 0.4s ease;
}

nav a:hover::after { width: 100%; }

.header-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

.theme-toggle, .cart {
  background: none;
  border: none;
  font-size: 2.1rem;
  cursor: pointer;
  transition: 0.3s;
}

[data-theme="light"] .theme-toggle,
[data-theme="light"] .cart { color: #111; }

.cart { position: relative; cursor: pointer; }

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--accent);
  color: white;
  font-size: 0.85rem;
  font-weight: bold;
  min-width: 23px;
  height: 23px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* HERO */
.about-hero {
  height: 75vh;
  background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.8)), 
              url('Fotolar/hakkimizda-hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-content h1 {
  font-size: 4.8rem;
  margin-bottom: 20px;
  text-shadow: 0 10px 40px rgba(0,0,0,0.9);
}

.hero-content p {
  font-size: 1.9rem;
  opacity: 0.95;
}

/* HAKKIMIZDA METİN */
.about-section {
  padding: 100px 6%;
  background: var(--card);
  text-align: center;
}

.about-text {
  max-width: 950px;
  margin: 0 auto;
  font-size: 1.4rem;
  line-height: 2;
  color: #ddd;
}

/* BAŞARILAR */
.success-section {
  padding: 100px 6%;
  background: var(--bg);
}

.success-section h2 {
  text-align: center;
  font-size: 3.3rem;
  margin-bottom: 80px;
  color: var(--accent);
}

.success-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 35px;
}

.success-card {
  background: var(--card);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,0.4);
  transition: all 0.4s ease;
}

.success-card:hover {
  transform: translateY(-12px);
}

.success-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.success-info {
  padding: 28px;
}

.success-info h3 {
  font-size: 1.55rem;
  margin-bottom: 14px;
  color: var(--accent);
}

.success-info p {
  color: #ccc;
  line-height: 1.75;
}

/* EFSANE OYUNCULAR */
.legend-section {
  padding: 80px 6% 100px;
  background: var(--card);
  text-align: center;
}

.legend-section h2 {
  font-size: 3.2rem;
  margin-bottom: 60px;
  color: var(--accent);
}

.legend-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.legend-card {
  background: var(--bg);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: all 0.4s ease;
}

.legend-card:hover {
  transform: translateY(-10px);
}

.legend-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.legend-card h3 {
  padding: 18px 15px 8px;
  font-size: 1.45rem;
  color: var(--accent);
}

.legend-card p {
  padding: 0 15px 20px;
  color: #ccc;
}

/* Yukarı Butonu */
.up-btn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 65px;
  height: 65px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 2.5rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 35px rgba(227,6,19,0.7);
  z-index: 999;
}

.up-btn:hover { transform: scale(1.15); }

footer {
  background: #000;
  color: #777;
  text-align: center;
  padding: 60px 20px;
}
.music-player {
  position: fixed;
  bottom: 30px;
  left: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 9999;
}

.music-btn {
  width: 65px;
  height: 65px;
  background: #e30613;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(227,6,19,0.6);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.music-btn:hover {
  transform: scale(1.15);
}

.music-btn.playing {
  background: #00c853;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0,150,83,0.7); }
  70% { box-shadow: 0 0 0 14px rgba(0,150,83,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,150,83,0); }
}

.volume-slider {
  width: 100px;
  accent-color: #e30613;
  cursor: pointer;
}