body {
  font-family: 'Orbitron', sans-serif;
  background-color: #0b0f1a;
  color: #f5f5f5;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  border-bottom: 2px solid #00ffff;
  display: inline-block;
  margin-bottom: 1rem;
}

.btn-arcade {
  background-color: #ff0055;
  color: white;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255, 0, 85, 0.5);
}

.btn-arcade:hover {
  background-color: #ff3377;
}

.dark-overlay {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
}

.icon-style {
  color: #00ffff;
  font-size: 1.5rem;
  margin-right: 0.5rem;
}

.cookie-banner {
  background: #222;
  color: #ccc;
  padding: 1rem;
  font-size: 0.9rem;
  text-align: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 9999;
}

.cookie-banner a {
  color: #00ffff;
  text-decoration: underline;
}

.loader-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  letter-spacing: 4px;
  color: #00ffff;
  animation: flicker 1.2s infinite alternate;
  text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
}

.loader-border {
  height: 4px;
  width: 200px;
  margin: 0 auto;
  background: linear-gradient(90deg, #ff0055, #00ffff, #ff0055);
  background-size: 400% 100%;
  animation: pulse-bar 2s infinite linear;
  border-radius: 8px;
  box-shadow: 0 0 10px #00ffff, 0 0 20px #ff0055;
}

@keyframes flicker {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}

@keyframes pulse-bar {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 0%;
  }
}

#arcade-loader.fade-out {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
/* === SHARED BUTTON BASE === */
.btn-arcade {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  border: none;
  border-radius: 10px;
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: inset 0 -2px 4px rgba(0, 0, 0, 0.5),
    0 4px 15px rgba(0, 255, 255, 0.1);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
}

/* === PRIMARY (Electric Magenta) === */
.btn-arcade-primary {
  background: linear-gradient(145deg, #ff0066, #ff3366);
  color: #ffffff;
  box-shadow: 0 0 12px rgba(255, 0, 102, 0.5);
}

.btn-arcade-primary:hover {
  background: linear-gradient(145deg, #ff3385, #ff6699);
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(255, 0, 102, 0.7);
}

/* === SECONDARY (Neon Aqua) === */
.btn-arcade-secondary {
  background: linear-gradient(145deg, #00f0ff, #33f0ff);
  color: #000000;
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.5);
}

.btn-arcade-secondary:hover {
  background: linear-gradient(145deg, #66faff, #99fcff);
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.7);
}

/* === OUTLINE VARIANT === */
.btn-arcade-outline {
  background: transparent;
  border: 2px solid #00ffff;
  color: #00ffff;
  box-shadow: none;
}

.btn-arcade-outline:hover {
  background: rgba(0, 255, 255, 0.1);
  box-shadow: 0 0 15px #00ffff;
  transform: scale(1.03);
  color: #ffffff;
}

/* === SMALL VARIANT === */
.btn-arcade-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

/* === ICON ALIGNMENT === */
.btn-arcade i {
  margin-right: 0.5rem;
  font-size: 1.1rem;
}

/* === HEADER STYLES === */
.arcade-header {
  background: rgba(10, 10, 20, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 255, 255, 0.1);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.05);
  z-index: 1050;
  transition: all 0.3s ease;
}

.logo-header {
  max-width: 180px;
  width: 100%;
}
.logo-footer {
  max-width: 240px;
  margin-bottom: 24px;
  width: 100%;
}

.navbar-brand {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #00ffff;
  text-shadow: 0 0 5px #00ffff;
}

.navbar-toggler {
  border-color: #00ffff;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='cyan' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-nav .nav-link.active {
  color: #00f0ff;
}
.navbar-nav .nav-link {
  color: #cccccc;
  margin-left: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: #00ffff;
  text-shadow: 0 0 5px #00ffff;
}

.navbar-nav .nav-link.active::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: #00ffff;
  margin-top: 4px;
  animation: slideIn 0.4s ease-out forwards;
}

