/* 
 * Quiplash CSS Architecture
 * Модульная структура для легкого обслуживания
 */

/* === CORE MODULES === */
@import url('./components.css');
@import url('./animations.css');
@import url('./utilities.css');

/* === BASE STYLES === */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, sans-serif;
  overflow-x: hidden;
}

/* === LAYOUT === */
.main-container {
  min-height: 100vh;
  position: relative;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .glass-card {
    padding: 15px;
    margin: 10px;
  }
  
  .voter-avatar {
    width: 32px;
    height: 32px;
  }
  
  .crown-ultimate {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .glass-card {
    padding: 12px;
    margin: 8px;
  }
  
  .toggle-switch {
    width: 50px;
    height: 28px;
  }
  
  .toggle-slider:before {
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
  }
  
  input:checked + .toggle-slider:before {
    transform: translateX(22px);
  }
}