:root {
  --red: #e0142c;
  --black: #14161a;
  --white: #ffffff;
  --gray-50: #f7f7f8;
  --gray-100: #eceef0;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --radius: 14px;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.5;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
  position: relative;
  z-index: 2;
}

.logo {
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo .crown { color: var(--red); }

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.nav-links a:hover { opacity: 1; }

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--black) 0%, #23262c 100%);
  min-height: 520px;
  display: flex;
  flex-direction: column;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px 80px;
}

.hero-badge {
  background: rgba(224, 20, 44, 0.15);
  color: var(--red);
  border: 1px solid rgba(224, 20, 44, 0.4);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 800;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.crown-big { color: var(--red); }

.tagline {
  color: var(--gray-100);
  font-size: 18px;
  margin-top: 12px;
  opacity: 0.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 36px;
}

.btn {
  padding: 13px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--gray-50);
}

.section h2 {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.section-subtitle {
  text-align: center;
  color: var(--gray-500);
  margin-bottom: 40px;
}

/* About */
.about-grid {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-top: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.avatar-placeholder {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--black), #2a2d33);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  color: var(--red);
  flex-shrink: 0;
}

.about-text {
  max-width: 520px;
  color: var(--gray-700);
  font-size: 16px;
}

.about-text p { margin-bottom: 12px; }

.edit-hint {
  color: var(--gray-500);
  font-size: 13px;
  font-style: italic;
}

.edit-hint code {
  background: var(--gray-100);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
}

/* Schedule */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.schedule-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 24px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.schedule-card .day {
  font-weight: 700;
  font-size: 14px;
}

.schedule-card .time {
  color: var(--gray-500);
  font-size: 14px;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}

.gallery-card {
  aspect-ratio: 1;
  background: linear-gradient(160deg, var(--black), #2a2d33);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

/* Socials */
.socials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.social-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--black);
  font-weight: 600;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.social-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.social-icon { font-size: 22px; }

/* Footer */
.footer {
  background: var(--black);
  color: var(--gray-100);
  text-align: center;
  padding: 32px 24px;
  font-size: 14px;
  opacity: 0.75;
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .navbar { justify-content: center; }
}
