/* Roblox Tool AVX - Static CSS */
:root {
  --primary-purple: #533483;
  --primary-blue: #0f3460;
  --accent-purple: #9c27b0;
  --accent-blue: #2196f3;
  --gradient-main: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460, #533483, #4a154b, #2d1b69);
  --success-color: #4caf50;
  --error-color: #f44336;
  --warning-color: #ff9800;
  --info-color: #2196f3;
  --text-primary: #ffffff;
  --text-secondary: rgba(255,255,255,0.8);
  --text-muted: rgba(255,255,255,0.6);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ==================== УНИВЕРСАЛЬНЫЕ СТИЛИ СКРОЛЛБАРОВ ==================== */
/* Для Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #533483 rgba(0, 0, 0, 0.3);
}

/* Для WebKit (Chrome, Safari, Edge) */
*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

*::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}

*::-webkit-scrollbar-thumb {
  background: #533483;
  border-radius: 4px;
  border: 2px solid rgba(0, 0, 0, 0.3);
}

*::-webkit-scrollbar-thumb:hover {
  background: #9c27b0;
}

*::-webkit-scrollbar-corner {
  background: rgba(0, 0, 0, 0.3);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--gradient-main);
  color: var(--text-primary);
  overflow: auto;
  min-width: 1200px;
}

#app {
  width: 100vw;
  height: 100vh;
}

.splash-container {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-main);
  min-width: 1200px;
  overflow: auto;
}

.splash-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 800px;
  padding: 40px;
  text-align: center;
}

.logo-section {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  width: 100%;
  margin-bottom: 20px;
  border-radius: 12px;
  padding: 15px;
}

.logo-placeholder {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--accent-purple);
}

.main-title {
  font-size: 52px;
  font-weight: 300;
  color: var(--text-primary);
  margin: 0;
  letter-spacing: 2px;
}

.sub-title {
  font-size: 20px;
  font-weight: 400;
  color: var(--accent-purple);
  margin: 10px 0 30px 0;
  letter-spacing: 1px;
}

.progress-section {
  width: 100%;
  max-width: 400px;
  margin-bottom: 30px;
}

.progress {
  width: 100%;
  height: 20px;
  background: rgba(255,255,255,0.2);
  border-radius: 10px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-blue));
  border-radius: 10px;
  width: 0%;
  transition: width 0.3s ease;
}

.status-text {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  margin-bottom: 10px;
}

.detail-text {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  margin-bottom: 30px;
}

.checks-list {
  max-height: 150px;
  overflow-y: auto;
  padding: 0 20px;
  width: 100%;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.check-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.version-text {
  font-size: 15px;
  font-weight: 300;
  color: rgba(156, 39, 176, 0.7);
  font-style: italic;
  margin-top: 20px;
}

.api-key-modal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.api-key-content {
  background: #1a1a2e;
  border-radius: 16px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.2);
}

.api-key-header h3 {
  font-size: 24px;
  font-weight: 400;
  color: var(--accent-purple);
  margin: 10px 0;
}

.api-key-description p {
  font-size: 16px;
  color: var(--text-secondary);
  margin: 20px 0 30px 0;
}

.api-key-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input {
  width: 100%;
  padding: 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 16px;
  text-align: center;
}

.input:focus {
  outline: none;
  border-color: var(--accent-purple);
  box-shadow: 0 0 0 2px rgba(156, 39, 176, 0.2);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  height: 60px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.btn-purple {
  background: linear-gradient(135deg, #9c27b0, #673ab7);
  color: white;
}

.btn-purple:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(156, 39, 176, 0.4);
}

.icon-xl {
  font-size: 32px;
}

.text-purple {
  color: var(--accent-purple);
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { 
    transform: scale(1); 
    opacity: 0.8; 
  }
  50% { 
    transform: scale(1.05); 
    opacity: 1; 
  }
}

@media (max-width: 768px) {
  .splash-content {
    padding: 20px;
  }
  
  .main-title {
    font-size: 36px;
  }
  
  .sub-title {
    font-size: 18px;
  }
  
  .api-key-content {
    padding: 30px 20px;
  }
}/* 
Основной интерфейс */
.main-interface {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--gradient-main);
}

/* Панель заголовка */
.title-bar {
  height: 32px;
  background: rgba(0,0,0,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  user-select: none;
}

.title-content {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--text-primary);
}

.window-controls {
  display: flex;
}

.control-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 32px;
  border: none;
  background: transparent;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.15s ease;
  font-size: 16px;
}

.control-btn:hover {
  background: rgba(255,255,255,0.1);
}

.help-btn {
  color: var(--accent-purple);
  width: 36px;
  font-size: 14px;
}

.close-btn:hover {
  background: #e81123;
  color: white;
}

/* Навигация по вкладкам */
.tab-navigation {
  background: rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 20px 20px 0 20px;
  min-width: 1000px;
}

.tabs-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.tab-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  height: 48px;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  font-size: 14px;
  font-weight: 500;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.tab-button:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.05);
}

