/* Fonts loaded via HTML */
:root {
  --bg-dark: #161616;
  --accent-pink: #ff2dfd;
  --accent-cyan: #00e5ff;
  --accent-yellow: #ffc300;
  --text-main: #fff;
  --text-sub: #f5f5f5;
  --gradient-main: linear-gradient(135deg, #ff2dfd 0%, #00e5ff 100%);
  --gradient-navbar: linear-gradient(90deg, #00e5ff 0%, #ff2dfd 100%);
}

body {
  margin: 0;
  font-family: "Orbitron", Arial, sans-serif;
  background: var(--bg-dark);
  color: var(--text-main);
  min-height: 100vh;
  cursor: none;
  overflow-x: hidden;
  position: relative;
}

#hero-bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

#custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  border: 2px solid var(--accent-pink);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  background: rgba(255, 45, 253, 0.08);
  box-shadow: 0 0 16px 2px var(--accent-pink);
  transition: transform 0.15s, background 0.2s, border 0.2s, box-shadow 0.2s;
}

#custom-cursor.cursor-hover {
  transform: scale(1.5);
  border-color: var(--accent-cyan);
  background: rgba(0, 229, 255, 0.15);
  box-shadow: 0 0 24px 6px var(--accent-cyan);
}

header.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--gradient-navbar);
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 7vw 10px 7vw;
  backdrop-filter: blur(12px);
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s;
}

.glassy-navbar {
  background: rgba(22, 22, 22, 0.7);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.18);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-title {
  font-family: "Luckiest Guy", cursive;
  font-size: 2rem;
  color: var(--accent-yellow);
  letter-spacing: 2px;
  text-shadow: 0 2px 8px #161616;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 36px;
  margin: 0;
  padding: 0;
}

nav a.nav-link {
  text-decoration: none;
  color: var(--text-main);
  font-family: "Press Start 2P", cursive;
  font-size: 1rem;
  letter-spacing: 1px;
  position: relative;
  transition: color 0.2s, transform 0.18s;
  display: flex;
  align-items: center;
}

nav a.nav-link:hover,
nav a.nav-link:focus {
  color: var(--accent-cyan);
  transform: scale(1.13);
  z-index: 1;
}

.nav-rocket {
  display: inline-block;
  margin-left: 6px;
  opacity: 0;
  transform: translateY(-6px) scale(0.8);
  transition: opacity 0.2s, transform 0.2s;
}

.nav-games-link:hover .nav-rocket,
.nav-games-link:focus .nav-rocket {
  opacity: 1;
  transform: translateY(-2px) scale(1.1) rotate(-12deg);
  animation: rocket-bounce 0.7s infinite alternate;
}

@keyframes rocket-bounce {
  0% {
    transform: translateY(-2px) scale(1.1) rotate(-12deg);
  }
  100% {
    transform: translateY(-12px) scale(1.15) rotate(-12deg);
  }
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 90px 8vw 60px 8vw;
  min-height: 60vh;
  z-index: 1;
}

.hero-content {
  max-width: 540px;
  z-index: 2;
}

.hero h1 {
  font-family: "Luckiest Guy", cursive;
  font-size: 2.8rem;
  margin: 0 0 22px 0;
  color: var(--accent-yellow);
  letter-spacing: 1px;
  text-shadow: 0 2px 16px #161616;
  line-height: 1.1;
}

.hero .highlight {
  color: var(--accent-pink);
  text-shadow: 0 2px 8px #161616;
}

.hero-subheading {
  font-size: 1.25rem;
  color: var(--text-sub);
  margin-bottom: 36px;
  font-family: "Orbitron", Arial, sans-serif;
  letter-spacing: 1px;
}

