
:root {
  --black-main: #020403;
  --black-soft: #060908;


  --emerald-main: #1fe6aa;
  --emerald-soft: #17b98a;
  --emerald-dark: #0a6a51;

  --text-main: #e8faf4;
  --text-muted: #8bcdbb;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
}
.about-content p {
  margin-bottom: 16px;
}

.about-content p:last-child {
  margin-bottom: 0;
}


body {
  font-family: Inter, Arial, sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(
      50% 30% at 50% 0%,
      rgba(31, 230, 170, 0.08), 
      transparent 70%
    ),
    linear-gradient(
      180deg,
      var(--black-soft),
      var(--black-main)
    );
  overflow-x: hidden;
  position: relative;
}


body::before,
body::after {
  content: "";
  position: fixed;
  top: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(31, 230, 170, 0.22), 
    transparent 70%
  );
  filter: blur(60px); 
  opacity: 0.45;     
  pointer-events: none;
  animation: floatDroplet 18s linear infinite;
}

body::after {
  left: auto;
  right: 10%;
  width: 200px;
  height: 200px;
  animation-duration: 25s;
  opacity: 0.3; 
}

.section {
  padding-top: 140px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;

  align-items: center;

  padding: 20px 48px;
  background: rgba(2, 4, 3, 0.7);
  backdrop-filter: blur(14px);

  border-bottom: 1px solid rgba(31, 230, 170, 0.18); 
}
.header nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  align-items: center;
}
.logo {
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--emerald-main);
}


nav a {
  margin-left:32px;
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  transition: all 0.3s ease;
}

nav a:hover {
  color: var(--emerald-main);
  text-shadow:
    0 0 4px rgba(31, 230, 170, 0.6),
    0 0 10px rgba(31, 230, 170, 0.35);
}
nav a.active {
    color: var(--emerald-main);
  text-shadow:
    0 0 4px rgba(31, 230, 170, 0.6),
    0 0 10px rgba(31, 230, 170, 0.35);
}

.section {
  padding: 72px 48px;
}

.section h2 {
  font-size: 26px;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
  color: var(--text-main);
}

.grid .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}



a.listen {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 26px;
  border-radius: 30px;
  text-decoration: none;
  color: var(--emerald-main);
  border: 1px solid rgba(31, 230, 170, 0.45);
  transition: all 0.3s ease;
}

a.listen:hover {
  background: rgba(31, 230, 170, 0.15);
  color: #022b22;
  box-shadow:
    0 0 16px rgba(31, 230, 170, 0.45),
    0 0 35px rgba(31, 230, 170, 0.35);
}

.snap-container {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y proximity;
  scroll-behavior: smooth;
}


.screen {
  min-height: 120vh;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 64px 48px;
}
html {
  scroll-behavior: smooth;
}
.section-content {
  width: 100%;
  max-width: 1200px;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(2, 4, 3, 0.9);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    rgba(31, 230, 170, 0.35),
    rgba(10, 106, 81, 0.6)
  );
  border-radius: 10px;
  border: 2px solid rgba(2, 4, 3, 0.9);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    rgba(31, 230, 170, 0.6),
    rgba(10, 106, 81, 0.9)
  );
}

#about p {
  max-width: 720px;
  line-height: 1.7;
  font-size: 20px;
  text-align: justify;
  color: var(--text-muted);
}


.about-section {
  max-width: 1500px;
  margin: 0 auto;

  height: 100vh;          
  max-height: 720px;   
  min-height: 520px;   


  position: relative;
  overflow: hidden;

  display: flex;
  align-items: center;

  border-radius: 28px;

  background:
    linear-gradient(
      180deg,
      rgba(31, 230, 170, 0.08),
      rgba(2, 4, 3, 0.96)
    );

  transition: transform 0.4s ease, box-shadow 0.4s ease;
}


