/* ===================================================
   FELEROUS ID & SUPERAPP DAĞITIM PLATFORMU STİLLERİ
   =================================================== */

.felerous-id-page {
  background: radial-gradient(circle at 50% 0%, #0d1e17 0%, #07090e 70%);
}

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

.fid-badge-platform {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 22px;
  border-radius: var(--radius-full);
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid var(--border-emerald);
  color: var(--emerald-primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.fid-hero-title {
  font-size: 3.8rem;
  line-height: 1.15;
  margin-bottom: 20px;
}

.fid-hero-subtitle {
  font-size: 1.25rem;
  max-width: 780px;
  margin: 0 auto 36px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* İnteraktif Mockup Grid (Auth & Bağlantılı Hesaplar) */
.fid-showcase-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
  gap: 40px;
  align-items: center;
  margin-top: 30px;
}

/* Oyuncu Kartı Mockup'ı */
.gamer-card-preview {
  background: linear-gradient(145deg, rgba(16, 23, 37, 0.9) 0%, rgba(8, 12, 22, 0.95) 100%);
  border: 1px solid var(--border-emerald);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 25px 60px -15px rgba(0, 230, 118, 0.25);
  position: relative;
  overflow: hidden;
}

.gamer-card-preview::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -30%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(0, 230, 118, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.gamer-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}

.gamer-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00e676, #e11d48);
  padding: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.gamer-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #07090e;
  object-fit: cover;
}

.gamer-online-dot {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #00e676;
  border: 2px solid #07090e;
  box-shadow: 0 0 10px #00e676;
}

.gamer-info h4 {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.gamer-tag {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--emerald-primary);
  letter-spacing: 1px;
}

.gamer-level-bar {
  margin-bottom: 24px;
}

.level-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 8px;
  color: var(--text-muted);
}

.level-progress-bg {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
}

.level-progress-fill {
  width: 74%;
  height: 100%;
  background: linear-gradient(90deg, #00e676, #fbbf24);
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0, 230, 118, 0.5);
}

/* Bağlı Platform Rozetleri */
.connected-platforms-box {
  background: rgba(0, 0, 0, 0.35);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid var(--border-subtle);
}

.connected-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dim);
  margin-bottom: 14px;
}

.platform-badges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.platform-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.platform-badge-item.active {
  border-color: rgba(0, 230, 118, 0.3);
  color: #ffffff;
  background: rgba(0, 230, 118, 0.06);
}

.platform-badge-item.active .status-indicator {
  color: var(--emerald-primary);
}

/* Yerli Dağıtım & Steam/Epic Rakibi Dağıtım Vizyonu */
.publishing-banner {
  background: radial-gradient(circle at center, rgba(0, 230, 118, 0.12) 0%, rgba(13, 17, 26, 0.95) 80%);
  border: 1px solid var(--border-emerald);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  margin-top: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.turkey-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  background: rgba(225, 29, 72, 0.12);
  border: 1px solid var(--border-ruby);
  color: #fb7185;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.publishing-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
  text-align: left;
}

.pub-feat-card {
  padding: 30px;
  background: rgba(16, 23, 37, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
}

.pub-feat-card:hover {
  border-color: var(--border-emerald);
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 230, 118, 0.15);
}

.pub-feat-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.pub-feat-card h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.pub-feat-card p {
  font-size: 0.92rem;
  line-height: 1.7;
}

/* Auth Simülasyon Form Kartı */
.auth-mockup-card {
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
}

.auth-mockup-card h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.auth-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 12px;
}

.auth-tab-btn {
  background: transparent;
  border: none;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.auth-tab-btn.active {
  color: #000;
  background: var(--emerald-primary);
}

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

  .publishing-features-grid {
    grid-template-columns: 1fr;
  }

  .platform-badges-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .publishing-banner {
    padding: 40px 20px;
  }
}