.neon-btn {
  font-family: "Press Start 2P", cursive;
  font-size: 1.1rem;
  color: var(--text-main);
  background: var(--gradient-main);
  border: none;
  border-radius: 40px;
  padding: 18px 44px 18px 32px;
  box-shadow: 0 0 24px 4px var(--accent-pink),
    0 0 8px 2px var(--accent-cyan) inset;
  cursor: pointer;
  outline: none;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.18s, transform 0.13s;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.neon-btn:hover,
.neon-btn:focus {
  box-shadow: 0 0 36px 8px var(--accent-cyan),
    0 0 12px 4px var(--accent-pink) inset;
  transform: scale(1.07);
}

.btn-rocket {
  display: inline-block;
  transition: transform 0.2s;
}

.neon-btn:active .btn-rocket {
  animation: rocket-launch 0.5s cubic-bezier(0.6, -0.28, 0.74, 0.05) forwards;
}

@keyframes rocket-launch {
  0% {
    transform: translateY(0) scale(1);
  }
  60% {
    transform: translateY(-18px) scale(1.2);
  }
  100% {
    transform: translateY(-40px) scale(0.7);
  }
}

.rocket-svg-container {
  flex-shrink: 0;
  margin-left: 48px;
  z-index: 2;
  animation: rocket-float 2.5s ease-in-out infinite alternate;
}

@keyframes rocket-float {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-18px);
  }
}

footer {
  text-align: center;
  padding: 18px 0;
  background: rgba(22, 22, 22, 0.95);
  color: var(--accent-yellow);
  font-family: "Orbitron", Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 1px;
  margin-top: 40px;
  z-index: 2;
}

.about-section {
  position: relative;
  z-index: 2;
  background: linear-gradient(120deg, #181a20 60%, #ff2dfd 100%);
  overflow: hidden;
  padding: 0 0 0 0;
}

.about-bg-icons {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: none;
  /* SVG icons will be injected by JS */
}

.about-content-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 80px 8vw 48px 8vw;
}

.about-text {
  flex: 1 1 340px;
  max-width: 540px;
}

.about-headline {
  font-family: "Luckiest Guy", cursive;
  font-size: 2.5rem;
  color: var(--accent-yellow);
  margin: 0 0 18px 0;
  letter-spacing: 1px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.about-highlight {
  color: var(--accent-pink);
  text-shadow: 0 2px 12px #161616;
}

.about-description {
  font-family: "Orbitron", Arial, sans-serif;
  font-size: 1.15rem;
  color: var(--text-sub);
  margin-bottom: 28px;
  line-height: 1.7;
}

.about-description p {
  margin: 0 0 14px 0;
}

.about-fun-facts {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
}

.about-fun-facts li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  margin-bottom: 10px;
  font-family: "Orbitron", Arial, sans-serif;
}

.about-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  transition: transform 0.18s, box-shadow 0.18s;
  margin-right: 2px;
}
.about-icon:hover {
  transform: scale(1.18) rotate(-8deg);
  box-shadow: 0 0 12px 2px var(--accent-pink);
}

.about-keyword {
  display: inline-block;
  transition: color 0.18s, text-shadow 0.18s, transform 0.18s;
  cursor: pointer;
  font-weight: 600;
  position: relative;
}

.glow-on-hover:hover,
.glow-on-hover:focus {
  color: var(--accent-cyan);
  text-shadow: 0 0 12px var(--accent-cyan), 0 2px 8px #161616;
}

.scale-on-hover:hover,
.scale-on-hover:focus {
  color: var(--accent-yellow);
  transform: scale(1.13) rotate(-2deg);
  text-shadow: 0 0 10px var(--accent-yellow), 0 2px 8px #161616;
}

.about-btn {
  margin-top: 10px;
  font-size: 1.05rem;
  padding: 14px 36px 14px 26px;
  border-radius: 32px;
  background: var(--gradient-main);
  box-shadow: 0 0 18px 2px var(--accent-pink),
    0 0 8px 2px var(--accent-cyan) inset;
  transition: box-shadow 0.18s, transform 0.13s;
}

.about-btn:hover,
.about-btn:focus {
  box-shadow: 0 0 28px 6px var(--accent-cyan),
    0 0 12px 4px var(--accent-pink) inset;
  transform: scale(1.07) translateY(-2px);
}

.about-btn .btn-rocket {
  transition: transform 0.2s;
}

.about-btn:active .btn-rocket {
  animation: rocket-launch 0.5s cubic-bezier(0.6, -0.28, 0.74, 0.05) forwards;
}

.about-svg-illustration {
  flex: 1 1 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  z-index: 2;
}

#about-illustration-svg {
  width: 340px;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 32px #ff2dfd88);
  transition: transform 0.18s;
  cursor: pointer;
}