.tab-button.tab-active {
  color: var(--accent-purple);
  border-bottom-color: var(--accent-purple);
  background: rgba(156, 39, 176, 0.1);
}

.tab-button i {
  font-size: 18px;
}

/* Worker Status Indicators */
.worker-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-left: auto;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px currentColor;
}

.worker-status[data-status="idle"] {
  background: #9e9e9e;
  box-shadow: 0 0 6px #9e9e9e;
}

.worker-status[data-status="connected"] {
  background: #4caf50;
  box-shadow: 0 0 8px #4caf50;
  animation: pulse-status 2s ease-in-out infinite;
}

.worker-status[data-status="running"] {
  background: #ff9800;
  box-shadow: 0 0 10px #ff9800;
  animation: pulse-status 1s ease-in-out infinite;
}

.worker-status[data-status="error"] {
  background: #f44336;
  box-shadow: 0 0 8px #f44336;
}

@keyframes pulse-status {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.9);
  }
}

/* Содержимое вкладок */
.tab-content {
  flex: 1;
  overflow: hidden;
}

.tab-panel {
  display: none;
  height: 100%;
  overflow-y: auto;
}

.tab-panel.active {
  display: block;
}

.tab-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px;
  gap: 20px;
}

/* ==================== WEB EDITOR - COMING SOON ==================== */
.coming-soon-container {
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(135deg, rgba(83, 52, 131, 0.1), rgba(156, 39, 176, 0.1));
  border-radius: 20px;
  border: 2px solid rgba(156, 39, 176, 0.2);
  margin: 20px 0;
}

.coming-soon-icon {
  font-size: 80px;
  color: #9c27b0;
  margin-bottom: 30px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
}

.coming-soon-title {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, #9c27b0, #e91e63, #ff9800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  text-shadow: 0 0 30px rgba(156, 39, 176, 0.5);
}

.coming-soon-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  line-height: 1.6;
}

.coming-soon-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: rgba(156, 39, 176, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(156, 39, 176, 0.2);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(156, 39, 176, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(156, 39, 176, 0.3);
}

.feature-item i {
  font-size: 24px;
  color: #9c27b0;
}

.feature-item span {
  font-weight: 600;
  color: #ffffff;
}

.coming-soon-meme {
  margin-top: 30px;
  padding: 20px;
  background: rgba(255, 152, 0, 0.1);
  border-radius: 15px;
  border: 2px solid rgba(255, 152, 0, 0.3);
}

.meme-text {
  font-size: 16px;
  color: #ff9800;
  font-weight: 600;
  margin: 0;
  font-style: italic;
}

/* Карточки */
.card {
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

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

.card-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.icon {
  font-size: 20px;
}

.text-info { color: var(--info-color); }
.text-error { color: var(--error-color); }
.text-success { color: var(--success-color); }
.text-warning { color: var(--warning-color); }
.text-purple { color: var(--accent-purple); }

/* Строки управления */
.cards-row {
  display: flex;
  gap: 20px;
  min-height: 0;
  min-width: 1000px;
  align-items: flex-start;
}

.cards-row .card {
  flex: 1;
}

.controls-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  gap: 10px;
}

.counter-text {
  font-size: 14px;
  font-weight: 600;
  flex: 1;
}

.control-buttons {
  display: flex;
  gap: 4px;
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.15s ease;
  font-size: 16px;
}

.btn-icon:hover {
  background: rgba(255,255,255,0.1);
  color: var(--text-primary);
}

/* Списки файлов */
.file-list-container {
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  border: 1px solid;
  padding: 10px;
  height: 200px;
  overflow-y: auto;
}

.parent-list {
  border-color: var(--info-color);
}

.cookie-list {
  border-color: var(--error-color);
}

.refresher-list {
  border-color: var(--info-color);
}

.checker-list {
  border-color: var(--success-color);
}

.file-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  transition: all 0.15s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.file-item:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(33, 150, 243, 0.3);
}

.checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.checkbox input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}

.checkbox input[type="checkbox"]:checked + .checkmark {
  background: var(--info-color);
  border-color: var(--info-color);
}

.checkbox input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.file-info {
  flex: 1;
}

.file-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.file-details {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
}

.file-details span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Пустые состояния */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 20px;
}

.empty-icon {
  font-size: 48px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.empty-text {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-weight: 500;
}

.empty-hint {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Консоль */
.console-container {
  flex: 1;
  min-height: 0;
}

.console-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 200px;
}

/* File Preview Container */
#file-manager .tab-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  gap: 20px;
}

#file-manager .cards-row {
  flex-shrink: 0;
}

.file-preview-container {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.file-preview-card {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
  min-height: 500px;
  overflow: hidden;
}

.file-preview-card .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 400px;
  height: 100%;
  padding: 20px;
}

.console-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  gap: 15px;
}

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

.header-left h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.action-buttons {
  display: flex;
  gap: 10px;
}

.action-btn {
  height: 32px;
  padding: 0 12px;
  font-size: 13px;
  border-radius: 8px;
}

.console-controls {
  display: flex;
  gap: 4px;
}

