body {
  font-family: "Roboto", sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

:root {
  --bs-primary: #4285f4;
  --bs-primary-rgb: 66, 133, 244;
}

html[data-bs-theme="dark"] {
  --primary-gradient: linear-gradient(135deg, #5c5cff, #4285f4);
  --card-hover-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  --stats-card-bg: #2b2b2b;
  --stats-card-border: #4285f4;
  --revenue-card-bg: linear-gradient(135deg, #2d3748, #1e3a8a);
  --revenue-text-color: #74c0fc;
  --metric-border: #444;
}

html[data-bs-theme="light"] {
  --primary-gradient: linear-gradient(135deg, #4285f4, #0d6efd);
  --card-hover-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  --stats-card-bg: #ffffff;
  --stats-card-border: #4285f4;
  --revenue-card-bg: linear-gradient(135deg, #e8f5e9, #e3f2fd);
  --revenue-text-color: #2e7d32;
  --metric-border: #e0e0e0;
}

/* Основные стили Bootstrap переопределения */
.navbar {
  background: var(--primary-gradient);
}

.btn-primary {
  background: var(--bs-primary);
  border-color: var(--bs-primary);
}

.btn-primary:hover {
  background: #1a73e8;
  border-color: #1a73e8;
}

.card {
  transition: all 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-hover-shadow) !important;
}

/* Тема и переключатель темы */
.theme-icon-light {
  display: inline;
}

.theme-icon-dark {
  display: none;
}

html[data-bs-theme="dark"] .theme-icon-light {
  display: none;
}

html[data-bs-theme="dark"] .theme-icon-dark {
  display: inline;
}

/* Навбар стили */
.navbar-brand {
  font-weight: 500;
  font-size: 1.4rem;
}

.navbar-brand i {
  color: #ff0000;
  margin-right: 8px;
}

/* Контейнер для графика */
.chart-container {
  position: relative;
  height: 300px;
  width: 100%;
}

/* Анимация появления */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 0.5s ease;
}

/* Кастомные бейджи */
.badge-custom {
  padding: 6px 12px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 0.75rem;
  margin-left: 8px;
}

/* Стили бейджей */
.badge-success, .badge.green { 
  background-color: #34a853; 
  color: white;
}

.badge-warning, .badge.yellow { 
  background-color: #fbbc05; 
  color: #212529; 
}

.badge-danger, .badge.red { 
  background-color: #ea4335; 
  color: white;
}

.badge-info { 
  background-color: #4fc3f7; 
  color: #212529;
}

/* Анимация пульсации для бейджей */
.badge.pulse {
  position: relative;
  animation: badge-pulse 1.5s infinite;
}

@keyframes badge-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(52, 168, 83, 0.7);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(52, 168, 83, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(52, 168, 83, 0);
  }
}

/* Дополнительные стили для страницы аналитики */
.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  margin-left: 8px;
  color: white;
}

.thumbnail {
  width: 100%;
  max-width: 320px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.thumbnail:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* Стили для аналитики */
.channel-name {
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.revenue-box {
  background: linear-gradient(135deg, #1a237e, #4a148c);
  border-radius: 12px;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.revenue-title {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: #90caf9;
}

.revenue-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffeb3b;
}

.video-title {
  font-weight: 700;
  color: #fff;
}

.meta-item {
  display: inline-flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 5px 12px;
  border-radius: 30px;
  margin-right: 10px;
  color: #bbb;
}

.meta-item i {
  color: #4fc3f7;
}

.stats-title {
  color: #fff;
  border-bottom: 2px solid #1a73e8;
  padding-bottom: 8px;
  margin-bottom: 15px;
}

/* Стиль для кнопки анализа */
#analyzeBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(66, 133, 244, 0.4) !important;
}

#analyzeBtn:active {
  transform: translateY(1px);
  box-shadow: 0 2px 5px rgba(66, 133, 244, 0.3) !important;
}

/* Стили для превью видео */
.video-thumbnail {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.video-thumbnail:hover {
  transform: scale(1.02);
}

/* Выделение результатов дохода */
.revenue-card {
  background: var(--revenue-card-bg);
  border: none;
  text-align: center;
  margin: 1.5rem 0;
  padding: 1.5rem;
  border-radius: 12px;
}

.revenue-card h2 {
  margin-bottom: 0.5rem;
  color: #4285f4;
  font-size: 1.5rem;
}

.revenue-card .revenue-amount {
  color: var(--revenue-text-color);
  font-size: 1.75rem;
  font-weight: 500;
}

/* Сетка статистики */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.stat-card {
  padding: 1.2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: center;
  background: linear-gradient(145deg, #27282c, #1e2023);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #4285f4, #34a853, #fbbc05, #ea4335);
  z-index: 2;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.stat-card .stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
  background: linear-gradient(to right, #4fc3f7, #1976d2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 2s infinite linear;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.stat-card .stat-label {
  font-size: 0.9rem;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* Раздел метрик эффективности */
.metrics-section {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  background: rgba(0, 0, 0, 0.2);
  border-left: 3px solid #4285f4;
}

.metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--metric-border);
}

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

.metric-label {
  font-weight: 600;
  font-size: 1rem;
  color: #e0e0e0;
  display: flex;
  align-items: center;
}

.metric-label::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #4fc3f7;
  margin-right: 8px;
}

.metric-value {
  display: flex;
  align-items: center;
  font-weight: 700;
  color: #fff;
  background: rgba(0, 0, 0, 0.15);
  padding: 6px 12px;
  border-radius: 30px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
}

/* Футер */
.footer {
  margin-top: auto;
}

/* Принудительное исправление языкового дропдауна на мобильных */
@media (max-width: 768px) {
  /* Контейнер дропдауна */
  .navbar .dropdown {
    position: static !important;
  }
  
  /* Основное меню дропдауна */
  .navbar .dropdown-menu {
    position: fixed !important;
    top: 60px !important;
    right: 15px !important;
    left: auto !important;
    width: 200px !important;
    z-index: 9999 !important;
    transform: none !important;
    margin: 0 !important;
  }
  
  /* Специальное правило для языкового дропдауна */
  .navbar .dropdown-menu-end {
    position: fixed !important;
    top: 60px !important;
    right: 15px !important;
    left: auto !important;
    width: 200px !important;
  }
  
  /* Переопределение Bootstrap Popper.js */
  .dropdown-menu[data-bs-popper] {
    position: fixed !important;
    top: 60px !important;
    right: 15px !important;
    left: auto !important;
    width: 200px !important;
    transform: none !important;
    inset: auto !important;
  }
}

/* Адаптивность */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .metric-row {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .metric-value {
    margin-top: 0.25rem;
  }
}

@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .card-body {
    padding: 1.25rem;
  }
  
  .revenue-card {
    padding: 1.25rem;
  }
}

/* Вспомогательные классы для работы с отображением */
.d-none {
  display: none !important;
}
