@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  --sw: 75px;
  --pk: #692ac9;
  --bg: #0d0d14;
  --bg2: #111119;
  --wh: #fff;
  --gr: #777;
  --bd: rgba(255, 255, 255, 0.07)
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--wh);
  overflow-x: hidden
}

a {
  text-decoration: none;
  color: inherit
}

img {
  max-width: 100%;
  display: block
}

ul {
  list-style: none
}

#sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sw);
  height: 100vh;
  background: #090910;
  border-right: 1px solid var(--bd);
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0
}

.sb-logo-box {
  width: 46px;
  height: 46px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden
}

.sb-logo-box img {
  width: 46px;
  height: 46px;
  object-fit: contain
}

.sb-logo-box span {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #000
}

.sb-ham {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 12px;
  width: 100%;
  align-items: center;
  background: none;
  border: none
}

.sb-ham span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--wh);
  border-radius: 2px;
  transition: all .4s
}

.sb-copy {
  writing-mode: vertical-rl;
  font-size: .5rem;
  color: rgba(255, 255, 255, .25);
  letter-spacing: 3px;
  transform: rotate(180deg);
  text-transform: uppercase;
  white-space: nowrap;
  user-select: none
}

#nav-ov {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  padding: 28px 48px 48px;
  transform: translateY(-100%);
  transition: transform .55s cubic-bezier(.77, 0, .175, 1);
  pointer-events: none;
  overflow-y: auto
}

#nav-ov.open {
  transform: translateY(0);
  pointer-events: all
}

.ov-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  margin-bottom: 0
}

.ov-logo {
  display: flex;
  align-items: center;
  gap: 12px
}

.ov-logo-box {
  width: 46px;
  height: 46px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden
}

.ov-logo-box img {
  width: 46px;
  height: 46px;
  object-fit: contain
}

.ov-logo-box span {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #000
}

.ov-logo-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: .75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7)
}

.ov-close {
  width: 48px;
  height: 48px;
  cursor: pointer;
  font-size: 1.8rem;
  color: #fff;
  opacity: .7;
  transition: opacity .3s, color .3s;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center
}

.ov-close:hover {
  opacity: 1;
  color: var(--pk)
}

.ov-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 0
}

.ov-links a {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: color .3s, letter-spacing .3s
}

.ov-links a:first-child {
  border-top: 1px solid rgba(255, 255, 255, .08)
}

.ov-links a:hover {
  color: var(--pk);
  letter-spacing: 6px
}

#page {
  margin-left: var(--sw)
}

.mob-hdr {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: #090910;
  border-bottom: 1px solid var(--bd);
  z-index: 850;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px
}

.mob-hdr-logo {
  display: flex;
  align-items: center;
  gap: 10px
}

.mob-logo-box {
  width: 38px;
  height: 38px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden
}

.mob-logo-box img {
  width: 38px;
  height: 38px;
  object-fit: contain
}

.mob-logo-box span {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  color: #000
}

.mob-logo-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: .7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6)
}

.mob-ham {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none
}

.mob-ham span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px
}

#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a0040
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0
}

.hero-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35;
  mix-blend-mode: luminosity;
  filter: grayscale(80%)
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #4500aa, #8800cc 40%, #3a0080 70%, #1a0050);
  z-index: 1;
  mix-blend-mode: multiply
}

.hero-rays {
  position: absolute;
  inset: -50%;
  z-index: 2;
  background: repeating-conic-gradient(from 0deg at 50% 50%, rgba(255, 255, 255, .025) 0deg, transparent 4deg, transparent 10deg);
  animation: hspin 80s linear infinite;
  transform-origin: center
}

@keyframes hspin {
  to {
    transform: rotate(360deg)
  }
}

.hero-circles {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none
}

.hero-circles span {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  animation: hfloat 6s ease-in-out infinite
}

.hero-circles span:nth-child(1) {
  width: 90px;
  height: 90px;
  top: 12%;
  right: 6%;
  animation-delay: 0s
}

.hero-circles span:nth-child(2) {
  width: 40px;
  height: 40px;
  top: 22%;
  right: 19%;
  animation-delay: 1.2s
}

.hero-circles span:nth-child(3) {
  width: 65px;
  height: 65px;
  bottom: 22%;
  left: 10%;
  animation-delay: 2.3s
}

