/* ===============================================
   LOUIS GAMER - CSS PRINCIPAL
   Tema: Preto & Branco com estética anime noir
   Mobile-first approach
   =============================================== */

/* === VARIÁVEIS CSS === */
:root {
  /* Cores */
  --color-bg: #000000;
  --color-text: #ffffff;
  --color-accent: #1a1a1a;
  --color-card: #0a0a0a;
  --color-border: #2a2a2a;
  --color-glow: #ffffff;
  
  /* Espaçamentos */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  
  /* Transições */
  --transition-fast: 0.2s ease;
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Fontes */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  
  /* Sombras */
  --shadow-sm: 0 2px 8px rgba(255, 255, 255, 0.1);
  --shadow-md: 0 4px 16px rgba(255, 255, 255, 0.15);
  --shadow-lg: 0 8px 32px rgba(255, 255, 255, 0.2);
  --shadow-glow: 0 0 30px rgba(255, 255, 255, 0.3);
}

/* === RESET & BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* === BACKGROUND COLLAGE === */
.background-collage {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  background: #000;
}

.background-collage::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.02) 2px,
      rgba(255, 255, 255, 0.02) 4px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.02) 2px,
      rgba(255, 255, 255, 0.02) 4px
    );
  z-index: 2;
}

.collage-item {
  position: absolute;
  filter: grayscale(20%) brightness(1.3) contrast(1.2) saturate(1.3);
  opacity: 1;
  transition: all 0.6s ease;
  transform-origin: center;
  border: none;
  box-shadow: none;
  overflow: visible;
  background: none;
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  mix-blend-mode: normal;
  filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.9));
}

/* Efeito de papel rasgado removido para imagens sem fundo */

/* Texto alternativo estilizado - removido para melhor visibilidade */

/* Posicionamento estilo grid sem sobreposição - Mobile First */
.collage-1 {
  width: 100px;
  height: 125px;
  top: 1%;
  left: 1%;
  transform: rotate(-5deg);
}

.collage-2 {
  width: 105px;
  height: 105px;
  top: 1%;
  left: 26%;
  transform: rotate(3deg);
}

.collage-3 {
  width: 110px;
  height: 85px;
  top: 1%;
  right: 26%;
  transform: rotate(-2deg);
}

.collage-4 {
  width: 100px;
  height: 125px;
  top: 1%;
  right: 1%;
  transform: rotate(4deg);
}

.collage-5 {
  width: 105px;
  height: 120px;
  top: 24%;
  left: 1%;
  transform: rotate(-3deg);
}

.collage-6 {
  width: 110px;
  height: 110px;
  top: 24%;
  left: 38%;
  transform: rotate(5deg);
}

.collage-7 {
  width: 115px;
  height: 95px;
  top: 24%;
  right: 1%;
  transform: rotate(2deg);
}

.collage-8 {
  width: 100px;
  height: 120px;
  top: 48%;
  left: 1%;
  transform: rotate(-4deg);
}

.collage-9 {
  width: 110px;
  height: 80px;
  top: 48%;
  left: 26%;
  transform: rotate(6deg);
}

.collage-10 {
  width: 105px;
  height: 115px;
  top: 48%;
  right: 26%;
  transform: rotate(-1deg);
}

.collage-11 {
  width: 105px;
  height: 105px;
  top: 48%;
  right: 1%;
  transform: rotate(3deg);
}

.collage-12 {
  width: 100px;
  height: 115px;
  bottom: 12%;
  left: 1%;
  transform: rotate(-6deg);
}

.collage-13 {
  width: 115px;
  height: 80px;
  bottom: 12%;
  left: 38%;
  transform: rotate(2deg);
}

.collage-14 {
  width: 105px;
  height: 120px;
  bottom: 12%;
  right: 1%;
  transform: rotate(-1deg);
}

/* Hover effect para itens da colagem */
.collage-item:hover {
  filter: grayscale(0%) brightness(1.3) contrast(1.5) saturate(1.6);
  opacity: 1;
  transform: scale(1.08) rotate(0deg);
  z-index: 10;
}

/* Animação sutil */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--rotation)); }
  50% { transform: translateY(-5px) rotate(var(--rotation)); }
}

