/* ========== NAVBAR VE PROFİL MENÜSÜ CSS ========== */
:root {
  --profile-primary: var(--primary-color, #FFD700);
  --profile-secondary: var(--secondary-color, #FFB700);
  --profile-dark: var(--dark-color, #333333);
  --profile-light: var(--light-bg, #F9F9F9);
  --profile-bg: var(--card-bg, #FFFFFF);
  --profile-text: var(--text-color, #4A4A4A);
  --profile-text-light: var(--text-light, #777777);
  --profile-border: var(--border-color, #E0E0E0);
  --profile-success: var(--success-color, #28a745);
  --profile-danger: var(--danger-color, #dc3545);
  --profile-warning: var(--warning-color, #ff9800);
}

/* Profil Navigasyon ve Dropdown */
.nav-profile {
  position: relative;
  margin-left: 15px;
  transition: all 0.3s ease;
}

.nav-profile-trigger {
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(to right, var(--profile-primary), var(--profile-secondary));
  color: var(--profile-dark);
  border-radius: 50px;
  padding: 5px 16px 5px 5px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(255, 215, 0, 0.25);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  overflow: hidden;
  z-index: 1;
}

.nav-profile-trigger::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, 
    rgba(255,255,255,0.1) 0%, 
    rgba(255,255,255,0.3) 50%, 
    rgba(255,255,255,0.1) 100%);
  filter: blur(2px);
  z-index: 0;
}

.nav-profile-trigger:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.5);
}

.nav-profile-avatar {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  font-size: 18px;
  font-weight: 600;
  z-index: 1;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-profile-avatar i {
  color: var(--profile-primary);
}

.nav-profile-name {
  position: relative;
  max-width: 100px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
  color: var(--profile-dark);
  z-index: 1;
}

.nav-profile-trigger .chevron-icon {
  position: relative;
  font-size: 11px;
  margin-left: 5px;
  transition: transform 0.3s ease;
  z-index: 1;
}

.nav-profile.active .nav-profile-trigger .chevron-icon {
  transform: rotate(180deg);
}

/* Profil Dropdown Menü */
.nav-profile-menu {
  position: absolute;
  top: calc(100% + 15px);
  right: 0;
  background-color: var(--profile-bg);
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.2);
  width: 320px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.98);
  transform-origin: top right;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
  border: 1px solid var(--profile-border);
  overflow: hidden;
}

.nav-profile-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  right: 20px;
  width: 16px;
  height: 16px;
  background-color: var(--profile-bg);
  transform: rotate(45deg);
  border-top: 1px solid var(--profile-border);
  border-left: 1px solid var(--profile-border);
  z-index: -1;
}

.nav-profile.active .nav-profile-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Profil Menü Header */
.profile-header {
  position: relative;
  background: linear-gradient(135deg, var(--profile-primary), var(--profile-secondary));
  padding: 20px;
  text-align: center;
  color: var(--profile-dark);
  overflow: hidden;
}

.profile-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 25%),
    radial-gradient(circle at 85% 85%, rgba(255, 255, 255, 0.2) 0%, transparent 20%);
}

.profile-avatar-large {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  border: 3px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  font-size: 34px;
  font-weight: 600;
  color: var(--profile-primary);
  transition: all 0.3s ease;
}

.profile-avatar-large:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.profile-avatar-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-user-name {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 2px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.profile-user-role {
  font-size: 0.85rem;
  opacity: 0.9;
  font-weight: 500;
  background-color: rgba(255, 255, 255, 0.2);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

/* Profil Stats Sekmesi */
.profile-stats {
  display: flex;
  justify-content: space-around;
  padding: 15px;
  border-bottom: 1px solid var(--profile-border);
  background-color: rgba(255, 215, 0, 0.05);
}

.profile-stat {
  text-align: center;
  padding: 0 5px;
}

.profile-stat-value {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--profile-primary);
  margin-bottom: 3px;
  transition: all 0.3s ease;
}

.profile-stat:hover .profile-stat-value {
  transform: scale(1.1);
}

.profile-stat-label {
  font-size: 0.75rem;
  color: var(--profile-text-light);
  font-weight: 500;
}

/* Profil Menü Öğeleri */
.profile-menu-items {
  padding: 10px 0;
  list-style: none;
  margin: 0;
}

.profile-menu-item {
  padding: 0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.profile-menu-link {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  color: var(--profile-text);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.profile-menu-link::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: rgba(255, 215, 0, 0.1);
  z-index: -1;
  transition: width 0.3s ease;
}

.profile-menu-link:hover {
  color: var(--profile-primary);
  padding-left: 25px;
}

.profile-menu-link:hover::after {
  width: 100%;
}

.profile-menu-link i {
  width: 22px;
  margin-right: 12px;
  text-align: center;
  color: var(--profile-primary);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.profile-menu-link:hover i {
  transform: scale(1.2);
}

.profile-menu-link .badge {
  margin-left: auto;
}

.profile-menu-divider {
  margin: 8px 20px;
  background-color: var(--profile-border);
  height: 1px;
  position: relative;
}

.profile-menu-divider::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -2px;
  transform: translateX(-50%);
  width: 50px;
  height: 4px;
  background-color: rgba(255, 215, 0, 0.2);
  border-radius: 2px;
}

/* Profil Menü Alt Bilgi */
.profile-menu-footer {
  padding: 15px 20px;
  background-color: rgba(0, 0, 0, 0.02);
  text-align: center;
  font-size: 0.85rem;
  color: var(--profile-text-light);
  border-top: 1px solid var(--profile-border);
  position: relative;
  overflow: hidden;
}

.profile-menu-footer::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, 
    transparent 0%, 
    var(--profile-primary) 50%, 
    transparent 100%);
}

.profile-menu-footer a {
  color: var(--profile-primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.profile-menu-footer a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--profile-primary);
  transition: width 0.3s ease;
}

.profile-menu-footer a:hover::after {
  width: 100%;
}

/* Çıkış Butonu */
.logout-btn {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  color: var(--profile-danger);
  text-decoration: none;
  position: relative;
  font-weight: 600;
  transition: all 0.3s ease;
  overflow: hidden;
  z-index: 1;
}

.logout-btn::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: rgba(220, 53, 69, 0.1);
  z-index: -1;
  transition: width 0.3s ease;
}

.logout-btn:hover {
  color: var(--profile-danger);
  padding-left: 25px;
}

.logout-btn:hover::after {
  width: 100%;
}

.logout-btn i {
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.logout-btn:hover i {
  transform: translateX(-5px);
}

/* Bildirim Rozeti */
.nav-profile-notification {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 18px;
  height: 18px;
  
  background-color: var(--profile-danger);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 10px;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  animation: notification-pulse 2s infinite;
  z-index: 3;
}

@keyframes notification-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(220, 53, 69, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
  }
}

/* Animasyonlar */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Koyu Tema Özelleştirmeleri */
[data-theme="dark"] .nav-profile-trigger {
  color: #111111;
}

[data-theme="dark"] .nav-profile-name {
  color: #111111;
}

[data-theme="dark"] .nav-profile-avatar {
  background-color: rgba(255, 255, 255, 0.9);
}

[data-theme="dark"] .profile-header {
  color: #111111;
}

[data-theme="dark"] .profile-user-role {
  background-color: rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .profile-avatar-large {
  border-color: rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .profile-menu-link:hover {
  background-color: rgba(255, 215, 0, 0.05);
}

/* Duyarlı (Responsive) Tasarım */
@media (max-width: 991.98px) {
  .nav-profile {
    margin: 15px 0 0;
    display: block;
    width: 100%;
  }
  
  .nav-profile-trigger {
    width: 100%;
    justify-content: center;
  }
  
  .nav-profile-menu {
    position: static;
    width: 100%;
    margin-top: 10px;
    box-shadow: none;
    border-radius: 8px;
    transform: none;
    display: none;
  }
  
  .nav-profile-menu::before {
    display: none;
  }
  
  .nav-profile.active .nav-profile-menu {
    display: block;
    animation: fadeInDown 0.3s ease forwards;
  }
  
  .profile-avatar-large {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}

/* İndirilebilir "İlk Harf Avatar" CSS */
.first-letter-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: var(--profile-primary);
  color: var(--profile-dark);
  border-radius: 50%;
  font-weight: 600;
}

/* Ortak Profil Sayfaları CSS */
.profile-page-section {
  padding-top: 100px;
  padding-bottom: 50px;
}

.profile-page-title {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--profile-border);
}

.profile-page-title i {
  color: var(--profile-primary);
  margin-right: 12px;
  font-size: 1.6rem;
}

.profile-page-title h2 {
  margin: 0;
  font-weight: 700;
}

.profile-card {
  background-color: var(--profile-bg);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--profile-border);
  margin-bottom: 25px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.profile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.profile-card-header {
  padding: 15px 20px;
  border-bottom: 1px solid var(--profile-border);
  display: flex;
  align-items: center;
  background-color: rgba(255, 215, 0, 0.05);
}

.profile-card-header i {
  color: var(--profile-primary);
  margin-right: 10px;
  font-size: 1.2rem;
}

.profile-card-header h5 {
  margin: 0;
  font-weight: 600;
}

.profile-card-body {
  padding: 20px;
}

.profile-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.profile-info-item {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--profile-border);
}

.profile-info-item:last-child {
  border-bottom: none;
}

.profile-info-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--profile-primary);
  flex-shrink: 0;
}

