
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: 'Orbitron', sans-serif;
  overflow-y: auto;
  overflow-x: hidden;
  background: #000;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  touch-action: pan-y;
}
#starfield-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: radial-gradient(ellipse at center, #0a001a 0%, #000000 80%);
}
.container {
  position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.header {
  text-align: center;
  margin: auto;
  padding: 11px;
}
.info {
  position: fixed;
  opacity: 0;
  transform: translate(-50%, -50%);
  transform-style: preserve-3d;
  will-change: transform;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  padding: 20px 30px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 15px rgba(0, 204, 255, 0.5);
  cursor: move;
  user-select: none;
}

.info h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: #00ccff;
  text-shadow: 0 0 15px #00ccff, 0 0 30px #00ccff;
}

.info p {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #00ffe1;
  text-shadow: 0 0 10px #00ffe1;
}
.rotate-btn {
  position: absolute;
  top: 24px;
  right: 10px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.rotate-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

.rotate-btn:active {
  transform: scale(0.9);
  background: rgba(0, 204, 255, 0.3);
}

.rotate-btn .icon {
  pointer-events: none;
}
.contacts {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  border: 2px solid #00ccff;
  border-radius: 4px;
  cursor: pointer;
  user-select: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #fff;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.contact-item:hover {
  background: rgba(0, 0, 0, 0.7);
}

.contact-item:active {
  transform: scale(0.95);
  background: rgba(0, 204, 255, 0.2);
}
.contact-item::after,
.rotate-btn::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  padding: 5px 10px;
  border-radius: 4px;
  white-space: nowrap;
  font-size: 0.8rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.contact-item:hover::after,
.rotate-btn:hover::after {
  opacity: 1;
}
.contact-item .icon {
  flex-shrink: 0;
}

.contact-item:only-child svg {
  margin: 0;
}

a.contact-item:not(:has(span)) {
  padding: 10px;
}

.quote-container {
  padding: 40px 50px;
  font-size: 2rem;
  text-align: center;
  max-width: 800px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: none;
  border: none;
  box-shadow: none;
  text-shadow: none;
}

.cursor {
  display: inline-block;
  width: 3px;
  background-color: #00ffe1;
  animation: blink 1s step-start infinite;
  margin-left: 2px;
  vertical-align: text-bottom;
  height: 1em;
}

.cursor.no-blink {
  animation: none;
}

@keyframes blink {
  50% { opacity: 0; }
}






@media (max-width: 768px) {
  .info h1 {
    font-size: 2.2rem;
  }
  .info p {
    font-size: 1.2rem;
  }
  .contact-item {
    font-size: 1rem;
    padding: 8px 16px;
  }

  
  .visualizer-wrapper.active {
    height: 60px;
    margin-top: 8px;
  }
  
  #visualizer {
    height: 50px;
  }
  
  .goodbye-text,
  .hello-text {
    font-size: 1rem;
    white-space: normal;
  }
  
  .container {
    height: auto;
    min-height: 100vh;
    padding-bottom: 100px;
  }
  
  .header {
    padding: 10px;
  }
  
  .info {
    padding: 15px 20px;
  }
  
  .quote-container {
    padding: 20px 30px;
    font-size: 1.5rem;
    min-height: 150px;
  }
}

@media (max-width: 674px) {
  
  
  .header {
    margin-top: 120px !important;
  }
}

