
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

html, body {
  background: #000;
  color: #fff;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  z-index: 100;
}

nav ul {
  max-width: 1200px;
  margin: 0 auto;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  opacity: 0.8;
  transition: opacity 0.2s;
}

nav a:hover {
  opacity: 1;
}

main {
  max-width: 1200px;
  margin: 7rem auto 2rem;
  padding: 0 2rem;
}

h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
  background: linear-gradient(to right, #fff, #888);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: 2rem;
  margin: 2rem 0 1rem;
  color: #fff;
}

.content {
  font-size: 1.2rem;
  color: #888;
  max-width: 800px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.gallery img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s;
}

.gallery img:hover {
  transform: scale(1.02);
}

footer {
  text-align: center;
  padding: 2rem;
  color: #666;
  font-size: 0.9rem;
}

.admin-link {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 3rem;
  }
  
  main {
    margin-top: 5rem;
    padding: 0 1rem;
  }
  
  .gallery {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}
