* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", Arial, sans-serif;
  background: radial-gradient(circle at 20% top, #0a0a0a 30%, #523214 100%);
  color: #eaeaea;
  line-height: 1.6;
  overflow-x: hidden;
  opacity: 0;
  transition: opacity 0.4s ease;
}
body.fade-in { opacity: 1; }
body.fade-out { opacity: 0; }

.skip-link {
  position: absolute;
  top: -40px;
  left: 10px;
  background: #ff8c32;
  color: #000;
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: bold;
  transition: top 0.3s;
  z-index: 999;
}
.skip-link:focus { top: 10px; }

.header {
  text-align: center;
  padding: 2.5rem 1rem;
  background: linear-gradient(180deg, #000000 15%, #ff9d40 90%);
  color: #ff9d40;
  box-shadow: 0 4px 15px rgba(0,0,0,0.8);
}
.header h1 {
  font-size: 2.3rem;
  letter-spacing: 1px;
}
.subtitle {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-top: 0.3rem;
  color: black;
}

.hero {
  display: flex;
  justify-content: center;
  padding: 1rem;
}
.hero img {
  width: 100%;
  max-width: 420px;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(255,140,50,0.3);
  filter: brightness(0.9);
  transition: transform 0.5s ease, filter 0.5s ease;
}
.hero img:hover,
.hero img:focus {
  transform: scale(1.03);
  filter: brightness(1);
  outline: 2px solid #ff8c32;
  outline-offset: 4px;
}

.content {
  max-width: 850px;
  margin: 2rem auto;
  padding: 1.5rem 2rem;
  background: rgba(255,255,255,0.04);
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
}
.content h2 {
  color: #ff8c32;
  margin-top: 1.8rem;
  margin-bottom: 0.6rem;
  font-size: 1.4rem;
}
.content p, .content li {
  margin-bottom: 0.9rem;
  font-size: 1rem;
  color: #dcdcdc;
}
ul { list-style: disc; padding-left: 1.5rem; }

:focus {
  outline: 2px solid #ff8c32;
  outline-offset: 4px;
}

blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.2rem;
  border-left: 4px solid #ff8c32;
  background: rgba(255,255,255,0.05);
  font-style: italic;
  color: #ffb347;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.gallery img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
  filter: brightness(0.85);
}
.gallery img:hover,
.gallery img:focus {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255,140,50,0.4);
  filter: brightness(1);
}

.back-container {
  text-align: center;
  margin-top: 2rem;
}
.back-link {
  display: inline-block;
  color: #ffb347;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid #ffb347;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s;
}
.back-link:hover,
.back-link:focus {
  background: #ffb347;
  color: #000;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #0b0b0b;
  color: #888;
  border-top: 2px solid #1a1a1a;
  font-size: 0.9rem;
}

@media (max-width: 600px) {
  .content { padding: 1rem; }
  .header h1 { font-size: 1.8rem; }
  .hero img { max-width: 90%; }
}
