/* Reset and base styles */

:root {
  --main: #ffffff;
  --secondary: #00c3de;
}

/* Auth Buttons Container (Top Right) */
.auth-buttons-container {
  position: fixed;
  right: 20px;
  top: 0;
  z-index: 1050;
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  height: 80px;
  padding-top: 20px;
}

.auth-btn {
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.75rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.3s ease;
  border: 1.5px solid var(--secondary);
  white-space: nowrap;
  cursor: pointer;
}

.auth-btn-login,
.auth-btn-logout {
  background: #00c3de !important;
  color: #000000 !important;
  border-color: #00c3de !important;
}

.auth-btn-login,
.auth-btn-logout,
.auth-btn-login *,
.auth-btn-logout *,
.auth-btn-login span,
.auth-btn-logout span,
.auth-btn-login i,
.auth-btn-logout i,
.auth-btn-login a,
.auth-btn-logout a {
  color: #000000 !important;
}

.auth-btn-login:hover,
.auth-btn-logout:hover {
  background: #00a8c0;
  border-color: #00a8c0;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 195, 222, 0.4);
}

.auth-btn-signup {
  background: transparent;
  color: var(--secondary);
  border-color: var(--secondary);
}

.auth-btn-signup:hover {
  background: rgba(0, 195, 222, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 195, 222, 0.3);
}

.auth-btn i {
  font-size: 0.85rem;
}

/* Mobile auth buttons - hidden on desktop */
.mobile-auth-buttons {
  display: none;
}

/* Responsive Auth Buttons */
@media (max-width: 991px) {
  .auth-buttons-container {
    right: 70px;
    top: 0;
    height: 60px;
    padding-top: 15px;
    gap: 6px;
  }

  .auth-btn {
    padding: 5px 10px;
    font-size: 0.7rem;
  }

  .auth-btn i {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .auth-buttons-container {
    right: 60px;
    top: 0;
    height: 50px;
    padding-top: 10px;
    gap: 4px;
  }

  .auth-btn {
    padding: 4px 8px;
    font-size: 0.65rem;
  }

  .auth-btn span {
    display: none;
  }

  .auth-btn i {
    font-size: 0.75rem;
  }
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}


body {
  background-color: black;
  font-family: "Poppins", sans-serif;
  color: var(--main) !important;
  /* padding-top: 80px; */
  scroll-snap-type: y mandatory;
  /* snap vertically */
}

.logo {
  height: 80px;
  width: auto;
}

#navbarNav {
  margin-right: 200px;
}

.navbar-brand {
  margin-left: 50px;
  padding: 0;
  display: flex;
  align-items: center;
  height: 80px;
}

.logo-text {
  font-size: 22px;
  white-space: nowrap;
}

.navbar-nav {
  align-items: center;
  height: 80px;
  display: flex;
}

/* Navbar Responsive */
@media (max-width: 991px) {
  .navbar-brand {
    margin-left: 15px;
  }

  #navbarNav {
    margin-right: 0;
    margin-top: 15px;
    margin-left: 15px;
  }

  .navbar-nav {
    text-align: center;
    padding-bottom: 15px;
  }

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

  .logo {
    height: 50px;
  }

  .logo-text {
    font-size: 18px;
  }

  .navbar-toggler {
    margin-right: 15px;
    border-color: var(--secondary);
    padding: 8px 12px;
  }

  .navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 195, 222, 0.25);
  }

  .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='rgba%280, 195, 222, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }

  .nav-link {
    font-size: 18px;
    padding: 8px 0;
  }

  /* Mobile menu background - Full Screen Overlay */
  /* COMPLETELY disable Bootstrap collapse animation to prevent glitches */
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    height: 100vh !important;
    background-color: #030818;
    background: linear-gradient(180deg, #051020 0%, #030818 100%);
    border: none;
    margin-top: 0;
    margin-left: -15px;
    padding: 30px;
    padding-bottom: 120px;
    backdrop-filter: blur(25px);
    box-shadow: none;
    z-index: 1000;
    overflow-y: auto;
    border-radius: 0;
    /* Disable ALL transitions to prevent glitch */
    transition: none !important;
  }

  /* Force hide when collapsed - no animation */
  .navbar-collapse:not(.show) {
    display: none !important;
  }

  /* Force show when open - no animation */
  .navbar-collapse.show {
    display: block !important;
  }

  /* CRITICAL: Override Bootstrap's collapsing state completely */
  .navbar-collapse.collapsing {
    display: none !important;
    height: 100vh !important;
    overflow: hidden !important;
    transition: none !important;
  }

  /* Remove border from mobile logout button */
  .navbar-collapse .btn-link {
    border: none !important;
    text-decoration: none;
    padding-left: 0;
    padding-right: 0;
  }

  /* Reset margins for full width */
  #navbarNav {
    margin: 0;
    width: 100%;
    max-width: none;
  }

  /* Hide desktop auth buttons on mobile */
  .auth-buttons-container {
    display: none !important;
  }

  /* Show mobile auth buttons inside menu */
  .mobile-auth-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 12px;
    padding-top: 20px;
    margin-top: 15px;
    /* border-top removed as requested */
    border-top: none;
  }

  .mobile-auth-buttons .auth-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 10px 20px;
    font-size: 1rem;
    display: flex;
    align-items: center;
  }

  /* Add background to navbar on tablet/mobile */
  .navbar {
    border-bottom: none !important;
    background-color: #030818 !important;
    background: linear-gradient(180deg, #051020 0%, #030818 100%) !important;
    transition: transform 0.3s ease !important;
  }

  /* Hide navbar when scrolling down on mobile/tablet */
  .navbar.navbar-hidden {
    transform: translateY(-100%);
  }

  /* Add padding to push content below fixed navbar on mobile/tablet */
  body {
    padding-top: 85px !important;
  }

  /* Ensure snap-container starts below navbar */
  .snap-container {
    margin-top: 0;
  }
}

@media (max-width: 576px) {
  .navbar-brand {
    margin-left: 10px;
  }

  #navbarNav {
    margin-left: 10px;
  }

  .logo {
    height: 40px;
  }

  .logo-text {
    font-size: 16px;
  }

  .navbar-toggler {
    margin-right: 10px;
    padding: 6px 10px;
  }

  .nav-link {
    font-size: 16px;
  }

  /* Remove navbar border on mobile to prevent line behind menu items */
  .navbar {
    border-bottom: none !important;
  }
}

.logo-text span {
  color: var(--secondary);
  font-weight: 600;
}

/* Navbar styling */
.navbar {
  background-color: transparent !important;
  border-bottom: 1px solid rgba(0, 195, 222, 0.3);
  box-shadow: none !important;
}

/* Navbar link base style */
.nav-link {
  font-size: 20px;
  position: relative;
  color: white !important;
  text-decoration: none;
  padding-bottom: 5px;
  transition: color 0.3s ease;
  margin-right: 5px;
}

/* Underline element (hidden by default) */
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: var(--main-color, #00c3de);
  transition: width 0.3s ease;
}