.about-section {
  position: relative;
  background: var(--black-main);
  overflow: hidden;
    border: 1px solid rgba(31,230,170,0.35);

  display: flex;
  align-items: center;
}
#about {
  margin-top: 150px;
}
.about-section:hover {
  transform: translateY(-8px);
  box-shadow:
    0 0 0 1px rgba(31, 230, 170, 0.45),
    0 0 22px rgba(31, 230, 170, 0.35),
    0 0 50px rgba(31, 230, 170, 0.25);
}


.about-section:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 0 1px rgba(31, 230, 170, 0.35),
    0 0 30px rgba(31, 230, 170, 0.25),
    0 0 60px rgba(31, 230, 170, 0.2);
}
.about-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 20px; 
  align-items: center;
  padding: 80px 100px;
  width: 100%;
}


.about-image {
  position: relative;
  transform: translateX(40px);
}

.about-content {
  position: relative;
  z-index: 2;
  margin-left: 0; 
  padding-left: 40px; 
  padding-right: 48px;
}

.about-text {
  transform: translateX(0); 
}

.about-content p {
  color: var(--text-main);
  margin-bottom: 16px;
}


.artists-section {
  padding-left: 0;
  padding-right: 0;

  scroll-snap-align: center;
}

.artists-carousel {
  position: relative;
  width: 100%;
  margin-top: 60px;
}


.artists-row {
  display: flex;
  gap: 32px;
  padding: 0px 0px 0px 32px; 

  transition: transform 0.6s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
#artists {
  min-height: calc(100vh + 200px);
}


.artist-card {
  flex: 0 0 400px;
  height: 600px;
  border-radius: 22px;
  background: #000;
  border: 1px solid rgba(31,230,170,0.35);

  display: flex;
  flex-direction: column;

  padding: 20px;
}

.artist-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;      
  object-position: top;    
  display: block;
}

.artist-media {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(31,230,170,0.35);
  position: relative;
  background: #000;
}

.artist-nav {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  z-index: 1000;
  background: rgba(2,4,3,0.85);
  border: 1px solid rgba(31,230,170,0.4);
  color: var(--emerald-main);

  font-size: 32px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: box-shadow .3s ease, transform .3s ease;
}

.artist-nav:hover {
  transform: scale(1.05);
  box-shadow:
    0 0 16px rgba(31,230,170,.4),
    0 0 32px rgba(31,230,170,.25);
}
.artists-nav {
  position: absolute;
  left: 50%;
  bottom: -80px;              
  transform: translateX(-50%);

  display: flex;
  gap: 32px;
  z-index: 20;
}

.artists-row::-webkit-scrollbar {
  height: 8px;
}
.artists-row::-webkit-scrollbar-thumb {
  background: rgba(31,230,170,0.4);
  border-radius: 10px;
}



.artist-name {
  margin-top: 16px;
  font-size: 18px;
  color: var(--text-muted);

  display: inline-block;  
  align-self: flex-start; 
}


.artist-name::after {
  content: "";
  display: block;
  width: 100%;           
  height: 2px;
  margin-top: 6px;

  background: var(--emerald-main);

  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(.4,0,.2,1);
}


.artist-card:hover .artist-name::after {
  transform: scaleX(0.5);  
}


.artist-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 0 0 1px rgba(31, 230, 170, 0.45),
    0 0 22px rgba(31, 230, 170, 0.35),
    0 0 50px rgba(31, 230, 170, 0.25);
}
.section-title {
  font-size: clamp(42px, 6vw, 70px);
  letter-spacing: 0.14em;
  color: var(--text-main);

  transform: translateX(0);
  opacity: 0;

  transition:
    transform 0.8s cubic-bezier(.4,0,.2,1),
    opacity 0.6s ease;
}


.section-title.is-visible {
  opacity: 1;
  transform: translateX(40px);
}


.section-title.is-visible.is-settle {
  transform: translateX(0);
}
#artists .section-title {
  font-size: 70px;
}
#artists {
  padding-top: 130px; 
}
#artists.screen {
  align-items: flex-start;   
  justify-content: flex-start;
}

#artists {
  scroll-snap-align: center;
}
.artists-carousel {
  position: relative;
  width: 100%;
}
#artists{
  overflow-x: hidden;   
  overflow-y: visible;  
}


