/* Game Website Look - Squidawonks */

body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: linear-gradient(135deg, #11002a 0%, #2d728f 100%);
  color: #e0e9ff;
  line-height: 1.7;
  margin: 0;
  min-height: 100vh;
}

/* HEADER */
header {
  background: #19142b;
  box-shadow: 0 5px 20px rgba(20,30,80,0.7);
  padding: 1.4rem 0.7rem 0.6rem 0.7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  border-bottom: 2px solid #3dc2d3;
}

.logo-title h1 {
  font-family: 'Orbitron', 'Montserrat', Arial, sans-serif;
  font-size: 2.6rem;
  letter-spacing: 2.5px;
  color: #ffe744;
  text-shadow: 0 0 12px #3dc2d3, 0 0 36px #ffe744;
  margin-bottom: 0.4rem;
}

.neon-bar {
  width: 100vw;
  height: 5px;
  background: linear-gradient(90deg, #3dc2d3 10%, #ffe744 60%, #f441a5 100%);
  box-shadow: 0 0 16px #ffe744, 0 0 36px #3dc2d3;
  position: absolute;
  left: 0;
  bottom: 0;
}

nav ul {
  display: flex;
  gap: 1.4rem;
  list-style: none;
  margin-top: 0.7rem;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-bottom 0.2s;
}

nav a:hover {
  color: #ffe744;
  border-bottom: 2px solid #ffe744;
}

/* Background video styles */
.bg-video {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100vw;
  min-height: 100vh;
  object-fit: cover;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  opacity: 0.17;
  filter: blur(0.5px) brightness(0.8) saturate(1.4);
  pointer-events: none;
}

/* Make sure all content sits above the video */
body > *:not(.bg-video) {
  position: relative;
  z-index: 1;
}

/* HERO */
.hero {
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 1rem 2.2rem 1rem;
  z-index: 0;
  overflow: hidden;
}
.hero-bg-anim {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(255,231,68,0.12) 0%, transparent 75%),
    radial-gradient(ellipse at 30% 80%, rgba(61,194,211,0.10) 0%, transparent 70%),
    radial-gradient(circle at 80% 60%, rgba(244,65,165,0.10) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
  animation: heroGlow 6s infinite alternate;
  transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes heroGlow {
  0% { opacity: 1; }
  100% { opacity: 0.8; }
}
.hero-card {
  background: rgba(22, 20, 40, 0.85);
  border-radius: 24px;
  box-shadow: 0 0 36px #3dc2d3, 0 0 18px #ffe74455;
  padding: 2.5rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-img {
  width: 210px;
  max-width: 90vw;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 0 30px #3dc2d3cc);
}
.hero-content h2 {
  font-size: 2.1rem;
  color: #ffe744;
  text-shadow: 0 0 14px #3dc2d3, 0 0 6px #fff;
  margin-bottom: 0.6rem;
}
.cta-btn,
.neon-btn {
  display: inline-block;
  margin-top: 1.3rem;
  background: linear-gradient(90deg, #ffe744 30%, #f441a5 100%);
  color: #222;
  font-weight: bold;
  font-family: 'Orbitron', sans-serif;
  padding: 0.95rem 2.4rem;
  border-radius: 2rem;
  font-size: 1.15rem;
  text-decoration: none;
  border: none;
  box-shadow: 0 0 12px #ffe744, 0 0 22px #f441a5;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.cta-btn:hover,
.neon-btn:hover,
.download-btn:hover {
  background: linear-gradient(90deg, #f441a5 30%, #3dc2d3 100%);
  color: #ffe744;
  box-shadow: 0 0 24px #3dc2d3, 0 0 16px #ffe744;
}
.pulse {
  animation: pulse-glow 1.5s infinite alternate;
}
@keyframes pulse-glow {
  0% { box-shadow: 0 0 18px #ffe744, 0 0 10px #f441a5; }
  100% { box-shadow: 0 0 32px #3dc2d3, 0 0 20px #ffe744; }
}

/* BADGES & ICONS */
.badge {
  display: inline-block;
  background: linear-gradient(90deg, #f441a5 20%, #ffe744 70%);
  color: #19142b;
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  padding: 0.22em 0.8em;
  border-radius: 1em;
  box-shadow: 0 0 10px #f441a5;
  margin-right: 0.7em;
}
.icon {
  font-size: 1.2em;
  vertical-align: -0.12em;
}

/* FROSTED GLASS EFFECTS */
.glass {
  background: rgba(30,20,60,0.72);
  border-radius: 22px;
  box-shadow: 0 0 26px #3dc2d3cc, 0 0 10px #ffe74477;
  padding: 2.2rem 1.2rem 1.7rem 1.2rem;
  margin-bottom: 2.2rem;
  backdrop-filter: blur(7px);
}

/* GALLERY */
.gallery {
  text-align: center;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.4rem;
  margin-top: 1.3rem;
}
.gallery-item {
  background: #1e1530;
  border-radius: 15px;
  box-shadow: 0 0 12px #3dc2d3cc;
  overflow: hidden;
  transition: transform 0.18s, box-shadow 0.18s;
  border: 2px solid #3dc2d3;
}
.gallery-item img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
  transition: transform 0.18s;
  cursor: pointer;
}
.gallery-item:hover {
  transform: scale(1.06) rotate(-1deg);
  box-shadow: 0 0 38px #ffe744bb, 0 0 22px #f441a5aa;
  border-color: #ffe744;
}
.gallery-item:hover img {
  transform: scale(1.1);
}

/* Lightbox styles */
.lightbox {
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(15, 10, 30, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInLightbox 0.3s;
}
@keyframes fadeInLightbox {
  from { opacity: 0; }
  to { opacity: 1; }
}
.lightbox-content {
  position: relative;
  max-width: 96vw;
  max-height: 92vh;
  padding: 2.5rem;
  background: rgba(30, 20, 60, 0.80);
  border-radius: 16px;
  box-shadow: 0 0 40px #3dc2d3cc, 0 0 20px #ffe74499;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-content img {
  max-width: 80vw;
  max-height: 60vh;
  border-radius: 10px;
  box-shadow: 0 0 28px #f441a5bb;
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 2.1rem;
  background: none;
  border: none;
  color: #ffe744;
  cursor: pointer;
  font-family: 'Orbitron', Arial, sans-serif;
  text-shadow: 0 0 12px #f441a5;
  transition: color 0.15s;
}
.lightbox-close:hover {
  color: #f441a5;
}

/* DOWNLOAD BUTTONS */
.download-links {
  display: flex;
  justify-content: center;
  gap: 1.3rem;
  margin-top: 1.2rem;
}
.download-btn {
  padding: 0.7rem 2rem;
  font-size: 1.05rem;
}

/* FORMS: NEWSLETTER & CONTACT */
.newsletter,
.contact {
  text-align: center;
}
.newsletter form,
.contact form {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1.1rem;
  flex-wrap: wrap;
  flex-direction: row;
}
.newsletter input[type="email"],
.contact input,
.contact textarea {
  padding: 0.8rem;
  font-size: 1rem;
  border-radius: 2rem;
  border: 2px solid #3dc2d3;
  background: #19142b;
  color: #ffe744;
  margin-bottom: 0.3rem;
  transition: border 0.2s, box-shadow 0.2s;
}
.newsletter input[type="email"]:focus,
.contact input:focus,
.contact textarea:focus {
  border: 2px solid #ffe744;
  box-shadow: 0 0 12px #ffe74455;
  outline: none;
}
.contact form {
  flex-direction: column;
  align-items: center;
  max-width: 400px;
  margin: 1.5rem auto 0 auto;
  gap: 0.9rem;
}
.contact textarea {
  min-height: 80px;
  border-radius: 18px;
  resize: vertical;
}
.newsletter button,
.contact button {
  margin-left: 0.2rem;
}

/* Animated Button Click */
.neon-btn.clicked, .cta-btn.clicked, .download-btn.clicked {
  transform: scale(0.94);
  box-shadow: 0 0 5px #3dc2d3, 0 0 8px #ffe744;
  background: linear-gradient(90deg, #3dc2d3 20%, #ffe744 80%);
  color: #fff;
}

/* FOOTER */
footer {
  background: #19142b;
  color: #ffe744;
  padding: 1.2rem 0.5rem;
  text-align: center;
  font-size: 1.04rem;
  border-top: 2px solid #3dc2d3;
  box-shadow: 0 0 14px #3dc2d3;
  margin-top: 3.5rem;
}
footer a {
  color: #3dc2d3;
  text-decoration: underline;
  transition: color 0.2s;
}
footer a:hover {
  color: #ffe744;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-card {
    padding: 1.1rem 0.5rem 1.5rem 0.5rem;
  }
  section.glass {
    padding: 1.2rem 0.6rem 1rem 0.6rem;
  }
}
@media (max-width: 650px) {
  nav ul {
    flex-direction: column;
    gap: 0.65rem;
  }
  .logo-title h1 {
    font-size: 1.5rem;
  }
  .hero-content h2 {
    font-size: 1.2rem;
  }
  .hero-img {
    width: 140px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .download-links {
    flex-direction: column;
    gap: 0.7rem;
  }
}