/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== BODY BACKGROUND ===== */
body {
  margin: 0;
  color: #eaeaea;
  font-family: monospace;

  background:
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6)),
    url("GUNSFORFROGSbackpattern.jpg");

  background-size: 70%;
  background-position: center;
}

/* ===== HEADER ===== */
header {
  border-bottom: 2px solid #111;
  background: #000;
}

nav {
  display: flex;
  justify-content: space-between;
  padding: 15px 30px;
}

nav h1 {
  color: #ff2e88;
  letter-spacing: 2px;
  text-shadow: 0 0 10px #ff2e88;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  color: #888;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

nav a:hover {
  color: #00ffcc;
  border-bottom: 1px solid #00ffcc;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
}

/* ===== HERO ===== */
.hero {
  text-align: center;
  padding: 100px 20px;
  border-bottom: 1px solid #111;
}

.hero h2 {
  font-size: 3.5rem;
  color: #ff2e88;
  text-shadow: 
    2px 0 #00ffcc,
    -2px 0 #ff2e88;
}

/* ===== BOX ===== */
.box {
  border: 1px solid #111;
  padding: 20px;
  margin-bottom: 20px;
  background: #080808;
}

.box:hover {
  border-color: #00ffcc;
  box-shadow: 0 0 10px #00ffcc22;
}

/* ===== GRID ===== */
.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
}

/* ===== IMAGES ===== */
img {
  width: 100%;
  border: 1px solid #111;
}

/* ===== BUTTON ===== */
button {
  background: none;
  border: 1px solid #ff2e88;
  color: #ff2e88;
  padding: 8px 12px;
  cursor: pointer;
}

button:hover {
  background: #ff2e88;
  color: black;
}

/* ===== FORM ===== */
input, textarea {
  width: 100%;
  background: #050505;
  border: 1px solid #111;
  color: #eaeaea;
  padding: 10px;
  font-family: monospace;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #00ffcc;
  box-shadow: 0 0 5px #00ffcc44;
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 20px;
  border-top: 1px solid #111;
  color: #555;
}

/* ===== PRODUCT ===== */
.product {
  background: #080808;
  border: 1px solid #111;
  padding: 15px;
}

.product-image {
  position: relative;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: #00ffcc;
  padding: 5px 10px;
  cursor: pointer;
  opacity: 0;
  transition: 0.2s;
}

.product:hover .arrow {
  opacity: 1;
}

.arrow.left { left: 5px; }
.arrow.right { right: 5px; }

/* ===== THUMBNAILS ===== */
.thumbs {
  display: flex;
  gap: 5px;
  margin: 10px 0;
}

.thumbs img {
  width: 50px;
  cursor: pointer;
}

.thumbs img:hover {
  border-color: #00ffcc;
}

/* ===== AUDIO PLAYER ===== */
.track-player {
  background: #080808;
  border: 1px solid #111;
  padding: 10px;
  margin-bottom: 15px;
}

.controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.play-btn {
  background: #ff2e88;
  border: none;
  color: black;
  padding: 5px 10px;
  cursor: pointer;
}

.progress,
.volume {
  height: 5px;
  background: #ff2e88;
  cursor: pointer;
}

.progress::-webkit-slider-thumb,
.volume::-webkit-slider-thumb {
  width: 10px;
  height: 10px;
  background: #00ffcc;
}

/* ===== ALBUM ===== */
.album {
  border: 1px solid #111;
  background: #050505;
  padding: 20px;
  margin-bottom: 40px;
}

.album-content {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 20px;
}

/* ===== NEON TEXT ===== */
.neon-sign {
  color: #00ffcc;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: 2px;
  text-shadow:
    0 0 5px #00ffcc,
    0 0 10px #00ffcc;
}

/* ===== IFRAME (GUESTBOOK) ===== */
iframe {
  width: 100%;
  height: 500px;
  border: none;
  background: #000;
  box-shadow: 0 0 15px #00ffcc22;
}

/* ===== FLOATING HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #111;
}

/* ===== TICKER ===== */
.ticker {
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid #111;
  border-bottom: 1px solid #111;
}

.ticker-text {
  display: inline-block;
  padding-left: 100%;
  animation: scrollText 12s linear infinite;
  color: #00ffcc;
  font-size: 0.8rem;
  letter-spacing: 2px;
}

@keyframes scrollText {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}

/* ===== BLINKIES ===== */
.blinkies {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  gap: 24px 28px;
}

.blinkies img {
  width: 100%;
  max-width: 160px;
  height: auto;
  image-rendering: pixelated;
  transition: transform 0.2s ease;
}

.blinkies img:hover {
  transform: scale(1.15);
}

/* ===== MOBILE ===== */
@media (max-width: 800px) {
  .main-layout {
    grid-template-columns: 1fr;
  }
}


/* ===== GUESTBOOK WRAPPER ===== */
.guestbook-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 20px;

  max-width: 900px;
  margin: 40px auto;
}

/* LEFT COLUMN */
.guestbook-rules {
  font-size: 0.9rem;
  line-height: 1.5;
}

/* RIGHT COLUMN */
.guestbook-box iframe {
  width: 100%;
  height: 500px;
  border: none;
  background: #000;
  box-shadow: 0 0 15px #00ffcc22;
}

/* ===== MOBILE ===== */
@media (max-width: 800px) {
  .guestbook-wrapper {
    grid-template-columns: 1fr;
  }
}