@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --bg-color: #0a0a0a;
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --accent-color: #ee4612;
  /* Dream Arcades Orange/Red */
  --accent-hover: #ff5722;
  --surface-color: #1a1a1a;
  --surface-hover: #262626;
  --font-primary: 'Outfit', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --bg-gradient: radial-gradient(#333, #000);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.2;
}

/* Utilities */
.container {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 4rem;
}

.text-center {
  text-align: center;
}

.section-padding {
  padding: 6rem 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: var(--accent-color);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(238, 70, 18, 0.3);
  border: 2px solid var(--accent-color);
}

.btn:hover {
  background-color: transparent;
  color: var(--accent-color);
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 6px 20px rgba(238, 70, 18, 0.5);
}

.cart_btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: var(--accent-color);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(238, 70, 18, 0.3);
  border: 2px solid var(--accent-color);
  margin: 20px;
}

.cart_btn:hover {
  background-color: transparent;
  color: var(--accent-color);
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 6px 20px rgba(238, 70, 18, 0.5);
}


/* Header / Nav */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}

.header-notice
{
  color:lightgrey; 
  text-align: center; 
  font-size:14px;
  margin-top: -1.5rem;
  
}
.header-notice a
{
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.header-notice a:hover
{
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-container .btn {
  padding: 0.8rem 1.5rem; 
  font-size: 0.85rem;
}

.logo img {
  height: 50px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--accent-color);
}

.gradient-overlay
{
  background: linear-gradient(to left, #050505 0%, #050505aa 50% , #050505 100%);
  
}


/* Hero Section */
.hero {
  position: relative;
  height: 80vh;
  /* Reduced height as requested */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  background-image: url('/images/Hero2.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -2;
  /* Darken the image dramatically for contrast */
  filter: brightness(0.6) contrast(1.2);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 0.4) 100%);
  z-index: -1;
}

.hero-content {
  text-align: center;
  z-index: 1;
  max-width: 1400px;
  padding: 0 1rem;
}

.hero-title {
  font-size: 3.5vw;
  white-space: nowrap;
  margin-bottom: 2rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out;
}

@media (min-width: 1650px)
{
  .hero-title {
    font-size: 3.5rem;
  }
}

.hero-buttons {
  animation: fadeInUp 1.2s ease-out;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  color: var(--text-primary);
  font-size: 1.5rem;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.scroll-indicator:hover {
  opacity: 1;
}

/* Brand Ribbon */
.brands {
  background-color: #ffffff;
  padding: 2.5rem 0 2.5rem;
}

.brands-title {
  color: #666;
  text-align: center;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.brands-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem 4rem;
  align-items: center;
}

.brand-slot {
  position: relative;
  height: 40px;
  width: 140px;
  overflow: hidden;
}

.brand-slot img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 100%);
  max-height: 100%;
  max-width: 100%;
  opacity: 0;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.brand-slot:hover img {
  filter: grayscale(0%);
}

.swap-1,
.swap-2,
.swap-3,
.swap-4,
.swap-5 {
  animation: slideUp5 25s cubic-bezier(0.7, 0, 0.3, 1) infinite;
}

.swap-1 {
  animation-delay: calc(var(--slot-delay) - 25s);
}

.swap-2 {
  animation-delay: calc(var(--slot-delay) - 20s);
}

.swap-3 {
  animation-delay: calc(var(--slot-delay) - 15s);
}

.swap-4 {
  animation-delay: calc(var(--slot-delay) - 10s);
}

.swap-5 {
  animation-delay: calc(var(--slot-delay) - 5s);
}

@keyframes slideUp5 {

  0%,
  100% {
    transform: translate(-50%, 100%);
    opacity: 0;
  }

  4%,
  16% {
    transform: translate(-50%, -50%);
    opacity: 1;
  }

  20%,
  99.9% {
    transform: translate(-50%, -150%);
    opacity: 0;
  }
}

/* Gaming Unlimited Video/Showcase */
.gaming-unlimited {
  background: var(--bg-gradient);
  background-attachment: fixed;
  position: relative;
}

.gu-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.gu-image {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 3rem;
  position: relative;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.gu-image img {
  width: 100%;
  display: block;
  border-radius: 8px;
}

.gu-title {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  white-space: nowrap;
  margin-bottom: 1rem;
}

.gu-subtitle {
  color: var(--text-secondary);
  font-size: 1.2rem;
  margin-bottom: 3rem;
}

.platform-marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  margin-bottom: 1rem;
  
}

.fa-star
{
  color:#FBC02D;
}

.fa-star:hover
{
  color:#F9A825;
}

.platform-track {
  display: inline-block;
  animation: platformScroll 20s linear infinite;
}

.platform-track div {
  height: 60px;
  margin: 0 3rem;
  vertical-align: middle;
  display: inline-block;
  text-align: center;
}

.platform-track img
{
  height: 35px;
  display: block;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all 0.3s;
}

.platform-track div:hover img {
  opacity: 1;
  filter: grayscale(0%);
}


.platform-track div .label
{
  visibility: hidden;
  display:inline-block;
  text-align: center;
  width: 100px;
  height: 25px;
  margin-left: -50px;
  margin-right: -50px;
}

.platform-track div:hover .label
{
  visibility: visible;
}

@keyframes platformScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.platform-note {
  font-style: italic;
  font-size: 1rem;
  color: #666;
}

/* Advantage Grid */
.advantage {
  background-image: url("/images/arcade-workshop.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.advantage::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.85);
}

.advantage .container {
  position: relative;
  z-index: 1;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.adv-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 2rem;
  border-radius: 8px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.adv-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--accent-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.adv-card:hover {
  transform: translateY(-10px);
  background: rgba(238, 70, 18, 0.08);
  /* slight orange tint */
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px rgba(238, 70, 18, 0.2);
}

.adv-card:hover::after {
  transform: scaleX(1);
}

.adv-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.adv-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.adv-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Bespoke Design */
.bespoke {
  background: linear-gradient(to left, #050505 0%, #222222 50% , #050505 100%);
}

.bespoke-header {
  text-align: center;
  margin-bottom: 5rem;
}

.bespoke-title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 400;
  letter-spacing: 2px;
}

.bespoke-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.bespoke-item {
  text-align: center;
}

.bespoke-item img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.5s ease;
}

.bespoke-item img:hover {
  transform: scale(1.05);
}

.bespoke-text {
  padding: 2rem;
}

.bespoke-text h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.bespoke-text p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

.bespoke-accessories {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 4rem;
}

.bespoke-accessories img {
  height: 120px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.5rem;
  transition: all 0.3s;
}

.bespoke-accessories img:hover {
  border-color: var(--accent-color);
  background: rgba(255, 255, 255, 0.05);
}

/* Testimonial */
.testimonial {
  background: var(--bg-gradient);
  background-attachment: fixed;
  text-align: center;
}


.testimonial h2 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  margin-bottom: 3rem;
  letter-spacing: 1px;
}


/* Review Slider */
.review-wrap {
  overflow: hidden;
  position: relative;
}

.review-wrap .reviews {
  max-width: 1140px;
  height: 270px;
  padding-top: 10px;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
  -webkit-user-select: none;
  user-select: none;
}

.review-slide-wrap
{
  max-width:1140px;
  height:200px;
  margin: 0 auto;
  position: relative;
  list-style: none;
  padding: 0;
}

.review-slide-wrap li {
  display: none;
  position: absolute;
  z-index: 0;
  overflow: hidden;
  width: 60%;
}

.review-slide-wrap .pos0 {
  display:block;
  opacity:0;
  right: 30%;
  top:0px;
  z-index: 1;
  transition: 0.6s ease;
  
}

.review-slide-wrap .pos1 {
  display:block;
  right: 20%;
  top:25px;
  z-index: 2;
  transition: 0.6s ease;
  transition-delay: 0.6s;
}

.review-slide-wrap .pos2 {
  display:block;
  opacity:0;
  right: 10%;
  top:50px;
  z-index: 1;
  transition: 0.6s ease;
}

.testimonial .arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #222;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .5);
  color: #EB3518;
  position: absolute;
  top: 50%;
  z-index: 10;
  cursor: pointer;
  font-size: 28px;
  line-height: 50px;
  text-align: center;
  font-weight: 900;
  transition: all 0.5s ease 0s;
  transform: translateY(-50%);
  font-style: normal;
}