@keyframes slideIn {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.hero-section {
  height: 70vh;
  background: url('../imgs/arcade-bg-hero.jpg') center center / cover no-repeat;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hero-section .dark-overlay {
  background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85));
  z-index: 0;
}

.hero-section .container {
  z-index: 2;
}

.glow-title {
  color: #00ffff;
  text-shadow: 0 0 5px #00ffff, 0 0 20px #00ffff;
  animation: flickerTitle 1.5s ease-in-out infinite alternate;
}

@keyframes flickerTitle {
  from {
    text-shadow: 0 0 5px #00ffff;
  }
  to {
    text-shadow: 0 0 15px #00ffff, 0 0 30px #00ffff;
  }
}

#about {
  background: linear-gradient(to right, #0b0f1a, #11172a);
  color: #f0f0f0;
}

#about img {
  border: 3px solid #00ffff;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

#about p {
  font-size: 1.05rem;
  line-height: 1.6;
}

#services {
  background: linear-gradient(to bottom, #0e0f1a, #141c2e);
}

.service-card {
  background-color: #1a1f2b;
  border-radius: 16px;
  border: 1px solid rgba(0, 255, 255, 0.1);
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.05);
}

.service-card:hover {
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.3);
  transform: translateY(-5px);
}

.service-card .icon-style {
  font-size: 2rem;
  color: #00ffff;
}

#gallery {
  background: radial-gradient(circle at top, #0e0f1a, #0b0f1a);
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 2px solid rgba(0, 255, 255, 0.15);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.gallery-card:hover {
  transform: scale(1.02);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.25);
}

.gallery-card img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-card .caption {
  background: rgba(0, 0, 0, 0.7);
  padding: 0.75rem;
  position: absolute;
  bottom: 0;
  width: 100%;
  font-size: 0.9rem;
  color: #00ffff;
  font-family: 'Orbitron', sans-serif;
  border-top: 1px solid #00ffff33;
}

#contact {
  background: linear-gradient(to right, #0e0f1a, #141c2e);
  padding-bottom: 6rem;
}

#contact a {
  color: #00ffff;
}

#contact a:hover {
  color: #ffffff;
  text-shadow: 0 0 10px #00ffff;
}

#contact .icon-style {
  color: #00ffff;
  font-size: 1.25rem;
  margin-right: 0.5rem;
}

#testimonials {
  background: radial-gradient(circle at center, #0b0f1a, #0a0a15);
}

.testimonial-card {
  background-color: #151c2b;
  border: 1px solid rgba(0, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.05);
  transition: all 0.3s ease;
  text-align: left;
}

.testimonial-card:hover {
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.2);
  transform: scale(1.02);
}

.testimonial-card p {
  font-style: italic;
  font-size: 0.95rem;
  color: #ddd;
}

.testimonial-card h6 {
  font-weight: 700;
  color: #00ffff;
  margin-top: 1rem;
}

.text-muted {
  color: #99fcff !important;
}

/* Help Tab Styling */
.help-tab-btn {
  background-color: transparent;
  border: 1px solid #00ffff;
  color: #00ffff;
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  margin: 0 0.5rem;
  text-transform: uppercase;
  padding: 0.6rem 1.2rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.help-tab-btn:hover,
.help-tab-btn.active {
  background-color: #00ffff;
  color: #000;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
}

.tab-content {
  background-color: #101624;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.05);
}

/* === Power Tab Styling === */
#helpTabsContent h5 {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.1rem;
  color: #00ffff;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
}

#helpTabsContent ul,
#helpTabsContent ol {
  padding-left: 1.2rem;
  font-size: 0.95rem;
  color: #e0e0e0;
}

#helpTabsContent ul li,
#helpTabsContent ol li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
  position: relative;
}

#helpTabsContent ul li::before {
  content: '🔧 ';
  position: absolute;
  left: -1.4rem;
}

#helpTabsContent ol li::marker {
  color: #00ffff;
  font-weight: bold;
}

#helpTabsContent p {
  font-size: 1rem;
  line-height: 1.6;
}

