    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

    :root {
      --primary: #1976d2;
      --accent: #42a5f5;
      --bg: #ffffff;
      --text: #1a1a1a;
      --border: #e0e0e0;
      --section-bg: #fafafa;
    }

    * {
      box-sizing: border-box;
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      background-color: var(--bg);
      color: var(--text);
      line-height: 1.7;
    }

    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: #ffffffcc;
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border);
      display: flex;
      justify-content: center;
      gap: 25px;
      padding: 15px 20px;
    }

    nav a {
      color: var(--primary);
      text-decoration: none;
      font-weight: 600;
      transition: color 0.2s ease;
    }

    nav a:hover {
      color: var(--accent);
    }

    header {
    position: relative;
    text-align: center;
    padding: 120px 20px 80px;
    color: #1a1a1a;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    }

    .header-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.1); /* Start slightly zoomed in */
    transition: opacity 1s ease-in-out, transform 5s ease-out; /* fade & slow zoom */
    z-index: 0;
    }

    header h1, header p, .server-info {
    position: relative;
    z-index: 2; /* Keep text above slideshow */
    }



    header::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, #e3f2fd66 10%, #ffffff 90%);
      z-index: 1;
    }

    header * {
      position: relative;
      z-index: 2;
    }

    header h1 {
      color: var(--primary);
      font-size: 2.6rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

    header p {
      font-size: 1.1rem;
      color: #333;
      margin: 5px 0;
    }

    .server-info {
      margin-top: 20px;
      background: #f0f6ffcc;
      border: 1px solid var(--border);
      border-radius: 8px;
      display: inline-block;
      padding: 10px 18px;
      font-size: 0.95rem;
      backdrop-filter: blur(5px);
    }

    .server-info span {
      display: block;
      margin: 3px 0;
    }

    main {
      max-width: 950px;
      margin: 40px auto;
      padding: 0 20px;
    }

    section {
      margin-bottom: 50px;
      padding: 30px;
      border: 1px solid var(--border);
      border-radius: 12px;
      background-color: var(--section-bg);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
      transition: box-shadow 0.3s ease, transform 0.3s ease;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 0.8s forwards;
    }

    section:hover {
      transform: translateY(-3px);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    }

    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    h2 {
      color: var(--primary);
      border-left: 4px solid var(--accent);
      padding-left: 12px;
      font-size: 1.5rem;
      margin-bottom: 16px;
    }

    ul {
      padding-left: 20px;
      list-style-type: disc;
    }

    ul li {
      margin-bottom: 8px;
      color: #333;
    }

    strong {
      color: var(--primary);
    }

    /* 🖼️ Gallery Section */
    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 15px;
      margin-top: 20px;
    }

    .gallery img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 10px;
      cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .gallery img:hover {
      transform: scale(1.03);
      box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
    }

    /* Lightbox effect */
    .lightbox {
      display: none;
      position: fixed;
      z-index: 200;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.85);
      justify-content: center;
      align-items: center;
    }

    .lightbox img {
      max-width: 90%;
      max-height: 90%;
      border-radius: 10px;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    }

    .lightbox.active {
      display: flex;
    }

    footer {
      text-align: center;
      padding: 30px 10px;
      font-size: 0.9rem;
      color: #666;
      border-top: 1px solid var(--border);
      background: #f7f9fc;
    }

    footer a {
      color: var(--primary);
      text-decoration: none;
      font-weight: 600;
    }

    footer a:hover {
      text-decoration: underline;
    }

    @media (max-width: 600px) {
      header h1 {
        font-size: 1.9rem;
      }
      nav {
        flex-wrap: wrap;
        gap: 10px;
      }
      section {
        padding: 20px;
      }
    }

    /* Section animation */
section {
  margin-bottom: 50px;
  padding: 30px;
  border-radius: 12px;
  background-color: var(--section-bg);
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: all 0.6s ease-out;
}

/* Active class for animation */
section.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Animate individual list items */
section ul li {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.5s ease-out;
}

/* Animate each list item with delay */
section.animate ul li {
  opacity: 1;
  transform: translateX(0);
}

/* stagger delays using :nth-child */
section.animate ul li:nth-child(1){transition-delay:0.1s;}
section.animate ul li:nth-child(2){transition-delay:0.2s;}
section.animate ul li:nth-child(3){transition-delay:0.3s;}
section.animate ul li:nth-child(4){transition-delay:0.4s;}
section.animate ul li:nth-child(5){transition-delay:0.5s;}
section.animate ul li:nth-child(6){transition-delay:0.6s;}
section.animate ul li:nth-child(7){transition-delay:0.7s;}
section.animate ul li:nth-child(8){transition-delay:0.8s;}
section.animate ul li:nth-child(9){transition-delay:0.9s;}