/* photoshop.css */

/* ─── 1980s Retro Neon Grid Theme ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Roboto+Mono&display=swap');

:root {
  --bg-color:      #000;
  --grid-color:    rgba(0, 255, 255, 0.3);
  --neon-pink:     #ff0080;
  --neon-cyan:     #00ffff;
  --neon-yellow:   #ffff00;
  --text-color:    #f0f0f0;
  --shadow-glow:   rgba(255, 0, 128, 0.8);
}

/* ─── Keyframes ───────────────────────────────────────────────────────────── */
@keyframes gridMove {
  from { background-position: 0 0; }
  to   { background-position: 60px 60px; }
}
@keyframes neonFlicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% { opacity: 1; }
  20%, 24%, 55%                   { opacity: 0.8; }
}
@keyframes glowPulse {
  0%,100% { text-shadow: 0 0 8px var(--neon-pink), 0 0 16px var(--neon-cyan); }
  50%     { text-shadow: 0 0 16px var(--neon-pink), 0 0 32px var(--neon-cyan); }
}

/* ─── Reset & Background ──────────────────────────────────────────────────── */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  font-family: 'Press Start 2P', monospace;
  color: var(--text-color);
  background:
    linear-gradient(0deg, var(--grid-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-color) 1px, transparent 1px),
    linear-gradient(45deg, var(--grid-color) 1px, transparent 1px),
    linear-gradient(135deg, var(--grid-color) 1px, transparent 1px),
    var(--bg-color);
  background-size: 60px 60px;
  animation: gridMove 8s linear infinite;
  overflow-x: hidden;
  overflow-y: auto;
}

/* ─── Header & Back Button ───────────────────────────────────────────────── */
.carousel-header {
  width: 100%;
  padding: 1rem 2rem;
  background: rgba(0,0,0,0.7);
  display: flex;
  justify-content: flex-start;
}
.back-button {
  font-family: 'Roboto Mono', monospace;
  color: var(--neon-cyan);
  background: transparent;
  border: 2px solid var(--neon-cyan);
  padding: 0.5rem 1rem;
  text-decoration: none;
  text-transform: uppercase;
  animation: neonFlicker 2s infinite ease-in-out;
  transition: transform 0.1s;
}
.back-button:hover {
  transform: scale(1.05);
}

/* ─── Main Content ───────────────────────────────────────────────────────── */
.carousel-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  gap: 2rem;
}

/* ─── Logo + Title ───────────────────────────────────────────────────────── */
.gallery-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.logo-preview {
  width: 100px;
  aspect-ratio: 1/1;
  background: rgba(0,0,0,0.7);
  border: 2px solid var(--neon-pink);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 12px var(--shadow-glow);
}
.logo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── Carousel Box ───────────────────────────────────────────────────────── */
.carousel-container {
  position: relative;
  width: 80%;
  max-width: 800px;
  aspect-ratio: 16/9;
  background: rgba(0,0,0,0.6);
  border: 2px solid var(--neon-yellow);
  border-radius: 8px;
  box-shadow: 0 0 16px var(--shadow-glow);
  overflow: hidden;
}
.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ─── Navigation Arrows ──────────────────────────────────────────────────── */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  background: var(--neon-yellow);
  color: var(--bg-color);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s;
}
.carousel-arrow.left  { left: 1rem; }
.carousel-arrow.right { right: 1rem; }
.carousel-arrow:hover { transform: scale(1.1); }

/* ─── Preview Thumbnails ─────────────────────────────────────────────────── */
.preview-images {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.8rem;
  padding: 0 1rem;
  overflow-x: auto;
}
.preview-images img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border: 2px solid var(--neon-cyan);
  border-radius: 4px;
  box-shadow: 0 0 8px var(--shadow-glow);
  cursor: pointer;
  transition: transform 0.1s;
}
.preview-images img:hover {
  transform: scale(1.1);
}

/* ─── Description & Requirements ──────────────────────────────────────────── */
.carousel-description,
.system-requirements {
  width: 80%;
  max-width: 800px;
  background: rgba(0,0,0,0.7);
  border-left: 4px solid var(--neon-cyan);
  padding: 1rem;
  box-shadow: 0 0 8px var(--shadow-glow);
}
.carousel-description h3,
.system-requirements h3 {
  color: var(--neon-yellow);
  margin-bottom: 0.5rem;
}
.system-requirements ul {
  list-style: none;
  padding-left: 1.2rem;
}
.system-requirements li {
  margin-bottom: 0.5rem;
}

/* ─── Download Button ─────────────────────────────────────────────────────── */
.download-button {
  background: var(--neon-cyan);
  color: var(--bg-color);
  padding: 0.8rem 2rem;
  border: 2px solid var(--neon-pink);
  border-radius: 4px;
  box-shadow: 0 0 12px var(--shadow-glow);
  transition: transform 0.2s;
}
.download-button:hover {
  transform: scale(1.05);
}

/* ─── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .carousel-main { padding: 1rem; gap: 1rem; }
  .gallery-header { flex-direction: column; align-items: center; }
  .logo-preview { width: 80px; }
  .carousel-title { font-size: 1.6rem; }
  .carousel-container { width: 100%; }
  .carousel-arrow { width: 2.5rem; height: 2.5rem; }
  .preview-images img { width: 50px; height: 50px; }
  .carousel-description,
  .system-requirements { width: 100%; padding: 0.8rem; }
  .download-button { padding: 0.6rem 1.5rem; }
}