@media (max-width: 671px) {
 
  
  .header {
    margin-top: 120px !important;
    padding: 5px;
  }
  
  .info {
    padding: 12px 15px;
  }
  
  .info h1 {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }
  
  .info p {
    font-size: 1rem;
    margin-bottom: 15px;
  }
  
  .contacts {
    gap: 10px;
  }
  
  .contact-item {
    font-size: 0.9rem;
    padding: 6px 12px;
    gap: 6px;
  }
  
  .quote-container {
    font-size: 1.2rem;
    padding: 15px 20px;
    min-height: 120px;
  }
  
  .goodbye-text,
  .hello-text {
    font-size: 0.8rem;
    padding: 0 8px;
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .music-player-top {
    position: fixed;
    bottom: 10px;
    top: auto;
    max-width: 95%;
  }
  
  .header {
    margin-top: 0;
    margin-bottom: 20px;
  }
  
  .info h1 {
    font-size: 1.5rem;
  }
  
  .info p {
    font-size: 0.9rem;
  }
  
  .contact-item {
    font-size: 0.85rem;
    padding: 5px 10px;
  }
  
  .quote-container {
    font-size: 1rem;
    padding: 12px 16px;
  }
  
  .visualizer-wrapper.active {
    height: 55px;
  }
  
  #visualizer {
    height: 50px;
  }
  
  .player-main-controls {
    gap: 4px;
  }
  
  .player-btn {
    width: 36px;
    height: 36px;
  }
  
  .player-btn-play {
    width: 40px;
    height: 40px;
  }
  
  .player-btn svg {
    width: 20px;
    height: 20px;
  }
  
  .player-btn-play svg {
    width: 28px;
    height: 28px;
  }
  
  .goodbye-text,
  .hello-text {
    font-size: 0.85rem;
    white-space: normal;
    padding: 0 8px;
    max-width: calc(100vw - 40px);
  }
  
  .container {
    padding-bottom: 120px;
  }
}

@media (max-width: 360px) {
  .visualizer-wrapper.active {
    height: 65px;
  }
  
  #visualizer {
    height: 60px;
  }
  
  .goodbye-text,
  .hello-text {
    font-size: 0.65rem;
    padding: 0 6px;
    max-width: calc(100vw - 30px);
    white-space: normal;
  }
}

@media (max-width: 280px) {
  .visualizer-wrapper.active {
    height: 70px;
  }
  
  #visualizer {
    height: 65px;
  }
  
  .goodbye-text,
  .hello-text {
    font-size: 0.7rem;
    padding: 0 2px;
    max-width: calc(100vw - 10px);
    white-space: normal;
  }
}