.console-btn {
  width: 28px;
  height: 28px;
  font-size: 14px;
  opacity: 0.7;
}

.console-btn:hover {
  opacity: 1;
}

.console-content {
  flex: 1;
  background: rgba(0,0,0,0.9);
  border-radius: 8px;
  border: 1px solid var(--success-color);
  overflow: hidden;
}

.console-logs {
  height: 100%;
  overflow-y: auto;
  padding: 15px;
  font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
}

.log-entry {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 4px 0;
  font-size: 12px;
  line-height: 1.4;
  animation: logAppear 0.2s ease-out;
}

.log-timestamp {
  color: var(--text-muted);
  font-weight: 500;
  min-width: 70px;
  font-size: 11px;
}

.log-message {
  flex: 1;
  color: var(--text-primary);
}

.log-success .log-message {
  color: var(--success-color);
}

.log-error .log-message {
  color: var(--error-color);
}

.log-warning .log-message {
  color: var(--warning-color);
}

.log-info .log-message {
  color: var(--info-color);
}

@keyframes logAppear {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Кнопки */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  height: 40px;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-purple {
  background: linear-gradient(135deg, #9c27b0, #673ab7);
  color: white;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.btn-purple:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(156, 39, 176, 0.4);
}

.btn-blue {
  background: linear-gradient(135deg, #2196f3, #1976d2);
  color: white;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.btn-blue:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(33, 150, 243, 0.4);
}

.btn-green {
  background: linear-gradient(135deg, #4caf50, #388e3c);
  color: white;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.btn-green:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(76, 175, 80, 0.4);
}

.btn-red {
  background: linear-gradient(135deg, #f44336, #d32f2f);
  color: white;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.btn-red:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244, 67, 54, 0.4);
}

/* Настройки */
.settings-container {
  overflow-y: auto;
}

/* Предупреждающий баннер для настроек */
.settings-warning-banner {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 25px;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(255, 152, 0, 0.15));
  border: 2px solid rgba(255, 193, 7, 0.4);
  border-radius: 12px;
  margin-bottom: 25px;
  box-shadow: 0 4px 20px rgba(255, 193, 7, 0.2);
}

.settings-warning-banner i {
  font-size: 32px;
  color: #ffc107;
  flex-shrink: 0;
}

.warning-content {
  flex: 1;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

.warning-content strong {
  color: #ffc107;
  font-weight: 600;
}

/* Двухколоночная раскладка для Settings */
.settings-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.settings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  min-width: 600px;
}

.buttons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.setting-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.setting-item.full-width {
  grid-column: 1 / -1;
}

.setting-item label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}

.setting-item input,
.setting-item select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 14px;
  transition: all 0.15s ease;
}

.setting-item input:focus,
.setting-item select:focus {
  outline: none;
  border-color: var(--accent-purple);
  box-shadow: 0 0 0 2px rgba(156, 39, 176, 0.2);
}

/* Убираем стрелки у input[type="number"] */
.setting-item input[type="number"]::-webkit-inner-spin-button,
.setting-item input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.setting-item input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

/* Стилизация select (выпадающий список) */
.setting-item select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* Стилизация option внутри select */
.setting-item select option {
  background: #1a1a2e;
  color: var(--text-primary);
  padding: 10px;
}

/* Статистика для Account Checker */
.stats-section {
  margin-top: 20px;
  padding: 20px;
  background: rgba(76, 175, 80, 0.1);
  border-radius: 8px;
  border: 1px solid var(--success-color);
}

.results-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 15px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.15s ease;
}

.stat-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.stat-item i {
  font-size: 24px;
}

.stat-item.valid i {
  color: var(--success-color);
}

.stat-item.invalid i {
  color: var(--error-color);
}

.stat-item.premium i {
  color: #ffd700;
}

.stat-item.robux i {
  color: var(--warning-color);
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.stat-value {
  font-size: 18px;
  color: var(--text-primary);
  font-weight: 600;
}

/* Уведомления */
.notifications-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  pointer-events: none;
}

.notification {
  background: rgba(26, 26, 46, 0.95);
  border-radius: 12px;
  box-shadow: 0 16px 64px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  min-width: 300px;
  max-width: 450px;
  margin-bottom: 10px;
  pointer-events: all;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.3s ease;
}

.notification.show {
  opacity: 1;
  transform: translateX(0);
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
}

.notification-icon {
  font-size: 24px;
  min-width: 24px;
}

.notification-message {
  flex: 1;
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.4;
}

.notification-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.15s ease;
  font-size: 18px;
}

.notification-close:hover {
  background: rgba(255,255,255,0.1);
  color: var(--text-primary);
}

.notification-success {
  border-left: 4px solid var(--success-color);
}

.notification-success .notification-icon {
  color: var(--success-color);
}

.notification-error {
  border-left: 4px solid var(--error-color);
}

.notification-error .notification-icon {
  color: var(--error-color);
}

.notification-warning {
  border-left: 4px solid var(--warning-color);
}

.notification-warning .notification-icon {
  color: var(--warning-color);
}