.profile-info-content {
  flex: 1;
}

.profile-info-label {
  font-size: 0.8rem;
  color: var(--profile-text-light);
  margin-bottom: 3px;
}

.profile-info-value {
  font-weight: 600;
  color: var(--profile-text);
}

/* Stat Kartları */
.stat-card {
  background-color: var(--profile-bg);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--profile-border);
  height: 100%;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: var(--profile-primary);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
  transform: scale(1.1);
  background-color: var(--profile-primary);
  color: var(--profile-dark);
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--profile-primary);
  margin-bottom: 5px;
  line-height: 1;
}

.stat-label {
  color: var(--profile-text-light);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Form Stilleri */
.profile-form .form-label {
  font-weight: 600;
  color: var(--profile-text);
  margin-bottom: 0.3rem;
}

.profile-form .form-control,
.profile-form .form-select {
  border-radius: 8px;
  border: 1px solid var(--profile-border);
  padding: 10px 15px;
  transition: all 0.3s ease;
  background-color: var(--profile-bg);
  color: var(--profile-text);
}

.profile-form .form-control:focus,
.profile-form .form-select:focus {
  border-color: var(--profile-primary);
  box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.25);
}

/* Avatar Yükleme Alanı */
.avatar-upload {
  position: relative;
  max-width: 160px;
  margin: 0 auto;
}