#helpTabsContent a {
  color: #00ffff;
  text-decoration: underline;
}

#helpTabsContent a:hover {
  color: #ffffff;
  text-shadow: 0 0 10px #00ffff;
}

.footer {
  background-color: #0a0e18;
  font-size: 0.95rem;
  border-top: 1px solid rgba(0, 255, 255, 0.1);
}

.footer-title {
  font-family: 'Orbitron', sans-serif;
  color: #00ffff;
  margin-bottom: 1rem;
  font-weight: bold;
  text-transform: uppercase;
}

.footer-link {
  display: block;
  color: #cccccc;
  margin-bottom: 0.5rem;
  transition: all 0.2s ease;
  text-decoration: none;
}

.footer-link:hover {
  color: #ffffff;
  text-shadow: 0 0 10px #00ffff;
}
.about-intro {
  background: linear-gradient(to right, #0e0f1a, #141c2e);
}

.about-intro p {
  font-size: 1.05rem;
  line-height: 1.6;
}

.page-header {
  min-height: 400px;
  position: relative;
  z-index: 1;
}

.page-header .dark-overlay {
  background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85));
  z-index: 0;
}

.page-header .container {
  z-index: 2;
}

.text-glow {
  color: #00ffff;
  text-shadow: 0 0 5px #00ffff, 0 0 20px #00ffff;
}
.how-i-work {
  background: linear-gradient(to bottom, #101625, #0b0f1a);
}

.step-card {
  background-color: #151c2b;
  border-radius: 16px;
  border: 1px solid rgba(0, 255, 255, 0.1);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.2);
}

.work-conditions {
  background: linear-gradient(to right, #0f111c, #151d2f);
}

.condition-card {
  background-color: #1b2130;
  border: 1px solid rgba(0, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.condition-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.2);
}
.what-we-fix {
  background: linear-gradient(to bottom, #101725, #0b0f1a);
}

.what-we-fix img {
  border: 3px solid rgba(0, 255, 255, 0.1);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.1);
}

.arcade-service {
  background: linear-gradient(to right, #101625, #0b0f1a);
}

.arcade-service .checklist li {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.arcade-service .checklist i {
  font-size: 1.1rem;
}

.arcade-upgrade {
  background: linear-gradient(to bottom, #0e1320, #0b0f1a);
}

.arcade-upgrade .checklist li {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.arcade-upgrade .checklist i {
  font-size: 1.1rem;
}

.slot-service {
  background: linear-gradient(to right, #141c2f, #0b0f1a);
}

.slot-service .checklist li {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.slot-service .checklist i {
  font-size: 1.1rem;
}

.accessory-service {
  background: linear-gradient(to bottom, #101624, #0b0f1a);
}

.accessory-service .checklist li {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.accessory-service .checklist i {
  font-size: 1.1rem;
}

.services-cta {
  background: radial-gradient(circle at center, #0e0f1a, #0b0f1a);
  border-top: 1px solid rgba(0, 255, 255, 0.1);
}

.services-cta .btn-arcade {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}
.repair-terms .checklist li {
  font-size: 1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: start;
}

.repair-terms .checklist i {
  font-size: 1.2rem;
  margin-top: 0.15rem;
}

.cookie-consent-banner {
  background-color: #f5f5f5;
  color: #333;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 9999;
  display: none;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.cookie-header {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}

.cookie-tabs {
  display: flex;
  gap: 20px;
}

.cookie-tabs li {
  cursor: pointer;
  font-weight: bold;
  padding: 5px 15px;
}

.cookie-tabs li.active {
  border-bottom: 3px solid #0088cc;
}

.cookie-body {
  margin-top: 20px;
}

.cookie-tab-content {
  display: none;
}

.cookie-tab-content.active {
  display: block;
}

.cookie-btn {
  padding: 10px 20px;
  background-color: #0088cc;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.cookie-btn:hover {
  background-color: #005f8c;
}

form label {
  margin-bottom: 10px;
}

form input {
  margin-right: 10px;
}
