:root {
  --bg: #000;
  --text: #e6f7e6;
  --accent: #00ff66;
  --muted: #9aa49a;
  --max-width: 1200px;
  --radius: 14px;
  --ff: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    Arial;
}
html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 24px;
  box-sizing: border-box;
}
.card {
  width: 100%;
  max-width: var(--max-width);
  text-align: center;
  padding: 32px 40px;
  border-radius: var(--radius);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.126)
  );
  box-shadow: 0 0px 30px rgba(26, 255, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.02);
  border: 0 solid rgba(255, 255, 255, 0.03);
}
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  font-size: 14px;
}

.menu {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.menu a {
  color: #dbe6db;
  text-decoration: none;
  font-weight: 500;
}

.menu a:hover {
  color: var(--accent);
}

.lang-switcher {
  display: flex;
  gap: 6px;
  font-weight: 600;
}

.lang-switcher a {
  color: var(--text);
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 6px;
}

.lang-switcher a.active,
.lang-switcher a:hover {
  background: var(--accent);
  color: var(--bg);
}
.artist-photo {
  width: 100%;
  max-width: 760px;
  height: auto;
  border-radius: 16px;
  margin: 0 auto 32px auto;
  display: block;
  box-shadow: 0 0px 12px rgba(26, 255, 0, 0.6);
}
h1 {
  font-size: clamp(28px, 4.5vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 auto 32px auto;
  max-width: clamp(14ch, 64vw, 28ch);
}
p.lead {
  margin: 0 0 26px 0;
  font-size: clamp(15px, 2.2vw, 18px);
  color: var(--muted);
  max-width: 72ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: linear-gradient(
    180deg,
    rgba(0, 255, 102, 0.12),
    rgba(0, 255, 102, 0.08)
  );
  color: var(--bg);
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0, 255, 102, 0.08), 0 2px 6px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(0, 255, 102, 0.18);
  background-color: var(--accent);
}
.music-section {
  text-align: center;
  margin-top: 48px;
  margin-bottom: 48px;
}

.section-title {
  font-size: clamp(20px, 2.5vw, 28px);
  margin-bottom: 32px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.social-links a {
  transition: transform 0.2s ease-in-out;
}
.social-links a:hover {
  transform: scale(1.1);
}
.social-links svg {
  width: 44px;
  height: 44px;
  display: block;
}

.bio {
  max-width: 72ch;
  margin: 0 auto 32px auto;
  text-align: left;
}

.bio h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  margin-bottom: 32px;
}

.bio h3 {
  font-size: clamp(18px, 2.2vw, 24px);
  margin-top: 32px;
}

.bio h4 {
  font-size: clamp(16px, 2vw, 20px);
  margin-top: 24px;
}

.bio p {
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.6;
  color: var(--muted);
}
.bio ul,
.bio li {
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 16px 0;
  padding-left: 20px;
  list-style: disc;
}

.discography-subtitle {
  font-size: clamp(18px, 2.2vw, 24px);
  margin-top: clamp(32px, 5vw, 48px);
  margin-bottom: 24px;
  color: var(--text);
  font-weight: 700;
  text-align: left;
}

.albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  margin-top: 20px;
}

.album-card {
  text-align: center;
  transition: transform 0.3s ease;
  background: transparent;
  padding: 0;
}
.album-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.album-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  box-shadow: 0 0 12px rgba(26, 255, 0, 0.6);
  margin-bottom: 12px;
}

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

.release-title {
  font-size: clamp(15px, 1.8vw, 17px);
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 4px;
}

.release-year {
  font-size: clamp(13px, 1.5vw, 14px);
  color: var(--muted);
}

.singles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.single-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: transparent;
  border: 1px solid rgba(0, 255, 102, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
  gap: 12px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  cursor: pointer;
}
.single-card:hover {
  border-color: var(--accent);
  background: rgba(0, 255, 102, 0.1);
  box-shadow: 0 0 12px rgba(0, 255, 102, 0.3);
  /* transform: translateX(2px); Карточка плавно отъезжает вправо */
}

.single-card:hover .single-name {
  color: var(--accent);
}
.single-name {
  font-size: clamp(14px, 1.7vw, 16px);
  color: var(--text);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  text-align: left;
}