/* Hover effect for all links */
.nav-link:hover {
  color: var(--main-color, #00c3de) !important;
}

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

/* Active link (blue text only, no underline until hovered) */
.nav-link.active {
  color: var(--main-color, #00c3de) !important;
}

.nav-link.active::after {
  width: 0%;
  /* keep underline hidden */
}

/* Allow active one to show underline when hovered */
.nav-link.active:hover::after {
  width: 100%;
}

section {
  scroll-snap-align: start;
  width: 100%;
  height: 100vh;
  padding-top: 100px;
}

.snap-container {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-snap-stop: always;
  scroll-behavior: auto;
}

/* Main container fills the screen */
.main {
  position: relative;
  width: 100%;
  height: 100vh;
  /* full viewport height */
  overflow: hidden;
  background: linear-gradient(135deg, #000510 0%, #001123 40%, #001a33 100%);
  padding-top: 0 !important;
}

.upper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 200px;
  padding-top: 300px;
  flex-wrap: wrap;
}

.lower {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
}

.lower .btn {
  color: var(--main);
  /* text color */
  border: 2px solid var(--secondary);
  /* border color */
  border-radius: 8px;
  height: auto;
  width: auto;
  font-size: 1.2rem;
  font-weight: 600;
  box-shadow: 0 0 15px rgba(0, 195, 222, 0.4),
    0 0 30px rgba(0, 195, 222, 0.2),
    0 4px 15px rgba(0, 195, 222, 0.3);
  transition: all 0.3s ease;
}

.lower .btn:hover {
  background-color: var(--secondary);
  /* background on hover */
  color: #000;
  /* text on hover */
  box-shadow: 0 0 20px rgba(0, 195, 222, 0.6),
    0 0 40px rgba(0, 195, 222, 0.4),
    0 6px 20px rgba(0, 195, 222, 0.5);
  transform: translateY(-2px);
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 2px solid var(--secondary);
  border-radius: 50%;
  color: var(--secondary);
  font-size: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--secondary);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(0, 195, 222, 0.6);
}

/* Promo Banner */
.promo-banner {
  display: flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(0, 195, 222, 0.15) 100%);
  border: 1px solid rgba(255, 107, 53, 0.4);
  border-radius: 50px;
  padding: 10px 25px;
  margin-top: 45px;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: promo-glow 2s ease-in-out infinite;
}

@keyframes promo-glow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
  }

  50% {
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.4);
  }
}

.promo-banner:hover {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.25) 0%, rgba(0, 195, 222, 0.25) 100%);
  border-color: rgba(255, 107, 53, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 5px 25px rgba(255, 107, 53, 0.3);
}

.promo-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.promo-text {
  color: white;
  font-size: 0.95rem;
  font-weight: 500;
}

.promo-text strong {
  color: #00c3de;
  font-weight: 700;
}

.promo-cta {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #00c3de;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}

.promo-cta i {
  transition: transform 0.2s ease;
}

.promo-banner:hover .promo-cta i {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .promo-banner {
    flex-direction: column;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 15px;
    text-align: center;
  }

  .promo-text {
    font-size: 0.9rem;
  }

  .social-icons {
    margin-top: 20px;
  }
}



/* Content (text on top of overlay) */
.hero {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 1;
}

/* GLOWING CIRCLE EFFECT */
.glow-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.35) 0%, rgba(0, 0, 0, 0) 70%);
  transform: translate(-50%, -50%);
  filter: blur(80px);
  z-index: 0;
}


/* TEXT CONTENT */
.content {
  margin-top: 50px;
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 20px;
}

.content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 15px;
  color: #fff;
}

.content h2 span {
  color: #00c3de;
  text-shadow: 0 0 10px rgba(0, 195, 222, 0.7);
}

.content p,
.hardware .card p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #ccc;
}

/* Container to hold image and glow */
.image-glow-container {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

/* The glow behind the image */
.image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  /* match roughly image size */
  height: 300px;
  background: radial-gradient(circle, rgba(0, 195, 222, 0.5) 0%, rgba(0, 0, 0, 0) 70%);
  transform: translate(-50%, -50%);
  filter: blur(60px);
  z-index: 0;
}

/* The image itself */
.glowing-image {
  width: 200px;
  /* adjust size */
  height: auto;
  z-index: 1;
  border-radius: 10px;
  /* optional: rounded corners */
  object-fit: cover;
}