.artist-card::before {
  
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;

  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(31, 230, 170, 0.18),
    transparent 70%
  );

  opacity: 0;
  pointer-events: none;

  transition: opacity 0.4s ease;
}

.artist-card:hover::before {
  opacity: 1;
}

.freshmen-section {
  padding-left: 0;
  padding-right: 0;

  scroll-snap-align: center;
}

.freshmen-carousel {
  position: relative;
  width: 100%;
  margin-top: 60px;
}

.freshmen-row {
  display: flex;
  gap: 32px;
  padding: 0px 0px 0px 32px; 

  transition: transform 0.6s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
#freshmen {
  min-height: calc(100vh + 200px);
}


.freshmen-card {
  flex: 0 0 400px;
  height: 600px;
  border-radius: 22px;
  background: #000;
  border: 1px solid rgba(31,230,170,0.35);

  display: flex;
  flex-direction: column;

  padding: 20px;
}

.freshmen-nav {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  z-index: 1000;
  background: rgba(2,4,3,0.85);
  border: 1px solid rgba(31,230,170,0.4);
  color: var(--emerald-main);

  font-size: 32px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: box-shadow .3s ease, transform .3s ease;
}

.freshmen-nav:hover {
  transform: scale(1.05);
  box-shadow:
    0 0 16px rgba(31,230,170,.4),
    0 0 32px rgba(31,230,170,.25);
}
.freshmen-nav-wrap {
  position: absolute;
  left: 50%;
  bottom: -80px;             
  transform: translateX(-50%);

  display: flex;
  gap: 32px;
  z-index: 20;
}


.freshmen-row::-webkit-scrollbar {
  height: 8px;
}
.freshmen-row::-webkit-scrollbar-thumb {
  background: rgba(31,230,170,0.4);
  border-radius: 10px;
}

.freshmen-media {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #000;
  border: 1px solid rgba(31,230,170,0.35);
}

.freshmen-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;    
  object-position: top;
  display: block;
}



.freshmen-name {
  margin-top: 16px;
  font-size: 18px;
  color: var(--text-muted);

  display: inline-block;   
  align-self: flex-start; 
}

.freshmen-name::after {
  content: "";
  display: block;
  width: 100%;              
  height: 2px;
  margin-top: 6px;

  background: var(--emerald-main);

  transform: scaleX(0);
  transform-origin: left;  
  transition: transform 0.45s cubic-bezier(.4,0,.2,1);
}


.freshmen-card:hover .freshmen-name::after {
  transform: scaleX(0.5);   
}


.freshmen-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 0 0 1px rgba(31, 230, 170, 0.45),
    0 0 22px rgba(31, 230, 170, 0.35),
    0 0 50px rgba(31, 230, 170, 0.25);
}

#freshmen .section-title {
  font-size: 70px;
}

#freshmen {
  padding-top: 130px;
}

#freshmen.screen {
  align-items: flex-start;  
  justify-content: flex-start;
}

#freshmen {
  scroll-snap-align: center;
}

.freshmen-carousel {
  position: relative;
  width: 100%;
}

#freshmen{
  overflow-x: hidden;   
  overflow-y: visible;  
}


.freshmen-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;

  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(31, 230, 170, 0.18),
    transparent 70%
  );

  opacity: 0;
  pointer-events: none;

  transition: opacity 0.4s ease;
}

.freshmen-card:hover::before {
  opacity: 1;
}


.releases-section {
  padding-left: 0;
  padding-right: 0;

  scroll-snap-align: center;
}

.releases-carousel {
  position: relative;
  width: 100%;
  margin-top: 60px;
}


.releases-row {
  display: flex;
  gap: 32px;
  padding: 0px 0px 0px 32px; 

  transition: transform 0.6s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

#releases {
  min-height: calc(100vh + 200px);
}

.release-card {
  flex: 0 0 400px;
  height: 600px;
  border-radius: 22px;
  background: #000;
  border: 1px solid rgba(31,230,170,0.35);

  display: flex;
  flex-direction: column;
  box-shadow:
    0 0 16px rgba(31, 230, 170, 0.45);
  padding: 20px;
}

