/* ===================================================
   FELEROUS STORE - PROFİL, AYARLAR & GİZLİLİK STİLLERİ
   =================================================== */

.profile-page-wrapper {
  padding-bottom: 80px;
}

/* Profil Üst Başlığı (Banner & Avatar) */
.profile-hero-banner {
  position: relative;
  height: 280px;
  background: #000;
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.profile-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.profile-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 11, 17, 0.1) 0%, rgba(8, 11, 17, 0.95) 100%);
}

.profile-header-container {
  position: relative;
  margin-top: -65px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.profile-avatar-group {
  display: flex;
  align-items: flex-end;
  gap: 20px;
}

.profile-avatar-large {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-md);
  border: 3px solid var(--emerald-primary);
  background: linear-gradient(135deg, #00e676, #e11d48);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 25px var(--emerald-glow);
  position: relative;
}

.profile-level-badge {
  position: absolute;
  bottom: -8px;
  right: -8px;
  background: #0e131d;
  border: 2px solid var(--emerald-primary);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #00e676;
}

.profile-user-info h1 {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.profile-user-status-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.status-indicator-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: rgba(0, 230, 118, 0.15);
  border: 1px solid var(--border-emerald);
  color: #00e676;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

/* Profil / Ayarlar Sekme Çubuğu */
.profile-tabs-nav {
  display: flex;
  gap: 12px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 36px;
  overflow-x: auto;
}

.profile-tab-btn {
  padding: 14px 22px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.profile-tab-btn:hover {
  color: #ffffff;
}

.profile-tab-btn.active {
  color: #ffffff;
}

.profile-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--emerald-primary);
  box-shadow: 0 0 12px var(--emerald-glow);
}

/* Ayarlar Kartı ve Form Öğeleri */
.settings-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

.settings-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 26px;
  margin-bottom: 24px;
}

.settings-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.settings-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-subtle);
  gap: 20px;
}

.settings-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.settings-label-group {
  flex: 1;
}

.settings-label-title {
  font-weight: 700;
  color: #ffffff;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.settings-label-desc {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.5;
}

/* Switch (Aç/Kapa Toggle) */
.switch-toggle {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

.switch-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.15);
  transition: .3s;
  border-radius: 34px;
  border: 1px solid var(--border-subtle);
}

.switch-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .3s;
  border-radius: 50%;
}

input:checked + .switch-slider {
  background-color: var(--emerald-primary);
}

input:checked + .switch-slider:before {
  transform: translateX(22px);
  background-color: #031008;
}

/* Ayarlar Input ve Select */
.settings-input, .settings-select {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.settings-input:focus, .settings-select:focus {
  border-color: var(--emerald-primary);
}

/* Cüzdan Paneli */
.wallet-balance-banner {
  background: linear-gradient(135deg, rgba(0, 230, 118, 0.1) 0%, rgba(14, 19, 29, 0.95) 100%);
  border: 1px solid var(--border-emerald);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.wallet-balance-val {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-top: 4px;
}

/* Navbar Profil Dropdown Menüsü */
.profile-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 260px;
  background: rgba(14, 19, 29, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 230, 118, 0.15);
  padding: 12px;
  z-index: 1001;
  display: none;
}

.profile-dropdown-menu.show {
  display: block;
  animation: fadeInDown 0.2s ease forwards;
}

.dropdown-user-header {
  padding: 10px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 8px;
}

.dropdown-link-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.dropdown-link-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

.dropdown-link-item.logout:hover {
  background: rgba(225, 29, 72, 0.15);
  color: var(--ruby-primary);
}

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

/* ===================================================
   STEAM HESAP DETAYLARI & DİL TERCİHLERİ STİLLERİ
   =================================================== */

.steam-account-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  margin-top: 20px;
}

