    /* Reset and basics */
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body, html { height: 100%; font-family: Arial, sans-serif; }

    /* Splash screen */
    #splash {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1;
    }
    #logo-button {
      width: 150px;
      height: 150px;
      background: url('logo.png') no-repeat center center/contain;
      border-radius: 50%;
      cursor: pointer;
      animation: popIn 0.6s ease-out;
      z-index:99;
    }
    @keyframes popIn {
      0% { transform: scale(0); }
      80% { transform: scale(1.2); }
      100% { transform: scale(1); }
    }
    @keyframes flipOut {
      0% { transform: perspective(600px) rotateY(0deg); opacity: 1; }
      100% { transform: perspective(600px) rotateY(90deg); opacity: 0; }
    }

    /* Main content hidden initially */
    #main-content { display: none; padding: 20px; }
    header { text-align: center; margin-bottom: 20px; }
    .listing { margin-bottom: 40px; }
    .listing img { width: 100%; height: auto; border-radius: 8px; }
    .listing h2 { margin: 10px 0; }
    .listing p { color: #555; }

body, html {
  font-family: 'Montserrat', sans-serif;
  min-height: 100vh;
  margin: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

header {
  min-height: 50px;
    display: flex;
    justify-content: space-between;
}

footer {
  min-height: 50px;
}

.background {

  position: absolute;
  height: 100vh;
  width: 100vw;
  background: url('background.jpg') no-repeat center center/cover;
  display: inline;
  align-items: center;
  justify-content: center;
}

.splash-container {
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
  
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
}

.content {
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeIn 2s ease-in-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOut {
  from {
    opacity: 100;
    transform: translateY(30px);
  }
  to {
    opacity: 0;
    transform: translateY(0);
  }
}

.content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

.content p {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 1px;
}

.logo {
  position: absolute;
  top: 20px;
  right: 30px;
  z-index: 2;
}

.logo img {
  max-height: 50px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.logo img:hover {
  opacity: 1;
}

nav ul{display:flex; gap:24px; list-style:none}
nav a{text-decoration:none; color:var(--fg); font-weight:500}
nav a:hover{color:var(--accent)}


div.branding {
  display: flex;
   align-items:center;
}

div.branding > * {
  flex: 1;
  align-items:center;
  max-height:36px; block-size:36px; 
  border-radius:10px; font-weight:700; 
  justify-items: center; display:inline-block; float: left;
  white-space: nowrap;}

.card{background:rgba(0,0,0,.5); border:1px solid rgba(100,116,139,.18); border-radius:18px; padding:20px; box-shadow:0 8px 30px rgba(0,0,0,.06)}