.release-nav {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  z-index: 1000;
  background: rgba(2,4,3,0.85);
  border: 1px solid rgba(31,230,170,0.4);
  color: var(--emerald-main);

  font-size: 32px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: box-shadow .3s ease, transform .3s ease;
}

.release-nav:hover {
  transform: scale(1.05);
  box-shadow:
    0 0 16px rgba(31,230,170,.4),
    0 0 32px rgba(31,230,170,.25);
}

.releases-nav {
  position: absolute;
  left: 50%;
  bottom: -80px;             
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  gap: 32px;
  z-index: 20;
}


.releases-row::-webkit-scrollbar {
  height: 8px;
}

.releases-row::-webkit-scrollbar-thumb {
  background: rgba(31,230,170,0.4);
  border-radius: 10px;
}

.release-name {
  margin-top: 16px;
  font-size: 18px;
  color: var(--text-muted);

  display: inline-block;   
  align-self: flex-start; 
}


.release-name::after {
  content: "";
  display: block;
  width: 100%;             
  height: 2px;
  margin-top: 6px;

  background: var(--emerald-main);

  transform: scaleX(0);
  transform-origin: left;  
  transition: transform 0.45s cubic-bezier(.4,0,.2,1);
}


.release-card:hover .release-name::after {
  transform: scaleX(0.5);   
}


.release-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 0 0 1px rgba(31, 230, 170, 0.45),
    0 0 22px rgba(31, 230, 170, 0.35),
    0 0 50px rgba(31, 230, 170, 0.25);
}
.release-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;       
  object-position: top;    
  display: block;
}

.release-media {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(31,230,170,0.35);
  position: relative;
  background: #000;
}

#releases .section-title {
  font-size: 70px;
}

#releases {
  padding-top: 130px; 
}

#releases.screen {
  align-items: flex-start;   
  justify-content: flex-start;
}

#releases {
  scroll-snap-align: center;
}

.releases-carousel {
  position: relative;
  width: 100%;
}

#releases{
  overflow-x: hidden;     
  overflow-y: visible; 
}



.release-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;

  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(31, 230, 170, 0.18),
    transparent 70%
  );

  opacity: 0;
  pointer-events: none;

  transition: opacity 0.4s ease;
}

.release-card:hover::before {
  opacity: 1;
}


.release-meta {
  display: flex;
  align-items: center;
}

.release-play {
  margin-right: 12px;

  width: 44px;
  height: 44px;
  border-radius: 50%;

  background: rgba(2,4,3,0.95);
  border: 2px solid var(--emerald-main);
  color: var(--emerald-main);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  line-height: 1;
  z-index: 10;

  transform: translateY(3px); 
}
.release-card {
  text-decoration: none;
  color: inherit;
}

.release-card:visited {
  color: inherit;
}

.release-card * {
  text-decoration: none;
}


.artist-nav,
.release-nav,
.freshmen-nav {
  display: flex;
  align-items: center;
  justify-content: center;
    z-index: 1000;

  line-height: 1;
  padding-bottom: 5px; 
}


.artist-nav.prev,
.release-nav.prev,
.freshmen-nav.prev {
  padding-right: 2px;
}

.artist-nav.next,
.release-nav.next,
.freshmen-nav.next {
  padding-left: 2px;
  
}
.release-play {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 0px;
  line-height: 1;
}

.release-play {
  padding-left: 4px; 
}


.partners-section {
  padding-left: 0;
  padding-right: 0;

  scroll-snap-align: center;
}

.partners-carousel {
  position: relative;
  width: 100%;
  margin-top: 60px;
}

.partners-row {
  display: flex;
  gap: 32px;
  padding: 0px 0px 0px 32px; 

  transition: transform 0.6s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

#partners {
  min-height: calc(100vh + 200px);
}