.collage-1 { --rotation: -15deg; animation: float 8s ease-in-out infinite; }
.collage-2 { --rotation: 12deg; animation: float 10s ease-in-out infinite 1s; }
.collage-3 { --rotation: -8deg; animation: float 9s ease-in-out infinite 2s; }
.collage-4 { --rotation: 5deg; animation: float 11s ease-in-out infinite 0.5s; }
.collage-5 { --rotation: -10deg; animation: float 7s ease-in-out infinite 1.5s; }
.collage-6 { --rotation: 18deg; animation: float 12s ease-in-out infinite 3s; }
.collage-7 { --rotation: 7deg; animation: float 8.5s ease-in-out infinite 2.5s; }
.collage-8 { --rotation: -12deg; animation: float 9.5s ease-in-out infinite 1.2s; }
.collage-9 { --rotation: 15deg; animation: float 10.5s ease-in-out infinite 0.8s; }
.collage-10 { --rotation: -5deg; animation: float 7.5s ease-in-out infinite 2.2s; }
.collage-11 { --rotation: 10deg; animation: float 11.5s ease-in-out infinite 1.8s; }
.collage-12 { --rotation: -20deg; animation: float 8.2s ease-in-out infinite 0.3s; }
.collage-13 { --rotation: 8deg; animation: float 9.8s ease-in-out infinite 2.8s; }
.collage-14 { --rotation: -3deg; animation: float 10.2s ease-in-out infinite 1.3s; }

/* Grain texture overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.03) 2px,
      rgba(255, 255, 255, 0.03) 4px
    );
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}

/* === LOADING SCREEN === */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity var(--transition-slow);
}

.loading-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid var(--color-border);
  border-top-color: var(--color-text);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* === HERO SECTION === */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 2;
  background: transparent;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--spacing-xl);
  max-width: 600px;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 20px;
  backdrop-filter: none;
}

/* Profile Image */
.profile-container {
  position: relative;
  display: inline-block;
  margin-bottom: var(--spacing-lg);
}

.profile-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 4px solid var(--color-text);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.8), var(--shadow-glow);
  transition: transform var(--transition);
}

.profile-image:hover {
  transform: scale(1.05);
}

.profile-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  animation: pulse 2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
}

/* Hero Title with Glitch Effect */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
  margin-bottom: var(--spacing-sm);
  letter-spacing: -0.02em;
  position: relative;
  text-transform: uppercase;
}

.glitch {
  position: relative;
  color: var(--color-text);
  animation: glitch-skew 1s infinite linear alternate-reverse;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch::before {
  animation: glitch-1 0.5s infinite linear alternate-reverse;
  color: #ff0000;
  z-index: -1;
  opacity: 0.8;
}

.glitch::after {
  animation: glitch-2 0.3s infinite linear alternate-reverse;
  color: #00ff00;
  z-index: -2;
  opacity: 0.8;
}

@keyframes glitch-skew {
  0% { transform: skew(0deg); }
  20% { transform: skew(0deg); }
  21% { transform: skew(0.5deg); }
  22% { transform: skew(0deg); }
  100% { transform: skew(0deg); }
}

@keyframes glitch-1 {
  0% { clip-path: inset(40% 0 61% 0); transform: translate(-2px, -2px); }
  20% { clip-path: inset(92% 0 1% 0); transform: translate(2px, 2px); }
  40% { clip-path: inset(43% 0 1% 0); transform: translate(-2px, 2px); }
  60% { clip-path: inset(25% 0 58% 0); transform: translate(2px, -2px); }
  80% { clip-path: inset(54% 0 7% 0); transform: translate(-2px, -2px); }
  100% { clip-path: inset(58% 0 43% 0); transform: translate(2px, 2px); }
}

@keyframes glitch-2 {
  0% { clip-path: inset(50% 0 30% 0); transform: translate(2px, -2px); }
  25% { clip-path: inset(15% 0 60% 0); transform: translate(-2px, 2px); }
  50% { clip-path: inset(80% 0 5% 0); transform: translate(2px, 2px); }
  75% { clip-path: inset(35% 0 45% 0); transform: translate(-2px, -2px); }
  100% { clip-path: inset(70% 0 15% 0); transform: translate(2px, -2px); }
}

.hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.5rem);
  opacity: 0.9;
  margin-bottom: var(--spacing-xl);
  font-weight: 400;
}

/* CTA Button */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm) var(--spacing-lg);
  background: var(--color-text);
  color: var(--color-bg);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s;
}

