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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(135deg, #0a0a12 0%, #1a1a2e 30%, #16213e 60%, #0f3460 100%);
  min-height: 100vh;
  color: #d0d0d0;
  line-height: 1.7;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* Header */
header {
  text-align: center;
  padding: 4rem 0 2rem;
}

header h1 {
  font-size: 2.8rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  background: linear-gradient(90deg, #00d4ff, #a855f7, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.tagline {
  font-size: 1.2rem;
  color: #7a7a9a;
  font-style: italic;
}

/* Intro Section */
.intro {
  max-width: 800px;
  margin: 2rem auto 3rem;
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.intro p {
  font-size: 1.1rem;
  color: #a0a0b0;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.orb-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.orb-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 150, 200, 0.15);
  border-color: rgba(0, 212, 255, 0.3);
}

.orb-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.orb-card h3 {
  font-size: 1.4rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.orb-subtitle {
  font-size: 0.9rem;
  color: #00d4ff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.orb-card > p:not(.orb-subtitle) {
  color: #9090a0;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.orb-stats {
  list-style: none;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.orb-stats li {
  font-size: 0.85rem;
  color: #7a7a8a;
  padding: 0.4rem 0;
}

.orb-stats strong {
  color: #a0a0b0;
  font-weight: 500;
}

/* Warning Section */
.warning {
  max-width: 800px;
  margin: 3rem auto;
  padding: 2rem;
  background: rgba(255, 100, 100, 0.05);
  border: 1px solid rgba(255, 100, 100, 0.2);
  border-radius: 12px;
  text-align: center;
}

.warning h2 {
  font-size: 1.2rem;
  color: #ff6b6b;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.warning p {
  color: #b0a0a0;
  font-size: 0.95rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 3rem;
}

footer p {
  color: #5a5a6a;
  font-size: 0.9rem;
}

.footer-sub {
  margin-top: 0.5rem;
  font-size: 0.8rem !important;
  color: #404050 !important;
}

/* Responsive */
@media (max-width: 768px) {
  header h1 {
    font-size: 2rem;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 1rem;
  }
}