.partner-nav {
  width: 56px;
  height: 56px;
  border-radius: 50%;

  background: rgba(2,4,3,0.85);
  border: 1px solid rgba(31,230,170,0.4);
  color: var(--emerald-main);

  font-size: 32px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: box-shadow .3s ease, transform .3s ease;
}



.partners-nav {
  position: absolute;
  left: 50%;
  bottom: -80px;
  transform: translateX(-50%);

  display: flex;
  gap: 32px;
  z-index: 20;
}


.partner-image {
  position: absolute;
  inset: 0;
  height: 90%;

  background-size: cover;
  background-position: center;

  filter: contrast(1.05) brightness(0.9);
}


.partner-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0) 40%,
    rgba(0,0,0,0.85) 100%
  );
}



#partners {
  padding-top: 130px; 
}
#partners .section-title {
  font-size: 70px;
}


.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.partner-card img {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;

  filter: brightness(0.95);
  transition: transform .4s ease;
}
.partner-card:hover img {
  transform: scale(1.05);
}

.partner-card {
  width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 14px;
}


.partner {
  width: 100%;
  height: 180px;


  background-repeat: no-repeat;
  background-position: center;
  background-size: contain; 

  transition: transform .4s ease, box-shadow .4s ease;
}

.partner-card:hover .partner {
  transform: scale(1.05);
}


.partner-name {
  font-size: 16px;
  letter-spacing: 0.06em;
  color: var(--text-muted);

  position: relative;
}


.partner-name::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 6px;

  background: var(--emerald-main);

  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}

.partner-card:hover .partner-name::after {
  transform: scaleX(0.5);
}


.contacts-links {
  display: flex;
  flex-direction: column;
  gap: 42px;
  align-self: flex-start;
}


.contact-link {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  color: var(--text-main);
  text-decoration: none;

  display: inline-flex;
  align-items: center;
  gap: 16px;

  position: relative;
}

.contact-text {
  position: relative;
  display: inline-block;
  padding-bottom: 10px; 
}

.contact-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;

  width: 100%;          
  height: 3px;

  background: var(--emerald-main);

  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}

.contact-link:hover .contact-text::after {
  transform: scaleX(0.5); 
}


.contact-link .arrow {
  font-size: 0.9em;
  transform: translateY(-2px);
}

.contacts-info {

  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);

  display: flex;
  flex-direction: column;
  gap: 10px;
    position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  margin: 0;              
  text-align: center;
}

.contacts-dev {
  margin-top: 24px;
  opacity: 0.6;
}
#contacts.screen {
  min-height: 100vh;       
  scroll-snap-align: start;
  position: relative;
}

.contacts-layout {
   display: block;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: start;
}

.contact-form {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  padding: 32px;
  border: 2px solid var(--emerald-main);
  border-radius: 24px;
  background: rgba(2,4,3,0.6);
}

.contact-form h3 {
  margin-bottom: 18px;
  font-size: 20px;
  text-align: center;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 14px;
  padding: 10px 12px;
  border-radius: 14px;
  background: #020403;
  color: #e8faf4;
  border: 1px solid var(--emerald-main);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  margin-top: 6px;
  padding: 10px;
  cursor: pointer;
border-radius: 20px;
  background: transparent;
  color: var(--emerald-main);
  border: 2px solid var(--emerald-main);
}
.contacts-links {
  position: absolute;
  left: 48px;
  top: 50%;
  transform: translateY(-50%);
}

.contacts-links a {
  width: 42px;
  height: 42px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  border: 1.5px solid rgba(31, 230, 170, 0.45);

  color: var(--emerald-main);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.contacts-links a::after {
  content: attr(data-tooltip);

  position: absolute;
  left: 56px;
  top: 50%;
  transform: translateY(-50%) translateX(-6px);

  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 14px;

  font-size: 13px;
  color: var(--emerald-main);
  background: rgba(2,4,3,0.95);
  border: 1px solid rgba(31,230,170,0.5);

  opacity: 0;
  pointer-events: none;

  box-shadow: 0 0 12px rgba(31,230,170,0.25);
  transition: opacity .25s ease, transform .25s ease;
}

.contacts-links a:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.contacts-links a:hover {
  transform: translateY(-3px);
  background: rgba(31, 230, 170, 0.08);
  box-shadow: 0 0 0 2px rgba(31, 230, 170, 0.15);
}

.contact-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}