.avatar-preview {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--profile-primary);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.avatar-preview:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.avatar-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-edit {
  margin-top: 15px;
  text-align: center;
}

/* Özel Ayarlar Tab Menüsü */
.settings-tab-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.settings-tab-item {
  border-bottom: 1px solid var(--profile-border);
}

.settings-tab-item:last-child {
  border-bottom: none;
}

.settings-tab-link {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  color: var(--profile-text);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  font-weight: 500;
}

.settings-tab-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background-color: var(--profile-primary);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.settings-tab-link.active {
  background-color: rgba(255, 215, 0, 0.05);
  color: var(--profile-primary);
  font-weight: 600;
}

.settings-tab-link.active::before {
  transform: scaleY(1);
}

.settings-tab-link:hover:not(.active) {
  background-color: rgba(0, 0, 0, 0.02);
}

.settings-tab-link i {
  margin-right: 12px;
  width: 20px;
  text-align: center;
  font-size: 1.1rem;
  color: var(--profile-primary);
}

.settings-tab-link.danger-tab {
  color: var(--profile-danger);
}

.settings-tab-link.danger-tab i {
  color: var(--profile-danger);
}

.settings-tab-link.active.danger-tab {
  background-color: rgba(220, 53, 69, 0.05);
}

.settings-tab-link.active.danger-tab::before {
  background-color: var(--profile-danger);
}

/* Tahmin Listesi Stilleri */
.match-teams-container {
  max-width: 200px;
}

.match-team {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.match-team:last-child {
  margin-bottom: 0;
}

.team-logo-sm {
  width: 24px;
  height: 24px;
  object-fit: contain;
  margin-right: 8px;
}

.match-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--profile-text-light);
  margin: 5px 0;
}

.match-vs::before,
.match-vs::after {
  content: '';
  flex: 1;
  height: 1px;
  background-color: var(--profile-border);
  margin: 0 5px;
}

.league-info {
  display: flex;
  align-items: center;
}