.about,
.hardware {
  height: 100vh;
  background: linear-gradient(180deg, #030818 0%, #0a1628 50%, #051020 100%);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(0, 195, 222, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(0, 195, 222, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.about-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about h2,
.hardware h2 {
  font-weight: 500;
  padding-top: 70px;
  padding-bottom: 50px;
  text-shadow: 0 0 30px rgba(0, 195, 222, 0.3);
}

.about h2 span,
.hardware h2 span {
  color: var(--secondary);
  text-shadow: 0 0 20px rgba(0, 195, 222, 0.5);
}

.about .card-container,
.hardware .card-container {
  margin: 0 150px;
  width: auto;
}

.about .card {
  max-width: 400px;
  height: auto;
  min-height: auto;
}

.card {
  background: linear-gradient(145deg, rgba(8, 23, 52, 0.9) 0%, rgba(5, 15, 35, 0.95) 100%);
  border: 1px solid rgba(0, 195, 222, 0.25);
  border-radius: 20px;
  color: var(--main);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: auto;
  min-height: auto;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(0, 195, 222, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.card:hover {
  border-color: rgba(0, 195, 222, 0.6);
  transform: translateY(-8px);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 0 50px rgba(0, 195, 222, 0.2),
    0 0 100px rgba(0, 195, 222, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card .icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  width: 55px;
  background: linear-gradient(135deg, rgba(0, 195, 222, 0.15) 0%, rgba(0, 150, 180, 0.1) 100%);
  border: 1px solid rgba(0, 195, 222, 0.3);
  margin-left: 25px;
  margin-top: 25px;
  border-radius: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 195, 222, 0.1);
}

.card:hover .icon-container {
  background: linear-gradient(135deg, rgba(0, 195, 222, 0.25) 0%, rgba(0, 150, 180, 0.15) 100%);
  box-shadow: 0 0 25px rgba(0, 195, 222, 0.3);
  transform: scale(1.05);
}

.card .icon-container i {
  font-size: 26px;
  color: var(--secondary);
  text-shadow: 0 0 10px rgba(0, 195, 222, 0.5);
  transition: all 0.3s ease;
}

.card:hover .icon-container i {
  text-shadow: 0 0 20px rgba(0, 195, 222, 0.8);
}

.card-body {
  padding: 20px 25px;
}

.card-title {
  padding: 15px 0 10px 0;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.3px;
}

.card-text {
  color: rgba(200, 210, 220, 0.85);
  padding-bottom: 10px;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ===== NEW HARDWARE SECTION DESIGN ===== */
.hardware-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  padding: 80px 20px 20px 20px;
}

.hardware h2 {
  font-weight: 500;
  padding-top: 0;
  padding-bottom: 50px;
  text-shadow: 0 0 30px rgba(0, 195, 222, 0.3);
  text-align: center;
}

.hardware h2 span {
  color: var(--secondary);
  text-shadow: 0 0 20px rgba(0, 195, 222, 0.5);
}

/* CSS Grid for uniform cards */
.hardware-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  width: 92%;
  max-width: 1600px;
}

/* Individual card styling */
.hardware-card {
  background: linear-gradient(145deg, rgba(8, 23, 52, 0.95) 0%, rgba(5, 15, 35, 0.98) 100%);
  border: 1px solid rgba(0, 195, 222, 0.25);
  border-radius: 20px;
  padding: 35px;
  display: flex;
  align-items: center;
  gap: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 195, 222, 0.05);
  min-height: 140px;
}

.hardware-card:hover {
  border-color: rgba(0, 195, 222, 0.6);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 50px rgba(0, 195, 222, 0.15);
}

/* Icon styling */
.hw-icon {
  width: 80px;
  height: 80px;
  min-width: 80px;
  background: linear-gradient(135deg, rgba(0, 195, 222, 0.15) 0%, rgba(0, 150, 180, 0.1) 100%);
  border: 1px solid rgba(0, 195, 222, 0.3);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.hw-icon i {
  font-size: 38px;
  color: var(--secondary);
  text-shadow: 0 0 10px rgba(0, 195, 222, 0.5);
}

.hardware-card:hover .hw-icon {
  background: linear-gradient(135deg, rgba(0, 195, 222, 0.25) 0%, rgba(0, 150, 180, 0.15) 100%);
  box-shadow: 0 0 20px rgba(0, 195, 222, 0.3);
  transform: scale(1.05);
}

/* Content styling */
.hw-content {
  flex: 1;
}

.hw-content h4 {
  color: #fff;
  font-size: 1.45rem;
  font-weight: 600;
  margin: 0 0 10px 0;
}

.hw-specs {
  color: rgba(200, 210, 220, 0.85);
  font-size: 1.1rem;
  margin: 0 0 8px 0;
}

.hw-tagline {
  color: var(--secondary);
  font-size: 1.05rem;
  font-weight: 500;
  margin: 0;
  opacity: 0.9;
}

/* Badge styling */
.hw-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: linear-gradient(135deg, rgba(0, 195, 222, 0.2) 0%, rgba(0, 150, 180, 0.15) 100%);
  border: 1px solid rgba(0, 195, 222, 0.4);
  color: var(--secondary);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
  .hardware-container {
    padding-top: 60px;
  }

  .hardware-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    width: 95%;
  }

  .hardware-card {
    padding: 25px;
    min-height: 100px;
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .hardware-container {
    padding-top: 50px;
  }

  .hardware-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hardware-card {
    padding: 22px;
    padding-top: 45px;
    min-height: auto;
  }

  .hw-badge {
    top: 12px;
    right: 12px;
    font-size: 0.7rem;
    padding: 4px 10px;
  }

  .hw-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
  }

  .hw-icon i {
    font-size: 26px;
  }

  .hw-content {
    padding-right: 0;
  }

  .hw-content h4 {
    font-size: 1.1rem;
  }

  .hw-specs {
    font-size: 0.9rem;
  }

  .hardware h2 {
    font-size: 1.5rem;
    padding-bottom: 25px;
  }
}

/* Gallery Section */
.gallery {
  height: 100vh;
  overflow: hidden;
  /* Solid background instead of gradient for better Chrome performance */
  background: #000a18;
  display: flex;
  flex-direction: column;
  /* AGGRESSIVE Chrome layer promotion - force compositing BEFORE scroll */
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  /* Isolate rendering */
  isolation: isolate;
  contain: layout style paint;
}

/* Scroll optimization class - applied via JS during scroll animations */
.gallery.scroll-optimized {
  /* Disable transitions during scroll */
  pointer-events: none;
}

.gallery.scroll-optimized .gallery-item,
.gallery.scroll-optimized .gallery-image-wrapper,
.gallery.scroll-optimized .gallery-image,
.gallery.scroll-optimized .gallery-overlay {
  transition: none !important;
  animation: none !important;
  will-change: auto !important;
}

.gallery.scroll-optimized .gallery-image {
  transform: translateZ(0) !important;
}

/* Gallery images start hidden, fade in after pre-decoding */
.gallery-image {
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

.gallery-image.decoded {
  opacity: 1;
}

.gallery-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5px 50px;
  max-width: 100%;
  margin: 0 auto;
  height: 100%;
  justify-content: center;
  overflow: hidden;
  width: 100%;
}

.gallery h2 {
  font-weight: 450;
  padding-top: 50px;
  padding-bottom: 3px;
  text-align: center;
  margin-bottom: 0;
}

.gallery h2 span {
  color: var(--secondary);
}

.gallery-grid {
  width: 100%;
  max-width: 1600px;
  padding: 0 20px;
  margin: 0 auto;
}

.gallery-grid .row {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  grid-template-rows: repeat(3, 1fr) !important;
  gap: 12px !important;
  --bs-gutter-x: 0 !important;
  --bs-gutter-y: 0 !important;
  max-height: calc(100vh - 180px);
  aspect-ratio: 4 / 3;
}

.gallery-grid .row>[class*="col-"] {
  display: flex;
  padding: 0;
  min-height: 0;
  width: 100% !important;
  height: 100%;
  max-width: 100% !important;
  flex: none !important;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  /* Simpler transition for Chrome performance */
  transition: transform 0.25s ease-out;
  width: 100%;
  height: 100%;
  display: flex;
  min-height: 0;
  /* Force compositing layer for each item */
  transform: translateZ(0);
  will-change: transform;
  contain: layout;
}

.gallery-item:hover {
  transform: translateY(-3px);
}

.gallery-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 200px;
  overflow: hidden;
  border-radius: 12px;
  border: 2px solid transparent;
  /* Only transition border - box-shadow transition is expensive in Chrome */
  transition: border-color 0.25s ease-out;
  /* Static box-shadow instead of animated */
  box-shadow: 0 4px 15px rgba(0, 195, 222, 0.15);
  flex: 1;
  background-color: #0a1628;
}

.gallery-item:hover .gallery-image-wrapper {
  border-color: var(--secondary);
  /* Keep same shadow on hover to avoid expensive shadow animation */
}

.gallery-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Faster, simpler transition */
  transition: transform 0.3s ease-out;
  transform: translateZ(0);
}

.gallery-item:hover .gallery-image {
  transform: translateZ(0) scale(1.08);
}