.notification-info {
  border-left: 4px solid var(--info-color);
}

.notification-info .notification-icon {
  color: var(--info-color);
}

/* Desktop-only layout - минимальная ширина для предотвращения наложения */
.main-container {
  min-width: 1200px;
}

.app-container {
  min-width: 1200px;
}

.tab-container {
  min-width: 1100px;
}/*
 Исправления для консоли операций */
.console-content {
  display: flex;
  flex-direction: column;
  height: 300px;
}

.console-output {
  flex: 1;
  background: rgba(0,0,0,0.9);
  border-radius: 8px 8px 0 0;
  border: 1px solid var(--success-color);
  border-bottom: none;
  overflow-y: auto;
  padding: 15px;
  font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
  font-size: 13px;
  line-height: 1.4;
}

.console-line {
  margin-bottom: 4px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.console-timestamp {
  color: var(--text-muted);
  font-size: 12px;
  white-space: nowrap;
}

.console-text {
  color: var(--text-primary);
  flex: 1;
}

.console-controls {
  display: flex;
  justify-content: center;
  padding: 15px;
  background: rgba(0,0,0,0.5);
  border-radius: 0 0 8px 8px;
  border: 1px solid var(--success-color);
  border-top: none;
}

.console-controls .btn {
  min-width: 200px;
  justify-content: center;
}

/* Заголовок консоли с кнопкой */
.console-header-with-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 20px;
}

.console-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Контейнер для кнопок копирования и очистки (оверлей) */
.console-controls-overlay {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  gap: 8px;
  align-items: center;
  z-index: 10;
  background: rgba(15, 20, 30, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.console-controls-overlay .btn-icon {
  width: 32px;
  height: 32px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.console-content {
  position: relative;
}

.console-action-btn {
  flex-shrink: 0;
  min-width: auto;
  padding: 8px 16px;
  font-size: 14px;
  height: auto;
}

.console-action-btn i {
  margin-right: 6px;
}

/* Обновляем стили консоли без нижних контролов */
.console-card .console-content {
  display: block;
  height: 250px;
}

.console-card .console-output {
  height: 100%;
  border-radius: 8px;
  border: 1px solid var(--success-color);
}

/* Убираем старые стили для console-controls в консоли */
.console-card .console-controls {
  display: none;
}/* 
Стили для изображений */
.dither-boy-gif {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

.title-logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
  margin-right: 8px;
}

/* Обновляем стили для logo-placeholder */
.logo-placeholder {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  border: 2px solid rgba(255,255,255,0.2);
}

.logo-placeholder.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(156, 39, 176, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(156, 39, 176, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(156, 39, 176, 0);
  }
}

/* File Manager Styles */
.file-list-container {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow-y: auto;
  
  /* Firefox */
  scrollbar-width: thin;
  scrollbar-color: #533483 rgba(0, 0, 0, 0.3);
}

/* WebKit (Chrome, Safari, Edge) */
.file-list-container::-webkit-scrollbar {
  width: 8px;
}

.file-list-container::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}

.file-list-container::-webkit-scrollbar-thumb {
  background: #533483;
  border-radius: 4px;
}

.file-list-container::-webkit-scrollbar-thumb:hover {
  background: #9c27b0;
}

/* Breadcrumb навигация */
.breadcrumb-container {
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  margin-bottom: 12px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  white-space: nowrap;
}

.breadcrumb-item {
  color: var(--text-secondary);
  cursor: pointer;
  transition: color 0.2s;
  padding: 2px 6px;
  border-radius: 4px;
}

.breadcrumb-item:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.1);
}

.breadcrumb-item.active {
  color: var(--accent-purple);
  font-weight: 500;
  cursor: default;
  pointer-events: none;
}

.breadcrumb-separator {
  color: var(--text-muted);
  user-select: none;
}

.file-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.file-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-color);
  transform: translateX(4px);
}

.file-item:hover .file-actions {
  opacity: 1;
}

.file-item.selected {
  background: rgba(156, 39, 176, 0.2);
  border-color: var(--primary-color);
}

.file-item.folder-item .file-icon {
  color: #ffa726;
}

.file-item.back-item {
  background: rgba(33, 150, 243, 0.1);
  border-color: rgba(33, 150, 243, 0.3);
}

.file-item.back-item:hover {
  background: rgba(33, 150, 243, 0.2);
}

.file-icon {
  font-size: 24px;
  color: var(--info-color);
  flex-shrink: 0;
}

.file-details {
  flex: 1;
  min-width: 0;
  cursor: pointer;
  user-select: none;
}

.file-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}

.file-meta {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  gap: 12px;
}

.file-actions {
  display: flex;
  gap: 4px;
  opacity: 0;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: var(--text-muted);
}

.empty-icon {
  font-size: 48px;
  margin-bottom: 12px;
  opacity: 0.5;
}

.empty-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.empty-hint {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Connection Status Indicator */
.status-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}

.status-indicator.online {
  background: var(--success-color);
  box-shadow: 0 0 10px var(--success-color);
}