@media (max-width: 768px) {

  .section {
    padding: 96px 20px;
  }

  .section-title {
    font-size: clamp(28px, 8vw, 42px);
    letter-spacing: 0.12em;
    margin-bottom: 24px;
  }


  .header {
    padding: 14px 20px;
  }

  .header nav {
    display: none; 
  }

  .logo {
    font-size: 14px;
    letter-spacing: 0.18em;
  }

  
  #about {
    margin-top: 80px;
  }
  @media (max-width: 768px) {

  #about.screen {
    min-height: auto;   
  }

  #about {

    padding: 40px 16px;
  }

  .about-section {
    height: auto;
    min-height: auto;
    max-height: none;

    padding: 24px 18px; 
  }
}

@media (max-width: 768px) {
  #about {
    max-width: 92%;
  }

}
  .about-section {
    height: auto;
    min-height: auto;
    max-height: none;

    flex-direction: column;
    border-radius: 22px;
  }

  .about-image {
    position: relative;
    height: 220px;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .about-content {
    max-width: 100%;
    padding: 24px 20px;
    margin-left: 0;
  }

  #about p {
    font-size: 16px;
    text-align: justify;
  }

  
  .artists-row,
  .freshmen-row,
  .releases-row {
    gap: 20px;
    padding-left: 20px;
  }

  .artist-card,
  .freshmen-card,
  .release-card {
    flex: 0 0 280px;
    height: 420px;
    padding: 16px;
  }

  .artist-media,
  .freshmen-media,
  .release-media {
    border-radius: 14px;
  }

  .artist-name,
  .freshmen-name,
  .release-name {
    font-size: 16px;
  }

 
  .artists-nav,
  .freshmen-nav-wrap,
  .releases-nav {
    bottom: -60px;
    gap: 20px;
  }

  .artist-nav,
  .freshmen-nav,
  .release-nav {
    width: 44px;
    height: 44px;
    font-size: 24px;
  }

 
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
  }

  .partner-card {
    width: 100%;
  }

  .partner {
    height: 120px;
  }

  .partner-name {
    font-size: 14px;
    text-align: center;
  }


  #contacts.screen {
    padding-top: 120px;
  }

  .contacts-links {
    position: static;
    flex-direction: row;
    justify-content: center;
    gap: 24px;
    transform: none;
    margin-bottom: 40px;
  }

  .contacts-links a::after {
    display: none; 
  }

  .contact-form {
    position: static;
    transform: none;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    padding: 24px;
  }

  .contact-form h3 {
    font-size: 18px;
  }

  .contacts-info {
    position: static;
    transform: none;
    margin-top: 32px;
    text-align: center;
  }
}
@media (max-width: 768px) {

  
  .snap-container {
    height: auto;
    overflow-y: auto;
    scroll-snap-type: none;
  }

 
  .screen {
    min-height: auto;
    scroll-snap-align: none;
    scroll-snap-stop: normal;
  }

}


.about-section .about-inner {
  display: grid !important;
  grid-template-columns: 60% 40% !important; 
  gap: 20px !important;
  align-items: center !important;
  width: 100% !important;
  padding: 80px 60px !important;
  
  transform: none !important;
  transition: none !important;
}


.about-image {
  width: 100% !important;
  height: auto !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;

  transform: none !important;
  position: static !important;
  margin: 0 !important;
  padding: 0 !important;
}


.about-image::before,
.about-image::after {
  display: none !important;
}


.about-image img {
  width: 100% !important;
  max-width: 700px !important; 
  height: auto !important;
  object-fit: contain !important;
 
  filter: drop-shadow(0 0 30px rgba(31, 230, 170, 0.25)) !important;
}

.about-content {
  width: 100% !important;

  transform: none !important;
  margin: 0 !important;
  padding: 0 0 0 30px !important;
  

  color: var(--text-main) !important;
}


