/* XETAL ARCADE THEME - EXACT REPLICATION */
/* Classic Arcade Gaming Aesthetic */

@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

/* Custom Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
  background: #000000;
}

::-webkit-scrollbar-track {
  background: rgba(0, 255, 0, 0.1);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #00ff00;
  border-radius: 10px;
  box-shadow: 0 0 6px rgba(0, 255, 0, 0.5);
}

::-webkit-scrollbar-thumb:hover {
  background: #00cc00;
  box-shadow: 0 0 8px rgba(0, 255, 0, 0.7);
}

/* Firefox scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: #00ff00 #000000;
}

/* Keyframe Animations */
@keyframes scanlines {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(2px);
  }
}

@keyframes scanning {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}

@keyframes flicker {
  0% {
    background-color: #000000;
  }
  100% {
    background-color: #050505;
  }
}

@keyframes tvFlicker {
  0% {
    filter: 
      brightness(1.2)
      contrast(1.1)
      saturate(1.2)
      sepia(0.2)
      blur(0.5px);
  }
  3% {
    filter: 
      brightness(1.1)
      contrast(1.2)
      saturate(1.1)
      sepia(0.3)
      blur(1px);
  }
  6% {
    filter: 
      brightness(1.2)
      contrast(1.1)
      saturate(1.2)
      sepia(0.2)
      blur(0.5px);
  }
  7% {
    filter: 
      brightness(1.3)
      contrast(1)
      saturate(1.3)
      sepia(0.25)
      blur(0.8px);
  }
  8% {
    filter: 
      brightness(1.2)
      contrast(1.1)
      saturate(1.2)
      sepia(0.2)
      blur(0.5px);
  }
  100% {
    filter: 
      brightness(1.2)
      contrast(1.1)
      saturate(1.2)
      sepia(0.2)
      blur(0.5px);
  }
}

@keyframes scanline {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(4px);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes blink {
  0%, 50% {
    opacity: 0;
  }
  51%, 100% {
    opacity: 1;
  }
}

@keyframes loadingBlink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}


/* Base Styles */
body, html {
  margin: 0;
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  background: #000;
  position: relative;
  overflow-x: hidden;
}

/* Scanline Effects - Re-enabled with subtle opacity */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent,
    transparent 50%,
    rgba(0, 255, 0, 0.008) 50%,
    rgba(0, 255, 0, 0.008)
  );
  background-size: 100% 2px;
  pointer-events: none;
  z-index: 5;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(0, 255, 0, 0.04),
    transparent
  );
  pointer-events: none;
  z-index: 5;
}

/* Header Styles */
.header {
  position: relative;
  background: #000;
  height: 100vh;
  min-height: 25rem;
  overflow: hidden;
}

/* Background Video */
.header .video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  z-index: 0;
  pointer-events: none;
  filter: 
    brightness(1.2)
    contrast(1.1)
    saturate(1.2)
    sepia(0.2)
    blur(0.5px);
}

/* Noise Overlay - Re-enabled */
.noise-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.02;
  z-index: 6;
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* CRT Overlay - Re-enabled */
.crt-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(0, 255, 0, 0.03) 50%,
    rgba(0, 0, 0, 0.03) 50%
  );
  background-size: 100% 4px;
  pointer-events: none;
  z-index: 6;
}

/* Scanlines */
.scanlines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    transparent 50%,
    rgba(0, 255, 0, 0.05) 50%
  );
  background-size: 100% 2px;
  z-index: 7;
  pointer-events: none;
}

/* Container Video Styles */
.container-video {
  position: relative;
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  padding: 2rem;
  color: #00ff00;
}

/* Game Start Overlay */
.game-start-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 200;
  text-align: center;
}

/* Title Box - Dark transparent background with navigation */
.title-box {
  border: 2px solid #00ff00;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
  background: rgba(0, 0, 0, 0.8);
  text-align: center;
  position: relative;
  z-index: 150;
}

.title-box h1 {
  font-family: 'Press Start 2P', monospace;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(0, 255, 0, 0.7);
  letter-spacing: 4px;
  color: #00ff00;
}

.logo-container {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 8px;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.inline-text {
  color: #00ff00;
  text-shadow: 0 0 20px rgba(0, 255, 0, 0.7);
}

.void-text {
  color: #357cff;
  text-shadow: 0 0 20px rgba(0, 119, 255, 0.7);
}

/* Navigation inside title box */
.title-navigation {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.title-nav-link {
  font-family: 'Press Start 2P', monospace;
  font-size: 8px;
  color: #00ff00;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 15px;
  border: 1px solid rgba(0, 255, 0, 0.5);
  border-radius: 3px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.title-nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.2), transparent);
  transition: left 0.3s ease;
}

