/* ============================================
   СТИЛИ ДЛЯ ПРОФИЛЯ ПОЛЬЗОВАТЕЛЯ
   Поддержка всех тем (неон, темная, светлая)
   ============================================ */

/* Базовые стили профиля (общие для всех тем) */
.profile {
  padding: 40px 0;
}

.profile .img-box img {
  border-radius: 10px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.profile-seting h5 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.profile-link {
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.profile-link h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.profile-link a {
  display: block;
  padding: 8px 0;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 14px;
}

/* НЕОНОВАЯ ТЕМА */
html[data-theme="neon"] .profile-seting h5,
html[data-theme="neon"] .profile-link h5 {
  color: var(--color-white) !important;
}

html[data-theme="neon"] .profile-link {
  background: rgba(0, 212, 255, 0.1) !important;
  border: 2px solid rgba(0, 212, 255, 0.3) !important;
}

html[data-theme="neon"] .profile-link a {
  color: var(--color-white) !important;
}

html[data-theme="neon"] .profile-link a:hover {
  color: var(--color-primary) !important;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.5) !important;
}

html[data-theme="neon"] .schedule.style-3 .heading h2 {
  color: var(--color-white) !important;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.3) !important;
}

/* ТЕМНАЯ ТЕМА */
html[data-theme="hard_japan"] .profile-seting h5,
html[data-theme="hard_japan"] .profile-link h5 {
  color: var(--color-white) !important;
}

html[data-theme="hard_japan"] .profile-link {
  background: rgba(200, 144, 58, 0.1) !important;
  border: 2px solid rgba(200, 144, 58, 0.3) !important;
}

html[data-theme="hard_japan"] .profile-link a {
  color: var(--color-white) !important;
}

html[data-theme="hard_japan"] .profile-link a:hover {
  color: var(--color-primary) !important;
  text-shadow: 0 0 10px rgba(200, 144, 58, 0.5) !important;
}

html[data-theme="hard_japan"] .schedule.style-3 .heading h2 {
  color: var(--color-white) !important;
}

/* СВЕТЛАЯ ТЕМА */
html[data-theme="light_japan"] .profile-seting h5,
html[data-theme="light_japan"] .profile-link h5 {
  color: var(--color-text-dark) !important;
}

html[data-theme="light_japan"] .profile-link {
  background: rgba(198, 59, 50, 0.1) !important;
  border: 2px solid rgba(198, 59, 50, 0.3) !important;
}

html[data-theme="light_japan"] .profile-link a {
  color: var(--color-text-dark) !important;
}

html[data-theme="light_japan"] .profile-link a:hover {
  color: var(--color-primary) !important;
  text-shadow: 0 0 5px rgba(198, 59, 50, 0.3) !important;
}

html[data-theme="light_japan"] .schedule.style-3 .heading h2 {
  color: var(--color-text-dark) !important;
}

/* Карточки контента в профиле */
.profile .anime-blog {
  transition: transform 0.3s;
}

.profile .anime-blog:hover {
  transform: translateY(-5px);
}

/* Расписание в профиле */
.profile .schedule-box .card {
  background: rgba(0, 0, 0, 0.4) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

html[data-theme="light_japan"] .profile .schedule-box .card {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(198, 59, 50, 0.2) !important;
}

.profile .schedule-item {
  transition: all 0.3s;
}

.profile .schedule-item:hover {
  background: rgba(255, 255, 255, 0.05) !important;
}

html[data-theme="light_japan"] .profile .schedule-item:hover {
  background: rgba(198, 59, 50, 0.1) !important;
}


