#about-illustration-svg:hover {
  transform: scale(1.05) rotate(-2deg);
  filter: drop-shadow(0 12px 48px #00e5ffcc);
}

.about-divider {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: -16px;
  z-index: 3;
  position: relative;
}

.about-divider img {
  width: 320px;
  max-width: 80vw;
  opacity: 0.85;
  filter: drop-shadow(0 4px 24px #ff2dfd88);
  pointer-events: none;
}

/* Floating animated keywords in background (optional) */
@keyframes float-keyword {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-18px) scale(1.08);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

.about-bg-icons .floating-keyword {
  position: absolute;
  font-family: "Luckiest Guy", cursive;
  font-size: 2.2rem;
  color: #fff;
  opacity: 0.08;
  pointer-events: none;
  user-select: none;
  animation: float-keyword 5s ease-in-out infinite;
  text-shadow: 0 2px 12px #ff2dfd, 0 0 24px #00e5ff;
}

/* Services Section Styles */
.services-section {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: linear-gradient(120deg, #181a20 60%, #00e5ff 100%);
}

.services-bg-icons {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

#services-bg-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  display: block;
}

/* Ensure content is above the canvas */
.services-title,
.services-cards,
.services-cta-btn {
  position: relative;
  z-index: 2;
}

.services-title {
  font-family: "Luckiest Guy", cursive;
  font-size: 2.5rem;
  color: var(--accent-pink);
  text-align: center;
  margin: 0 0 48px 0;
  letter-spacing: 2px;
  text-shadow: 0 0 18px #ff2dfd, 0 2px 12px #161616;
  z-index: 2;
  position: relative;
}

.services-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 36px;
  padding: 0 8vw 0 8vw;
  z-index: 2;
  position: relative;
  flex-wrap: wrap;
}

.service-card {
  background: rgba(22, 22, 22, 0.93);
  border-radius: 24px;
  box-shadow: 0 0 0 4px transparent, 0 4px 32px 0 rgba(0, 0, 0, 0.18);
  border: 2.5px solid transparent;
  padding: 38px 28px 28px 28px;
  flex: 1 1 280px;
  max-width: 340px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.18s, border 0.18s, transform 0.18s;
  cursor: pointer;
  position: relative;
  overflow: visible;
}

.card-pink {
  border-image: linear-gradient(135deg, #ff2dfd, #ffc300) 1;
  box-shadow: 0 0 24px 2px #ff2dfd44;
}
.card-cyan {
  border-image: linear-gradient(135deg, #00e5ff, #ff2dfd) 1;
  box-shadow: 0 0 24px 2px #00e5ff44;
}
.card-yellow {
  border-image: linear-gradient(135deg, #ffc300, #00e5ff) 1;
  box-shadow: 0 0 24px 2px #ffc30044;
}

.service-card:hover,
.service-card:focus {
  transform: scale(1.045) rotate(-1.5deg);
  box-shadow: 0 0 48px 8px var(--accent-cyan),
    0 0 24px 6px var(--accent-pink) inset;
  border-color: var(--accent-pink);
  z-index: 3;
}

.service-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s;
}

.service-card:hover .service-icon,
.service-card:focus .service-icon {
  animation: icon-bounce 0.7s;
}

@keyframes icon-bounce {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.18) rotate(-8deg);
  }
  70% {
    transform: scale(0.92) rotate(6deg);
  }
  100% {
    transform: scale(1);
  }
}

.service-icon img {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 2px 12px #00e5ff88);
  transition: filter 0.18s;
}

.service-card:hover .service-icon img,
.service-card:focus .service-icon img {
  filter: drop-shadow(0 4px 24px #ff2dfdcc);
}

.service-content {
  text-align: center;
}

.service-name {
  font-family: "Press Start 2P", cursive;
  font-size: 1.1rem;
  color: var(--accent-yellow);
  margin: 0 0 10px 0;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.service-badge {
  display: inline-block;
  background: var(--accent-cyan);
  color: #161616;
  font-family: "Orbitron", Arial, sans-serif;
  font-size: 0.7rem;
  border-radius: 12px;
  padding: 2px 10px;
  margin-left: 8px;
  vertical-align: middle;
  box-shadow: 0 0 8px 2px #00e5ff55;
  animation: badge-float 2s infinite alternate;
}

.service-badge.new {
  background: var(--accent-pink);
  color: #fff;
  box-shadow: 0 0 8px 2px #ff2dfd55;
}

@keyframes badge-float {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-4px);
  }
}

.service-content p {
  font-family: "Orbitron", Arial, sans-serif;
  color: var(--text-sub);
  font-size: 1.05rem;
  margin: 0;
  margin-bottom: 0;
  line-height: 1.5;
}

.services-cta-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 48px auto 0 auto;
  font-size: 1.1rem;
  padding: 18px 44px 18px 32px;
  border-radius: 40px;
  background: var(--gradient-main);
  box-shadow: 0 0 24px 4px var(--accent-pink),
    0 0 8px 2px var(--accent-cyan) inset;
  border: none;
  outline: none;
  cursor: pointer;
  font-family: "Press Start 2P", cursive;
  color: var(--text-main);
  transition: box-shadow 0.18s, transform 0.13s;
  position: relative;
  z-index: 2;
}