/* Mobile gallery - SIMPLIFIED to fix rendering issues */
@media (max-width: 992px) {

  /* Reset gallery to simple block layout */
  .gallery {
    height: auto !important;
    min-height: auto !important;
    overflow: visible !important;
    padding: 30px 15px;
    display: block;
    /* Prevent black screen during fast scroll */
    background: #000510 !important;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    content-visibility: visible;
  }

  .gallery-container {
    height: auto !important;
    overflow: visible !important;
    padding: 0 10px;
    display: block;
  }

  .gallery h2 {
    padding-top: 20px;
    padding-bottom: 15px;
  }

  /* Remove grid - use simple flexbox */
  .gallery-grid {
    padding: 0;
  }

  .gallery-grid .row {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    max-height: none !important;
    aspect-ratio: unset !important;
  }

  .gallery-grid .row>[class*="col-"] {
    display: block !important;
    width: calc(50% - 5px) !important;
    max-width: calc(50% - 5px) !important;
    flex: none !important;
    height: auto !important;
    padding: 0 !important;
  }

  /* Simplify gallery item completely */
  .gallery-item {
    position: static !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    overflow: visible !important;
    border-radius: 8px;
    margin-bottom: 0;
  }

  /* Simple image wrapper */
  .gallery-image-wrapper {
    position: static !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: auto !important;
    overflow: visible !important;
    border-radius: 8px;
    border: none;
    box-shadow: none;
  }

  /* Simple image - no absolute positioning */
  .gallery-image {
    position: static !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 8px;
    object-fit: cover;
    /* GPU acceleration to prevent unpaint during scroll */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
  }

  /* Hide overlay completely */
  .gallery-overlay {
    display: none !important;
  }

  .gallery-content {
    display: none !important;
  }

  /* DISABLE ALL HOVER EFFECTS ON MOBILE */
  .gallery-item:hover {
    transform: none !important;
  }

  .gallery-item:hover .gallery-image-wrapper {
    border-color: transparent !important;
    box-shadow: none !important;
  }

  .gallery-item:hover .gallery-image {
    transform: translateZ(0) !important;
    /* Keep GPU accel but no scale */
  }

  .gallery-item:hover .gallery-overlay {
    opacity: 0 !important;
    display: none !important;
  }

  .gallery-item:hover .gallery-content {
    transform: none !important;
  }
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Simple solid color instead of expensive gradient */
  background: rgba(0, 195, 222, 0.7);
  opacity: 0;
  transition: opacity 0.2s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-content {
  text-align: center;
  color: white;
  transform: translateY(10px);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-content {
  transform: translateY(0);
}

.gallery-content i {
  font-size: 2rem;
  display: block;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.gallery-content p {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Responsive adjustments for gallery */
@media (max-width: 992px) {
  .gallery h2 {
    font-size: 2rem;
    padding-top: 15px;
    padding-bottom: 8px;
  }

  .gallery-subtitle {
    font-size: 1rem;
    padding: 0 20px;
    margin-bottom: 12px;
  }

  .gallery-grid {
    padding: 0 15px;
  }

  .gallery-grid .row {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, 1fr);
  }

  .gallery-container {
    padding: 0 20px 10px;
  }
}

@media (max-width: 768px) {
  .gallery h2 {
    font-size: 1.8rem;
    padding-top: 15px;
    padding-bottom: 8px;
  }

  .gallery-subtitle {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }

  .gallery-grid {
    padding: 0 10px;
  }

  .gallery-grid .row {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 8px;
  }

  .gallery-image-wrapper {
    border-radius: 10px;
  }

  .gallery-overlay {
    border-radius: 10px;
  }

  .gallery-content i {
    font-size: 1.8rem;
  }

  .gallery-container {
    padding: 0 10px 10px;
  }
}

@media (max-width: 576px) {
  .gallery h2 {
    font-size: 1.5rem;
    padding-top: 10px;
    padding-bottom: 5px;
  }

  .gallery-subtitle {
    font-size: 0.85rem;
    margin-bottom: 8px;
  }

  .gallery-grid .row {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(9, 1fr);
    gap: 6px;
  }

  .gallery-image-wrapper {
    border-radius: 8px;
  }

  .gallery-overlay {
    border-radius: 8px;
  }

  .gallery-content i {
    font-size: 1.5rem;
  }

  .gallery-container {
    padding: 0 10px 10px;
  }

  .gallery-grid {
    margin-bottom: 10px;
  }
}

/* Gallery Modal Styles */
.gallery-modal-content {
  background-color: #0a0e27;
  border: 2px solid var(--secondary);
  border-radius: 15px;
  overflow: hidden;
}

.gallery-modal-header {
  border-bottom: 1px solid rgba(0, 195, 222, 0.3);
  padding: 15px 20px;
}

.gallery-modal-body {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000510;
}

.gallery-modal-body img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  display: block;
}

.btn-close-white {
  filter: invert(1) grayscale(100%) brightness(200%);
  opacity: 0.8;
}

.btn-close-white:hover {
  opacity: 1;
}

/* Modal backdrop */
.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-backdrop.show {
  opacity: 0.95;
}

/* ============================================
   REDUCED MOTION & PERFORMANCE OPTIMIZATIONS
   ============================================ */

/* Respect user preference for reduced motion */
@media (prefers-reduced-motion: reduce) {

  .gallery-item,
  .gallery-image-wrapper,
  .gallery-image,
  .gallery-overlay,
  .gallery-content {
    transition: none !important;
    animation: none !important;
  }

  .gallery-item:hover .gallery-image {
    transform: none !important;
  }

  .gallery-item:hover {
    transform: none !important;
  }

  /* Disable scroll snap for reduced motion users */
  .snap-container {
    scroll-snap-type: none !important;
  }

  section {
    scroll-snap-align: none !important;
  }
}

/* Chrome/Webkit-specific performance optimizations for gallery during scroll */
@supports (-webkit-appearance: none) {
  .gallery {
    /* Improve paint performance */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  .gallery-item {
    /* Force compositing layer */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  .gallery-image {
    /* Prevent repaints during scroll */
    -webkit-transform: translateZ(0) scale(1);
    transform: translateZ(0) scale(1);
    -webkit-perspective: 1000px;
    perspective: 1000px;
  }

  /* Reset will-change after interaction to free up memory */
  .gallery-item:not(:hover) {
    will-change: auto;
  }

  .gallery-image:not(:hover) {
    will-change: auto;
  }
}

/* ============================================
   COMPREHENSIVE RESPONSIVE STYLES
   ============================================ */

/* Tablet and below (992px) */
@media (max-width: 992px) {

  /* Home Section */
  .upper {
    gap: 50px;
    padding-top: 150px;
    flex-direction: column;
  }

  .content h2 {
    font-size: 2.2rem;
  }

  .content {
    max-width: 90%;
    margin-top: 20px;
  }

  .glow-circle {
    width: 300px;
    height: 300px;
  }

  .glowing-image {
    width: 150px;
  }

  .image-glow {
    width: 200px;
    height: 200px;
  }

  .lower {
    padding-top: 50px;
  }

  /* About Section */
  .about .card-container,
  .hardware .card-container {
    margin: 0 30px;
    width: calc(100% - 60px);
  }

  .about h2,
  .hardware h2 {
    font-size: 2rem;
    padding-top: 50px;
    padding-bottom: 30px;
    text-align: center;
  }

  .about .card {
    max-width: 100%;
  }

  /* Hardware Section */
  .hardware .card .upper-card {
    margin-right: 20px;
  }

  .hardware .card {
    max-width: 100% !important;
  }

  .hardware .card-container {
    width: calc(100% - 60px);
  }
}

/* Mobile Landscape and below (768px) */
@media (max-width: 768px) {

  /* Sections */
  section {
    padding-top: 80px;
    min-height: auto;
    height: auto;
  }

  .main {
    min-height: 100vh;
    height: auto;
  }

  .about,
  .hardware {
    min-height: auto;
    height: auto;
    padding-bottom: 50px;
  }

  /* Home Section */
  .upper {
    gap: 30px;
    padding-top: 120px;
  }

  .content h2 {
    font-size: 1.8rem;
  }

  .content p {
    font-size: 1rem;
  }

  .glow-circle {
    width: 250px;
    height: 250px;
  }

  .glowing-image {
    width: 120px;
  }

  .image-glow {
    width: 150px;
    height: 150px;
  }

  .lower {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .lower .btn {
    font-size: 1rem;
    padding: 10px 20px;
  }

  /* About Section */
  .about .card-container {
    margin: 0 20px;
    width: calc(100% - 40px);
  }

  .about h2 {
    font-size: 1.8rem;
    padding-top: 40px;
    padding-bottom: 20px;
  }

  .card {
    margin-bottom: 20px;
  }

  .card .icon-container {
    margin-left: 15px;
    margin-top: 20px;
    height: 45px;
    width: 45px;
  }

  .card .icon-container i {
    font-size: 25px;
    padding: 15px;
  }

  .card-body {
    padding: 15px;
  }

  .card-title {
    padding: 15px 0;
    font-size: 1.1rem;
  }

  .card-text {
    font-size: 0.9rem;
  }

  /* Hardware Section */
  .hardware .card-container {
    margin: 0 20px;
    width: calc(100% - 40px);
  }

  .hardware h2 {
    font-size: 1.8rem;
    padding-top: 40px;
    padding-bottom: 20px;
  }

  .hardware .card .upper-card {
    margin-left: 15px;
    margin-right: 15px;
    margin-top: 15px;
    gap: 10px;
  }

  .hardware .card .icon-container {
    height: 40px;
    width: 40px;
  }

  .hardware .card .icon-container i {
    font-size: 20px;
  }

  .hardware .right-card {
    padding-top: 10px;
  }

  .hardware .right-card .card-title {
    font-size: 1rem;
  }

  .hardware .card p {
    font-size: 13px;
  }

  .hardware hr {
    margin: 15px 15px 10px 15px;
  }

  .hardware .card .lower-card {
    padding: 0 15px 15px;
  }

  .hardware .card .lower-card p {
    font-size: 14px;
  }

  .hardware .card .lower-card .right h3 {
    font-size: 1.5rem;
  }
}

/* Small Mobile (576px and below) */
@media (max-width: 576px) {

  /* Sections */
  section {
    padding-top: 70px;
  }

  /* Home Section */
  .upper {
    gap: 20px;
    padding-top: 100px;
  }

  .content h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .content p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .glow-circle {
    width: 200px;
    height: 200px;
  }

  .glowing-image {
    width: 100px;
  }

  .image-glow {
    width: 120px;
    height: 120px;
  }

  .lower {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .lower .btn {
    font-size: 0.9rem;
    padding: 8px 16px;
  }

  /* About Section */
  .about .card-container {
    margin: 0 15px;
    width: calc(100% - 30px);
  }

  .about h2 {
    font-size: 1.5rem;
    padding-top: 30px;
    padding-bottom: 15px;
  }

  .card {
    margin-bottom: 15px;
  }

  .card .icon-container {
    margin-left: 10px;
    margin-top: 15px;
    height: 40px;
    width: 40px;
  }

  .card .icon-container i {
    font-size: 20px;
    padding: 12px;
  }

  .card-body {
    padding: 12px;
  }

  .card-title {
    padding: 12px 0;
    font-size: 1rem;
  }

  .card-text {
    font-size: 0.85rem;
  }

  /* Hardware Section */
  .hardware .card-container {
    margin: 0 15px;
    width: calc(100% - 30px);
  }

  .hardware h2 {
    font-size: 1.5rem;
    padding-top: 30px;
    padding-bottom: 15px;
  }

  .hardware .card .upper-card {
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 10px;
    gap: 8px;
  }

  .hardware .card .icon-container {
    height: 35px;
    width: 35px;
  }

  .hardware .card .icon-container i {
    font-size: 18px;
  }

  .hardware .right-card {
    padding-top: 8px;
  }

  .hardware .right-card .card-title {
    font-size: 0.95rem;
  }

  .hardware .card p {
    font-size: 12px;
  }

  .hardware hr {
    margin: 12px 12px 8px 12px;
  }

  .hardware .card .lower-card {
    padding: 0 12px 12px;
  }

  .hardware .card .lower-card p {
    font-size: 13px;
  }

  .hardware .card .lower-card .right h3 {
    font-size: 1.3rem;
  }
}

/* Extra Small Mobile (400px and below) */
@media (max-width: 400px) {
  .content h2 {
    font-size: 1.3rem;
  }

  .about h2,
  .hardware h2 {
    font-size: 1.3rem;
  }

  .logo-text {
    font-size: 14px;
  }

  .nav-link {
    font-size: 16px;
  }
}

/* PCs Section */
.pcs-section {
  min-height: 100vh;
  padding: 140px 20px 50px;
  background: linear-gradient(135deg, #000510 0%, #001123 40%, #001a33 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pcs-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.pcs-section h2 {
  font-weight: 450;
  text-align: center;
  margin-bottom: 10px;
  margin-top: 0;
  font-size: 2.5rem;
  padding-top: 0;
}

.pcs-section h2 span {
  color: var(--secondary);
}

.pcs-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 50px;
  font-size: 1.1rem;
}

/* PCs Grid - CSS Grid Upgrade */
.pcs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding: 20px;
  width: 100%;
  max-width: 95%;
  /* Increased from 1400px for larger cards */
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .pcs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .pcs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .pcs-grid {
    grid-template-columns: 1fr;
  }
}

/* Remove old column wrappers */
.pcs-columns-wrapper,
.pcs-column,
.pcs-bottom-row {
  display: contents;
  /* Fallback or just removal */
}

.pcs-reserve-button-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 50px;
  position: relative;
  z-index: 10;
}

.btn-reserve-section {
  background: linear-gradient(135deg, rgba(0, 195, 222, 0.2) 0%, rgba(0, 195, 222, 0.05) 100%);
  border: 1px solid var(--secondary);
  color: var(--secondary);
  padding: 18px 50px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  box-shadow: 0 0 15px rgba(0, 195, 222, 0.1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(5px);
}

.btn-reserve-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 195, 222, 0.4), transparent);
  transition: 0.5s;
}

.btn-reserve-section:hover {
  background: var(--secondary);
  color: #000;
  box-shadow: 0 0 30px rgba(0, 195, 222, 0.6);
  transform: translateY(-3px);
  font-weight: 700;
}

.btn-reserve-section:hover::before {
  left: 100%;
}

.btn-reserve-section:active {
  transform: translateY(-1px);
}

.btn-reserve-section i {
  font-size: 1.4rem;
}

.pc-card {
  background: linear-gradient(135deg, rgba(0, 195, 222, 0.08) 0%, rgba(0, 17, 35, 0.95) 100%);
  border: 1.5px solid rgba(0, 195, 222, 0.25);
  border-radius: 12px;
  padding: 20px;
  /* Reduced back from 30px */
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
  min-height: 180px;
  /* Reduced from 220px */
}

.pc-card .pc-icon {
  position: absolute;
  bottom: -10px;
  right: 10px;
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.03);
  z-index: 0;
  transform: rotate(-10deg);
  pointer-events: none;
  transition: all 0.4s ease;
}

.pc-card:hover .pc-icon {
  transform: rotate(0deg) scale(1.1);
  color: rgba(0, 195, 222, 0.1);
}

.pc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--secondary), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.pc-card:hover {
  transform: translateY(-5px);
  border-color: var(--secondary);
  box-shadow: 0 10px 30px rgba(0, 195, 222, 0.4);
  background: linear-gradient(135deg, rgba(0, 195, 222, 0.12) 0%, rgba(0, 17, 35, 0.98) 100%);
}