.hero-circles span:nth-child(4) {
  width: 28px;
  height: 28px;
  bottom: 38%;
  left: 25%;
  animation-delay: .8s
}

.hero-circles span:nth-child(5) {
  width: 110px;
  height: 110px;
  top: 55%;
  right: 3%;
  animation-delay: 1.8s
}

.hero-circles span:nth-child(6) {
  width: 50px;
  height: 50px;
  top: 40%;
  left: 6%;
  animation-delay: 3s
}

@keyframes hfloat {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-18px)
  }
}

.hero-bgtxt {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  overflow: hidden;
  padding: 0 20px;
  will-change: transform;
  transform-origin: center center
}

.hero-bgtxt span {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(70px, 14vw, 190px);
  text-transform: uppercase;
  color: #fff;
  letter-spacing: -4px;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  animation: htxt 1.4s cubic-bezier(.23, 1, .32, 1) both
}

@keyframes htxt {
  from {
    opacity: 0;
    letter-spacing: 20px
  }

  to {
    opacity: 1;
    letter-spacing: -4px
  }
}

.hero-person {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none
}

.hero-person img {
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: bottom;
  filter: grayscale(100%) contrast(1.1)
}

.hero-play {
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  width: 68px;
  height: 68px;
  border: 2px solid rgba(255, 255, 255, .85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .35s;
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, .06)
}

.hero-play:hover {
  background: rgba(255, 255, 255, .18);
  transform: translateX(-50%) scale(1.12)
}

.hero-play svg {
  width: 24px;
  height: 24px;
  fill: #fff;
  margin-left: 5px
}

#platforms {
  background: var(--bg);
  border-bottom: 1px solid var(--bd)
}

.pl-row {
  display: flex;
  justify-content: center;
  border-top: 1px solid var(--bd);
  border-bottom: 1px solid var(--bd)
}

.pl-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 50px 40px;
  border-right: 1px solid var(--bd);
  text-align: center;
  transition: background .35s;
  text-decoration: none;
  flex: 1
}

.pl-btn:last-child {
  border-right: none
}

.pl-btn:hover {
  background: rgba(160, 32, 160, .08)
}

.pl-btn svg {
  width: 36px;
  height: 36px;
  transition: transform .35s
}

.pl-btn:hover svg {
  transform: scale(1.2) rotate(-6deg)
}

.pl-btn span {
  font-family: 'Oswald', sans-serif;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gr);
  font-weight: 500;
  transition: color .3s
}

.pl-btn:hover span {
  color: #fff
}

#about {
  background: var(--bg2);
  border-bottom: 1px solid var(--bd);
  position: relative;
  overflow: hidden;
  padding: 100px 0
}

.about-bgtxt {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
  will-change: transform
}

.about-bgtxt span {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(100px, 16vw, 220px);
  text-transform: uppercase;
  color: rgba(255, 255, 255, .04);
  letter-spacing: -4px;
  white-space: nowrap;
  line-height: 1;
  display: block
}

.about-in {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 0 60px
}

.ab-left {}

.ab-lbl {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--pk);
  margin-bottom: 14px
}

.ab-yrs {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pk);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px
}

.ab-yrs::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, .12)
}

.ab-body {
  color: var(--gr);
  font-size: .95rem;
  line-height: 1.95;
  margin-bottom: 18px
}

.ab-right {}

.ab-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.1;
  margin-bottom: 22px
}

.ab-desc {
  color: var(--gr);
  font-size: .95rem;
  line-height: 1.95;
  margin-bottom: 28px
}

.btn-gs {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--pk);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 16px 44px;
  transition: all .35s;
  position: relative;
  overflow: hidden
}

.btn-gs::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s ease;
  z-index: 0
}

.btn-gs:hover::before {
  transform: scaleX(1)
}

.btn-gs:hover {
  color: var(--pk)
}

.btn-gs>* {
  position: relative;
  z-index: 1
}

.btn-gs svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform .3s
}

.btn-gs:hover svg {
  transform: translateX(5px)
}

#best-songs {
  background: var(--bg);
  border-bottom: 1px solid var(--bd)
}

.sec-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  text-transform: uppercase;
  letter-spacing: 4px;
  text-align: center;
  padding: 70px 60px 50px;
  color: #fff;
  margin: 0
}