.title-nav-link:hover::before {
  left: 100%;
}

.title-nav-link:hover {
  color: #000;
  background: rgba(0, 255, 0, 0.8);
  border-color: #00ff00;
  box-shadow: 0 0 15px rgba(0, 255, 0, 0.6);
  text-shadow: 0 0 5px #00ff00;
  text-decoration: none;
  transform: scale(1.05);
}

/* Stats Display */
.stats {
  display: flex;
  justify-content: space-between;
  max-width: 600px;
  margin: 2rem auto;
  padding: 1rem;
  border: 2px solid #00ff00;
  background: rgba(0, 0, 0, 0);
}

.stat-item {
  text-align: center;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  color: #00ff00;
}

.stat-value {
  font-size: 1.2rem;
  color: #ffffff;
}

/* Start Game Button */
.start-game-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  font-family: 'Press Start 2P', monospace;
  font-size: 1.2rem;
  color: #00ff00;
  background: none;
  border: 2px solid #00ff00;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
}

.start-game-btn::before {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(0, 255, 0, 0.2),
    transparent
  );
  transition: all 0.5s ease;
}

.start-game-btn:hover::before {
  top: -50%;
  left: -50%;
}

.start-game-btn:hover {
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
  text-shadow: 0 0 10px rgba(0, 255, 0, 0.7);
  text-decoration: none;
  color: #00ff00;
}

.controller-icon {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
}

/* Instructions */
.instructions {
  margin-top: 2rem;
  font-size: 0.8rem;
  line-height: 2;
  text-align: center;
}

.blink-text {
  color: #ffc400;
}

/* Copyright */
.copyright {
  text-align: center;
  font-size: 0.6rem;
  line-height: 1.5;
  opacity: 0.7;
  margin-top: 2rem;
  color: #00ff00;
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: #00ff00;
  text-shadow: 0 0 10px rgba(0, 255, 0, 0.7);
  z-index: 10000;
  font-family: 'Press Start 2P', monospace;
}

.fade-out {
  opacity: 0;
  pointer-events: none;
}