.pc-card:hover::before {
  transform: scaleX(1);
}

.pc-card-header {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  /* Reduced from 20px */
  gap: 6px;
}

.pc-name {
  font-size: 1.4rem;
  /* Increased from 1.15rem */
  font-weight: 700;
  color: var(--main);
  margin: 0;
  flex: 1;
  line-height: 1.2;
}

.pc-status {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.pc-status i {
  font-size: 0.85rem;
}

.pc-status-free {
  background: rgba(40, 167, 69, 0.25);
  color: #4ade80;
  border: 1px solid rgba(40, 167, 69, 0.6);
  box-shadow: 0 0 15px rgba(40, 167, 69, 0.2);
}

.pc-status-pending {
  background: rgba(255, 193, 7, 0.25);
  color: #fbbf24;
  border: 1px solid rgba(255, 193, 7, 0.6);
  box-shadow: 0 0 15px rgba(255, 193, 7, 0.2);
}

.pc-status-taken {
  background: rgba(220, 53, 69, 0.25);
  color: #f87171;
  border: 1px solid rgba(220, 53, 69, 0.6);
  box-shadow: 0 0 15px rgba(220, 53, 69, 0.2);
}

.pc-card-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 195, 222, 0.4), transparent);
  margin: 0 0 8px 0;
  border: none;
}