.testimonial .arrow:hover {
  background-color: #EB3518;
  color: #FFF;
}

.quote {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto 2rem;
  color: #ccc;
  line-height: 1.4;
}

.author {
  color: var(--accent-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Footer */
footer {
  background-color: #111;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 1.5rem;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col ul li a {
  color: var(--text-secondary);
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #666;
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }

  40% {
    transform: translateY(-20px) translateX(-50%);
  }

  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

/* Scroll Reveal Classes */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .bespoke-content {
    grid-template-columns: 1fr;
  }

  .bespoke-item:nth-child(2) {
    order: -1;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Rolling Slider / Carousel */
.home_slider_wapper {
  overflow: hidden;
  padding: 4rem 0;
  background-color: #1a1a1a;
}

.demo-wrap {
  overflow: hidden;
  position: relative;
}

.demo-wrap .demo {
  max-width: 1140px;
  height: 560px;
  padding-top: 10px;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
  -webkit-user-select: none;
  user-select: none;
}

.slide-wrap {
  max-width: 1140px;
  height: 540px;
  margin: 0 auto;
  position: relative;
  list-style: none;
  padding: 0;
}

.slide-wrap li {
  display: none;
  width: 520px;
  position: absolute;
  z-index: 0;
  background-color: #fff;
  outline: 1px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .5);
}

.slide-wrap li:hover {
  outline-width: 3px;
  outline-color: #999;
  transition: outline 0.2s ease;
}

.slide-wrap .inner {
  position: relative;
}

.slide-wrap .inner a {
  text-decoration: none;
  border: none;
  outline: none;
}

.slide-wrap img {
  border: none;
  margin:auto;
  width: 90%;
  height: 335px;
  object-fit: contain;
  display: block;
  outline: none;
  transition: 0.8s ease;
}

.slide-wrap li:hover img {
  width: 100%;
  height: 355px;
  transition: 0.8s ease;
}

.slide-wrap .product-text {
  
  text-align: center;
  margin-top: 15px;
  padding-bottom: 15px;
  font-weight: bold;
  font-size: 1.1rem;
  color: #05050500;
  text-transform: uppercase;
  transition: 0.8s ease;
  
}

.slide-wrap .pos4 .product-text {
  color: #656565;
  margin-top: 35px;
  font-size: 1.3rem;
  transition: 0.8s ease;
}

.slide-wrap .pos4:hover .product-text {
  color: #050505;
  font-size: 1.5rem;
  margin-top: 50px;
  transition: 0.8s ease;
  
}


.slide-wrap li {
  display: none;
}

.slide-wrap .pos1 {
  display: block;
  width: 230px;
  margin-right:-115px;
  height: 350px;
  top: 85px;
  right: 80%;
  z-index: 1;
  transition: 0.8s ease;
}

.slide-wrap .pos2 {
  display: block;
  width: 264px;
  margin-right:-132px;
  height: 400px;
  padding-top: 5px;
  top: 60px;
  right: 74%;
  z-index: 2;
  transition: 0.8s ease;
}

.slide-wrap .pos3 {
  display: block;
  width: 262px;
  margin-right:-131px;
  height: 460px;
  padding-top: 15px;
  top: 35px;
  right: 66%;
  z-index: 3;
  transition: 0.8s ease;
}

.slide-wrap .pos4 {
  display: block;
  width: 390px;
  margin-right:-195px;
  height: 520px;
  padding-top: 35px;
  top: 0px;
  right: 50%;
  z-index: 4;
  transition: 0.8s ease;
}

.slide-wrap .pos5 {
  display: block;
  width: 262px;
  margin-right:-131px;
  height: 460px;
  padding-top: 15px;
  top: 35px;
  right: 34%;
  z-index: 3;
  transition: 0.8s ease;
}

.slide-wrap .pos6 {
  display: block;
  width: 264px;
  margin-right:-132px;
  height: 400px;
  padding-top: 5px;
  top: 60px;
  right: 26%;
  z-index: 2;
  transition: 0.8s ease;
}

.slide-wrap .pos7 {
  display: block;
  width: 230px;
  margin-right:-115px;
  height: 350px;
  top: 85px;
  right: 20%;
  z-index: 1;
  transition: 0.8s ease;
  
}
.slide-wrap .pos8 {
  display: block;
  opacity: 0;
  width: 230px;
  margin-right:-115px;
  height: 350px;
  top: 85px;
  right: 20%;
  z-index: 0;
  transition: 0.8s ease;
}

.slide-wrap .pos0 {
  display: block;
  opacity: 0;
  width: 230px;
  margin-right:-115px;
  height: 350px;
  top: 85px;
  right: 80%;
  z-index: 0;
  transition: 0.8s ease;
}


.products .arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #222;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .5);
  color: #EB3518;
  position: absolute;
  top: 50%;
  z-index: 10;
  cursor: pointer;
  font-size: 28px;
  line-height: 50px;
  text-align: center;
  font-weight: 900;
  transition: all 0.5s ease 0s;
  transform: translateY(-50%);
  font-style: normal;
}

.products .arrow:hover {
  background-color: #EB3518;
  color: #FFF;
}

.prev {
  left: 0;
}

.next {
  right: 0;
}

/* dream arcades difference section */
#difference
{
  background-image: url('/images/in-house-background.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}

#difference h4
{
  color: #dfa76b;
  transition: font-size 0.5s ease;
  
}
#difference h4 .line
{
  margin:5px 12px 5px 12px;
  display:inline-block;
  width: 100%;
  max-width: 100px;
  height: 2px;
  background: #dfa76b;
  transition: 0.5s ease;
}

#difference h4 .line.left
{
  background: linear-gradient(to left, #dfa76b, #dfa76b00);
  
}

#difference h4 .line.right
{
  background: linear-gradient(to right, #dfa76b, #dfa76b00);
  
}


@media (max-width: 900px)
{
  #difference h4 .line
  {
    display:none;
    
  }

}  

#difference h4:hover .line
{
  width: 75%;
  max-width: 75px;
  transition: 0.5s ease;
  
}

#difference h4:hover
{
  font-size: 120%;
  transition: 0.5s ease;
  
}

#difference .h4-wrapper
{
  height: 30px;
  
}

#difference h2
{
  text-transform: uppercase;
  font-size: 36px;
  margin-bottom: 20px;
  
}

#difference h3
{
  font-size: 22px;
  margin-top: 12px;
  transition: 0.5s ease;
  
}

#difference p
{
  max-width: 600px;
  text-shadow: 0 0 2px black;
  margin:auto;
}

#difference h3:hover
{
  transform: translateX(-6px);
  text-shadow: 0 0 6px var(--accent-color);
  transition: 0.5s ease;
  
}

@media (min-width: 769px)
{
  /* nav bar drop down menu */
  .expanded-menu ul
  {
    display:none;
    list-style-type: none;
    position: fixed;
    top: 65px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 0px 5px;
    border-radius: 6px;
    
  }

  .expanded-menu ul a
  {
    color: #ffffff00;
    transition: 0.5s ease;
    border-radius: 6px;
    padding:  0px 4px;
  }

  .expanded-menu:hover ul
  {
    display: block;
  }

  .expanded-menu:hover ul a
  {
    
    color: #ffffff;
    transition: 0.5s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    
    outline: 1px solid #ee461200;
    
  }

  .expanded-menu:hover ul a:hover
  {
    
    color: var(--accent-color);
    transition: 0.5s ease;
    
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    outline: 1px solid var(--accent-color);
  }
}