/* ============================================================
   style.css - Triển Lãm Nhà Máy Thông Minh Việt Nam 2026
   Cyber Blue / Holographic / Glassmorphism Theme
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #004ba7;
  --cyan: #00c6ff;
  --neon: #00ffff;
  --white: #ffffff;
  --glass-bg: rgba(0, 30, 80, 0.55);
  --glass-border: rgba(0, 198, 255, 0.35);
  --glow-sm: 0 0 10px rgba(0, 198, 255, 0.6);
  --glow-md: 0 0 20px rgba(0, 198, 255, 0.7), 0 0 40px rgba(0, 75, 167, 0.5);
  --glow-lg: 0 0 30px rgba(0, 198, 255, 0.8), 0 0 60px rgba(0, 75, 167, 0.6), 0 0 100px rgba(0, 255, 255, 0.2);
}

html,
body {
  font-family: 'Be Vietnam Pro', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--white);
}

/* ============================================================
    BACKGROUND - Improved cityscape with light beams
    ============================================================ */
body {
  background: linear-gradient(180deg, #000d1f 0%, #001535 40%, #000d1f 100%);
  background-attachment: fixed;
  position: relative;
  overflow-x: hidden;
}

#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 1;
}

/* Overlay gradient for depth */
.bg-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 150% 80% at 50% 100%, rgba(0, 120, 200, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse 100% 50% at 20% 40%, rgba(0, 198, 255, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 100% 50% at 80% 40%, rgba(0, 198, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* Particle dots layer */
.bg-particles {
  position: fixed;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0;
  animation: particleFade var(--dur, 4s) ease-in-out infinite var(--delay, 0s);
}

@keyframes particleFade {
  0% {
    opacity: 0;
    transform: translateY(0) scale(1);
  }

  50% {
    opacity: 0.7;
  }

  100% {
    opacity: 0;
    transform: translateY(-80px) scale(0.5);
  }
}

/* ---- MAIN WRAPPER ---- */
#app {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 20px 0;
  background-image: url('https://cdn.s99.vn/ss2/prod/product/ba902144839ceba584a60fa95a218b58_1698357437.jpg?at=1701815046');
    background-size: cover;
    background-position: top center;
    background-attachment: fixed;
}

/* ---- HEADER ---- */
.site-header {
  text-align: center;
  margin-bottom: 24px;
  width: 100%;
  position: relative;
  padding-top: 50px;
}

.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #00c6ff, #00ffff, #00c6ff, transparent);
  box-shadow: 0 0 20px rgba(0, 198, 255, 0.8), 0 0 40px rgba(0, 255, 255, 0.5);
}

.site-subtitle {
  font-size: clamp(0.85rem, 1.8vw, 1.1rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--cyan);
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(0, 198, 255, 0.9), 0 0 24px rgba(0, 198, 255, 0.5);
  margin-bottom: 10px;
}

.site-subtitle span {
  color: var(--white);
  font-weight: 800;
}

.site-title {
  font-size: clamp(1.6rem, 4.5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.8;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ffffff 0%, #00c6ff 40%, #00ffff 60%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 18px rgba(0, 198, 255, 0.8)) drop-shadow(0 0 40px rgba(0, 75, 167, 0.7));
  animation: titlePulse 3s ease-in-out infinite;
}

@keyframes titlePulse {

  0%,
  100% {
    filter: drop-shadow(0 0 18px rgba(0, 198, 255, 0.8)) drop-shadow(0 0 40px rgba(0, 75, 167, 0.7));
  }

  50% {
    filter: drop-shadow(0 0 28px rgba(0, 255, 255, 1)) drop-shadow(0 0 60px rgba(0, 198, 255, 0.9));
  }
}

/* ---- CAROUSEL SECTION ---- */
.carousel-section {
  width: 100%;
  max-width: 1320px;
  position: relative;
  padding: 20px 0;
  margin: 0 auto;
}

/* Owl Carousel custom */
.owl-carousel .owl-stage {
  display: flex;
  align-items: center;
}

.owl-carousel .owl-item {
  transition: transform 0.5s ease, opacity 0.5s ease;
}

/* Center item - active */
.owl-carousel .owl-item.active.center .company-card {
  transform: scale(1);
  opacity: 1;
  z-index: 10;
  background: #ffffff;
  border-color: rgba(0, 198, 255, 0.4);
  box-shadow: 0 0 35px rgba(0, 198, 255, 0.35), 0 20px 50px rgba(0, 0, 0, 0.35);
}

/* Side items */
.owl-carousel .owl-item:not(.center) .company-card {
  transform: scale(0.85);
  opacity: 1;
  filter: none;
  background: linear-gradient(135deg, rgba(0, 30, 80, 0.88) 0%, rgba(0, 10, 40, 0.93) 100%);
  border-color: rgba(0, 198, 255, 0.25);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

/* ---- COMPANY CARD ---- */
.company-card {
  border: 2px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  height: 420px;
  display: flex;
  flex-direction: column;
  min-width: 280px;
}

/* --- Default Layout Elements (Transitioning) --- */
.card-top {
  transition: all 0.5s ease;
}

.card-info-left {
  transition: all 0.5s ease;
}

.card-logo-wrap {
  transition: all 0.5s ease;
}

.card-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  transition: all 0.5s ease;
}

.card-solution-title {
  font-weight: 800;
  line-height: 1.35;
  white-space: pre-line;
  transition: all 0.5s ease;
}

.card-image-right {
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

.card-image-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.company-card:hover .card-image-right img {
  transform: scale(1.06);
}

.card-image-right::after {
  content: '';
  position: absolute;
  inset: 0;
  transition: all 0.5s ease;
}

.card-tech-strip {
  transition: all 0.5s ease;
}

.card-body-detail {
  transition: all 0.5s ease;
}

.btn-detail {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-detail:hover {
  transform: scale(1.05) translateY(-1px);
  filter: brightness(1.1);
  color: #fff;
  text-decoration: none;
}

.card-label {
  transition: all 0.5s ease;
}

/* ============================================================
   A. SIDE CARD STATE (owl-item:not(.center))
   ============================================================ */
.owl-item:not(.center) .card-top {
  display: block;
  position: absolute;
  inset: 0;
  height: 100%;
  z-index: 1;
}

.owl-item:not(.center) .card-image-right {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.owl-item:not(.center) .card-image-right::after {
  background: linear-gradient(0deg, rgba(0, 10, 40, 0.85) 0%, rgba(0, 10, 40, 0.3) 50%, transparent 100%);
  z-index: 2;
}

.owl-item:not(.center) .card-info-left {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 4;
  /* background: transparent !important; */
  border-right: none;
  padding: 0;
}

.owl-item:not(.center) .card-logo-wrap {
  padding: 8px 14px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.owl-item:not(.center) .card-logo {
  height: 120px;
  max-width: 240px;
  filter: none !important;
}

.owl-item:not(.center) .card-solution-title {
  display: none !important;
}

.owl-item:not(.center) .card-tech-strip {
  display: none !important;
}

.owl-item:not(.center) .card-body-detail {
  display: none !important;
}

.owl-item:not(.center) .card-label {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 10, 40, 0.85);
  text-align: center;
  padding: 12px 14px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.05em;
  border-top: 1px solid rgba(0, 198, 255, 0.25);
  z-index: 4;
}

/* ============================================================
   B. CENTER CARD STATE (owl-item.active.center)
   ============================================================ */
.owl-item .card-top {
  /* display: grid;
  grid-template-columns: 0.95fr 1.05fr; */
  /* height: 180px; */
  background: #ffffff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.owl-item.active.center .card-info-left {
  padding: 16px 18px;
}

.owl-item.active.center .card-logo-wrap {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.owl-item.active.center .card-logo {
  height: 85px;
  max-width: 120px;
  filter: none !important;
}

.owl-item.active.center .card-solution-title {
  display: block;
  font-size: 1.35rem;
  line-height: 1.3;
  font-weight: 700;
  padding: 5px 5px 5px 10px;
  background: rgb(255 255 255 / 60%);
  background: linear-gradient(to right, rgb(0 0 0 / 70%) 0%, rgb(0 0 0 / 10%) 100%);
}

.owl-item.active.center .card-image-right {
  height: 100%;
  width: 100%;
  min-height: 180px;
}

.owl-item.active.center .card-image-right::after {
  background: none;
  z-index: 2;
}

.owl-item.active.center .card-tech-strip {
  display: flex;
  background: rgb(43 119 231 / 50%);
  padding: 14px 16px;
  justify-content: center;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  height: auto;
  min-height: 56px;
}

.owl-item.active.center .tech-icons {
  display: flex;
  gap: 20px;
  margin-bottom: 0;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}

.owl-item.active.center .tech-icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #0c3080;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.owl-item.active.center .tech-icon-badge:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(0, 198, 255, 0.4);
}

.owl-item.active.center .card-body-detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 18px 18px;
  background: #ffffff;
  flex-grow: 1;
  justify-content: space-between;
}

.owl-item.active.center .card-desc {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #2c3e50;
  margin-bottom: 10px;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.owl-item.active.center .btn-detail {
  max-width: 200px;
  padding: 8px 24px;
  border-radius: 6px;
  font-size: 0.9rem;
  background: linear-gradient(180deg, #24b43c 0%, #1a8f2f 100%);
  box-shadow: 0 4px 12px rgba(26, 143, 47, 0.3);
}

.owl-item.active.center .btn-detail:hover {
  box-shadow: 0 6px 18px rgba(26, 143, 47, 0.5);
}

.owl-item.active.center .card-label {
  display: none !important;
}

.tech-icons {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.tech-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 198, 255, 0.5);
  background: rgba(0, 30, 90, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--cyan);
  box-shadow: var(--glow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-badge {
  cursor: pointer;
  text-decoration: none !important;
  transition: all 0.3s ease;
}

.contact-badge:hover {
  transform: scale(1.2) !important;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.6) !important;
}

.card-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 18px;
}

.btn-detail {
  display: inline-block;
  padding: 11px 36px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: #fff;
  background: linear-gradient(90deg, #1a9e2c 0%, #22c537 50%, #14b322 100%);
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(34, 197, 55, 0.4);
  transition: transform 0.3s, box-shadow 0.3s, filter 0.3s;
  width: 100%;
  text-align: center;
}

.btn-detail:hover {
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 6px 30px rgba(34, 197, 55, 0.7), 0 0 20px rgba(34, 197, 55, 0.4);
  filter: brightness(1.12);
  color: #fff;
  text-decoration: none;
}

/* ---- OWL NAV BUTTONS ---- */
.owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-60%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  padding: 0 4px;
  z-index: 20;
}

.owl-prev,
.owl-next {
  pointer-events: all;
  width: 52px;
  height: 52px;
  border-radius: 50% !important;
  background: rgba(0, 30, 100, 0.6) !important;
  border: 2px solid rgba(0, 198, 255, 0.6) !important;
  color: var(--cyan) !important;
  font-size: 1.2rem !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  box-shadow: var(--glow-sm);
  transition: transform 0.3s, box-shadow 0.3s !important;
  cursor: pointer;
  line-height: 1 !important;
}

.owl-prev:hover,
.owl-next:hover {
  transform: scale(1.12) !important;
  box-shadow: var(--glow-md) !important;
  background: rgba(0, 75, 167, 0.7) !important;
}

/* ---- OWL DOTS / PAGINATION ---- */
.owl-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.owl-dot span {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  background: rgba(0, 198, 255, 0.3) !important;
  border: 1.5px solid rgba(0, 198, 255, 0.5) !important;
  margin: 0 !important;
  transition: background 0.3s, box-shadow 0.3s !important;
}

.owl-dot.active span {
  background: var(--cyan) !important;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.9), 0 0 20px rgba(0, 198, 255, 0.6) !important;
}

/* ---- HOLOGRAM RING ---- */
.holo-ring-wrap {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: -5px auto 0;
  display: flex;
  justify-content: center;
  pointer-events: none;
  z-index: 5;
}

.holo-ring-svg {
  width: 100%;
  max-width: 820px;
  height: auto;
}

/* ---- TECH BAR ---- */
.tech-bar {
  width: 100%;
  max-width: 1400px;
  margin: 5px auto 0;
  background: rgba(0, 20, 65, 0.55);
  border: 1.5px solid rgba(0, 198, 255, 0.3);
  border-radius: 14px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 0 30px rgba(0, 198, 255, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 12px;
  border-right: 1px solid rgba(0, 198, 255, 0.2);
  transition: background 0.3s;
  text-align: center;
}

.tech-item:last-child {
  border-right: none;
}

.tech-item:hover {
  background: rgba(0, 198, 255, 0.08);
}

.tech-item-icon {
  font-size: 2.2rem;
  color: var(--cyan);
  filter: drop-shadow(0 0 8px rgba(0, 198, 255, 0.8));
  flex-shrink: 0;
  width: 100%;
  text-align: center;
}

.tech-item-text .tech-name {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
}

.tech-item-text .tech-desc {
  font-size: 0.7rem;
  color: rgba(0, 198, 255, 0.85);
  font-weight: 500;
}

/* ---- QR SECTION ---- */
.qr-section {
  width: 100%;
  max-width: 1400px;
  text-align: center;
  padding: 20px 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.qr-line {
  flex: 1;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(0, 198, 255, 0.6), transparent);
  max-width: 280px;
  box-shadow: 0 0 15px rgba(0, 198, 255, 0.5);
}

.qr-content {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(0, 20, 65, 0.3);
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(0, 198, 255, 0.2);
}

.qr-text {
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.05em;
  font-weight: 500;
}

.qr-img-wrap {
  border: 2px solid rgba(0, 198, 255, 0.6);
  border-radius: 8px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 0 15px rgba(0, 198, 255, 0.4);
}

.qr-img-wrap img {
  display: block;
  width: 90px;
  height: 90px;
}

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glowPulse {

  0%,
  100% {
    box-shadow: var(--glow-sm);
  }

  50% {
    box-shadow: var(--glow-md);
  }
}

@keyframes ringRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes ringRotateReverse {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

.site-header {
  animation: fadeInUp 0.8s ease both;
}

.carousel-section {
  animation: fadeInUp 0.9s ease 0.2s both;
}

.holo-ring-wrap {
  animation: fadeInUp 1s ease 0.3s both;
}

.tech-bar {
  animation: fadeInUp 1s ease 0.4s both;
}

.qr-section {
  animation: fadeInUp 1s ease 0.5s both;
}

/* Holo ring animation classes referenced in SVG */
.ring-rotate {
  animation: ringRotate 12s linear infinite;
  transform-origin: center;
}

.ring-reverse {
  animation: ringRotateReverse 8s linear infinite;
  transform-origin: center;
}

.ring-dash {
  animation: ringRotate 20s linear infinite;
  transform-origin: center;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1200px) {
  .tech-item {
    padding: 14px 10px;
    gap: 8px;
  }

  .tech-item-icon {
    font-size: 1.9rem;
    width: 100%;
  }

  .tech-item-text .tech-name {
    font-size: 0.85rem;
  }
}

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

  .tech-item:nth-child(3) {
    border-right: none;
  }

  .tech-item:nth-child(4) {
    border-right: 1px solid rgba(0, 198, 255, 0.2);
  }
}

@media (max-width: 768px) {
  #app {
    padding: 20px 10px 0;
  }

  .site-title {
    font-size: 1.5rem;
  }

  .site-header::before {
    left: 5%;
    right: 5%;
  }

  .tech-bar {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 10px;
  }

  .tech-item {
    padding: 12px 8px;
    gap: 6px;
  }

  .tech-item-icon {
    font-size: 1.6rem;
  }

  .tech-item-text .tech-name {
    font-size: 0.75rem;
  }

  .tech-item:nth-child(2) {
    border-right: none;
  }

  .tech-item:nth-child(4) {
    border-right: none;
  }

  .tech-item:nth-child(5) {
    grid-column: 1 / -1;
    border-right: none;
    justify-content: center;
  }

  .card-top {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .card-image-right {
    height: 160px;
  }

  .card-info-left {
    border-right: none;
    border-bottom: 1px solid rgba(0, 198, 255, 0.2);
  }

  .holo-ring-wrap {
    margin-top: 0;
  }

  .qr-content {
    flex-wrap: wrap;
    gap: 10px;
  }

  .qr-line {
    display: none;
  }
}

@media (max-width: 480px) {
  .tech-bar {
    grid-template-columns: 1fr;
  }

  .tech-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(0, 198, 255, 0.2);
    padding: 10px 8px;
    gap: 5px;
  }

  .tech-item:last-child {
    border-bottom: none;
  }

  .site-subtitle {
    font-size: 0.72rem;
  }

  .qr-img-wrap img {
    width: 70px;
    height: 70px;
  }

  .qr-content {
    gap: 8px;
    padding: 10px 12px;
  }

  .qr-text {
    font-size: 0.8rem;
  }
}

/* ---- HUD corner decorations ---- */
.hud-corner {
  position: fixed;
  width: 80px;
  height: 80px;
  pointer-events: none;
  z-index: 5;
  opacity: 0.5;
}

.hud-corner--tl {
  top: 16px;
  left: 16px;
  border-top: 2px solid var(--cyan);
  border-left: 2px solid var(--cyan);
}

.hud-corner--tr {
  top: 16px;
  right: 16px;
  border-top: 2px solid var(--cyan);
  border-right: 2px solid var(--cyan);
}

.hud-corner--bl {
  bottom: 16px;
  left: 16px;
  border-bottom: 2px solid var(--cyan);
  border-left: 2px solid var(--cyan);
}

.hud-corner--br {
  bottom: 16px;
  right: 16px;
  border-bottom: 2px solid var(--cyan);
  border-right: 2px solid var(--cyan);
}

@media (max-width: 768px) {
  .hud-corner {
    width: 40px;
    height: 40px;
  }
}

@media (min-width: 1600px) {
  .owl-theme .owl-nav [class*=owl-] {
    position: absolute;
  }

  .owl-carousel .owl-nav button.owl-prev {
    left: -80px;
  }

  .owl-carousel .owl-nav button.owl-next {
    right: -80px;
  }
}