
body {
  margin: 0;
  background: #0b0b0e;
  color: #d8e2ea;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}


.scanlines {
  pointer-events: none;
  position: fixed;
  inset: 0;
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4) 0px,
    rgba(0, 0, 0, 0.4) 1px,
    transparent 1px,
    transparent 3px
  );
  opacity: 0.5;
  z-index: 1;
}


.grid {
  pointer-events: none;
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(125, 249, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(125, 249, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.4;
  z-index: 0;
}



.mobile-header {
  text-align: center;
  padding: 40px 20px 20px;
  position: relative;
  z-index: 2;
}

.mobile-header h1 {
  color: #7df9ff;
  text-shadow: 0 0 6px #7df9ff;
  margin: 0;
  font-size: 2rem;
}

.subtitle {
  color: #ff2e88;
  margin-top: 6px;
  font-size: 0.9rem;
}


.mobile-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 10px 20px 20px;
  z-index: 2;
  position: relative;
}

.mobile-nav a {
  padding: 10px 14px;
  border: 2px solid #7df9ff;
  background: #11131a;
  color: #7df9ff;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9rem;
}

.mobile-nav a:hover {
  background: #7df9ff;
  color: #0b0b0e;
}


.mobile-content {
  padding: 20px;
  position: relative;
  z-index: 2;
}

.mobile-content h2 {
  color: #ff2e88;
  text-shadow: 0 0 4px #ff2e88;
  margin-bottom: 10px;
}

.desktop-btn {
  padding: 12px;
  border: 2px solid #7df9ff;
  background: #11131a;
  color: #7df9ff;
  border-radius: 4px;
  font-size: 1rem;
  width: 100%;
}

.desktop-btn:hover {
  background: #7df9ff;
  color: #0b0b0e;
}

.mobile-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mobile-gallery img {
  width: 100%;
  border: 2px solid #7df9ff;
  border-radius: 4px;
}

.mobile-links-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 20px;
}

.mobile-links-list li {
  margin-bottom: 10px;
}

.mobile-links-list a {
  color: #7df9ff;
  text-decoration: none;
  border-bottom: 1px solid rgba(125, 249, 255, 0.4);
  padding-bottom: 2px;
}

.mobile-links-list a:hover {
  color: #ff2e88;
  border-color: #ff2e88;
}


/* default link */
a {
  color: #ff2e88; /* neon pink */
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease;
}

/* visited link */
a:visited {
  color: #ffd447; /* bright warm yellow */
}

/* hover */
a:hover {
  color: #7df9ff; /* neon blue */
}

/* active / clicked */
a:active {
  color: #ff9f2e; /* warm neon orange pop */
}