<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #0f1624;
    color: #e1e6ee;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
      background-color: #131a2b;
      padding: 1.5rem 3rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 2px solid #1f293d;
      flex-wrap: wrap;
}

header h1 {
      font-weight: 700;
      font-size: 1.8rem;
      color: #00b8ff;
      letter-spacing: 2px;
}

nav a {
        color: #a8b9d9;
        text-decoration: none;
        margin-left: 2rem;
        font-weight: 500;
        font-size: 1rem;
        transition: color 0.3s ease;
}

nav a:hover,
nav a.active {
        color: #00b8ff;
}

main {
        flex: 1;
        max-width: 1000px;
        margin: 4rem auto;
        padding: 0 1.5rem;
        text-align: center;
}

.hero {
        margin-bottom: 4rem;
}

.hero h2 {
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #00b8ff;
    line-height: 1.1;
  }
  .hero p {
    font-weight: 300;
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    color: #98a6c7;
    line-height: 1.6;
  }

  footer {
    background-color: #131a2b;
    border-top: 2px solid #1f293d;
    color: #5f6e8a;
    text-align: center;
    padding: 1.5rem 1rem;
    font-weight: 300;
    font-size: 0.9rem;
  }
  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(200px,1fr));
    gap: 1rem;
  }
  .gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }
  .gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  }
  @media (max-width: 768px) {
    nav {
      width: 100%;
      margin-top: 1rem;
      text-align: center;
    }
    nav a {
      margin: 0 1rem;
      display: inline-block;
    }
  }</pre></body></html>