.league-logo-sm {
  width: 20px;
  height: 20px;
  object-fit: contain;
  margin-right: 8px;
}

.prediction-value {
  font-weight: 700;
  color: var(--profile-primary);
  background-color: rgba(255, 215, 0, 0.1);
  padding: 5px 10px;
  border-radius: 20px;
  display: inline-block;
}

.confidence-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: white;
}

.confidence-badge.high {
  background-color: var(--profile-success);
}

.confidence-badge.medium {
  background-color: var(--profile-warning);
  color: #000;
}

.confidence-badge.low {
  background-color: var(--profile-danger);
}

.result-badge {
  display: flex;
  align-items: center;
  font-weight: 600;
}

.result-badge.win {
  color: var(--profile-success);
}

.result-badge.loss {
  color: var(--profile-danger);
}

.prediction-actions {
  display: flex;
  gap: 5px;
}

.prediction-actions .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border-radius: 50%;
}

/* Pagination Stilleri */
.custom-pagination {
  display: flex;
  justify-content: center;
  padding-top: 20px;
}

.custom-pagination .page-item .page-link {
  border: none;
  margin: 0 3px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--profile-text);
  transition: all 0.3s ease;
}

.custom-pagination .page-item.active .page-link {
  background-color: var(--profile-primary);
  color: var(--profile-dark);
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.custom-pagination .page-item .page-link:hover:not(.active) {
  background-color: rgba(255, 215, 0, 0.1);
}

/* Abonelik Kartı */
.subscription-card {
  border-radius: 10px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 235, 0, 0.2));
  border: 1px dashed var(--profile-primary);
  position: relative;
  overflow: hidden;
}

.subscription-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFD700' fill-opacity='0.1'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

.subscription-plan-badge {
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-right: 10px;
  display: inline-block;
}

.subscription-plan-badge.basic {
  background-color: #28a745;
  color: white;
}

.subscription-plan-badge.premium {
  background-color: var(--profile-primary);
  color: var(--profile-dark);
}

.subscription-plan-badge.vip {
  background-color: #ff9800;
  color: white;
}

.subscription-info {
  margin-top: 15px;
  position: relative;
  z-index: 1;
}

.subscription-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.subscription-info-item i {
  margin-right: 8px;
  width: 18px;
  text-align: center;
  color: var(--profile-primary);
}

.subscription-status-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: 5px;
}

.subscription-status-badge.active {
  background-color: var(--profile-success);
  color: white;
}

.subscription-status-badge.inactive {
  background-color: var(--profile-danger);
  color: white;
}

.subscription-actions {
  margin-top: 15px;
  display: flex;
  gap: 10px;
}

/* Tahmin İstatistikleri */
.predictions-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.predictions-title {
  display: flex;
  align-items: center;
}

.predictions-title i {
  color: var(--profile-primary);
  margin-right: 12px;
  font-size: 1.6rem;
}

.predictions-title h2 {
  margin: 0;
  font-weight: 700;
}

.predictions-actions {
  display: flex;
  gap: 10px;
}

.prediction-stat-card {
  background-color: var(--profile-bg);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--profile-border);
}

.prediction-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--profile-primary), var(--profile-secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.prediction-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.prediction-stat-card:hover::before {
  transform: scaleX(1);
}

.prediction-stat-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  transition: all 0.3s ease;
}

.prediction-stat-card:hover .prediction-stat-icon {
  transform: scale(1.1);
  background-color: var(--profile-primary);
}

.prediction-stat-card:hover .prediction-stat-icon i {
  color: var(--profile-dark);
}

.prediction-stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--profile-primary);
  margin-bottom: 5px;
  line-height: 1;
}

.prediction-stat-label {
  color: var(--profile-text-light);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Koyu Tema Özel Ayarlar */
[data-theme="dark"] .nav-profile-trigger {
  color: #111111;
}

[data-theme="dark"] .nav-profile-menu {
  background-color: var(--profile-bg);
}

[data-theme="dark"] .profile-header {
  color: #111111;
}

[data-theme="dark"] .profile-user-role {
  color: #111111;
}

[data-theme="dark"] .first-letter-avatar {
  color: #111111;
}

[data-theme="dark"] .subscription-plan-badge.premium {
  color: #111111;
}

[data-theme="dark"] .confidence-badge.medium {
  color: #111111;
}