.sgrid {
  display: grid;
  gap: 35px;
  margin: 10px 18%;
  grid-template-columns: repeat(3, 1fr)
}

.sc {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  display: block;
  cursor: pointer
}

.sc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s ease, filter .45s ease;
  display: block
}

.sc:hover img {
  transform: scale(1.07);
  filter: brightness(.6)
}

.sc-ph {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden
}

.sc-ph-bg {
  position: absolute;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(50px, 8vw, 110px);
  text-transform: uppercase;
  color: rgba(0, 0, 0, .2);
  white-space: nowrap;
  letter-spacing: -2px;
  pointer-events: none;
  user-select: none
}

.sc-ph-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 20px
}

.sc-ph-play {
  width: 48px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: all .3s
}

.sc-ph-play svg {
  width: 16px;
  height: 16px;
  margin-left: 3px
}

.sc:hover .sc-ph-play {
  background: rgba(255, 255, 255, .2);
  border-color: #fff
}

.sc-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .9) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .45s
}

.sc:hover .sc-ov {
  opacity: 1
}

.sc-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
  transform: translateY(12px);
  opacity: 0;
  transition: all .45s
}

.sc:hover .sc-info {
  transform: translateY(0);
  opacity: 1
}

.sc-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 12px
}

.sc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pk);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 9px 22px;
  transition: all .3s
}

.sc-btn:hover {
  background: #fff;
  color: var(--pk)
}

.sc-btn svg {
  width: 12px;
  height: 12px;
  fill: currentColor
}

#latest-songs {
  background: var(--bg2);
  border-bottom: 1px solid var(--bd);
  padding-bottom: 70px
}

.evsec {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 60px
}

.evlist {
  display: flex;
  flex-direction: column
}

.evrow {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--bd);
  gap: 32px;
  transition: background .3s, padding-left .3s
}

.evrow:first-child {
  border-top: 1px solid var(--bd)
}

.evrow:hover {
  background: rgba(255, 255, 255, .025);
  padding-left: 12px
}

.ev-info {
  display: flex;
  flex-direction: column;
  gap: 5px
}

.ev-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  transition: color .3s
}

.evrow:hover .ev-name {
  color: var(--pk)
}

.ev-sub {
  font-size: .82rem;
  color: var(--gr);
  line-height: 1.6
}

.btn-listen {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, .3);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 11px 26px;
  transition: all .35s;
  white-space: nowrap;
  flex-shrink: 0
}

.btn-listen:hover {
  border-color: var(--pk);
  background: var(--pk);
  color: #fff
}

.btn-listen svg {
  width: 12px;
  height: 12px;
  fill: currentColor
}

#social-section {
  background: #1a0040;
  padding: 0 15% 50px;
  border-bottom: 1px solid var(--bd)
}

.soc-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 4px;
  text-align: center;
  color: #fff;
  padding: 60px 60px 40px;
  margin: 0
}

.soc-grid {
  display: flex;
  gap: 25px;
  justify-content: center
}

.soc-card {
  display: block;
  position: relative;
  overflow: hidden;
  flex: 1;
  min-width: 0;
  aspect-ratio: 1/1;
  text-decoration: none
}

.soc-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s, filter .4s;
  display: block
}

.soc-card:hover img {
  transform: scale(1.08);
  filter: brightness(.5)
}

.soc-card-hover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(0, 0, 0, .55);
  opacity: 0;
  transition: opacity .4s
}

.soc-card:hover .soc-card-hover {
  opacity: 1
}

.soc-card-hover svg {
  width: 28px;
  height: 28px;
  fill: #fff
}

.soc-card-hover span {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff
}

.soc-placeholder {
  width: 100%;
  aspect-ratio: 1/1;
  background: rgba(0, 0, 0, .2);
  display: flex;
  align-items: center;
  justify-content: center
}

.soc-placeholder svg {
  width: 48px;
  height: 48px;
  fill: rgba(255, 255, 255, .35)
}

#contact {
  background: var(--bg);
  border-bottom: 1px solid var(--bd);
  position: relative;
  overflow: hidden;
  min-height: 280px
}

.ct-bgtxt {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
  will-change: transform
}

