/* ===================================================
   LOA GAME STUDIO (LEGENDS OF APEXIA) ÖZEL STİLLERİ
   =================================================== */

.studio-page {
  background: radial-gradient(circle at 50% 0%, #1a1408 0%, #07090e 65%);
}

.studio-page.apexia-theme {
  background: radial-gradient(circle at 50% 0%, #131d27 0%, #06090e 65%);
}

.studio-hero {
  padding: 160px 0 70px;
  position: relative;
  text-align: center;
}

.studio-hero-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.studio-hero-main-logo {
  width: 220px;
  height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 0 35px rgba(245, 158, 11, 0.45));
  animation: floatAnim 6s ease-in-out infinite;
}

.studio-hero-sub-logo {
  width: 190px;
  height: 190px;
  object-fit: contain;
  filter: drop-shadow(0 0 35px rgba(226, 232, 240, 0.35));
  animation: floatAnim 6s ease-in-out infinite -3s;
}

.studio-hero-single-logo {
  width: 190px;
  height: 190px;
  object-fit: contain;
  margin: 22px auto 28px;
  display: block;
  filter: drop-shadow(0 0 30px rgba(245, 158, 11, 0.45));
  animation: floatAnim 6s ease-in-out infinite;
}

.studio-page.apexia-theme .studio-hero-single-logo {
  filter: drop-shadow(0 0 35px rgba(226, 232, 240, 0.45)) drop-shadow(0 0 15px rgba(148, 163, 184, 0.35));
}

.studio-page.apexia-theme .lore-section-box {
  background: radial-gradient(circle at top center, rgba(148, 163, 184, 0.08) 0%, rgba(13, 17, 26, 0.95) 75%);
  border-color: rgba(226, 232, 240, 0.25);
}

.studio-page.apexia-theme .studio-callout {
  background: radial-gradient(circle at center, rgba(148, 163, 184, 0.08) 0%, rgba(13, 17, 26, 0.95) 75%);
  border-color: rgba(226, 232, 240, 0.25);
}

.studio-switch-card {
  margin-top: 45px;
  padding: 28px 36px;
  background: linear-gradient(135deg, rgba(14, 21, 37, 0.8) 0%, rgba(8, 12, 22, 0.9) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.studio-hero-title {
  font-size: 3.6rem;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.studio-hero-lead {
  font-size: 1.25rem;
  max-width: 760px;
  margin: 0 auto 32px;
  color: var(--text-muted);
  line-height: 1.8;
}

.studio-meta-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* 3 Ana Pazar / Proje Sütunları Izgarası */
.studio-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 50px;
}

.project-card {
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--border-subtle);
  transition: background var(--transition-fast);
}

.project-card.minecraft::before {
  background: linear-gradient(90deg, #10b981, #059669);
}

.project-card.roblox::before {
  background: linear-gradient(90deg, #38bdf8, #0284c7);
}

.project-card.cs2::before {
  background: linear-gradient(90deg, #f97316, #ea580c);
}

.project-card:hover {
  transform: translateY(-8px);
  background: var(--bg-card-hover);
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.7);
}

.project-card.minecraft:hover {
  border-color: rgba(16, 185, 129, 0.35);
  box-shadow: 0 20px 45px -10px rgba(16, 185, 129, 0.2);
}

.project-card.roblox:hover {
  border-color: rgba(56, 189, 248, 0.35);
  box-shadow: 0 20px 45px -10px rgba(56, 189, 248, 0.2);
}

.project-card.cs2:hover {
  border-color: rgba(249, 115, 22, 0.35);
  box-shadow: 0 20px 45px -10px rgba(249, 115, 22, 0.2);
}

.project-tag-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.project-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.project-title {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: #ffffff;
}

.project-desc {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.project-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.project-feature-list li {
  font-size: 0.9rem;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.project-feature-list li span {
  color: var(--gold-light);
}

/* Meslek Ağaçları & Lore Vitrini */
.lore-section-box {
  background: radial-gradient(circle at top center, rgba(245, 158, 11, 0.1) 0%, rgba(13, 17, 26, 0.95) 75%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 50px;
  margin-top: 70px;
}

.lore-header {
  text-align: center;
  margin-bottom: 40px;
}

.lore-header h3 {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.lore-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.lore-tree-card {
  padding: 28px 24px;
  background: rgba(10, 15, 26, 0.75);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  text-align: left;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.lore-tree-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
  background: rgba(14, 21, 37, 0.85);
}

.lore-tree-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-subtle);
}

.lore-tree-icon {
  font-size: 2.2rem;
}

.lore-tree-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
.lore-tree-subtag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-light);
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-full);
  padding: 3px 10px;
  margin-bottom: 14px;
}

.lore-tree-desc {
  font-size: 0.92rem;
  color: #cbd5e1;
  line-height: 1.75;
  margin-bottom: 16px;
}

.lore-tree-desc strong {
  color: #ffffff;
}

.lore-tree-highlight {
  background: linear-gradient(135deg, rgba(225, 29, 72, 0.12) 0%, rgba(15, 23, 42, 0.6) 100%);
  border: 1px solid rgba(225, 29, 72, 0.35);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 0.84rem;
  color: #fda4af;
  line-height: 1.6;
  margin-bottom: 18px;
}

.lore-tree-highlight strong {
  color: #ffe4e6;
}

.lore-tree-footer {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* Roblox Oyunları Mini Vitrini */
.roblox-games-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.mini-game-card {
  padding: 24px;
  background: rgba(16, 23, 37, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}

.mini-game-card h4 {
  font-size: 1.2rem;
  color: #38bdf8;
  margin-bottom: 8px;
}

.mini-game-card p {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Çağrı / Başvuru Kartı */
.studio-callout {
  text-align: center;
  padding: 70px 40px;
  background: radial-gradient(circle at center, rgba(245, 158, 11, 0.12) 0%, rgba(13, 17, 26, 0.95) 75%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  margin-top: 70px;
}

.studio-callout h2 {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.studio-callout p {
  max-width: 650px;
  margin: 0 auto 32px;
  font-size: 1.15rem;
}

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

  .lore-grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .roblox-games-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .studio-hero-title {
    font-size: 2.5rem;
  }

  .studio-hero-main-logo {
    width: 170px;
    height: 170px;
  }

  .studio-hero-sub-logo {
    width: 140px;
    height: 140px;
  }

  .lore-grid-4 {
    grid-template-columns: 1fr;
  }
}

/* Stüdyo Bölüm Ayırıcıları & Anchorlar */
.studio-section {
  scroll-margin-top: 110px;
  padding-top: 30px;
  margin-bottom: 60px;
}

.studio-section:not(:last-of-type) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 60px;
}