.pc-card-body {
  position: relative;
  z-index: 1;
  padding-top: 5px;
  display: flex;
  flex-direction: column;
  height: 100%;
  /* Fill remaining space */
}

.pc-specs-container {
  display: flex;
  flex-direction: column;
  gap: 6px;
  /* slightly tighter */
  margin-bottom: 15px;
  /* Reduced from 25px */
  flex: 1;
}

.pc-spec-item {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  /* Slightly smaller to fit vertical */
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pc-spec-item i {
  color: var(--secondary);
  font-size: 1.1rem;
  opacity: 0.8;
  width: 20px;
  text-align: center;
}

.pc-status-indicator {
  position: relative;
  height: 4px;
  /* Slightly thicker */
  width: 100%;
  border-radius: 2px;
  margin-top: auto;
  /* Push to bottom if container has height, though flex context needs care */
}

.pc-status-indicator.pc-status-free {
  background: #28a745;
  box-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
}

.pc-status-indicator.pc-status-pending {
  background: #ffc107;
  box-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

.pc-status-indicator.pc-status-taken {
  background: #dc3545;
  box-shadow: 0 0 10px rgba(220, 53, 69, 0.5);
}

.pc-loading,
.pc-error {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px;
  color: var(--secondary);
  font-size: 1.2rem;
}

.pc-error {
  color: #dc3545;
}

/* Reserve PC Button */
.btn-reserve-pc {
  background: var(--secondary);
  border: none;
  color: var(--main);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  width: 100%;
  margin-top: 12px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-reserve-pc:hover {
  background: #00a8c0;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 195, 222, 0.4);
}

.btn-reserve-pc:active {
  transform: translateY(0);
}

/* Reservation Modal */
.reservation-modal-content {
  background: rgba(0, 17, 35, 0.95);
  border: 2px solid var(--secondary);
  border-radius: 15px;
  color: var(--main);
}

.reservation-modal-header {
  border-bottom: 1px solid rgba(0, 195, 222, 0.3);
  background: rgba(0, 195, 222, 0.1);
}

.reservation-modal-header .modal-title span {
  color: var(--secondary);
}

.reservation-modal-body .form-label {
  color: var(--main);
  font-weight: 500;
  margin-bottom: 8px;
}

.reservation-modal-body .form-control,
.reservation-modal-body .form-control:focus,
.reservation-modal-body input[type="date"],
.reservation-modal-body input[type="time"],
.reservation-modal-body input[type="number"],
.reservation-modal-body input[type="text"],
.reservation-modal-body input[type="email"],
.reservation-modal-body input[type="tel"] {
  background-color: rgba(0, 17, 35, 0.8) !important;
  border: 1px solid rgba(0, 195, 222, 0.3);
  color: var(--main) !important;
  color-scheme: dark;
}

/* Fix for WebKit Autofill */
.reservation-modal-body input:-webkit-autofill,
.reservation-modal-body input:-webkit-autofill:hover,
.reservation-modal-body input:-webkit-autofill:focus,
.reservation-modal-body input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #001123 inset !important;
  -webkit-text-fill-color: var(--main) !important;
  transition: background-color 5000s ease-in-out 0s;
}

.reservation-modal-body .form-control:focus {
  background-color: rgba(0, 17, 35, 0.9) !important;
  border-color: var(--secondary);
  box-shadow: 0 0 0 0.2rem rgba(0, 195, 222, 0.25);
  color: var(--main) !important;
}

.reservation-modal-footer {
  border-top: 1px solid rgba(0, 195, 222, 0.3);
}

.reservation-modal-footer .btn-primary {
  background: var(--secondary);
  border: none;
}

.reservation-modal-footer .btn-primary:hover {
  background: #00a8c0;
}

.form-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}

/* PCs Section Responsive */
@media (max-width: 1200px) {
  .pcs-columns-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .pcs-bottom-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pcs-bottom-row .pc-card {
    width: 100%;
  }

  .pcs-reserve-button-container {
    order: -1;
  }
}

@media (max-width: 768px) {
  .pcs-section {
    padding: 120px 15px 40px;
  }

  .pcs-section h2 {
    font-size: 2rem;
  }

  .pcs-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .pcs-grid {
    gap: 20px;
    padding: 10px;
  }

  .pcs-columns-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pcs-column {
    gap: 20px;
  }

  .pcs-bottom-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .pcs-bottom-row .pc-card {
    width: 100%;
  }

  .btn-reserve-section {
    padding: 15px 30px;
    font-size: 1rem;
  }

  .btn-reserve-section i {
    font-size: 1.2rem;
  }

  .pc-card {
    padding: 8px;
  }

  .pc-name {
    font-size: 0.9rem;
  }

  .pc-status {
    font-size: 0.68rem;
    padding: 3px 7px;
  }

  .pc-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    margin-bottom: 8px;
  }

  .pc-card-divider {
    margin-bottom: 8px;
  }

  .pc-specs {
    font-size: 0.75rem;
    min-height: 30px;
  }
}

@media (max-width: 576px) {
  .pcs-grid {
    gap: 15px;
    padding: 5px;
  }

  .pc-card {
    padding: 8px;
  }

  .pc-name {
    font-size: 0.85rem;
  }

  .pc-status {
    font-size: 0.65rem;
    padding: 3px 6px;
  }

  .pc-specs {
    font-size: 0.7rem;
    min-height: 30px;
  }
}