/* Navbar Styles - Fixed positioning to not cover main content */
.animated-navbar {
  background: rgba(0, 0, 0, 0.5) !important;
  border-bottom: none;
  backdrop-filter: blur(3px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  transition: all 0.3s ease;
  font-family: 'Press Start 2P', monospace;
  padding: 0px 0 !important;
  min-height: auto !important;
}

.animated-navbar:hover {
  box-shadow: 0 2px 10px rgba(0, 255, 0, 0.3);
  background: rgba(0, 0, 0, 0.7) !important;
}

.navbar-brand {
  padding: 5px 0 !important;
  margin: 0 !important;
  text-decoration: none;
  z-index: 51;
  position: relative;
}

.navbar-brand:hover {
  text-decoration: none;
}

.navbar-brand span {
  text-shadow: 0 0 10px rgba(0, 255, 0, 0.7);
  transition: all 0.3s ease;
}

.navbar-brand:hover span {
  text-shadow: 0 0 15px rgba(0, 255, 0, 1);
  transform: scale(1.05);
}

.navbar-nav {
  align-items: center;
  z-index: 51;
  position: relative;
}

.nav-item {
  margin: 0 3px;
}

.nav-link {
  font-family: 'Press Start 2P', monospace !important;
  font-size: 6px !important;
  font-weight: normal !important;
  color: #00ff00 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 10px !important;
  border: 1px solid transparent;
  border-radius: 3px;
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
  margin: 0;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, transparent, #00ff00, transparent);
  transition: width 0.3s ease;
  border-radius: 3px;
  opacity: 0.2;
}

.nav-link:hover::before {
  width: 100%;
}

.nav-link:hover {
  color: #000 !important;
  border-color: #00ff00;
  box-shadow: 0 0 10px rgba(0, 255, 0, 0.4);
  text-shadow: 0 0 3px #00ff00;
  text-decoration: none;
  background: rgba(0, 255, 0, 0.1);
}

.navbar-toggler {
  border: 1px solid #00ff00 !important;
  padding: 2px 6px !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2300ff00' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
  width: 16px !important;
  height: 16px !important;
}

/* Button Styles */
.btn-outline-primary {
  background: linear-gradient(45deg, transparent, rgba(0, 255, 0, 0.1));
  border: 2px solid #00ff00;
  color: #00ff00;
  font-family: 'Press Start 2P', monospace;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 5px;
  padding: 12px 25px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-outline-primary:hover {
  background: linear-gradient(45deg, #00ff00, #39ff14);
  color: #000;
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
  transform: scale(1.05);
  text-decoration: none;
}

.btn-outline-secondary {
  background: linear-gradient(45deg, transparent, rgba(0, 255, 0, 0.05));
  border: 1px solid rgba(0, 255, 0, 0.5);
  color: #00ff00;
  font-family: 'Press Start 2P', monospace;
  font-size: 8px;
  border-radius: 5px;
  padding: 8px 20px;
  transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
  background: rgba(0, 255, 0, 0.2);
  border-color: #00ff00;
  color: #00ff00;
  box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .container-video {
    padding: 1rem;
  }

  .logo-container {
    font-size: 2rem;
    letter-spacing: 4px;
  }
  
  .title-box h1 {
    font-size: 1rem;
  }
  
  .title-navigation {
    gap: 10px;
    margin-top: 1rem;
  }
  
  .title-nav-link {
    font-size: 6px;
    padding: 6px 10px;
  }
  
  .stats {
    flex-direction: row;
    gap: 2rem;
    padding: 0.8rem;
    margin: 1.5rem auto;
    max-width: 90%;
  }

  .start-game-btn {
    font-size: 0.8rem;
    padding: 0.8rem 1.2rem;
  }

  .instructions {
    font-size: 0.7rem;
    margin-top: 1.5rem;
  }

  .copyright {
    font-size: 0.5rem;
    margin-top: 1.5rem;
  }
}

@media (max-width: 480px) {
  .container-video {
    padding: 0.8rem;
  }

  .title-box {
    padding: 1.5rem 1rem;
    margin-bottom: 1.5rem;
  }

  .logo-container {
    font-size: 1.5rem;
    letter-spacing: 3px;
  }
  
  .title-navigation {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
  
  .title-nav-link {
    font-size: 5px;
    padding: 5px 8px;
    width: auto;
    min-width: 60px;
  }

  .stats {
    flex-direction: column;
    gap: 1rem;
    padding: 0.6rem;
  }

  .stat-item {
    width: 100%;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  .stat-value {
    font-size: 1rem;
  }

  .start-game-btn {
    font-size: 0.7rem;
    padding: 0.6rem 1rem;
    gap: 0.5rem;
  }

  .controller-icon {
    width: 18px;
    height: 18px;
  }

  .instructions {
    font-size: 0.6rem;
    margin-top: 1rem;
  }

  .copyright {
    font-size: 0.45rem;
    margin-top: 1rem;
  }
}

/* Game Cards - Fixed layout and styling */
.container {
  background: transparent;
  padding: 50px 20px;
  font-family: 'Press Start 2P', monospace;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  padding: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.game-card {
  background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
  border: 2px solid #00ff00;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: all 0.5s ease;
  box-shadow: 
    0 0 20px rgba(0, 255, 0, 0.3),
    inset 0 0 20px rgba(0, 255, 0, 0.05);
  width: 380px;
  margin: 0 auto;
}

.game-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 
    0 20px 40px rgba(0, 255, 0, 0.4),
    0 0 50px rgba(0, 255, 0, 0.6),
    inset 0 0 30px rgba(0, 255, 0, 0.1);
}

/* Game Image - Fixed sizing */
.game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-bottom: 2px solid #00ff00;
}

/* Game Info Container */
.game-info {
  padding: 20px;
  background: linear-gradient(180deg, #1a1a1a, #1f1f1f);
}

.game-title {
  font-family: 'Press Start 2P', monospace;
  font-size: 12px;
  color: #00ff00;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(0, 255, 0, 0.7);
  border-bottom: 1px solid #00ff00;
  padding-bottom: 10px;
}

.game-section-title {
  font-family: 'Press Start 2P', monospace;
  font-size: 8px;
  color: #39ff14;
  margin: 20px 0 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid #00ff00;
  padding-bottom: 5px;
  text-shadow: 0 0 10px rgba(57, 255, 20, 0.7);
}

.highlight {
  color: #39ff14;
  font-weight: normal;
  text-shadow: 0 0 5px rgba(57, 255, 20, 0.7);
  font-family: 'Press Start 2P', monospace;
}

/* Payment Sections - Fixed layout */
.payment-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 15px 0;
}

.payment-section {
  background: linear-gradient(90deg, rgba(0, 255, 0, 0.05), rgba(0, 255, 0, 0.1), rgba(0, 255, 0, 0.05));
  border: 1px solid rgba(0, 255, 0, 0.3);
  border-radius: 5px;
  padding: 15px;
  transition: all 0.3s ease;
}

.payment-section:hover {
  border-color: #00ff00;
  box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
}

.payment-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.payment-section li {
  margin: 8px 0;
  font-family: 'Press Start 2P', monospace;
  font-size: 7px;
  color: #00ff00;
  line-height: 1.4;
}

/* Hardware Icons - Fixed sizing */
.crypto-icons {
  text-align: center;
  margin: 10px 0;
  font-family: 'Press Start 2P', monospace;
  font-size: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-wrap: wrap;
}

.crypto-icons img {
  width: 20px;
  height: 20px;
  margin: 0 2px;
  border-radius: 3px;
  border: 1px solid rgba(0, 255, 0, 0.5);
  padding: 2px;
  background: rgba(0, 255, 0, 0.1);
}

/* Pricing - Fixed structure */
.pricing {
  margin: 10px 0;
}

.pricing ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Checklist Styles */
.checklist {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

.checklist li {
  margin: 8px 0;
  font-family: 'Press Start 2P', monospace;
  font-size: 7px;
  color: #00ff00;
  position: relative;
  padding-left: 15px;
  line-height: 1.4;
}

.checklist li::before {
  content: '▶';
  color: #39ff14;
  position: absolute;
  left: 0;
}

/* Social Buttons */
.social-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 255, 0, 0.3);
}

.social-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(45deg, #001100, #003300);
  border: 2px solid #00ff00;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-button:hover {
  background: linear-gradient(45deg, #003300, #39ff14);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.6);
}

.social-button img {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(50%) sepia(96%) saturate(6048%) hue-rotate(75deg) brightness(118%) contrast(119%);
}

/* Responsive Design for Game Cards */
@media (max-width: 768px) {
  .game-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 10px;
  }
  
  .game-card {
    width: 100%;
    max-width: 380px;
  }
  
  .payment-container {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .crypto-icons {
    font-size: 6px;
  }
  
  .crypto-icons img {
    width: 16px;
    height: 16px;
  }
}

/* Hardware Section - Beautiful centered layout */
.hardware-section {
  background: linear-gradient(90deg, rgba(0, 255, 0, 0.05), rgba(0, 255, 0, 0.1), rgba(0, 255, 0, 0.05));
  border: 1px solid rgba(0, 255, 0, 0.3);
  border-radius: 8px;
  padding: 20px;
  margin: 15px 0;
  transition: all 0.3s ease;
}

.hardware-section:hover {
  border-color: #00ff00;
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.4);
}

.hardware-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 15px 0;
  padding: 10px 15px;
  background: rgba(0, 255, 0, 0.02);
  border-radius: 5px;
  border: 1px solid rgba(0, 255, 0, 0.1);
  transition: all 0.3s ease;
}

.hardware-row:hover {
  background: rgba(0, 255, 0, 0.05);
  border-color: rgba(0, 255, 0, 0.3);
}

.hardware-label {
  font-family: 'Press Start 2P', monospace;
  font-size: 8px;
  color: #39ff14;
  text-shadow: 0 0 8px rgba(57, 255, 20, 0.7);
  min-width: 40px;
  text-align: left;
  font-weight: bold;
}

.hardware-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
}

.hardware-icons img {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: 1px solid rgba(0, 255, 0, 0.4);
  padding: 3px;
  background: rgba(0, 255, 0, 0.08);
  transition: all 0.3s ease;
  filter: brightness(1.1);
}

.hardware-icons img:hover {
  transform: scale(1.1);
  border-color: #00ff00;
  box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
  background: rgba(0, 255, 0, 0.15);
}

/* Responsive hardware section */
@media (max-width: 768px) {
  .hardware-row {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .hardware-label {
    min-width: auto;
    margin-bottom: 5px;
  }
  
  .hardware-icons {
    justify-content: center;
  }
  
  .hardware-icons img {
    width: 20px;
    height: 20px;
  }
} 