   body{
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "wdth" 100;
   }

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

    body, html {
      height: 100%;
      width: 100%;
      font-family: sans-serif;
    }

    /* Background image */
    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background: url('https://raw.githubusercontent.com/ItzIvy05/SkyGround/main/Resources/20250706135235_1.jpg') center center / cover no-repeat;
      z-index: -2;
    }

    /* Smoked glass overlay */
    body::after {
      content: "";
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.4); /* dark tint */
      backdrop-filter: blur(15px);    /* smoked blur */
      -webkit-backdrop-filter: blur(15px);
      z-index: -1;
    }

    /* Centered container */
    .container {
      display: flex;
      gap: 2rem;
      justify-content: center;
      align-items: center;
      height: 100%;
      padding: 2rem;
    }

    .glass-card {
      position: relative;
      width: 450px;
      height: 300px;
      overflow: hidden;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      cursor: pointer;
    }

    .glass-card2 {
      position: relative;
      width: 100px;
      height: 50px;
      overflow: hidden;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      cursor: pointer;
    }

    .glass-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      pointer-events: none;
    }

    .glass-card:hover {
      transform: scale(1.03);
    }

    .card-label {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: white;
      font-size: 1.5rem;
      font-weight: bold;
      text-align: center;
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: 2;
      text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    }

    .glass-card:hover .card-label {
      opacity: 1;
    }

    .glass-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.4);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .glass-card:hover::before {
      opacity: 1;
    }

    :root {
      --primary-color: #FFA500;
      --bg-dark: #111;
    }

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

    body {
      font-family: 'Segoe UI', sans-serif;
      color: #fff;
      background-color: #000;
      line-height: 1.6;
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 40px;
      background: rgba(0, 0, 0, 0.7);
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 999;
    }

    .logo {
      height: 40px;
    }

    nav {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
    }

    nav a {
      color: #fff;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.2s;
    }

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

    .hero {
      min-height: 100vh;
      background: url('https://raw.githubusercontent.com/ItzIvy05/SkyGround/main/Resources/Main.png') center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      text-align: center;
      padding: 0 20px;
      padding-top: 120px;
    }

    .hero h1 {
      font-size: clamp(2rem, 5vw, 3.5rem);
      margin-bottom: 20px;
      text-shadow: 0 0 10px rgba(0,0,0,0.7);
    }

    .hero p {
      font-size: clamp(1rem, 2vw, 1.3rem);
      max-width: 800px;
      margin-bottom: 30px;
      text-shadow: 0 0 5px rgba(0,0,0,0.5);
    }

    .btn-primary {
      background-color: var(--primary-color);
      color: white;
      padding: 14px 28px;
      text-decoration: none;
      font-weight: bold;
      border-radius: 4px;
      transition: background 0.3s;
    }

    .btn-primary:hover {
      background-color: ##C76E00;
    }

    .wave {
      position: relative;
      top: -1px;
    }

    .about {
      background-color: var(--bg-dark);
      padding: 80px 20px;
      text-align: center;
    }

    .about img {
      width: 64px;
      margin-bottom: 20px;
    }

    .about h2 {
      font-size: clamp(1.5rem, 4vw, 2.5rem);
      margin-bottom: 20px;
    }

    .about p {
      max-width: 800px;
      margin: 0 auto;
      font-size: clamp(1rem, 2vw, 1.2rem);
    }

    footer {
      background-color: #000;
      text-align: center;
      padding: 20px;
      font-size: 0.9rem;
      color: #aaa;
    }

    @media (max-width: 768px) {
      header {
        flex-direction: column;
        align-items: flex-start;
      }

      nav {
        flex-wrap: wrap;
        margin-top: 10px;
      }

      .btn-primary {
        width: 100%;
        max-width: 300px;
      }
    }

    .headerlogo{
      text-transform: uppercase;
      color:#FFA500;
      font-size: 12px;
    }

    .headerlogo a{
      color: #fff;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.2s;
    }

    .headerlogo a:hover {
      color: var(--primary-color);
    }