/* ===== COMPREHENSIVE MOBILE STYLES ===== */

/* Mobile - Home Section */
@media (max-width: 768px) {
  .upper {
    flex-direction: column;
    gap: 40px;
    padding-top: 150px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .lower {
    padding-top: 50px;
  }

  .content h2 {
    font-size: 1.8rem;
  }

  .content p {
    font-size: 0.95rem;
  }

  .glow-circle {
    width: 280px;
    height: 280px;
  }

  .glowing-image {
    width: 150px;
    height: 150px;
  }

  .image-glow-container {
    margin-top: 20px;
  }

  .social-icons {
    margin-top: 50px;
    gap: 15px;
  }

  .social-icon {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .lower .btn {
    font-size: 1rem;
    padding: 12px 24px;
  }

  /* Navbar */
  .navbar-brand .logo {
    height: 35px !important;
    width: 35px !important;
  }

  .logo-text {
    font-size: 1rem !important;
  }

  /* About Section */
  .about-container h2 {
    font-size: 1.8rem;
  }

  .about-container p {
    font-size: 0.9rem;
  }

  .about-values {
    gap: 20px;
  }

  .value-card {
    width: 100%;
    max-width: 300px;
  }

  /* Gallery */
  .gallery-container h2 {
    font-size: 1.8rem;
  }

  /* Contact Section */
  .contact-section h2 {
    font-size: 1.6rem;
  }

  .contact-section p {
    font-size: 0.9rem;
  }
}

/* Extra Small Devices */
@media (max-width: 480px) {
  .upper {
    padding-top: 120px;
    gap: 30px;
  }

  .content h2 {
    font-size: 1.5rem;
  }

  .content p {
    font-size: 0.85rem;
  }

  .glowing-image {
    width: 120px;
    height: 120px;
  }

  .glow-circle {
    width: 200px;
    height: 200px;
  }

  .lower .btn {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  .social-icons {
    gap: 12px;
  }

  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .navbar-nav {
    text-align: center;
  }

  .nav-link {
    padding: 10px 0 !important;
  }
}

/* ========================================
   SUBSCRIBE SECTION - Advertisement Style
   ======================================== */
.subscribe-section {
  height: 100vh;
  background: linear-gradient(135deg, #0a0015 0%, #1a0a2e 30%, #0d1f3c 70%, #0a1628 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 20px 20px;
}

.subscribe-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
  pointer-events: none;
}

.subscribe-glow-left {
  top: 10%;
  left: -10%;
  background: radial-gradient(circle, rgba(0, 195, 222, 0.6) 0%, transparent 70%);
}

.subscribe-glow-right {
  bottom: 10%;
  right: -10%;
  background: radial-gradient(circle, rgba(138, 43, 226, 0.5) 0%, transparent 70%);
}

.subscribe-container {
  max-width: 900px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 1;
}

.subscribe-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.subscribe-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
  text-shadow: 0 0 30px rgba(0, 195, 222, 0.3);
}

.subscribe-section h2 span {
  color: #00c3de;
  text-shadow: 0 0 20px rgba(0, 195, 222, 0.6);
}

.subscribe-tagline {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 25px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.subscribe-cards {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.subscribe-card {
  background: linear-gradient(145deg, rgba(20, 30, 60, 0.9) 0%, rgba(10, 20, 40, 0.95) 100%);
  border: 1px solid rgba(0, 195, 222, 0.2);
  border-radius: 20px;
  padding: 20px;
  width: 280px;
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.subscribe-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 195, 222, 0.5);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4), 0 0 50px rgba(0, 195, 222, 0.15);
}

.subscribe-card.featured {
  border-color: rgba(0, 195, 222, 0.5);
  background: linear-gradient(145deg, rgba(0, 50, 80, 0.4) 0%, rgba(10, 30, 60, 0.95) 100%);
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 60px rgba(0, 195, 222, 0.2);
}

.subscribe-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
}

.featured-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #00c3de 0%, #0099b3 100%);
  color: #000;
  padding: 4px 14px;
  border-radius: 15px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 12px rgba(0, 195, 222, 0.4);
}

.plan-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 10px;
  background: linear-gradient(135deg, rgba(0, 195, 222, 0.2) 0%, rgba(0, 150, 180, 0.1) 100%);
  border: 1px solid rgba(0, 195, 222, 0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plan-icon i {
  font-size: 24px;
  color: #00c3de;
  text-shadow: 0 0 12px rgba(0, 195, 222, 0.5);
}

.subscribe-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  margin-bottom: 3px;
}

.plan-duration {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
}

.price {
  margin-bottom: 15px;
  padding: 10px;
  background: rgba(0, 195, 222, 0.08);
  border-radius: 12px;
}

.price .currency {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  vertical-align: top;
  margin-right: 3px;
}

.price .amount {
  font-size: 2rem;
  font-weight: 700;
  color: #00c3de;
  text-shadow: 0 0 15px rgba(0, 195, 222, 0.4);
}


.benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  text-align: left;
}

.benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
}

.benefits li i {
  color: #00c3de;
  font-size: 0.9rem;
}

.benefits li i.bi-star-fill {
  color: #ffd700;
}

.subscribe-card-footer {
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pay-info {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}

.pay-info i {
  color: #00c3de;
}

/* Active Hours Section */
.active-hours {
  background: linear-gradient(135deg, rgba(0, 195, 222, 0.1) 0%, rgba(138, 43, 226, 0.08) 100%);
  border: 1px solid rgba(0, 195, 222, 0.2);
  border-radius: 16px;
  padding: 18px 25px;
  max-width: 650px;
  margin: 0 auto;
}

.hours-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #00c3de;
  margin-bottom: 12px;
}

.hours-slots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.time-slot {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.3);
  padding: 8px 18px;
  border-radius: 10px;
  border: 1px solid rgba(0, 195, 222, 0.2);
}

.time-slot i {
  color: #ffd700;
  font-size: 1rem;
}

.time-slot span {
  color: white;
  font-size: 0.95rem;
  font-weight: 500;
}

.time-divider {
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.2rem;
  font-weight: 300;
}

.hours-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  margin: 0;
}