.about-text {
  width: 100% !important;

  transform: none !important;
  margin: 0 !important;
  padding: 0 !important;
}


#about-content p {
  font-size: 18px !important;
  line-height: 1.7 !important;
  margin-bottom: 24px !important;
  color: var(--text-muted) !important;
}

#about-content p:last-child {
  margin-bottom: 0 !important;
}

@media (max-width: 1024px) {
  .about-section .about-inner {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    padding: 60px 40px !important;
  }
  
  .about-content {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  .about-image img {
    max-width: 400px !important;
    margin: 0 auto !important;
  }
}

@media (max-width: 768px) {
  .about-section .about-inner {
    padding: 40px 20px !important;
    gap: 30px !important;
  }
  
  #about-content p {
    font-size: 16px !important;
  }
  
  .about-image img {
    max-width: 300px !important;
  }
}

.about-section::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(31, 230, 170, 0.18),
    transparent 70%
  );

  opacity: 1;
  pointer-events: none;

  transition: opacity 0.35s ease;
}
.about-section:hover::after {
  opacity: 1;
}


@media (max-width: 768px) {


  .screen,
  .section {
    background: #000 !important;
  }

  .screen::before,
  .screen::after,
  .section::before,
  .section::after {
    display: none !important;
    content: none !important;
  }

}
@media (max-width: 768px) {

  .artist-card,
  .freshmen-card,
  .release-card,
  .partner-card {
    transform: translateY(-6px);
    box-shadow:
      0 0 0 1px rgba(31,230,170,0.35),
      0 0 24px rgba(31,230,170,0.25),
      0 0 48px rgba(31,230,170,0.18);
  }

}
@media (max-width: 768px) {

  .artist-card::before,
  .freshmen-card::before,
  .release-card::before,
  .partner-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;

    background: linear-gradient(
      120deg,
      transparent 35%,
      rgba(31,230,170,0.16),
      transparent 65%
    );

    opacity: 1;
    pointer-events: none;
  }

}
@media (max-width: 768px) {

  .artist-name::after,
  .freshmen-name::after,
  .release-name::after,
  .partner-name::after {
    transform: scaleX(0.5);
  }

}
@media (max-width: 768px) {

  .artist-card:hover,
  .freshmen-card:hover,
  .release-card:hover,
  .partner-card:hover {
    transform: none;
    box-shadow: none;
  }

}
@media (max-width: 768px) {

  .about-section {
    box-shadow:
      0 0 0 1px rgba(31,230,170,0.35),
      0 0 40px rgba(31,230,170,0.18);
  }

  .about-section::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
      120deg,
      transparent 35%,
      rgba(31,230,170,0.18),
      transparent 65%
    );

    opacity: 1;
    pointer-events: none;
  }

}
@media (max-width: 768px) {

  .about-section::after {
    display: block !important;
    content: "" !important;
  }

}
@media (max-width: 768px) {

  .screen,
  .section,
  .about-section {
    height: auto !important;
    min-height: unset !important;
  }

}
@media (max-width: 768px) {

  .screen.about-section {
    box-shadow:
      0 0 0 1px rgba(31,230,170,0.35),
      0 0 40px rgba(31,230,170,0.18);
  }

}
@media (max-width: 768px) {

  .snap-container,
  main,
  .wrapper {
    height: auto !important;
    min-height: unset !important;
    overflow: visible !important;
  }

}
@media (max-width: 768px) {
  .page-bottom-space {
    height: 120px;
  }
}

@media (max-width: 768px) {
  #about {
    margin-bottom: 100px !important; 
  }
  

  .about-section {
    margin-bottom: 0 !important;
    padding-bottom: 60px !important;
  }
}

@media (max-width: 768px) {
  .about-section {
    box-shadow:
      0 0 0 2px rgba(31, 230, 170, 0.4),
      0 0 50px rgba(31, 230, 170, 0.25),
      0 0 100px rgba(31, 230, 170, 0.15) !important;
  }
}