@media (max-width: 240px) {
  .visualizer-wrapper.active {
    height: 75px;
  }
  
  #visualizer {
    height: 70px;
  }
  
  .goodbye-text,
  .hello-text {
    font-size: 0.75rem;
    padding: 0;
    max-width: 100vw;
    white-space: normal;
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  .music-player-top {
    top: 5px;
    bottom: auto;
    max-width: 98%;
  }
  
  .header {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  
  .container {
    padding-bottom: 10px;
  }
  
  .info h1 {
    font-size: 1.8rem;
    margin-bottom: 5px;
  }
  
  .info p {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  
  .quote-container {
    font-size: 1.2rem;
    padding: 15px 20px;
    min-height: 100px;
  }
}

@media (max-width: 480px) and (orientation: landscape) {
  .music-player-top {
    top: 5px;
    bottom: auto;
  }
  
  .header {
    margin-top: 0;
  }
  
  .container {
    padding-bottom: 10px;
  }
}

.yaluchiymanegaer-page {
  position: relative;
  min-height: 100vh;
  width: 100%;
  padding: 80px 20px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.yaluchiymanegaer-hero {
  width: 100%;
  max-width: 1100px;
  padding: 32px;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(0, 204, 255, 0.25), inset 0 0 30px rgba(0, 255, 225, 0.06);
}
.yaluchiymanegaer-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 204, 255, 0.5);
  color: #00ffe1;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(90deg, rgba(0, 255, 225, 0.08), rgba(0, 204, 255, 0.12));
}
.yaluchiymanegaer-hero h1 {
  margin-top: 18px;
  font-size: 3rem;
  color: #00ffe1;
  text-shadow: 0 0 20px rgba(0, 255, 225, 0.35), 0 0 32px rgba(0, 204, 255, 0.25);
  letter-spacing: 2px;
}
.yaluchiymanegaer-hero p {
  margin-top: 14px;
  font-size: 1.15rem;
  color: #c7f9ff;
  line-height: 1.7;
}
.yaluchiymanegaer-note {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: #e3f7ff;
  font-size: 1rem;
}
.yaluchiymanegaer-section {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.section-title h2 {
  font-size: 2rem;
  color: #00ccff;
  text-shadow: 0 0 15px rgba(0, 204, 255, 0.4);
}
.section-title p {
  color: #b8f4ff;
  font-size: 1rem;
}
.yaluchiymanegaer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.yaluchiymanegaer-card {
  position: relative;
  padding: 22px 20px;
  border-radius: 14px;
  background: radial-gradient(circle at 20% 20%, rgba(0, 255, 225, 0.08), rgba(0, 0, 0, 0.75));
  border: 1px solid rgba(0, 204, 255, 0.35);
  box-shadow: 0 0 18px rgba(0, 204, 255, 0.2);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.yaluchiymanegaer-card h3 {
  font-size: 1.35rem;
  color: #fff;
  letter-spacing: 0.5px;
}
.yaluchiymanegaer-price {
  font-size: 1.15rem;
  color: #00ffe1;
  font-weight: 700;
}
.yaluchiymanegaer-desc {
  color: #d9f6ff;
  line-height: 1.6;
  font-size: 0.98rem;
}
.yaluchiymanegaer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.yaluchiymanegaer-pill {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 204, 255, 0.4);
  background: rgba(0, 255, 225, 0.08);
  color: #b8f4ff;
  font-size: 0.9rem;
}
.yaluchiymanegaer-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.yaluchiymanegaer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(90deg, #00ccff, #00ffe1);
  box-shadow: 0 0 20px rgba(0, 204, 255, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.yaluchiymanegaer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 26px rgba(0, 255, 225, 0.45);
}
.yaluchiymanegaer-btn:active {
  transform: translateY(0);
}
.yaluchiymanegaer-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(0, 255, 225, 0.12);
  border: 1px solid rgba(0, 204, 255, 0.4);
  color: #92f4ff;
  font-size: 0.85rem;
}
.yaluchiymanegaer-footnote {
  color: #9fdff0;
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.9;
}
.yaluchiymanegaer-table-wrap {
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 0 22px rgba(0, 204, 255, 0.2);
  background: rgba(0, 0, 0, 0.6);
}
.yaluchiymanegaer-table {
  width: 100%;
  border-collapse: collapse;
  color: #e5f9ff;
  text-align: left;
}
.yaluchiymanegaer-table thead {
  background: linear-gradient(90deg, rgba(0, 255, 225, 0.12), rgba(0, 204, 255, 0.12));
}
.yaluchiymanegaer-table th,
.yaluchiymanegaer-table td {
  padding: 16px 18px;
  font-size: 1rem;
}
.yaluchiymanegaer-table th {
  color: #00ffe1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
}
.yaluchiymanegaer-table th:nth-last-child(-n+2),
.yaluchiymanegaer-table td:nth-last-child(-n+2) {
  text-align: center;
}
.yaluchiymanegaer-table tbody tr:hover td {
  background: rgba(0, 255, 225, 0.04);
}
.yaluchiymanegaer-table a {
  color: #dffbff;
  text-decoration: none;
}
.yaluchiymanegaer-table a:hover {
  color: #00ffe1;
}

@media (max-width: 768px) {
  .yaluchiymanegaer-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .yaluchiymanegaer-table {
    min-width: 880px;
  }
}
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 14px 20px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4));
  z-index: 5;
  backdrop-filter: blur(6px);
}
.nav-link {
  color: #dffbff;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 10px;
  transition: all 0.2s ease;
  font-size: 0.95rem;
}
.nav-link:hover {
  background: rgba(0, 255, 225, 0.08);
}
.nav-link.active {
  background: rgba(0, 255, 225, 0.12);
  color: #00ffe1;
  box-shadow: 0 0 15px rgba(0, 204, 255, 0.25);
}

@media (max-width: 768px) {
  .yaluchiymanegaer-page {
    padding: 60px 16px 80px;
  }
  .yaluchiymanegaer-hero h1 {
    font-size: 2.4rem;
  }
  .section-title h2 {
    font-size: 1.7rem;
  }
  .yaluchiymanegaer-card {
    padding: 18px 16px;
  }
}

@media (max-width: 480px) {
  .yaluchiymanegaer-hero {
    padding: 22px 18px;
    border-radius: 12px;
  }
  .yaluchiymanegaer-hero h1 {
    font-size: 1.9rem;
  }
  .yaluchiymanegaer-hero p {
    font-size: 1rem;
  }
  .yaluchiymanegaer-note {
    width: 100%;
    justify-content: center;
  }
  .section-title {
    flex-direction: column;
    align-items: flex-start;
  }
}