.ct-bgtxt span {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(120px, 18vw, 280px);
  text-transform: uppercase;
  color: rgba(255, 255, 255, .04);
  letter-spacing: -6px;
  white-space: nowrap;
  line-height: 1
}

.ct-in {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 80px 60px;
  gap: 0
}

.ct-left {
  padding-right: 60px;
  border-right: 1px solid var(--bd)
}

.ct-left h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  line-height: 1.05
}

.ct-left p {
  color: var(--gr);
  font-size: .88rem;
  line-height: 1.9;
  max-width: 280px
}

.ct-mid {
  padding-left: 60px
}

.ct-mid-item {
  margin-bottom: 24px
}

.ct-mid-item:last-child {
  margin-bottom: 0
}

.ct-mid-label {
  font-family: 'Oswald', sans-serif;
  font-size: .6rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gr);
  margin-bottom: 6px
}

.ct-mid-val {
  color: #fff;
  font-size: .9rem;
  line-height: 1.7
}

.ct-mid-val a {
  color: #fff;
  transition: color .3s
}

.ct-mid-val a:hover {
  color: var(--pk)
}

.ct-sep {
  width: 60px;
  height: 2px;
  background: var(--pk);
  margin-top: 28px
}

footer {
  background: #050509;
  border-top: 1px solid var(--bd);
  padding: 50px 60px
}

.ft-in {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0
}

.ft-pl-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 28px
}

.ft-pl-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .6;
  transition: opacity .3s, transform .3s
}

.ft-pl-btn:hover {
  opacity: 1;
  transform: translateY(-3px)
}

.ft-pl-btn svg {
  width: 28px;
  height: 28px
}

.ft-divider {
  width: 100%;
  height: 1px;
  background: var(--bd);
  margin-bottom: 20px
}

.ft-copy {
  font-size: .78rem;
  color: rgba(255, 255, 255, .25);
  letter-spacing: 1px;
  text-align: center
}

.ft-copy a {
  color: rgba(255, 255, 255, .4);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .3s
}

.ft-copy a:hover {
  color: var(--pk)
}

#vmodal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .96);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s
}

#vmodal.open {
  opacity: 1;
  pointer-events: all
}

.vm-inner {
  position: relative;
  width: 90%;
  max-width: 960px;
  aspect-ratio: 16/9
}

.vm-inner iframe {
  width: 100%;
  height: 100%;
  border: none
}

.vm-close {
  position: absolute;
  top: -52px;
  right: 0;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .3s;
  opacity: .8
}

.vm-close:hover {
  color: var(--pk);
  opacity: 1
}

.rv {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease
}

.rv.on {
  opacity: 1;
  transform: translateY(0)
}

.rl {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity .75s ease, transform .75s ease
}

.rl.on {
  opacity: 1;
  transform: translateX(0)
}

@media(max-width:960px) {
  :root {
    --sw: 0px
  }

  #sidebar {
    display: none
  }

  #page {
    margin-left: 0;
    padding-top: 60px
  }

  .mob-hdr {
    display: flex
  }

  .sec-title {
    padding: 50px 24px 36px
  }

  .sgrid {
    grid-template-columns: 1fr 1fr
  }

  .evsec {
    padding: 0 24px
  }

  .about-in {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 24px
  }

  .pl-row {
    flex-wrap: wrap
  }

  .pl-btn {
    flex: 1;
    min-width: 120px;
    padding: 36px 16px
  }

  .ct-in {
    grid-template-columns: 1fr;
    padding: 50px 24px
  }

  .ct-left,
  .ct-mid {
    border-right: none;
    border-bottom: 1px solid var(--bd);
    padding: 0 0 32px;
    margin-bottom: 32px
  }

  .ct-right {
    padding-left: 0
  }

  .soc-grid {
    flex-wrap: wrap
  }

  .soc-card {
    min-width: 45%
  }

  footer {
    padding: 32px 24px
  }

  #nav-ov {
    padding: 24px 28px 40px
  }
}

@media(max-width:600px) {
  .sgrid {
    grid-template-columns: 1fr
  }

  .evrow {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px 0
  }

  .soc-card {
    min-width: 100%
  }

  #about {
    padding: 60px 0
  }
}

@media(max-width:600px) {
  .sgrid {
    margin: 6%;
  }
}