.cta-button:hover::before {
  left: 100%;
}

/* Hero Characters */
.hero-characters {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.character {
  position: absolute;
  opacity: 0.1;
  filter: grayscale(100%);
  transition: all var(--transition-slow);
}

.character-left {
  left: -50px;
  bottom: 10%;
  width: 200px;
  transform: rotate(-10deg);
}

.character-right {
  right: -50px;
  top: 20%;
  width: 180px;
  transform: rotate(10deg);
}

/* === MAIN CONTENT === */
.main-content {
  position: relative;
  z-index: 2;
  padding: var(--spacing-xl) var(--spacing-lg);
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: none;
}

/* Section Titles */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  text-align: center;
  margin-bottom: var(--spacing-xl);
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--color-text);
}

/* === LINKS SECTION === */
.links-section {
  margin-bottom: var(--spacing-2xl);
}

.links-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
  max-width: 800px;
  margin: 0 auto;
}

.link-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-lg);
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: none;
  border: 2px solid var(--color-border);
  border-radius: 16px;
  text-decoration: none;
  color: var(--color-text);
  transition: all var(--transition);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.9);
}

.link-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-text);
  box-shadow: var(--shadow-lg);
}

.link-icon {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  border-radius: 12px;
  transition: all var(--transition);
}

.link-icon svg {
  width: 30px;
  height: 30px;
}

.link-card:hover .link-icon {
  background: var(--color-text);
  color: var(--color-bg);
  transform: rotate(5deg) scale(1.1);
}

.link-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.2rem;
  font-weight: 700;
}

.link-card p {
  opacity: 0.7;
  font-size: 0.9rem;
}

.link-hover-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s;
  pointer-events: none;
}

.link-card:hover .link-hover-effect {
  left: 100%;
}

/* === COMMUNITY SECTION === */
.community-section {
  margin-bottom: var(--spacing-2xl);
}

.community-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-sm);
  max-width: 600px;
  margin: 0 auto;
}

.community-card {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-md) var(--spacing-lg);
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 50px;
  text-decoration: none;
  color: var(--color-text);
  font-weight: 600;
  transition: all var(--transition);
  text-align: center;
  justify-content: center;
}