.services-cta-btn:hover,
.services-cta-btn:focus {
  box-shadow: 0 0 36px 8px var(--accent-cyan),
    0 0 12px 4px var(--accent-pink) inset;
  transform: scale(1.07) translateY(-2px);
}

.services-cta-btn .btn-rocket {
  transition: transform 0.2s;
}

.services-cta-btn:active .btn-rocket {
  animation: rocket-launch 0.5s cubic-bezier(0.6, -0.28, 0.74, 0.05) forwards;
}

/* Contact Us Section - Full Redesign */
.contact-section {
  background: linear-gradient(135deg, #1E003E 0%, #161616 100%);
  padding: 64px 0 48px 0;
  position: relative;
  overflow: hidden;
}
.contact-bg-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.contact-content-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.contact-illustration {
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  min-height: 320px;
  background: rgba(34,0,62,0.7);
  border-radius: 24px;
  box-shadow: 0 0 32px #161616cc;
  padding: 32px 24px 24px 24px;
  margin-right: 0;
}
#contact-illustration-svg {
  width: 220px;
  max-width: 100%;
  margin-bottom: 18px;
  animation: floaty 3.2s ease-in-out infinite alternate;
}
@keyframes floaty {
  0% { transform: translateY(0); }
  100% { transform: translateY(-18px); }
}
.contact-address-block {
  margin-top: 8px;
  background: rgba(34,0,62,0.8);
  border-radius: 16px;
  box-shadow: 0 0 16px #FF2DFD44;
  padding: 18px 18px 12px 18px;
  color: #F5F5F5;
  font-family: 'Orbitron', 'Press Start 2P', monospace;
  font-size: 1.08rem;
  text-align: left;
}
.address-icon {
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
}
.email-icon {
  display: inline-block;
  margin-right: 6px;
  vertical-align: middle;
}
.address-details strong {
  color: #FFC300;
  font-size: 1.08em;
}
.address-email a {
  color: #00E5FF;
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.2s;
}
.address-email a:hover {
  color: #FF2DFD;
}
.contact-form-wrapper {
  flex: 1 1 400px;
  background: rgba(34, 0, 62, 0.7);
  border-radius: 24px;
  box-shadow: 0 0 32px #161616cc;
  padding: 40px 32px 32px 32px;
  position: relative;
}
.contact-headline {
  font-family: 'Luckiest Guy', 'Orbitron', cursive;
  font-size: 2.2rem;
  color: #fff;
  text-shadow: 0 0 16px #FF2DFD, 0 0 32px #00E5FF;
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-align: left;
}
.contact-form label {
  font-family: 'Orbitron', 'Press Start 2P', monospace;
  color: #FFC300;
  font-size: 1rem;
  margin-bottom: 6px;
  display: block;
}
.contact-form .form-group {
  margin-bottom: 22px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #FF2DFD;
  border-radius: 8px;
  background: #161616;
  color: #F5F5F5;
  font-family: 'Orbitron', 'Press Start 2P', monospace;
  font-size: 1.08rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 0px #FF2DFD;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #00E5FF;
  box-shadow: 0 0 12px #00E5FF, 0 0 4px #FF2DFD;
}
.contact-form textarea {
  min-height: 100px;
  resize: vertical;
}
.contact-submit-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, #FF2DFD 0%, #00E5FF 100%);
  color: #fff;
  font-family: 'Luckiest Guy', 'Orbitron', cursive;
  font-size: 1.2rem;
  border: none;
  border-radius: 12px;
  padding: 14px 32px;
  cursor: pointer;
  box-shadow: 0 0 16px #FF2DFD, 0 0 32px #00E5FF;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
  overflow: hidden;
}
.contact-submit-btn:hover {
  box-shadow: 0 0 32px #00E5FF, 0 0 48px #FF2DFD;
  transform: scale(1.05);
}
.contact-submit-btn:active {
  animation: rocket-launch 0.6s cubic-bezier(.7,-0.5,.7,1.5);
}
@keyframes rocket-launch {
  0% { transform: scale(1) translateY(0); }
  40% { transform: scale(1.08) translateY(-8px); }
  100% { transform: scale(1) translateY(0); }
}
.btn-rocket svg {
  vertical-align: middle;
  filter: drop-shadow(0 0 8px #FFC300);
  transition: filter 0.2s;
}
.contact-form .form-success-message {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #00E5FF 0%, #FF2DFD 100%);
  color: #fff;
  font-family: 'Luckiest Guy', 'Orbitron', cursive;
  font-size: 1.1rem;
  border-radius: 10px;
  padding: 12px 18px;
  margin-top: 18px;
  box-shadow: 0 0 16px #00E5FF, 0 0 32px #FF2DFD;
  animation: success-pop 0.7s cubic-bezier(.7,-0.5,.7,1.5);
}
@keyframes success-pop {
  0% { transform: scale(0.7); opacity: 0; }
  60% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
.success-icon {
  font-size: 1.5em;
  filter: drop-shadow(0 0 8px #FFC300);
}

/* Footer Section Styles */
.footer-section {
  background: linear-gradient(180deg, #1E003E 0%, #0D0D0D 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 0;
  font-family: 'Orbitron', 'Press Start 2P', 'Luckiest Guy', cursive, sans-serif;
}
.footer-bg-svg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100px;
  z-index: 0;
  pointer-events: none;
}
.footer-content-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px 30px 20px;
}
.footer-logo-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.footer-logo svg {
  filter: drop-shadow(0 0 12px #FF2DFD88);
  transition: transform 0.3s;
}
.footer-logo svg:hover {
  transform: scale(1.08) rotate(-6deg);
}
.footer-nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-link {
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1em;
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
}
.footer-link:after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, #FF2DFD, #00E5FF, #FFD23F);
  transition: width 0.3s;
  position: absolute;
  left: 0; bottom: -4px;
}
.footer-link:hover {
  color: #FFD23F;
}
.footer-link:hover:after {
  width: 100%;
}
.footer-social {
  display: flex;
  gap: 20px;
  margin: 18px 0 10px 0;
}
.footer-social-icon {
  display: inline-block;
  background: none;
  border: none;
  outline: none;
  transition: transform 0.3s, box-shadow 0.3s;
  border-radius: 50%;
  padding: 6px;
}
.footer-social-icon img {
  width: 32px; height: 32px;
  filter: drop-shadow(0 0 8px #FF2DFD88);
  transition: filter 0.3s, transform 0.3s;
}
.footer-social-icon:hover {
  transform: scale(1.18) rotate(-8deg);
  box-shadow: 0 0 16px #FFD23F88;
}
.footer-social-icon:hover img {
  filter: drop-shadow(0 0 16px #FFD23F);
}
.footer-tagline {
  margin: 18px 0 10px 0;
}
.footer-funky-tagline {
  font-family: 'Luckiest Guy', 'Orbitron', cursive;
  font-size: 1.5em;
  color: #FF2DFD;
  text-shadow: 0 0 12px #FFD23F, 0 0 24px #00E5FF;
  letter-spacing: 2px;
  animation: neonPulse 2s infinite alternate;
}
@keyframes neonPulse {
  0% { text-shadow: 0 0 12px #FFD23F, 0 0 24px #00E5FF; }
  100% { text-shadow: 0 0 24px #FF2DFD, 0 0 36px #FFD23F; }
}
.footer-back-to-top {
  background: linear-gradient(90deg, #FF2DFD 0%, #00E5FF 100%);
  color: #fff;
  border: none;
  border-radius: 32px;
  padding: 10px 28px 10px 18px;
  font-family: 'Press Start 2P', 'Orbitron', cursive;
  font-size: 1em;
  cursor: pointer;
  margin: 18px 0 10px 0;
  box-shadow: 0 0 16px #FF2DFD44;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
}
.footer-back-to-top:hover {
  background: linear-gradient(90deg, #FFD23F 0%, #FF2DFD 100%);
  box-shadow: 0 0 32px #FFD23F88;
  transform: scale(1.08);
}
.back-to-top-rocket img {
  width: 28px; height: 28px;
  transition: transform 0.5s cubic-bezier(.68,-0.55,.27,1.55);
}
.footer-back-to-top.takeoff .back-to-top-rocket img {
  transform: translateY(-60px) scale(1.3) rotate(-20deg);
}
.footer-copyright {
  margin-top: 18px;
  font-size: 1em;
  color: #FFD23F;
  text-shadow: 0 0 8px #FF2DFD44;
  font-family: 'Orbitron', sans-serif;
}

/* SVG floating stars animation */
.footer-stars circle {
  animation: footerStarFloat 3s infinite alternate;
}
@keyframes footerStarFloat {
  0% { opacity: 0.7; transform: translateY(0); }
  100% { opacity: 1; transform: translateY(-12px); }
}
.footer-icons image {
  animation: footerIconFloat 4s infinite alternate;
}
@keyframes footerIconFloat {
  0% { opacity: 0.8; transform: translateY(0); }
  100% { opacity: 1; transform: translateY(-18px); }
}

/* Responsive */
@media (max-width: 1100px) {
  .services-cards {
    gap: 18px;
  }
  .service-card {
    min-width: 180px;
    padding: 28px 12px 18px 12px;
  }
}

@media (max-width: 900px) {
  .services-cards {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding-left: 4vw;
    padding-right: 4vw;
  }
  .service-card {
    max-width: 420px;
    width: 100%;
  }
  .services-title {
    font-size: 1.5rem;
  }
  .contact-content-wrapper {
    flex-direction: column;
    gap: 32px;
    padding: 0 12px;
  }
  .contact-illustration {
    min-width: 180px;
    min-height: 180px;
  }
  #contact-illustration-svg {
    width: 180px;
  }
  .contact-form-wrapper {
    padding: 28px 12px 18px 12px;
  }
  .contact-headline {
    font-size: 1.5rem;
  }
}

@media (max-width: 600px) {
  header,
  .hero {
    padding-left: 4vw;
    padding-right: 4vw;
  }
  .brand-title {
    font-size: 1.2rem;
  }
  .hero h1 {
    font-size: 1.4rem;
  }
  .hero-content {
    max-width: 100%;
  }
  nav ul {
    gap: 18px;
  }
  .about-content-wrapper {
    padding-left: 4vw;
    padding-right: 4vw;
  }
  .about-headline {
    font-size: 1.3rem;
  }
  .about-description {
    font-size: 1rem;
  }
  .about-svg-illustration {
    min-width: 120px;
  }
  #about-illustration-svg {
    width: 120px;
  }
  .services-section {
    padding-bottom: 40px;
  }
  .services-title {
    font-size: 1.1rem;
  }
  .service-card {
    padding: 18px 6px 12px 6px;
  }
  .contact-section {
    padding: 32px 0 24px 0;
  }
  .contact-content-wrapper {
    gap: 18px;
  }
  .contact-form-wrapper {
    padding: 16px 4px 8px 4px;
  }
}

@media (max-width: 700px) {
  .footer-content-wrapper {
    padding: 40px 10px 20px 10px;
  }
  .footer-logo-nav {
    flex-direction: column;
    gap: 18px;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .footer-social {
    gap: 14px;
  }
  .footer-funky-tagline {
    font-size: 1.1em;
    text-align: center;
  }
  .footer-back-to-top {
    font-size: 0.9em;
    padding: 8px 18px 8px 12px;
  }
}