.hours-note i {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

/* Subscribe Section Responsive */
@media (max-width: 768px) {
  .subscribe-section {
    padding: 60px 15px 20px 15px;
  }

  .subscribe-section h2 {
    font-size: 1.6rem;
  }

  .subscribe-tagline {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .subscribe-cards {
    gap: 20px;
  }

  .subscribe-card {
    width: 100%;
    max-width: 300px;
    padding: 18px;
  }

  .subscribe-card.featured {
    transform: scale(1);
  }

  .subscribe-card.featured:hover {
    transform: translateY(-8px);
  }

  .hours-slots {
    flex-direction: column;
    gap: 10px;
  }

  .time-divider {
    display: none;
  }

  .active-hours {
    padding: 15px;
  }

  .hours-title {
    font-size: 0.85rem;
  }

  .time-slot {
    padding: 8px 15px;
  }

  .time-slot span {
    font-size: 0.85rem;
  }
}

/* ========================================
   COMPREHENSIVE RESPONSIVE STYLES
   ======================================== */

/* About & Hardware Sections - Tablet */
@media (max-width: 992px) {

  .about .card-container,
  .hardware .card-container {
    margin: 0 30px;
    width: calc(100% - 60px);
  }

  .about h2,
  .hardware h2 {
    font-size: 1.8rem;
    padding-top: 50px;
    padding-bottom: 30px;
  }

  .card .icon-container {
    height: 45px;
    width: 45px;
    margin-left: 15px;
    margin-top: 15px;
  }

  .card .icon-container i {
    font-size: 22px;
  }

  .card-title {
    font-size: 1rem;
    padding: 10px 0 5px 0;
  }

  .card-text {
    font-size: 0.85rem;
  }

  .card-body {
    padding: 15px;
  }
}

/* About & Hardware Sections - Mobile */
@media (max-width: 768px) {

  .about,
  .hardware {
    height: auto;
    min-height: 100vh;
    padding-top: 60px;
    padding-bottom: 30px;
  }

  .about .card-container,
  .hardware .card-container {
    margin: 0 15px;
    width: calc(100% - 30px);
  }

  .about h2,
  .hardware h2 {
    font-size: 1.5rem;
    padding-top: 30px;
    padding-bottom: 20px;
    text-align: center;
  }

  .about .row,
  .hardware .row {
    flex-direction: column;
    align-items: center;
  }

  .about .col,
  .hardware .col {
    width: 100%;
    max-width: 350px;
  }

  .about .card,
  .hardware .card {
    max-width: 100%;
  }

  .card .icon-container {
    height: 40px;
    width: 40px;
    margin-left: 12px;
    margin-top: 12px;
    border-radius: 10px;
  }

  .card .icon-container i {
    font-size: 18px;
  }

  .card-title {
    font-size: 0.95rem;
    padding: 8px 0 5px 0;
  }

  .card-text {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .card-body {
    padding: 12px 15px;
  }

  .card:hover {
    transform: translateY(-4px);
  }

  /* Hardware specific */
  .hardware .card .upper-card {
    margin-left: 12px;
    margin-right: 12px;
    margin-top: 12px;
  }

  .hardware .card .lower-card {
    padding: 10px 12px;
  }
}

/* Gallery Responsive */
@media (max-width: 768px) {
  .gallery {
    height: auto;
    min-height: 100vh;
    padding-top: 60px;
    padding-bottom: 30px;
  }

  .gallery h2 {
    font-size: 1.5rem;
    padding-top: 20px;
  }

  .gallery-grid {
    max-width: 100%;
    padding: 0 10px;
  }

  .gallery-grid .row {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-rows: auto !important;
    gap: 8px !important;
    max-height: none;
    aspect-ratio: auto;
  }
}

@media (max-width: 480px) {
  .gallery-grid .row {
    grid-template-columns: 1fr !important;
  }

  .gallery-image-wrapper {
    min-height: 150px;
  }
}

/* Promo Banner Responsive */
@media (max-width: 576px) {
  .promo-banner {
    flex-direction: column;
    gap: 6px;
    padding: 10px 15px;
    border-radius: 12px;
    margin-top: 20px;
  }

  .promo-badge {
    font-size: 0.65rem;
    padding: 3px 10px;
  }

  .promo-text {
    font-size: 0.85rem;
  }

  .promo-cta {
    font-size: 0.8rem;
  }
}

/* Admin Dashboard Responsive */
@media (max-width: 768px) {
  .admin-card {
    padding: 15px;
    margin-bottom: 15px;
  }

  .admin-card h3 {
    font-size: 1.1rem;
  }

  .table-responsive {
    font-size: 0.8rem;
  }

  .table th,
  .table td {
    padding: 8px 5px;
    font-size: 0.75rem;
  }

  .btn-sm {
    padding: 4px 8px;
    font-size: 0.7rem;
  }
}

/* Reservation Modal Responsive */
@media (max-width: 576px) {
  .modal-dialog {
    margin: 10px;
  }

  .modal-content {
    border-radius: 15px;
  }

  .modal-body {
    padding: 15px;
  }

  .form-control,
  .form-select {
    font-size: 0.9rem;
    padding: 8px 12px;
  }

  .form-label {
    font-size: 0.85rem;
  }
}

/* Auth Pages Responsive */
@media (max-width: 576px) {
  .auth-container {
    padding: 20px;
    margin: 15px;
    border-radius: 15px;
  }

  .auth-container h2 {
    font-size: 1.5rem;
  }

  .auth-form input {
    font-size: 0.9rem;
    padding: 10px 12px;
  }
}

/* Footer/Contact Responsive */
@media (max-width: 768px) {
  .contact-section {
    padding: 40px 20px;
  }

  .contact-section h2 {
    font-size: 1.5rem;
  }

  .contact-info {
    flex-direction: column;
    gap: 15px;
  }
}

/* Disable fixed scrolling on tablets and mobile - only for desktop */
@media (max-width: 991px) {
  body {
    scroll-snap-type: none !important;
    overflow-y: auto !important;
  }

  .snap-container {
    scroll-snap-type: none !important;
    scroll-snap-stop: normal !important;
    overflow-y: visible !important;
    height: auto !important;
    min-height: 100vh;
  }

  section {
    scroll-snap-align: none !important;
    height: auto !important;
    min-height: auto !important;
    padding-top: 100px;
  }

  .about,
  .hardware,
  .gallery,
  .subscribe-section {
    height: auto !important;
    min-height: auto !important;
    padding-top: 100px;
    padding-bottom: 50px;
  }

  .main {
    height: auto !important;
    min-height: 100vh;
    padding-top: 80px !important;
  }

  .pcs-section {
    height: auto !important;
    min-height: auto !important;
    padding-top: 100px;
    padding-bottom: 50px;
  }
}

@media (max-width: 576px) {
  section {
    padding-top: 80px;
  }

  .about,
  .hardware,
  .gallery,
  .subscribe-section,
  .pcs-section {
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .main {
    min-height: 100vh !important;
    padding-top: 0 !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .upper {
    padding-top: 40px;
    width: 100%;
  }

  .hero,
  .content {
    text-align: center;
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
  }

  .content h2,
  .content p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .lower {
    padding-top: 30px;
    padding-bottom: 30px;
    text-align: center;
  }
}

/* Site Footer */
.site-footer {
  background: linear-gradient(180deg, #030818 0%, #010510 100%);
  border-top: 1px solid rgba(0, 195, 222, 0.2);
  padding: 20px 0;
  text-align: center;
}

.footer-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.developer-name {
  color: var(--secondary);
  font-weight: 600;
}

/* Mobile Date/Time Input Fixes */
input[type="date"],
input[type="time"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  min-height: 44px;
  /* Touch-friendly minimum height */
  cursor: pointer;
}

/* Ensure date/time inputs are clickable on mobile */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: transparent;
}

/* Dark theme for date/time pickers */
input[type="date"],
input[type="time"] {
  color-scheme: dark;
}

@media (max-width: 991px) {

  input[type="date"],
  input[type="time"] {
    font-size: 16px !important;
    /* Prevent zoom on iOS */
    min-height: 48px;
    padding: 12px;
  }
}