/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* 👇 Replace this with your own image path */
  --my-image: url("https://i.imgur.com/PFo5Olw.png");
}
* {
  background-color: transparent !important;
  background-image: none !important;
}
html, body {
  background: var(--my-image) no-repeat center center fixed !important;
  background-size: cover !important;
}
html::before {
  content: "";
  position: fixed;
  inset: 0;
  background-color: rgba(0,0,0,0.35); /* adjust opacity */
  pointer-events: none;
  z-index: -1;
}

/* Body styling */
body {
  background: #0d0d0d url("https://i.imgur.com/PFo5Olw.png") repeat;
  color: #f5f5f5;
  font-family: "Courier New", monospace;
  line-height: 1.6;
  text-align: center;
}

/* Header */
header {
  background: #1a1a1a;
  border-bottom: 2px dashed #ff004c;
  padding: 1rem;
}
header h1 {
  font-size: 2rem;
  color: #ff004c;
  text-shadow: 2px 2px #000;
}
nav ul {
  list-style: none;
  margin-top: 0.5rem;
}
nav li {
  display: inline-block;
  margin: 0 1rem;
}
nav a {
  color: #74c0ff;
  text-decoration: none;
  font-weight: bold;
}
nav a:hover {
  color: #ff004c;
  text-decoration: underline;
}

/* Sections */
.section {
  padding: 2rem;
  border-bottom: 1px solid #333;
}
.section h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ff004c;
}

}
/* Gallery grid */
.gallery .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}
.gallery img {
  width: 100%;
  border: 3px solid #74c0ff;
  box-shadow: 4px 4px #000;
}

/* Footer */
footer {
  background: #1a1a1a;
  padding: 1rem;
  font-size: 0.9rem;
  color: #999;
  border-top: 2px dashed #ff004c;
}  