.status-indicator.offline {
  background: var(--error-color);
  box-shadow: 0 0 10px var(--error-color);
}

.status-indicator.connecting {
  background: var(--warning-color);
  box-shadow: 0 0 10px var(--warning-color);
  animation: pulse 1.5s infinite;
}

/* File Preview Panel */
.file-preview-content {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-primary);
  overflow-y: auto;
  max-height: 400px;
}

.file-preview-content::-webkit-scrollbar {
  width: 8px;
}

.file-preview-content::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}

.file-preview-content::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

/* File Info Grid */
#file-info {
  display: none;
}

#file-info.show {
  display: block;
}

/* Button danger for stop actions */
.btn-danger {
  background: linear-gradient(135deg, #f44336, #e91e63);
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-danger:hover:not(:disabled) {
  background: linear-gradient(135deg, #d32f2f, #c2185b);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(244, 67, 54, 0.4);
}

/* Модальные окна */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.2s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  background: linear-gradient(135deg, rgba(20, 25, 35, 0.98), rgba(15, 20, 30, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  min-width: 400px;
  max-width: 500px;
  animation: modalSlideIn 0.3s ease;
  overflow: hidden;
}

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

.modal-header {
  padding: 24px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(156, 39, 176, 0.1), rgba(103, 58, 183, 0.1));
}

.modal-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-body {
  padding: 24px 28px;
}

.modal-body p {
  margin: 0 0 16px 0;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.modal-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 14px;
  font-family: inherit;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.modal-input:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(156, 39, 176, 0.1);
}

.modal-footer {
  padding: 20px 28px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
}

.modal-footer .btn {
  min-width: 120px;
  padding: 10px 20px;
  font-size: 14px;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

/* Контейнер для предпросмотра файлов */
.file-preview-content-wrapper {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  padding: 20px;
  flex: 1;
  min-height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-sizing: border-box;
}

.file-info-panel {
  margin-top: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  display: none;
  flex-shrink: 0;
}

.file-info-panel.show {
  display: block;
}

.file-preview-content-wrapper .empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  flex: 1;
  min-height: 250px;
}

/* Textarea для предпросмотра файлов */
.file-textarea {
  display: none;
  width: 100%;
  flex: 1;
  min-height: 350px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: var(--text-primary);
  font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
  font-size: 13px;
  padding: 12px;
  resize: none;
  overflow: auto;
  white-space: pre;
  word-wrap: normal;
  box-sizing: border-box;
  
  /* Firefox */
  scrollbar-width: thin;
  scrollbar-color: #533483 rgba(0, 0, 0, 0.3);
}

/* WebKit (Chrome, Safari, Edge) */
.file-textarea::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.file-textarea::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}

.file-textarea::-webkit-scrollbar-thumb {
  background: #533483;
  border-radius: 4px;
}

.file-textarea::-webkit-scrollbar-corner {
  background: rgba(0, 0, 0, 0.3);
}

/* Полноэкранный редактор */
.fullscreen-editor-content {
  width: 95vw;
  height: 95vh;
  max-width: 95vw;
  max-height: 95vh;
  background: linear-gradient(135deg, rgba(20, 25, 35, 0.98), rgba(15, 20, 30, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: modalSlideIn 0.3s ease;
}

.fullscreen-editor-header {
  padding: 20px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(156, 39, 176, 0.15), rgba(103, 58, 183, 0.15));
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.fullscreen-editor-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fullscreen-editor-title i {
  font-size: 24px;
  color: var(--primary-color);
}

.fullscreen-editor-title h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
}

.fullscreen-editor-actions {
  display: flex;
  gap: 12px;
}

.fullscreen-editor-body {
  flex: 1;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.fullscreen-textarea {
  flex: 1;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  border: none;
  color: var(--text-primary);
  font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
  font-size: 14px;
  line-height: 1.6;
  padding: 24px;
  resize: none;
  overflow: auto;
  white-space: pre;
  word-wrap: normal;
  box-sizing: border-box;
  outline: none;
  
  /* Firefox */
  scrollbar-width: thin;
  scrollbar-color: #533483 rgba(0, 0, 0, 0.3);
}

/* WebKit (Chrome, Safari, Edge) */
.fullscreen-textarea::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

.fullscreen-textarea::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 6px;
}

.fullscreen-textarea::-webkit-scrollbar-thumb {
  background: #533483;
  border-radius: 6px;
}

.fullscreen-textarea::-webkit-scrollbar-thumb:hover {
  background: #9c27b0;
}

.fullscreen-textarea::-webkit-scrollbar-corner {
  background: rgba(0, 0, 0, 0.3);
}

.fullscreen-editor-footer {
  padding: 16px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.editor-stats {
  display: flex;
  gap: 24px;
  font-size: 13px;
  color: var(--text-secondary);
}

.editor-stats span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Reports Container */
.reports-container {
  min-height: 200px;
  max-height: 400px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #667eea rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.02);
  border-radius: 8px;
  padding: 10px;
}

.reports-container::-webkit-scrollbar {
  width: 8px;
}

.reports-container::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 4px;
}

.reports-container::-webkit-scrollbar-thumb {
  background: #667eea;
  border-radius: 4px;
}

.reports-container::-webkit-scrollbar-thumb:hover {
  background: #5568d3;
}

.report-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  margin-bottom: 10px;
  transition: all 0.2s;
  background: rgba(255,255,255,0.05);
}

.report-item:hover {
  border-color: #667eea;
  background: rgba(102, 126, 234, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.report-info {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.report-info i {
  font-size: 24px;
  color: #667eea;
  flex-shrink: 0;
}

.report-details {
  flex: 1;
  min-width: 0;
}

.report-name {
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 4px;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.report-meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.report-actions {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.report-actions .btn-icon {
  width: 36px;
  height: 36px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.2);
  color: #667eea;
  font-size: 18px;
}

.report-actions .btn-icon:hover {
  transform: scale(1.1);
  background: #667eea;
  color: white;
  border-color: #667eea;
}

.report-actions .btn-icon:nth-child(1) {
  /* Кнопка "Открыть" */
  border-color: #4caf50;
  color: #4caf50;
}

.report-actions .btn-icon:nth-child(1):hover {
  background: #4caf50;
  color: white;
}

.report-actions .btn-icon:nth-child(2) {
  /* Кнопка "Скачать" */
  border-color: #2196f3;
  color: #2196f3;
}

.report-actions .btn-icon:nth-child(2):hover {
  background: #2196f3;
  color: white;
}

.report-actions .btn-icon:nth-child(3) {
  /* Кнопка "Удалить" */
  border-color: #f44336;
  color: #f44336;
}

.report-actions .btn-icon:nth-child(3):hover {
  background: #f44336;
  color: white;
}

/* Стили для папок в File Manager */
.folder-item {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.1), rgba(103, 58, 183, 0.1));
    border-left: 3px solid #9c27b0;
}

.folder-item:hover {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.2), rgba(103, 58, 183, 0.2));
    transform: translateX(5px);
}

.folder-item .mdi-folder {
    color: #9c27b0;
    font-size: 20px;
}

.file-count {
    color: #9c27b0;
    font-size: 12px;
    margin-left: 8px;
    opacity: 0.8;
}

.cookie-count {
    color: #f44336;
    font-size: 12px;
    margin-left: 8px;
    font-weight: 500;
}

/* Drag & Drop стили */
.drag-over {
    background: rgba(156, 39, 176, 0.1);
    border: 2px dashed #9c27b0;
    border-radius: 8px;
}

.file-list-container.drag-over::before {
    content: '📁 Перетащите файлы сюда';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    color: #9c27b0;
    font-weight: 500;
    z-index: 10;
    pointer-events: none;
}

/* Счетчик куки */
.cookie-counter {
    color: #f44336;
    font-size: 14px;
    font-weight: 500;
}

/* Дополнительные стили для Drag & Drop */
.file-item.dragging {
    opacity: 0.5;
    cursor: move;
}

.drop-zone {
    transition: all 0.2s ease;
}

.drop-zone.drag-over {
    background: rgba(156, 39, 176, 0.15) !important;
    border: 2px dashed #9c27b0 !important;
    transform: scale(1.02);
}

.file-item[draggable="true"] {
    cursor: grab;
}

.file-item[draggable="true"]:active {
    cursor: grabbing;
}

/* ==================== WEB EDITOR - IMAGE EDITOR ==================== */

/* Трехколоночный layout */
.editor-layout-3col {
  display: grid;
  grid-template-columns: 350px 1fr 280px;
  gap: 20px;
  height: calc(100vh - 200px);
  min-height: 600px;
}

/* Левая боковая панель - Настройки */
.editor-sidebar-left {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  max-height: calc(100vh - 200px);
}

.editor-sidebar-left .card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.editor-controls-compact {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  flex: 1;
}

.controls-grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.controls-grid-1col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.action-buttons-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.camera-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 15px;
  overflow-y: auto;
  max-height: calc(100vh - 300px);
}

.camera-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.camera-item:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateX(4px);
}

