body {
    background: #181818;
    color: #ffffff;
    font-family: 'Inter', Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.return-icon {
    position: fixed;
    top: 20px;
    left: 20px;
    color: #fff;
    text-decoration: none;
    font-size: 1.8em;
    z-index: 100;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
    transition: transform 0.2s ease;
}

.return-icon:hover {
    transform: scale(1.2);
}

.watermark {
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(1px);
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.2em;
    letter-spacing: 2px;
    text-transform: uppercase;
    pointer-events: none;
    z-index: 50;
    text-align: center;
    white-space: nowrap;
}

.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 140px 20px 40px;
    line-height: 1.8;
    text-align: left;
}

h1 {
    font-size: 2.2em;
    font-weight: 300;
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
}

p {
    font-size: 1.1em;
    color: #ddd;
    margin-bottom: 24px;
}

.contact-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
    font-family: monospace;
    font-size: 1.2rem;
}

.contact-links a {
    color: #ffffff;
    font-size: 1.5em;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.contact-links a:hover {
    transform: scale(1.2);
}

.contact-links .arrow {
    animation: nudge 2.4s ease-in-out infinite;
    display: inline-block;
    color: #ffffff;
}

.contact-links .arrow-right {
    animation-direction: reverse;
}

@keyframes nudge {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(-4px); }
}

.contact-links a:hover {
    transform: scale(1.2);
}

@media (max-width: 600px) {
    .page-content {
        padding-top: 100px;
    }

}
.logo-container {
    text-align: center;
    margin-bottom: 40px;
}

.logo {
    max-width: 200px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.6));
    animation: pulse-glow 2s infinite ease-in-out;
}

.now-section {
    margin-top: 40px;
    text-align: center;
    text-align: left;
}

.now-section a {
    color: rgba(255, 255, 255, 0.7); 
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.now-section a:hover {
    color: #ffffff;
    border-bottom: 1px solid #ffffff;
}

@keyframes pulse-glow {
    0%, 100% {
        filter: drop-shadow(0 0 4px white);
    }
    50% {
        filter: drop-shadow(0 0 12px white);
    }
}

/* Wayfinder button */
.wayfinder-link {
  display: flex;
  justify-content: center;
  margin: 60px 0 40px;   /* top / bottom spacing */
}

.wayfinder-icon {
  width: 70px;           /* adjust to taste */
  height: auto;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.4));
  transition: transform 0.2s ease;
}

.wayfinder-icon:hover {
  transform: rotate(15deg) scale(1.05);
}
.wayfinder-logo {
    max-width: 150px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.6));
}

.wayfinder-links {
  list-style: none;
  padding-left: 0;
  margin-top: 2em;
  line-height: 1.6;
}

.wayfinder-links li {
  position: relative;
  padding-left: 1.2em; /* space for bullet */
  margin-bottom: 0.75em;
}

.wayfinder-links li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0.1em;
  color: #888;
  font-size: 0.9em;
}

.wayfinder-links a {
  text-decoration: none;
  border-bottom: 1px solid #ccc;
  color: inherit;
  transition: border-color 0.2s;
}

.wayfinder-links a:hover {
  border-color: #000;
}

