:root {
  --bg-color: #050508;
  --card-bg: #0f0f16;
  --text: #e0e0e0;
  --neon-blue: #00f3ff;
  --neon-pink: #ff0055;
  --neon-purple: #bc13fe;
}

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

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

h1, h2, h3, .btn {
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
}

a {
  text-decoration: none;
  transition: 0.3s;
  color: var(--text);
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(5, 5, 8, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 2px;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header-right {
  display: flex;
  gap: 20px;
  align-items: center;
}

.lang-switch {
  display: flex;
  gap: 10px;
}

.lang-switch a {
  background: transparent;
  border: 1px solid #444;
  color: #888;
  padding: 5px 10px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.lang-switch a.active,
.lang-switch a.active-lang {
  border-color: var(--neon-blue);
  color: var(--neon-blue);
  box-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
}

.btn-demo {
  background: var(--neon-pink);
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 0.8rem;
  border: none;
  letter-spacing: 1px;
}

.btn-hero {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1rem;
}

.btn-demo:hover {
  box-shadow: 0 0 20px var(--neon-pink);
  transform: scale(1.05);
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(rgba(5, 5, 8, 0.7), rgba(5, 5, 8, 0.9)), url('../../images/hero_bg.png');
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 4rem;
  letter-spacing: 4px;
  margin-bottom: 10px;
  line-height: 1.1;
  text-shadow: 0 0 20px rgba(255, 0, 85, 0.5);
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--neon-blue);
  letter-spacing: 3px;
  margin-bottom: 40px;
}

.tagline {
  color: #aaa;
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.card {
  background: var(--card-bg);
  padding: 30px;
  border: 1px solid #222;
  text-align: center;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-10px);
  border-color: var(--neon-blue);
}

.card i {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.card h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.c-brain i, .c-brain h3 { color: var(--neon-blue); }
.c-vision i, .c-vision h3 { color: var(--neon-pink); }
.c-sound i, .c-sound h3 { color: var(--neon-purple); }

.info-section {
  padding: 100px 20px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.info-section h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #fff;
}

.info-section p {
  margin-bottom: 20px;
  color: #ccc;
  font-size: 1.1rem;
}

.mascots {
  margin-top: 40px;
  padding: 20px;
  border: 1px solid #333;
  background: #0a0a0e;
}

.mascots span {
  color: var(--neon-pink);
  font-weight: bold;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 60px auto 0;
  padding: 0 20px;
}

.visual-card {
  height: 260px;
  position: relative;
  overflow: hidden;
  border: 1px solid #222;
  background: #0d0d14;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: #fff;
}

.visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(20%);
  opacity: 0.9;
  transition: 0.4s;
}

.visual-card:hover::before {
  transform: scale(1.05);
  opacity: 1;
}

.visual-card .label {
  position: relative;
  z-index: 1;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 1px;
  background: rgba(5, 5, 8, 0.7);
  padding: 8px 12px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.img-vision::before { background-image: url('../../images/flamingo_neon.png'); }
.img-demo::before { background-image: url('../../images/pilot_poodle.jpeg'); }

.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin: 80px 0 30px;
  letter-spacing: 2px;
}

.section-title span { color: var(--neon-pink); }

.tracks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto 40px;
  padding: 0 20px;
}

.track-card {
  background: #0d0d14;
  border: 1px solid #1d1d29;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cat-num {
  color: var(--neon-blue);
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 0.95rem;
}

.track-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
}

.platform-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.platform-links a {
  padding: 8px 12px;
  border: 1px solid #333;
  color: #ccc;
  font-size: 0.9rem;
  border-radius: 4px;
  transition: 0.3s;
}

.platform-links a:hover {
  border-color: var(--neon-pink);
  color: #fff;
}

.playlist-wrap {
  margin-top: 18px;
}

.playlist-btn {
  display: inline-block;
  background: #1DB954;
  color: #fff;
  padding: 12px 22px;
  border-radius: 30px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(29, 185, 84, 0.35);
}

.playlist-note {
  color: #9bd5b0;
  font-size: 0.95rem;
  margin-top: 8px;
}

footer {
  padding: 50px 20px;
  text-align: center;
  border-top: 1px solid #222;
  background: #000;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.socials a {
  font-size: 1.5rem;
  color: #888;
}

.socials a:hover {
  color: var(--neon-blue);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2.5rem; }
  .logo { font-size: 1.2rem; }
  .btn-demo { display: none; }
}

/* =========================================
   YENİ EKLENEN STİLLER (Doctor Zagor Entegrasyonu)
   ========================================= */

/* --- Header & Navigasyon Düzenlemeleri --- */
header {
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    text-decoration: none;
}

.header-right-group {
    display: flex;
    align-items: center;
    gap: 25px;
}

.main-nav a {
    color: #ccc;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--neon-blue);
}

.main-nav i {
    font-size: 0.9rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }
    
    .header-right-group {
        gap: 15px;
    }

    .main-nav a {
        font-size: 1rem;
    }
    
    .main-nav i {
        display: none;
    }

    .btn-demo {
        padding: 8px 12px;
    }
    
    .mobile-hide-text span {
        display: none;
    }
    .mobile-hide-text i {
        margin-right: 0;
        font-size: 1.1rem;
    }
}

/* --- Yeni Footer İletişim Alanı --- */
.footer-contact-info {
    margin: 30px 0;
    text-align: center;
    background: rgba(0,0,0,0.3);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #222;
}

.fc-title {
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    font-weight: bold;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.fc-person, .fc-address, .fc-phone {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 8px;
    font-family: 'Rajdhani', sans-serif;
}

.fc-person span {
    color: var(--neon-blue);
    font-weight: bold;
}

.footer-bottom {
    margin-top: 20px;
    border-top: 1px solid #222;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.kvkk-link {
    color: #666;
    font-size: 0.85rem;
    text-decoration: underline;
    transition: color 0.3s;
}

.kvkk-link:hover {
    color: var(--neon-blue);
}

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 10, 10, 0.95);
  border: 1px solid var(--neon-blue);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  z-index: 1000;
  display: none;
  flex-direction: column;
  gap: 15px;
  width: 90%;
  max-width: 500px;
  backdrop-filter: blur(10px);
  text-align: center;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
  color: #ddd;
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.cookie-link {
  color: var(--neon-blue);
  font-size: 0.85rem;
  text-decoration: underline;
}

.cookie-btn {
  background: var(--neon-blue);
  color: #000;
  border: none;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Orbitron', sans-serif;
}

.cookie-btn:hover {
  background: var(--neon-pink);
  box-shadow: 0 0 15px var(--neon-pink);
}