.steam-settings-sidebar {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(14, 19, 29, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 10px;
  height: fit-content;
}

.steam-side-tab-btn {
  padding: 10px 14px;
  background: none;
  border: none;
  border-radius: var(--radius-sm);
  color: #8f98a0;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.steam-side-tab-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

.steam-side-tab-btn.active {
  background: #0284c7;
  color: #ffffff;
  font-weight: 700;
}

.steam-account-header-box {
  margin-bottom: 24px;
}

.steam-account-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.steam-account-id {
  font-size: 0.82rem;
  color: #8f98a0;
}

.steam-account-card {
  background: rgba(20, 27, 41, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  overflow: hidden;
}

.steam-account-card-header {
  padding: 14px 20px;
  background: rgba(14, 19, 29, 0.9);
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.steam-account-card-body {
  padding: 20px;
}

.steam-account-split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.steam-action-btn {
  display: block;
  width: 100%;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: #c6d4df;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: left;
  margin-bottom: 8px;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.steam-action-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

/* ===================================================
   STEAM GÜVENLİK & AYGITLAR STİLLERİ (Screenshot 1 & 2)
   =================================================== */

.steam-guard-banner {
  background: rgba(14, 25, 40, 0.9);
  border: 1px solid #1e3a8a;
  border-radius: 6px;
  padding: 16px 20px;
  margin-bottom: 20px;
}

.steam-guard-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.steam-guard-badge-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

.steam-guard-icon-box {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: #14532d;
  color: #4ade80;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.steam-guard-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.security-grid-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 20px;
}

.security-credential-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.security-cred-label {
  font-size: 0.8rem;
  color: #8f98a0;
}

.security-cred-val {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
}

.auth-device-card {
  padding: 12px 16px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.auth-device-card.active-device {
  background: #173860;
  border-color: #0284c7;
}

.auth-device-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.auth-device-icon {
  font-size: 1.4rem;
}

.auth-device-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.auth-this-device-badge {
  background: #0284c7;
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 2px;
}

.auth-device-meta {
  font-size: 0.75rem;
  color: #8f98a0;
  margin-top: 2px;
}

.btn-danger-logout-all {
  width: 100%;
  max-width: 400px;
  margin: 20px auto 0;
  display: block;
  padding: 12px;
  background: #991b1b;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  transition: background var(--transition-fast);
}

.btn-danger-logout-all:hover {
  background: #dc2626;
}

/* ===================================================
   STEAM VERİLER & ÇEREZ TERCİHLERİ STİLLERİ (Screenshot 3, 4, 5)
   =================================================== */

.cookie-top-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 20px;
}

.btn-cookie-action {
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 3px;
  cursor: pointer;
  border: none;
}

.btn-cookie-action.reject {
  background: #475569;
  color: #fff;
}

.btn-cookie-action.accept {
  background: #0284c7;
  color: #fff;
}

.cookie-section-group {
  margin-bottom: 28px;
}

.cookie-group-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.cookie-group-desc {
  font-size: 0.82rem;
  color: #8f98a0;
  margin-bottom: 12px;
  line-height: 1.4;
}

.cookie-item-row {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

.cookie-item-info {
  flex: 1;
}

.cookie-item-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
}

.cookie-item-sub {
  font-size: 0.76rem;
  color: #8f98a0;
  margin-top: 2px;
}

/* Çift Taraflı KAPALI | AÇIK Switch */
.steam-binary-switch {
  display: flex;
  background: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  overflow: hidden;
}

.switch-state-btn {
  padding: 5px 12px;
  font-size: 0.72rem;
  font-weight: 800;
  border: none;
  background: none;
  color: #8f98a0;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.switch-state-btn.active.on {
  background: #0284c7;
  color: #ffffff;
}

.switch-state-btn.active.off {
  background: #475569;
  color: #ffffff;
}

/* Diller 2 Sütunlu Izgara */
.lang-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 24px;
  margin-top: 16px;
}

.lang-checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #c6d4df;
  font-size: 0.85rem;
  cursor: pointer;
  padding: 4px 0;
}

.lang-checkbox-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #0284c7;
  cursor: pointer;
}

/* ===================================================
   STEAM AİLE YÖNETİMİ (STEAM FAMILIES) STİLLERİ (Screenshot 1-5)
   =================================================== */

.family-box-card {
  background: #1b2838;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}

.family-box-header-title {
  background: #0d121a;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.family-subnav-bar {
  display: flex;
  background: #171d25;
  border-bottom: 2px solid rgba(255, 255, 255, 0.06);
  padding: 0 10px;
}

.family-subnav-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: #8f98a0;
  padding: 14px 20px;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.15s;
  margin-bottom: -2px;
}

.family-subnav-btn:hover {
  color: #ffffff;
}

.family-subnav-btn.active {
  color: #ffffff;
  border-bottom-color: #38bdf8;
}

.family-tab-content-pane {
  padding: 24px;
}

/* YÖNET SEKME STİLLERİ (Screenshot 1) */
.family-info-banner-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.family-name-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: #38bdf8;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.family-slot-badge {
  font-size: 0.82rem;
  color: #8f98a0;
  font-weight: 600;
}

.family-members-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.family-member-card {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.15s;
}

.family-member-card:hover {
  background: rgba(0, 0, 0, 0.5);
}

.family-member-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.family-member-avatar {
  width: 50px;
  height: 50px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.family-member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.family-member-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.family-member-name-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.family-member-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: #38bdf8;
}

.family-member-status {
  font-size: 0.76rem;
  color: #8f98a0;
}

.family-member-status.online {
  color: #38bdf8;
}

.family-member-role-badge {
  font-size: 0.78rem;
  font-weight: 700;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
}

.family-me-pill {
  background: #059669;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 3px;
  text-transform: uppercase;
}

/* KÜTÜPHANE SEKME STİLLERİ (Screenshot 2, 3, 4) */
.family-lib-header {
  margin-bottom: 20px;
}

.family-breadcrumb {
  font-size: 0.76rem;
  color: #8f98a0;
  margin-bottom: 6px;
}

.family-lib-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
}