.community-card:hover {
  background: var(--color-text);
  color: var(--color-bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.community-card i {
  font-size: 1.5rem;
}

/* === SETUP SECTION === */
.setup-section {
  margin-bottom: var(--spacing-2xl);
  padding: var(--spacing-xl) 0;
  background: rgba(26, 26, 26, 0.9);
  backdrop-filter: none;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
}

.setup-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.setup-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
}

.setup-item {
  text-align: center;
  padding: var(--spacing-md);
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: none;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.setup-item:hover {
  border-color: var(--color-text);
  transform: translateY(-2px);
}

.setup-item i {
  font-size: 2rem;
  margin-bottom: var(--spacing-sm);
  opacity: 0.8;
}

.setup-item h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
  margin-bottom: var(--spacing-xs);
}

.setup-item p {
  font-weight: 600;
  font-size: 1.1rem;
}

/* === FOOTER === */
.footer {
  position: relative;
  padding: var(--spacing-xl) var(--spacing-lg);
  background: rgba(26, 26, 26, 0.9);
  border-top: 1px solid var(--color-border);
  overflow: hidden;
  z-index: 2;
  backdrop-filter: none;
}

.footer-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.footer-characters {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.1;
  pointer-events: none;
}

.footer-character {
  width: 150px;
  filter: grayscale(100%);
}

.footer-info p {
  margin-bottom: var(--spacing-md);
  opacity: 0.7;
}

.footer-links {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
}

.footer-links a {
  color: var(--color-text);
  font-size: 1.5rem;
  transition: all var(--transition);
  opacity: 0.7;
}

.footer-links a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* === ANIMATIONS === */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-in-left {
  transform: translateX(-50px);
  opacity: 0;
  animation: slideInLeft 0.6s ease forwards;
}

@keyframes slideInLeft {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.slide-in-right {
  transform: translateX(50px);
  opacity: 0;
  animation: slideInRight 0.6s ease forwards;
}

@keyframes slideInRight {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Media Queries para Colagem */
@media (min-width: 768px) {
  .collage-item {
    opacity: 1;
    filter: grayscale(15%) brightness(1.2) contrast(1.3) saturate(1.4);
  }
  
  .collage-1 { width: 120px; height: 150px; top: 3%; left: 3%; }
  .collage-2 { width: 130px; height: 130px; top: 3%; left: 22%; }
  .collage-3 { width: 140px; height: 100px; top: 3%; left: 42%; }
  .collage-4 { width: 120px; height: 160px; top: 3%; right: 22%; }
  .collage-5 { width: 120px; height: 140px; top: 3%; right: 3%; }
  .collage-6 { width: 130px; height: 130px; top: 30%; left: 3%; }
  .collage-7 { width: 140px; height: 120px; top: 30%; left: 25%; }
  .collage-8 { width: 125px; height: 150px; top: 30%; right: 25%; }
  .collage-9 { width: 135px; height: 95px; top: 30%; right: 3%; }
  .collage-10 { width: 125px; height: 140px; bottom: 25%; left: 3%; }
  .collage-11 { width: 135px; height: 135px; bottom: 25%; left: 25%; }
  .collage-12 { width: 120px; height: 135px; bottom: 25%; right: 25%; }
  .collage-13 { width: 150px; height: 100px; bottom: 25%; right: 3%; }
  .collage-14 { width: 140px; height: 150px; bottom: 3%; left: 30%; }
}

@media (min-width: 1024px) {
  .collage-item {
    opacity: 1;
    filter: grayscale(10%) brightness(1.1) contrast(1.4) saturate(1.5);
    transition: all 0.8s ease;
  }
  
  .collage-item:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1.2) contrast(1.5) saturate(1.6);
    transform: scale(1.1) rotate(0deg) !important;
    z-index: 100;
  }
  
  /* Grid layout para desktop sem sobreposição */
  .collage-1 { width: 150px; height: 190px; top: 5%; left: 5%; }
  .collage-2 { width: 160px; height: 160px; top: 5%; left: 20%; }
  .collage-3 { width: 180px; height: 130px; top: 5%; left: 37%; }
  .collage-4 { width: 150px; height: 200px; top: 5%; left: 56%; }
  .collage-5 { width: 150px; height: 180px; top: 5%; left: 73%; }
  .collage-6 { width: 160px; height: 160px; top: 5%; right: 5%; }
  
  .collage-7 { width: 170px; height: 145px; top: 35%; left: 5%; }
  .collage-8 { width: 155px; height: 190px; top: 35%; left: 25%; }
  .collage-9 { width: 175px; height: 130px; top: 35%; left: 45%; }
  .collage-10 { width: 160px; height: 180px; top: 35%; right: 25%; }
  .collage-11 { width: 165px; height: 165px; top: 35%; right: 5%; }
  
  .collage-12 { width: 150px; height: 170px; bottom: 20%; left: 10%; }
  .collage-13 { width: 190px; height: 130px; bottom: 20%; left: 35%; }
  .collage-14 { width: 170px; height: 190px; bottom: 20%; right: 10%; }
}

/* === MEDIA QUERIES === */

/* Tablet (768px+) */
@media (min-width: 768px) {
  .links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .community-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .setup-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .character-left {
    left: 0;
    width: 250px;
  }
  
  .character-right {
    right: 0;
    width: 230px;
  }
  
  .footer-character {
    width: 200px;
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .hero-section {
    min-height: 100vh;
  }
  
  .profile-image {
    width: 180px;
    height: 180px;
  }
  
  .links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
  }
  
  .setup-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .character-left {
    width: 300px;
    opacity: 0.15;
  }
  
  .character-right {
    width: 280px;
    opacity: 0.15;
  }
  
  /* Parallax effect for desktop */
  .hero-background {
    transform: translateY(0);
    will-change: transform;
  }
  
  .character {
    will-change: transform;
  }
}

/* Large Desktop (1440px+) */
@media (min-width: 1440px) {
  .main-content {
    padding: var(--spacing-2xl) var(--spacing-xl);
  }
  
  .links-grid {
    max-width: 1000px;
  }
  
  .character-left {
    width: 350px;
    left: 50px;
  }
  
  .character-right {
    width: 330px;
    right: 50px;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .glitch::before,
  .glitch::after {
    display: none;
  }
}

/* Print Styles */
@media print {
  .loading-screen,
  .hero-characters,
  .footer-characters {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .link-card,
  .community-card {
    border: 1px solid black;
  }
}