.camera-item.selected {
  background: linear-gradient(135deg, rgba(156, 39, 176, 0.2), rgba(103, 58, 183, 0.2));
  border-color: var(--accent-purple);
  box-shadow: 0 4px 12px rgba(156, 39, 176, 0.3);
}

.camera-item.selected .camera-check {
  opacity: 1;
}

.camera-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

.camera-icon i {
  font-size: 20px;
}

.camera-info {
  flex: 1;
  min-width: 0;
}

.camera-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.camera-resolution {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 2px;
}

.camera-check {
  opacity: 0;
  color: var(--accent-purple);
  font-size: 18px;
  transition: opacity 0.2s ease;
}

/* Центральная панель */
.editor-center {
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
}

.editor-canvas-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.editor-canvas-card .card-header {
  flex-shrink: 0;
}

.editor-canvas-wrapper {
  flex: 1;
  display: flex;
  padding: 20px;
  overflow: hidden;
  min-height: 0;
}

.editor-canvas-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.editor-controls-compact {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Секции контролов */
.control-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.05);
}

.section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-purple);
  margin-bottom: 8px;
}

.section-title i {
  font-size: 18px;
}

/* Контролы фона */
.background-controls {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.color-picker-group {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
}

.color-picker-group label {
  font-size: 12px;
  color: var(--text-secondary);
  flex: 1;
}

.color-picker {
  width: 60px;
  height: 32px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  cursor: pointer;
  background: transparent;
  transition: all 0.2s ease;
}

.color-picker:hover {
  border-color: var(--accent-purple);
  transform: scale(1.05);
}

/* Контролы слоев */
.layer-controls {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-sm {
  height: 36px;
  font-size: 13px;
  padding: 0 14px;
}

.control-group-inline {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.controls-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.control-mini {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.control-mini label {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.control-mini label i {
  font-size: 14px;
  color: var(--accent-purple);
  flex-shrink: 0;
}

.control-mini label span {
  margin-left: auto;
  color: var(--accent-purple);
  font-weight: 600;
  flex-shrink: 0;
}

.slider-mini {
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.1);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

.slider-mini::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9c27b0, #673ab7);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(156, 39, 176, 0.4);
  transition: all 0.2s ease;
}

.slider-mini::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.slider-mini::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9c27b0, #673ab7);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 6px rgba(156, 39, 176, 0.4);
}

.action-buttons-row {
  display: flex;
  gap: 10px;
}

.action-buttons-row .btn {
  flex: 1;
}

/* Бейдж выбранной камеры */
.camera-badge {
  margin-left: auto;
  padding: 4px 12px;
  background: linear-gradient(135deg, rgba(156, 39, 176, 0.2), rgba(103, 58, 183, 0.2));
  border: 1px solid var(--accent-purple);
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-purple);
}

/* Правая боковая панель - Пресеты и Камеры */
.editor-sidebar-right {
  display: flex;
  flex-direction: column;
  gap: 15px;
  overflow-y: auto;
  max-height: calc(100vh - 200px);
}

.camera-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px;
  max-height: 400px;
  overflow-y: auto;
}

.presets-controls {
  padding: 12px;
  padding-bottom: 8px;
}

.presets-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 12px 12px 12px;
  max-height: 300px;
  overflow-y: auto;
}

