/* (SIDE A) ABOUT AD ASTRA */

/* RESET & BASE STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  zoom: reset;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  text-size-adjust: none;
}

/* MAIN CONTAINER & BACKGROUND */
.about-ad-astra {
  position: relative;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(180deg, #fff5db 21.63%, #ff60d7 100%);
  background-size: 100% 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transform-origin: 0 0;
  zoom: 1;
  overflow: hidden;
}

.card-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

/* CARD COMPONENT */
.about-card {
  position: relative;
  width: min(1112px, 95vw);
  height: auto;
  max-height: min(805px, 90vh);
  filter: drop-shadow(0px 15px 15px rgba(0, 0, 0, 0.25));
  background: linear-gradient(180.4deg, #ff61c7 -80.36%, #fff5db 83.25%);
  border-radius: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  overflow: hidden;
  z-index: 10;
}

/* TITLE & NOISE */
.about-title {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.2;
  text-align: center;
  color: #110349;
  margin-bottom: clamp(20px, 4vw, 40px);
  position: relative;
  z-index: 2;
}

.noise-rectangle {
  position: absolute;
  top: clamp(50px, 8vh, 100px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: min(50px, 80vw);
  height: auto;
}

/* CONTENT SLIDES & DESCRIPTION */
.about-description {
  width: min(876px, 95%);
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  line-height: 140%;
  text-align: center;
  color: #110349;
  margin: 0;
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-slide {
  width: 100%;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.6s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.content-slide.active {
  opacity: 1;
  visibility: visible;
}

.paragraph-1,
.paragraph-2,
.paragraph-3,
.paragraph-4 {
  margin-bottom: clamp(15px, 3vw, 20px);
}

.publications-list {
  text-align: center;
  margin: 10px 0 clamp(20px, 4vw, 30px) 0;
}

.publication-item {
  margin-bottom: clamp(8px, 2vw, 10px);
  text-align: center;
  display: inline-block;
  width: 100%;
}

/* EMBARK LOGOS */
.embark-logo-title {
  height: clamp(18px, 3vw, 36px);
  width: auto;
  margin: 0 clamp(2px, 1vw, 8px) 0 0;
  vertical-align: baseline;
  display: inline;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.embark-logo {
  height: clamp(12px, 2.5vw, 20px);
  width: auto;
  margin: 0 clamp(1px, 0.3vw, 3px);
  vertical-align: baseline;
  display: inline;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.embark-logo-small {
  height: clamp(10px, 2vw, 16px);
  width: auto;
  margin: 0 clamp(1px, 0.3vw, 3px);
  vertical-align: baseline;
  display: inline;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* EMBARK NUMBERS */
.embark-number-title {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: inherit;
  color: #110349;
  margin-left: clamp(2px, 1vw, 8px);
  display: inline;
}

.embark-number,
.embark-number-inline {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: inherit;
  color: #f05f7d;
  display: inline;
}

.embark-number {
  margin-left: clamp(1px, 0.5vw, 2px);
}

.embark-number-inline {
  margin: 0 clamp(1px, 0.3vw, 1px);
}

/* NAVIGATION BUTTONS */
.nav-button {
  position: absolute;
  width: 56px;
  height: 56px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 15;
  transition: all 0.2s ease;
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
  -webkit-focus-ring-color: transparent;
  user-select: none;
}

.nav-button:focus,
.nav-button:active,
.nav-button:focus-visible {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}

.nav-button * {
  outline: none !important;
  border: none !important;
}

.nav-button:hover {
  opacity: 0.8;
}

.nav-button:active {
  opacity: 0.9;
}

.left-button {
  left: -100px;
  top: 50%;
  transform: translateY(-50%);
}

.right-button {
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
}

.nav-button-svg {
  width: 100%;
  height: 100%;
  display: block;
  transition: all 0.2s ease;
  outline: none !important;
  border: none !important;
}

.nav-button:hover .nav-button-svg {
  filter: none;
  outline: none !important;
}

/* DOT INDICATORS */
.dot-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  margin-top: clamp(20px, 4vw, 30px);
}

.dot-indicator {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #d9d9d9;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot-indicator.active {
  background: #3394d8;
}

.dot-indicator:hover {
  transform: scale(1.2);
}

.dot-indicator:active {
  transform: scale(0.9);
}

/* RESPONSIVE BREAKPOINTS */

/* Mobile Phones (up to 480px) */
@media (max-width: 480px) {
  .about-ad-astra {
    padding: 8px;
    background-size: 100% 100%;
    background-position: center;
  }

  .about-card {
    width: 90vw;
    height: 2vh;
    max-height: 90vh;
    min-height: 70vh;
    padding: clamp(40px, 4vh, 25px) clamp(15px, 4vw, 20px);
    border-radius: clamp(20px, 6vw, 30px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .about-title {
    font-size: clamp(1.3rem, 2vh, 1.8rem);
    margin-bottom: clamp(5px, 9vh, 80px);
    margin-top: clamp(1px, 1vh, 20px);
    line-height: 1.1;
    flex-shrink: 0;
  }

  .noise-rectangle {
    width: clamp(200px, 60vw, 150px);
    top: clamp(40px, 7vh, 20px);
  }

  .about-description {
    font-size: clamp(0.75rem, 1.5vh, 0.9rem);
    width: 100%;
    height: auto;
    flex: 1;
    min-height: 0;
    max-height: none;
    line-height: 1.25;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .content-slide {
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .paragraph-1,
  .paragraph-2,
  .paragraph-3,
  .paragraph-4 {
    margin-bottom: clamp(1px, 1vh, 3px);
  }

  .publications-list {
    margin: clamp(4px, 1vh, 8px) 0 clamp(6px, 2vh, 10px) 0;
  }

  .publication-item {
    margin-bottom: clamp(4px, 1vh, 6px);
    line-height: 1.2;
  }

  .embark-logo-title {
    height: clamp(12px, 3vh, 16px);
    margin: 0 clamp(1px, 0.3vw, 2px) 0 0;
  }

  .embark-logo {
    height: clamp(9px, 2vh, 5px);
    margin: 0 clamp(1px, 0.2vw, 1px);
    margin-bottom: clamp(1px, 1vh, 1px);
  }

  .embark-logo-small {
    height: clamp(4px, 2vh, 9px);
    margin: 0 clamp(1px, 0.2vw, 2px);
  }

  .nav-button {
    width: 60px;
    height: 70px;
  }

  .left-button {
    left: 40%;
    top: auto;
    bottom: clamp(-90px, -25vh, -35px);
    transform: translateX(clamp(-38px, -9vw, -32px));
  }

  .right-button {
    right: 40%;
    top: auto;
    bottom: clamp(-90px, -25vh, -35px);
    transform: translateX(clamp(32px, 9vw, 38px));
  }

  .dot-indicator {
    width: clamp(4px, 2.5vw, 11px);
    height: clamp(4px, 2.5vw, 11px);
  }

  .dot-indicators {
    display: horizontal;
    margin-top: 40px;
  }
}

/* Tablets (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .about-ad-astra {
    background-size: 100% 100%;
    background-position: center;
  }

  .about-card {
    width: 92vw;
    height: 85vh;
    max-height: 85vh;
    padding: clamp(25px, 5vh, 35px) clamp(20px, 4vw, 30px);
    border-radius: clamp(30px, 6vw, 40px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .about-title {
    font-size: clamp(1.5rem, 5vh, 2.2rem);
    margin-bottom: clamp(12px, 2vh, 20px);
    margin-top: clamp(10px, 2vh, 15px);
    line-height: 1.15;
    flex-shrink: 0;
  }

  .noise-rectangle {
    width: clamp(250px, 65vw, 300px);
    top: clamp(30px, 5vh, 45px);
  }

  .about-description {
    font-size: clamp(0.85rem, 2.5vh, 1.05rem);
    width: 98%;
    height: auto;
    flex: 1;
    min-height: 0;
    line-height: 1.35;
  }

  .content-slide {
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .paragraph-1,
  .paragraph-2,
  .paragraph-3,
  .paragraph-4 {
    margin-bottom: clamp(8px, 2vh, 14px);
  }

  .publications-list {
    margin: clamp(6px, 1.5vh, 10px) 0 clamp(10px, 2vh, 16px) 0;
  }

  .publication-item {
    margin-bottom: clamp(6px, 1.5vh, 10px);
    line-height: 1.3;
  }

  .embark-logo-title {
    height: clamp(14px, 3vh, 20px);
    margin: 0 clamp(2px, 0.6vw, 3px) 0 0;
  }

  .embark-logo {
    height: clamp(11px, 2.5vh, 15px);
    margin: 0 clamp(1px, 0.3vw, 2px);
  }

  .embark-logo-small {
    height: clamp(9px, 2vh, 13px);
    margin: 0 clamp(1px, 0.2vw, 2px);
  }

  .nav-button {
    width: clamp(38px, 7vw, 46px);
    height: clamp(38px, 7vw, 46px);
  }

  .left-button {
    left: 50%;
    top: auto;
    bottom: clamp(-55px, -12vh, -45px);
    transform: translateX(clamp(-55px, -12vw, -48px));
  }

  .right-button {
    right: 50%;
    top: auto;
    bottom: clamp(-55px, -12vh, -45px);
    transform: translateX(clamp(48px, 12vw, 55px));
  }

  .dot-indicator {
    width: clamp(10px, 2.5vw, 12px);
    height: clamp(10px, 2.5vw, 12px);
  }

  .dot-indicators {
    display: horizontal;
  }
}

/* Small Laptops (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .about-card {
    width: 85vw;
    padding: 50px 35px;
    border-radius: 50px;
  }

  .about-title {
    font-size: 3rem;
  }

  .noise-rectangle {
    width: 500px;
    top: 30px;
  }

  .embark-logo {
    height: clamp(13px, 2vh, 5px);
    margin: 0 clamp(1px, 0.2vw, 1px);
  }

  .embark-logo-small {
    height: clamp(2px, 1.5vw, 12px);
  }

  .about-description {
    font-size: 1.1rem;
    width: 90%;
    height: 320px;
  }

  .nav-button {
    width: 52px;
    height: 52px;
  }

  .left-button {
    left: -65px;
    top: 50%;
    transform: translateY(-50%);
  }

  .right-button {
    right: -65px;
    top: 50%;
    transform: translateY(-50%);
  }

  .dot-indicators {
    margin-top: 25px;
  }
}

/* Desktop (1025px - 1440px) */
@media (min-width: 1025px) and (max-width: 1440px) {
  .about-card {
    width: 70vw;
    max-width: 850px;
    padding: 45px 35px;
    border-radius: 60px;
  }

  .about-title {
    font-size: 3rem;
    bottom: 15px;
  }

  .noise-rectangle {
    width: 480px;
    top: 15px;
  }

  .about-description {
    font-size: 1.1rem;
    width: 80%;
    height: 350px;
  }

  .nav-button {
    width: 52px;
    height: 52px;
  }

  .left-button {
    left: -90px;
    top: 50%;
    transform: translateY(-50%);
  }

  .right-button {
    right: -90px;
    top: 50%;
    transform: translateY(-50%);
  }

  .dot-indicators {
    margin-top: 25px;
  }
}

/* Large Desktop (1441px - 1919px) */
@media (min-width: 1441px) and (max-width: 1919px) {
  .about-card {
    width: 950px;
    height: auto;
    max-height: 700px;
    padding: 50px 35px;
    border-radius: 70px;
  }

  .about-title {
    font-size: 3.2rem;
  }

  .noise-rectangle {
    width: 520px;
    top: 30px;
  }

  .about-description {
    font-size: 1.2rem;
    width: 750px;
    height: 400px;
  }

  .nav-button {
    width: 54px;
    height: 54px;
  }

  .left-button {
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
  }

  .right-button {
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
  }

  .dot-indicators {
    margin-top: 27px;
  }
}

/* Ultra Wide (1920px - 2559px) */
@media (min-width: 1920px) and (max-width: 2559px) {
  .about-card {
    width: 1200px;
    height: 800px;
    padding: 60px 50px;
  }

  .noise-rectangle {
    width: 550px;
    top: 90px;
  }

  .about-title {
    font-size: 3.8rem;
    line-height: 75px;
    margin-bottom: 40px;
  }

  .about-description {
    font-size: 1.4rem;
    width: 950px;
    height: 420px;
  }

  .paragraph-1,
  .paragraph-2 {
    margin-bottom: 20px;
  }

  .publications-list {
    margin-top: 15px;
    margin-bottom: 25px;
  }

  .publication-item {
    margin-bottom: 12px;
  }

  .embark-logo-title {
    height: 45px;
  }

  .dot-indicators {
    margin-top: 30px;
    gap: 8px;
  }

  .dot-indicator {
    width: 16px;
    height: 16px;
  }

  .left-button {
    left: -80px;
  }
  .right-button {
    right: -80px;
  }

  .nav-button {
    width: 56px;
    height: 56px;
  }
}

/* Extra Ultra Wide (2560px+) */
@media (min-width: 2560px) {
  .about-card {
    width: clamp(1800px, 55vw, 2000px);
    height: clamp(900px, 65vh, 1200px);
    padding: clamp(0px, 4vh, 120px) clamp(60px, 3vw, 100px);
    border-radius: clamp(70px, 3vw, 100px);
  }

  .noise-rectangle {
    width: clamp(850px, 10vw, 200px);
    top: clamp(30px, 10vh, 30px);
  }

  .about-title {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: clamp(85px, 7vh, 140px);
    margin-bottom: clamp(30px, 4vh, 80px);
  }

  .about-description {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    width: clamp(1150px, 70vw, 1600px);
    line-height: 145%;
    height: clamp(480px, 35vh, 600px);
  }

  .paragraph-1,
  .paragraph-2,
  .paragraph-3,
  .paragraph-4 {
    margin-bottom: clamp(25px, 2vh, 40px);
  }

  .publications-list {
    margin-top: clamp(20px, 2vh, 35px);
    margin-bottom: clamp(30px, 3vh, 45px);
  }

  .publication-item {
    margin-bottom: clamp(15px, 1.5vh, 25px);
  }

  .embark-logo-title {
    height: clamp(45px, 4vw, 60px);
    margin: 0 clamp(8px, 1vw, 15px) 0 0;
  }

  .embark-logo {
    height: clamp(20px, 2.5vw, 25px);
    margin: 0 clamp(3px, 0.5vw, 8px);
  }

  .embark-logo-small {
    height: clamp(5px, 2vw, 25px);
    margin: 0 clamp(3px, 0.3vw, 6px);
  }

  .dot-indicators {
    margin-top: clamp(40px, 5vh, 80px);
    gap: clamp(10px, 1vw, 15px);
  }

  .dot-indicator {
    width: clamp(18px, 1.5vw, 24px);
    height: clamp(18px, 1.5vw, 24px);
  }

  .left-button {
    left: clamp(-140px, -8vw, -200px);
  }

  .right-button {
    right: clamp(-140px, -8vw, -200px);
  }

  .nav-button {
    width: clamp(60px, 4vw, 80px);
    height: clamp(60px, 4vw, 80px);
  }
}

/* LANDSCAPE ORIENTATION */
@media (orientation: landscape) and (max-height: 600px) {
  .about-ad-astra {
    background-size: 100% 100%;
    background-position: center;
  }

  .about-card {
    max-height: 92vh;
    height: 92vh;
    padding: clamp(10px, 2vh, 20px) clamp(15px, 3vw, 25px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .about-title {
    margin-bottom: clamp(5px, 1vh, 10px);
    margin-top: clamp(70px, 1.5vh, 12px);
    font-size: clamp(2rem, 3.5vw, 1.8rem);
    line-height: 1.1;
    flex-shrink: 0;
  }

  .embark-logo-title {
    height: clamp(25px, 2vh, 16px);
    margin: 0 clamp(1px, 0.3vw, 2px) 0 0;
  }

  .noise-rectangle {
    top: clamp(40px, 3vh, 25px);
    width: clamp(150px, 45vw, 400px);
  }

  .paragraph-1,
  .paragraph-2,
  .paragraph-3,
  .paragraph-4 {
    margin-bottom: clamp(4px, 1vh, 8px);
  }

  .publications-list {
    margin-bottom: clamp(6px, 1.5vh, 10px);
  }

  .publication-item {
    margin-bottom: clamp(3px, 0.8vh, 6px);
  }

  .dot-indicators {
    margin-top: clamp(6px, 1.5vh, 10px);
  }

  .nav-button {
    width: clamp(30px, 5vw, 40px);
    height: clamp(30px, 5vw, 40px);
  }

  .dot-indicator {
    width: clamp(8px, 1.8vw, 10px);
    height: clamp(8px, 1.8vw, 10px);
  }

  .about-description {
    font-size: clamp(0.7rem, 2vw, 0.95rem);
    height: auto;
    flex: 1;
    min-height: 0;
    line-height: 1.25;
  }

  .content-slide {
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

@media (orientation: landscape) and (max-height: 600px) and (max-width: 768px) {
  .left-button {
    left: 50%;
    top: auto;
    bottom: clamp(-38px, -8vh, -30px);
    transform: translateX(clamp(-32px, -7vw, -28px));
  }

  .right-button {
    right: 50%;
    top: auto;
    bottom: clamp(-38px, -8vh, -30px);
    transform: translateX(clamp(28px, 7vw, 32px));
  }

  .about-card {
    padding: clamp(8px, 1.8vh, 15px) clamp(12px, 2.5vw, 20px);
  }

  .about-description {
    font-size: clamp(0.65rem, 1.8vw, 0.85rem);
  }
}

@media (orientation: landscape) and (max-height: 600px) and (min-width: 769px) {
  .left-button {
    left: -70px;
    top: 50%;
    transform: translateY(-50%);
  }

  .right-button {
    right: -70px;
    top: 50%;
    transform: translateY(-50%);
  }
}

/* ACCESSIBILITY & PERFORMANCE */

@media (prefers-contrast: high) {
  .embark-number-title {
    color: #000000;
  }
  .embark-number,
  .embark-number-inline {
    color: #ff0066;
  }
}

@media (prefers-reduced-motion: reduce) {
  .embark-logo,
  .embark-logo-small,
  .embark-logo-title,
  .content-slide,
  .nav-button,
  .nav-button-svg,
  .dot-indicator {
    transition: none;
  }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .noise-rectangle,
  .embark-logo,
  .embark-logo-small,
  .embark-logo-title {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

@media print {
  .embark-logo,
  .embark-logo-small,
  .embark-logo-title {
    height: 16px;
    margin: 0 2px;
  }

  .embark-number-title,
  .embark-number,
  .embark-number-inline {
    color: #000000 !important;
  }
}

/* ENTRY ANIMATIONS */

.about-card {
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  animation: cardFadeIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
}

.about-title {
  opacity: 0;
  transform: translateY(-30px);
  animation: titleFadeIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s forwards;
}

.noise-rectangle {
  opacity: 0;
  animation: noiseFadeIn 0.5s ease-out 0.8s forwards;
}

.dot-indicators {
  opacity: 0;
  transform: translateY(20px);
  animation: indicatorsFadeIn 0.5s ease-out 1.1s forwards;
}

.nav-button {
  opacity: 0;
  animation: buttonsFadeIn 0.5s ease-out 1.3s forwards;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center;
}

/* Entry animation keyframes */
@keyframes cardFadeIn {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes titleFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes noiseFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes indicatorsFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes buttonsFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* ARROW HOVER */

.nav-button:hover {
  opacity: 1;
  transform: scale(1.15);
  filter: brightness(1.1);
}

.nav-button:active {
  transform: scale(0.95);
  opacity: 0.8;
  transition: all 0.1s ease;
}

.nav-button-svg {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center;
}

.nav-button:hover .nav-button-svg {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  transform: translateY(-1px);
}

.left-button:hover {
  transform: translateY(-50%) scale(1.15);
}

.right-button:hover {
  transform: translateY(-50%) scale(1.15);
}

.left-button:active {
  transform: translateY(-50%) scale(0.95);
}

.right-button:active {
  transform: translateY(-50%) scale(0.95);
}

/* Mobile-specific hover */
@media (max-width: 480px) {
  .left-button:hover {
    transform: translateX(clamp(-38px, -9vw, -32px)) scale(1.15);
  }

  .right-button:hover {
    transform: translateX(clamp(32px, 9vw, 38px)) scale(1.15);
  }

  .left-button:active {
    transform: translateX(clamp(-38px, -9vw, -32px)) scale(0.95);
  }

  .right-button:active {
    transform: translateX(clamp(32px, 9vw, 38px)) scale(0.95);
  }
}

/* Tablet-specific hover */
@media (min-width: 481px) and (max-width: 768px) {
  .left-button:hover {
    transform: translateX(clamp(-55px, -12vw, -48px)) scale(1.15);
  }

  .right-button:hover {
    transform: translateX(clamp(48px, 12vw, 55px)) scale(1.15);
  }

  .left-button:active {
    transform: translateX(clamp(-55px, -12vw, -48px)) scale(0.95);
  }

  .right-button:active {
    transform: translateX(clamp(48px, 12vw, 55px)) scale(0.95);
  }
}

/* Landscape mode hover */
@media (orientation: landscape) and (max-height: 600px) and (max-width: 768px) {
  .left-button:hover {
    transform: translateX(clamp(-32px, -7vw, -28px)) scale(1.15);
  }

  .right-button:hover {
    transform: translateX(clamp(28px, 7vw, 32px)) scale(1.15);
  }

  .left-button:active {
    transform: translateX(clamp(-32px, -7vw, -28px)) scale(0.95);
  }

  .right-button:active {
    transform: translateX(clamp(28px, 7vw, 32px)) scale(0.95);
  }
}

/* Touch device */
@media (hover: none) and (pointer: coarse) {
  .nav-button:hover {
    transform: scale(1.08);
    opacity: 0.9;
  }

  .left-button:hover {
    transform: translateY(-50%) scale(1.08);
  }

  .right-button:hover {
    transform: translateY(-50%) scale(1.08);
  }

  @media (max-width: 480px) {
    .left-button:hover {
      transform: translateX(clamp(-38px, -9vw, -32px)) scale(1.08);
    }

    .right-button:hover {
      transform: translateX(clamp(32px, 9vw, 38px)) scale(1.08);
    }
  }

  @media (min-width: 481px) and (max-width: 768px) {
    .left-button:hover {
      transform: translateX(clamp(-55px, -12vw, -48px)) scale(1.08);
    }

    .right-button:hover {
      transform: translateX(clamp(48px, 12vw, 55px)) scale(1.08);
    }
  }
}

/* ACCESSIBILITY & REDUCED MOTION */

@media (prefers-reduced-motion: reduce) {
  .about-card,
  .about-title,
  .noise-rectangle,
  .dot-indicators,
  .nav-button {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .nav-button,
  .nav-button-svg {
    transition: opacity 0.2s ease !important;
  }

  .nav-button:hover,
  .left-button:hover,
  .right-button:hover {
    transform: none !important;
    opacity: 0.8 !important;
    filter: none !important;
  }

  .nav-button:active,
  .left-button:active,
  .right-button:active {
    transform: none !important;
    opacity: 0.6 !important;
  }

  .nav-button:hover .nav-button-svg {
    transform: none !important;
    filter: none !important;
  }
}