.family-lib-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  margin-bottom: 20px;
}

.family-lib-control-link {
  font-size: 0.8rem;
  color: #8f98a0;
  text-decoration: none;
  cursor: pointer;
}

.family-lib-control-link:hover, .family-lib-control-link.active {
  color: #ffffff;
  font-weight: 700;
}

.family-lib-search-box {
  width: 140px;
  height: 26px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  color: #fff;
  font-size: 0.75rem;
  padding: 0 8px;
  outline: none;
}

.family-lib-section {
  margin-bottom: 30px;
}

.family-lib-section-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
}

.family-lib-section-title span {
  color: #8f98a0;
  font-size: 0.82rem;
  font-weight: normal;
  margin-left: 6px;
}

.family-games-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

@media (max-width: 1100px) {
  .family-games-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.family-game-card {
  background: #0d121a;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 2 / 3;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.family-game-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8);
  border-color: #38bdf8;
  z-index: 10;
}

.family-game-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.family-game-fallback-poster {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px;
  font-size: 0.85rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.family-btn-row-center {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
}

.btn-family-show-more {
  background: #212b3b;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #c6d4df;
  padding: 8px 24px;
  border-radius: 3px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-family-show-more:hover {
  background: #2e3d53;
  color: #fff;
}

/* TALEPLER & OYNAMA SÜRESİ (Screenshot 5 & 1) */
.family-empty-requests-box {
  padding: 30px 20px;
  color: #8f98a0;
  font-size: 0.88rem;
  line-height: 1.6;
}

/* GEÇMİŞ SEKME STİLLERİ (Screenshot 2) */
.family-history-list {
  display: flex;
  flex-direction: column;
}

.family-history-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
  color: #8f98a0;
}

.family-history-row:hover {
  background: rgba(255, 255, 255, 0.02);
}

.family-history-date {
  width: 140px;
  color: #8f98a0;
  font-size: 0.82rem;
  flex-shrink: 0;
}

.family-history-desc {
  flex: 1;
  color: #8f98a0;
}

.family-history-desc strong {
  color: #ffffff;
  font-weight: 700;
}

/* Oyunlar ve İncelemeler Sekmesi (Screenshot 1 & 2) */
.steam-subnav-tabs {
  display: flex;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 8px;
  margin-bottom: 20px;
  overflow-x: auto;
}

.steam-subnav-tab {
  background: none;
  border: none;
  color: #8f98a0;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 6px 10px;
  cursor: pointer;
  border-radius: 4px;
  transition: all var(--transition-fast);
}

.steam-subnav-tab:hover {
  color: #fff;
}

.steam-subnav-tab.active {
  color: #38bdf8;
  border-bottom: 2px solid #38bdf8;
  font-weight: 700;
}

.steam-game-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(20, 27, 41, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 14px 18px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.steam-game-row-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.steam-game-thumb-capsule {
  width: 140px;
  height: 60px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.steam-game-meta-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.steam-game-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
}

.steam-game-playtime-text {
  font-size: 0.8rem;
  color: #8f98a0;
}

.steam-game-playtime-text strong {
  color: #cbd5e1;
}

.steam-game-progress-wrapper {
  width: 160px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.steam-game-progress-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.steam-game-progress-fill {
  height: 100%;
  background: #38bdf8;
}

.steam-game-btn-group {
  display: flex;
  gap: 8px;
}

.steam-review-card-item {
  background: rgba(20, 27, 41, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 18px;
  margin-bottom: 14px;
}

/* ===================================================
   STEAM BİLDİRİM AYARLARI MATRİSİ (Screenshot 1-4)
   =================================================== */

.notif-matrix-card {
  background: rgba(20, 27, 41, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  overflow: hidden;
}

.notif-matrix-header-bar {
  padding: 12px 20px;
  background: rgba(14, 19, 29, 0.95);
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.88rem;
  font-weight: 700;
  color: #38bdf8;
}

.notif-group-title-bar {
  background: #172435;
  padding: 10px 20px;
  font-size: 0.82rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.notif-columns-head-row {
  display: grid;
  grid-template-columns: 1fr 70px 90px 80px 60px;
  gap: 12px;
  padding: 8px 20px;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.72rem;
  color: #8f98a0;
  font-weight: 700;
  text-align: center;
}

.notif-row-item {
  display: grid;
  grid-template-columns: 1fr 70px 90px 80px 60px;
  gap: 12px;
  padding: 12px 20px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.15s;
}

.notif-row-item:hover {
  background: rgba(255, 255, 255, 0.02);
}

.notif-row-item:last-child {
  border-bottom: none;
}

.notif-label-col {
  font-size: 0.85rem;
  color: #c6d4df;
  line-height: 1.4;
}

.notif-check-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.notif-check-col input[type="checkbox"] {
  width: 17px;
  height: 17px;
  accent-color: #0284c7;
  cursor: pointer;
}

.marketing-opt-out-row {
  padding: 16px 20px;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ===================================================
   STEAM PLAYTEST STİLLERİ (Screenshot 5)
   =================================================== */

.playtest-status-banner {
  background: #172435;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 14px 18px;
  color: #c6d4df;
  font-size: 0.88rem;
  margin-bottom: 24px;
}

.playtest-info-block {
  margin-bottom: 24px;
}

.playtest-info-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.playtest-info-desc {
  font-size: 0.85rem;
  color: #8f98a0;
  line-height: 1.6;
}

/* ===================================================
   STEAM MAĞAZA TERCİHLERİ STİLLERİ (Screenshot 1-5 & Metin)
   =================================================== */

.adult-matrix-head {
  display: grid;
  grid-template-columns: 1fr 80px 80px;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  color: #8f98a0;
  font-weight: 700;
  text-align: center;
}

.adult-matrix-row {
  display: grid;
  grid-template-columns: 1fr 80px 80px;
  gap: 12px;
  padding: 14px 0;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.adult-matrix-row:last-child {
  border-bottom: none;
}

.adult-title-main {
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}

.adult-desc-sub {
  font-size: 0.78rem;
  color: #8f98a0;
  line-height: 1.4;
}

.adult-example-link {
  display: inline-block;
  font-size: 0.72rem;
  color: #38bdf8;
  text-decoration: underline;
  margin-top: 4px;
}

.store-filter-input-row {
  display: flex;
  gap: 8px;
  max-width: 400px;
  margin-top: 8px;
}

.word-filter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 14px;
}

.word-filter-box {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 14px;
}

.chat-radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.85rem;
  color: #c6d4df;
  cursor: pointer;
}

.chat-radio-option input[type="radio"] {
  accent-color: #0284c7;
  width: 16px;
  height: 16px;
}

/* ===================================================
   STEAM PROFİL DÜZENLEME & AVATAR ÖZELLEŞTİRME STİLLERİ (Screenshot 1-5)
   =================================================== */

.edit-profile-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 30px;
  background: rgba(14, 19, 29, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
}

.edit-profile-subnav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.edit-subnav-btn {
  padding: 10px 14px;
  background: none;
  border: none;
  border-radius: 4px;
  color: #8f98a0;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all 0.15s;
}

.edit-subnav-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.edit-subnav-btn.active {
  background: #2563eb;
  color: #fff;
  font-weight: 700;
}

.edit-subnav-back {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #38bdf8;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 14px;
  text-decoration: none;
  padding: 6px 10px;
}

.edit-subnav-back:hover {
  text-decoration: underline;
}

.btn-points-shop {
  margin-top: 20px;
  padding: 10px 14px;
  background: linear-gradient(135deg, #1e3a8a, #0284c7);
  border: 1px solid #38bdf8;
  border-radius: 4px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-points-shop:hover {
  opacity: 0.9;
}

/* Avatar Preview Bar */
.avatar-preview-display {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.avatar-preview-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.avatar-preview-col span {
  font-size: 0.72rem;
  color: #8f98a0;
}

.avatar-frame-184 {
  width: 140px;
  height: 140px;
  position: relative;
  border-radius: 6px;
  padding: 6px;
  background: linear-gradient(135deg, #a855f7, #3b82f6);
}

.avatar-frame-184 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.avatar-frame-64 {
  width: 64px;
  height: 64px;
  position: relative;
  border-radius: 4px;
  padding: 3px;
  background: linear-gradient(135deg, #a855f7, #3b82f6);
}

.avatar-frame-64 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
}

.avatar-frame-32 {
  width: 36px;
  height: 36px;
  position: relative;
  border-radius: 3px;
  padding: 2px;
  background: linear-gradient(135deg, #a855f7, #3b82f6);
}

.avatar-frame-32 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}

/* Avatar Seçim Kartları */
.avatar-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.avatar-card-item {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.15s;
  background: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-card-item:hover {
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.04);
}

.avatar-card-item.selected {
  border-color: #38bdf8;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
}

.avatar-card-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Avatar Çerçeve Kartları */
.frame-card-item {
  width: 100px;
  height: 100px;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  position: relative;
}

.frame-card-item:hover {
  border-color: rgba(255, 255, 255, 0.4);
}

.frame-card-item.selected {
  border-color: #38bdf8;
}

/* Edit Alt Kaydet/İptal Çubuğu */
.edit-bottom-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ===================================================
   STEAM ARKA PLAN, MİNİ PROFİL & TEMA STİLLERİ (Screenshot 1-5)
   =================================================== */

/* Arka Plan Mockup Önizleme */
.bg-preview-canvas {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 16px;
}

.bg-preview-mockup-body {
  width: 320px;
  height: 180px;
  background: rgba(14, 19, 29, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.bg-preview-mockup-header {
  display: flex;
  gap: 10px;
  align-items: center;
}

.bg-preview-mockup-avatar {
  width: 36px;
  height: 36px;
  border-radius: 3px;
  background: #38bdf8;
}

.bg-preview-mockup-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.bg-mockup-line {
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

.bg-mockup-cards-row {
  display: flex;
  gap: 6px;
  margin-top: auto;
}

.bg-mockup-mini-card {
  flex: 1;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
}

/* Arka Plan Kartları Grid */
.bg-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.bg-card-item {
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.15s;
}

.bg-card-item:hover {
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.bg-card-item.selected {
  border-color: #38bdf8;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.4);
}

.bg-card-thumb {
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
}

.bg-card-info {
  padding: 8px 10px;
}

.bg-card-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bg-card-game {
  font-size: 0.72rem;
  color: #8f98a0;
  font-style: italic;
}

/* Mini Profil Hover Card Önizlemesi */
.mini-profile-preview-wrapper {
  width: 100%;
  max-width: 420px;
  height: 220px;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
  margin-bottom: 20px;
}

.mini-profile-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.mini-profile-user-left {
  display: flex;
  gap: 12px;
  align-items: center;
}

.mini-not-friends-tag {
  font-size: 0.65rem;
  font-weight: 800;
  color: #a3e635;
  letter-spacing: 0.5px;
}

.mini-profile-bottom-stats {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.6);
  padding: 8px 12px;
  border-radius: 4px;
  width: fit-content;
}

/* Tema Renk Swatches (2x3 Grid) */
.theme-swatch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 30px;
  max-width: 540px;
  margin-top: 24px;
}

.theme-swatch-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: transform 0.15s;
}

.theme-swatch-item:hover {
  transform: translateY(-3px);
}

.theme-circle {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 3px solid transparent;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
  transition: border-color 0.15s;
}

.theme-swatch-item.selected .theme-circle {
  border-color: #38bdf8;
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.6);
}

.theme-swatch-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #c6d4df;
}

.theme-swatch-item.selected .theme-swatch-label {
  color: #38bdf8;
}

/* ===================================================
   STEAM SERGİLENEN ROZET & FAVORİ GRUP STİLLERİ (Screenshot 1-3)
   =================================================== */

/* Rozet Izgarası */
.badges-selector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.badge-select-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 10px 14px;
  cursor: pointer;
  transition: all 0.15s;
}

.badge-select-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
}

.badge-select-item.selected {
  background: #173860;
  border-color: #38bdf8;
}

.badge-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.badge-meta-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
}

.badge-title-txt {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.badge-sub-txt {
  font-size: 0.72rem;
  color: #8f98a0;
}

/* Grup Seçimi */
.group-select-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 12px 16px;
  cursor: pointer;
  transition: all 0.15s;
  margin-top: 14px;
}

.group-select-item:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.group-select-item.selected {
  background: #173860;
  border-color: #38bdf8;
}

.group-logo-box {
  width: 50px;
  height: 50px;
  background: #000;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  color: #ef4444;
  border: 1px solid #ef4444;
}

/* ===================================================
   STEAM VİTRİN YÖNETİCİSİ & GİZLİLİK STİLLERİ (Screenshot 1-4)
   =================================================== */

/* Vitrin Kartı */
.showcase-edit-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  margin-bottom: 24px;
  overflow: hidden;
}

.showcase-top-ctrls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.showcase-ctrl-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.showcase-ctrl-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.showcase-ctrl-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #c6d4df;
  padding: 4px 10px;
  border-radius: 3px;
  font-size: 0.78rem;
  cursor: pointer;
}

.showcase-ctrl-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.showcase-inner-container {
  display: flex;
  background: #141b27;
}

.showcase-inner-content {
  flex: 1;
  padding: 16px;
}

.showcase-inner-sidebar-handles {
  width: 36px;
  background: rgba(0, 0, 0, 0.25);
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #8f98a0;
  cursor: grab;
  user-select: none;
}

.showcase-inner-sidebar-handles span:hover {
  color: #38bdf8;
}

.showcase-edit-title-bar {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
  background: rgba(255, 255, 255, 0.03);
  padding: 6px 10px;
  border-radius: 3px;
}

.showcase-edit-stats-row {
  display: flex;
  gap: 28px;
  margin-bottom: 16px;
}

.showcase-edit-stat-col {
  display: flex;
  flex-direction: column;
}

.showcase-edit-stat-val {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
}

.showcase-edit-stat-lbl {
  font-size: 0.72rem;
  color: #8f98a0;
}

/* Oyun Kapsülleri Grid */
.showcase-games-thumb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.showcase-game-thumb-item {
  height: 48px;
  background: #0f172a;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  padding: 4px;
  background-size: cover;
  background-position: center;
}

/* Envanter Slotları Grid */
.showcase-inv-edit-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.showcase-inv-edit-slot {
  height: 64px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(168, 85, 247, 0.5);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.showcase-inv-edit-slot.dashed {
  border: 1px dashed #38bdf8;
  background: rgba(56, 189, 248, 0.05);
}

.showcase-inv-edit-slot img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

/* Gizlilik Ayarları Hiyerarşisi (Screenshot 3 & 4) */
.privacy-item-block {
  margin-bottom: 24px;
}

.privacy-inline-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.privacy-main-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}

.privacy-desc-txt {
  font-size: 0.82rem;
  color: #8f98a0;
  line-height: 1.5;
  margin-bottom: 8px;
}

.privacy-sub-indent {
  padding-left: 20px;
  border-left: 2px solid rgba(56, 189, 248, 0.2);
  margin-top: 14px;
  margin-bottom: 16px;
}

@media (max-width: 900px) {
  .steam-account-layout {
    grid-template-columns: 1fr;
  }
  .steam-account-split-row {
    grid-template-columns: 1fr;
  }
  .lang-checkbox-grid {
    grid-template-columns: 1fr;
  }
  .security-grid-box {
    grid-template-columns: 1fr;
  }
  .word-filter-grid {
    grid-template-columns: 1fr;
  }
  .edit-profile-layout {
    grid-template-columns: 1fr;
  }
  .theme-swatch-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .badges-selector-grid {
    grid-template-columns: 1fr;
  }
  .showcase-games-thumb-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .showcase-inv-edit-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .notif-columns-head-row, .notif-row-item {
    grid-template-columns: 1fr 50px 50px 50px 50px;
    gap: 6px;
    padding: 10px;
  }
}

/* ===================================================
   STEAM STANDARTLARINDA ARCADE & OYUN LİSTESİ STİLLERİ
   =================================================== */
.steam-arcade-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 18px;
}

.steam-game-card {
  background: #141b27;
  border: 1px solid #2a3441;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.steam-game-card:hover {
  border-color: #38bdf8;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.steam-game-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  background: #0f1622;
  flex-wrap: wrap;
}

.steam-capsule-img {
  width: 150px;
  height: 68px;
  border-radius: 6px;
  object-fit: cover;
  background: #1e293b;
  border: 1px solid #222e3f;
  flex-shrink: 0;
  transition: transform 0.2s, filter 0.2s;
}

.steam-capsule-img:hover {
  transform: scale(1.03);
  filter: brightness(1.1);
}

.steam-game-main-info {
  flex: 1;
  min-width: 220px;
}

.steam-game-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.steam-game-stats-row {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.steam-stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.steam-stat-label {
  font-size: 0.72rem;
  color: #8f98a0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
}

.steam-stat-val {
  font-size: 0.88rem;
  font-weight: 700;
  color: #c6d4df;
}

.steam-ach-progress-box {
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.steam-ach-text-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.steam-ach-bar-bg {
  height: 8px;
  background: #1e293b;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.steam-ach-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #0284c7, #38bdf8);
  border-radius: 4px;
  transition: width 0.4s ease;
}

.steam-game-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.steam-btn-play {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #090d14;
  font-weight: 800;
  font-size: 0.84rem;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: filter 0.2s, transform 0.2s;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

.steam-btn-play:hover {
  filter: brightness(1.15);
  transform: translateY(-1px);
}

.steam-btn-details {
  background: #1b2432;
  border: 1px solid #2a3441;
  color: #c6d4df;
  font-weight: 700;
  font-size: 0.84rem;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

.steam-btn-details:hover {
  background: #243144;
  border-color: #38bdf8;
  color: #fff;
}

.steam-btn-details.active {
  background: #1e293b;
  border-color: #00e676;
  color: #00e676;
}

/* Genişletilebilir Detay Çekmecesi */
.steam-game-drawer {
  display: none;
  background: #090d14;
  border-top: 1px solid #1e293b;
  padding: 22px;
  animation: fdbFadeIn 0.25s ease-in-out;
}

.steam-game-drawer.open {
  display: block;
}

/* Başarımlar Rozet Izgarası */
.steam-ach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.steam-ach-card {
  background: #111722;
  border: 1px solid #1e2838;
  border-radius: 6px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: border-color 0.2s;
}

.steam-ach-card.unlocked {
  border-color: rgba(245, 158, 11, 0.4);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.06), #111722);
}

.steam-ach-card.locked {
  opacity: 0.45;
  filter: grayscale(0.85);
}

.steam-ach-icon {
  font-size: 1.6rem;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #192231;
  flex-shrink: 0;
}

/* Seans Geçmişi Tablosu */
.steam-session-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  text-align: left;
  margin-top: 12px;
}

.steam-session-table th {
  padding: 10px 12px;
  background: #0e141e;
  color: #8f98a0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #1e293b;
}

.steam-session-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #161e2b;
}

.steam-session-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

/* Sayfalama / Daha Fazla Göster Butonu */
.steam-load-more-btn {
  background: #16202e;
  border: 1px solid #2a384d;
  color: #38bdf8;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  transition: all 0.2s;
}

.steam-load-more-btn:hover {
  background: #1d2b3e;
  border-color: #38bdf8;
  color: #fff;
  transform: translateY(-1px);
}

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

@media (max-width: 768px) {
  .steam-game-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .steam-capsule-img {
    width: 100%;
    height: 120px;
  }
  .steam-game-stats-row {
    gap: 12px;
  }
  .steam-ach-progress-box {
    width: 100%;
  }
  .steam-game-actions {
    width: 100%;
  }
  .steam-game-actions a, .steam-game-actions button {
    flex: 1;
    justify-content: center;
  }
  .steam-game-drawer {
    padding: 14px;
  }
}