.preset-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.preset-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(76, 175, 80, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
}

.preset-preview {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.preset-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preset-preview i {
  font-size: 24px;
  color: var(--text-muted);
}

.preset-info {
  flex: 1;
  min-width: 0;
}

.preset-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}

.preset-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 10px;
  color: var(--text-muted);
}

.preset-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.preset-meta i {
  font-size: 11px;
}

.preset-actions {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}

.preset-actions .btn-icon {
  width: 28px;
  height: 28px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* Старые стили для совместимости */
.editor-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 20px;
  height: calc(100vh - 200px);
  min-height: 600px;
}

/* Левая панель с настройками */
.editor-sidebar {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.editor-controls {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}

/* Группа контролов */
.control-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.control-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}

.control-label i {
  font-size: 18px;
  color: var(--accent-purple);
}

.control-label span {
  margin-left: auto;
  color: var(--accent-purple);
  font-weight: 600;
}

/* Разделитель */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  margin: 10px 0;
}

/* Слайдеры */
.slider {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.1);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9c27b0, #673ab7);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(156, 39, 176, 0.4);
  transition: all 0.2s ease;
}

.slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 12px rgba(156, 39, 176, 0.6);
}

.slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9c27b0, #673ab7);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(156, 39, 176, 0.4);
  transition: all 0.2s ease;
}

.slider::-moz-range-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 12px rgba(156, 39, 176, 0.6);
}

/* Input file скрытый */
.file-input {
  display: none;
}

/* Кнопка на всю ширину */
.btn-block {
  width: 100%;
  justify-content: center;
}

/* Правая панель с превью */
.editor-preview {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.editor-canvas-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}

.editor-canvas-card .card-header {
  flex-shrink: 0;
}

.editor-canvas-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin: 20px;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

/* Фоновый слой */
.canvas-background-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1a1a2e;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transition: all 0.3s ease;
}

/* Placeholder когда нет изображения */
.canvas-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  text-align: center;
  padding: 40px;
  color: var(--text-muted);
  position: relative;
  z-index: 2;
}

.canvas-placeholder i {
  font-size: 80px;
  color: var(--accent-purple);
  opacity: 0.5;
}

.canvas-placeholder p {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-secondary);
  margin: 0;
}

.canvas-placeholder span {
  font-size: 14px;
  color: var(--text-muted);
}

/* Контейнер с изображением */
.canvas-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 20px;
  position: relative;
  z-index: 3;
  pointer-events: none;
}

.canvas-content img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: filter 0.3s ease, opacity 0.3s ease;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  pointer-events: all;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* Адаптивность для маленьких экранов */
@media (max-width: 1600px) {
  .editor-layout-3col {
    grid-template-columns: 320px 1fr 260px;
  }
}

