/* Critical above-the-fold styles */
body { 
  font-family: 'Inter', sans-serif; 
  margin: 0; 
  padding: 0;
  background-color: #000000;
  color: #ffffff;
}

.header { 
  background: #000; 
  color: #fff; 
  padding: 1rem; 
  position: sticky;
  top: 0;
  z-index: 10;
}

.player { 
  position: fixed; 
  bottom: 0; 
  width: 100%; 
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 100;
}

/* Critical layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Hero section critical styles */
.hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem 1rem;
}

/* Button critical styles */
.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.button-primary {
  background-color: #ff6b6b;
  color: white;
}

/* Skip link for accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