.single-year {
  font-size: 13px;
  color: var(--muted);
  font-family: monospace;
  white-space: nowrap;
  flex-shrink: 0;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.video-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: transparent;
  border: 1px solid rgba(0, 255, 102, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
  gap: 12px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  cursor: pointer;
}
.video-card:hover {
  border-color: var(--accent);
  background: rgba(0, 255, 102, 0.1);
  box-shadow: 0 0 12px rgba(0, 255, 102, 0.3);
  /* transform: translateX(2px); Карточка плавно отъезжает вправо */
}

.video-card:hover .video-name {
  color: var(--accent);
}

.video-name {
  font-size: clamp(14px, 1.7vw, 16px);
  color: var(--text);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}

.video-platform {
  font-size: 13px;
  color: var(--muted);
  font-family: monospace;
  flex-shrink: 0;
  white-space: nowrap;
}
.terminal-wrapper {
  display: flex;
  justify-content: center;
  padding: 72px 0;
  background: radial-gradient(
    circle at center,
    rgba(0, 255, 120, 0.06),
    transparent 70%
  );
}
.terminal-window {
  width: 100%;
  max-width: 72ch;
  border-radius: 14px;
  background: linear-gradient(145deg, #03140a, #010b05);
  border: 1px solid rgba(0, 255, 102, 0.18);
  box-shadow: 0 0 80px rgba(0, 255, 102, 0.08);
  font-family: "Courier New", monospace;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.terminal-header {
  padding: 15px 20px;
  font-weight: bold;
  letter-spacing: 2px;
  display: flex;
  justify-content: space-between;
  color: #00ff66;
  border-bottom: 1px solid rgba(0, 255, 120, 0.1);
}

.terminal-screen {
  background: #000;
  padding: 30px;
  height: 380px;
  overflow-y: auto;
  font-size: 14px;
  line-height: 1.8;
  position: relative;
  text-align: left;
  color: #ffffff;
  z-index: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: pre-wrap;
}

.terminal-window::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.03) 0px,
    rgba(255, 255, 255, 0.03) 1px,
    transparent 1px,
    transparent 3px
  );
  pointer-events: none;
  z-index: 5;
}

.terminal-window::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(0, 255, 120, 0.08),
    transparent
  );
  animation: scan 6s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 6;
}

.terminal-screen::-webkit-scrollbar {
  width: 6px;
}
.terminal-screen::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.5);
}
.terminal-screen::-webkit-scrollbar-thumb {
  background: rgba(0, 255, 120, 0.3);
  border-radius: 10px;
}

/* Анимации */
@keyframes scan {
  0% {
    top: -120px;
  }
  100% {
    top: 100%;
  }
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.terminal-date {
  color: #00ff66;
}
.cursor {
  display: inline-block;
  width: 10px;
  height: 18px;
  background: #00ff66;
  animation: blink 1s infinite;
  vertical-align: middle;
  margin-top: 5px;
}

.faq-section {
  margin: 32px auto;
  max-width: 72ch;
  text-align: center;
}

.faq-section h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  margin-bottom: 40px;
  color: var(--text);
}

.faq-item {
  margin-bottom: 20px;
  text-align: left;
}

.faq-item details {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

/* Hover эффект */
.faq-item details:hover {
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.faq-item summary {
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  color: var(--text);
  list-style: none;
  position: relative;
  padding-right: 25px;
  transition: color 0.2s ease;
}

.faq-item summary:hover {
  color: var(--accent);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  color: var(--text);
  font-weight: bold;
}

.faq-item details[open] summary::after {
  content: "−";
}

.faq-item p {
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.6;
  color: var(--muted);
  max-width: 72ch;
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item details[open] {
  animation: fadeIn 0.25s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contacts {
  margin-top: clamp(32px, 8vw, 60px);
  text-align: center;
}

.contacts-title {
  font-size: clamp(20px, 2.5vw, 28px);
  margin-bottom: 32px;
}

.contact-socials {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 32px;
  margin-bottom: 32px;
}

.contact-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--muted);
  transition: transform 0.2s ease-in-out, color 0.2s ease-in-out;
  padding: 8px;
}

.contact-socials a:hover {
  transform: scale(1.1);
  color: var(--text);
}

.contact-socials svg {
  width: 100%;
  height: 100%;
  display: block;
}

.footer {
  margin-top: 22px;
  font-size: 14px;
  color: #5b5e5b;
}
#music {
  scroll-margin-top: 28px;
}
#about {
  scroll-margin-top: 28px;
}
#discography {
  scroll-margin-top: 28px;
}
#faq {
  scroll-margin-top: 28px;
}

@media (max-width: 520px) {
  .card {
    padding: 34px 20px;
    border-radius: 12px;
    box-sizing: border-box;
  }
  .btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
  }
  .top-bar {
    flex-direction: column;
    gap: 14px;
  }
  .faq-item details {
    padding: 14px 16px;
  }
  .albums-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .singles-grid {
    grid-template-columns: 1fr;
  }
  .videos-grid {
    grid-template-columns: 1fr;
  }
}