@media (max-width: 1400px) {
  .editor-layout-3col {
    grid-template-columns: 300px 1fr 250px;
  }
  
  .editor-layout {
    grid-template-columns: 320px 1fr;
  }
}

@media (max-width: 1200px) {
  .editor-layout-3col {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr;
  }
  
  .editor-sidebar-left,
  .editor-sidebar-right {
    max-height: 300px;
  }
  
  .editor-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }
  
  .editor-sidebar {
    max-height: 400px;
  }
}

/* ==================== ACCOUNT MANAGER - PREVIEW ==================== */

.header-actions {
  display: flex;
  gap: 10px;
  margin-left: auto;
}

/* Toolbar с поиском и фильтрами */
.accounts-toolbar {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: rgba(0,0,0,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.search-box {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.search-box:focus-within {
  border-color: var(--accent-purple);
  background: rgba(255,255,255,0.08);
}

.search-box i {
  font-size: 20px;
  color: var(--text-muted);
}

.search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-size: 14px;
}

.search-input::placeholder {
  color: var(--text-muted);
}

.filter-buttons {
  display: flex;
  gap: 8px;
}

.filter-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

.filter-btn.active {
  background: linear-gradient(135deg, rgba(156, 39, 176, 0.2), rgba(103, 58, 183, 0.2));
  border-color: var(--accent-purple);
  color: var(--accent-purple);
}

.filter-btn i {
  font-size: 16px;
}

/* Панель выбора */
.selection-panel {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background: linear-gradient(135deg, rgba(156, 39, 176, 0.15), rgba(103, 58, 183, 0.15));
  border-bottom: 1px solid rgba(156, 39, 176, 0.3);
  animation: slideDown 0.3s ease;
}

.selection-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-purple);
}

.selection-info i {
  font-size: 20px;
}

.selection-actions {
  display: flex;
  gap: 10px;
}

.accounts-list {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Карточка аккаунта */
.account-card {
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.account-card:hover {
  border-color: rgba(156, 39, 176, 0.3);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.account-card.expanded {
  border-color: var(--accent-purple);
  box-shadow: 0 8px 32px rgba(156, 39, 176, 0.3);
}

/* Компактный вид */
.account-card-compact {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.account-card-compact:hover {
  background: rgba(255,255,255,0.03);
}

/* Чекбокс для выбора */
.account-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  margin-right: 5px;
}

.account-checkbox input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.account-checkbox .checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  background: rgba(0,0,0,0.3);
}

.account-checkbox input[type="checkbox"]:checked + .checkmark {
  background: var(--accent-purple);
  border-color: var(--accent-purple);
}

.account-checkbox input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  color: white;
  font-size: 14px;
  font-weight: bold;
}

.account-avatar {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.2);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.account-card:hover .account-avatar {
  border-color: var(--accent-purple);
  transform: scale(1.05);
}

.account-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.parent-badge {
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #1a1a2e;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.5);
  z-index: 10;
}

.parent-badge i {
  font-size: 14px;
  color: #1a1a2e;
}

.account-info-compact {
  flex: 1;
  min-width: 0;
}

.account-name-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.account-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.tag {
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tag-parent {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 237, 78, 0.2));
  color: #ffd700;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.tag-regular {
  background: rgba(33, 150, 243, 0.2);
  color: #2196f3;
  border: 1px solid rgba(33, 150, 243, 0.3);
}

.account-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 13px;
  color: var(--text-muted);
}

.account-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.account-meta i {
  font-size: 16px;
}

.account-actions-compact {
  display: flex;
  align-items: center;
  padding-left: 15px;
}

.expand-icon {
  font-size: 24px;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.account-card.expanded .expand-icon {
  transform: rotate(180deg);
  color: var(--accent-purple);
}

/* Развернутый вид */
.account-card-expanded {
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.2);
}

.account-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.05);
}

.detail-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.detail-label i {
  font-size: 14px;
  color: var(--accent-purple);
}

.detail-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.robux-value {
  color: #4caf50;
  font-size: 16px;
}

/* Cookie секция */
.cookie-section {
  margin-bottom: 20px;
}

.cookie-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-purple);
}

.cookie-header i {
  font-size: 18px;
}

.cookie-input-group {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.cookie-textarea {
  flex: 1;
  min-height: 80px;
  max-height: 120px;
  padding: 12px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
  font-size: 11px;
  line-height: 1.4;
  resize: vertical;
  word-break: break-all;
  transition: all 0.2s ease;
}

.cookie-textarea:focus {
  outline: none;
  border-color: var(--accent-purple);
  background: rgba(0,0,0,0.6);
}

.cookie-textarea[readonly] {
  cursor: default;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-actions .btn-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}

.cookie-actions .btn-icon:hover {
  background: var(--accent-purple);
  border-color: var(--accent-purple);
  color: white;
}

/* Действия с аккаунтом */
.account-actions-expanded {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

/* Адаптивность */
@media (max-width: 1400px) {
  .account-details-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1000px) {
  .account-details-grid {
    grid-template-columns: 1fr;
  }
  
  .account-actions-expanded {
    flex-direction: column;
  }
}
