:root {
  color-scheme: dark;
  --bg: #06142f;
  --surface: rgba(9, 26, 61, 0.82);
  --text: #f8fbff;
  --muted: #c8d3ea;
  --border: rgba(214, 173, 75, 0.28);
  --accent: #d6ad4b;
  --purple: #b69cff;
  --royal: #0c2f70;
  --plum: #2c175f;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  --font-sans: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--bg);
}
body {
  margin: 0;
  font-family: var(--font-sans);
  background: linear-gradient(180deg, #06142f 0%, #0a1f4d 36%, #211354 70%, #071327 100%);
  color: var(--text);
  text-align: center;
  line-height: 1.65;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body::selection {
  background: var(--accent);
  color: #071327;
}
img, video {
  max-width: 100%;
  height: auto;
}
/* ==========================================
   2. NAVIGATION BAR
   ========================================== */
.nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  background: rgba(3, 12, 32, 0.84);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}
.nav-brand,
.nav-brand a {
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  text-decoration: none;
}
.nav-brand::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin-top: 4px;
  background: var(--accent);
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}
.nav-menu a {
  color: #eaf0ff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.nav-menu a:hover {
  color: var(--accent);
}
/* ==========================================
   3. HERO CAROUSEL
   ========================================== */
.hero-carousel {
  position: relative;
  height: 88vh;
  min-height: 620px;
  overflow: hidden;
  border-bottom: 1px solid rgba(214, 173, 75, 0.32);
}
.carousel-wrapper {
  position: relative;
  height: 100%;
}
.carousel-slides {
  position: relative;
  height: 100%;
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 8, 23, 0.38), rgba(2, 8, 23, 0.08));
}
.slide.active {
  opacity: 1;
  transform: scale(1);
}
.slide-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  max-width: 820px;
  padding: 0 20px;
}
.slide-title {
  font-size: 4.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
  letter-spacing: 0;
  color: #ffffff;
}
.slide-title::after {
  content: "";
  display: block;
  width: 110px;
  height: 3px;
  margin: 18px auto 0;
  background: var(--accent);
}
.slide-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--purple);
  font-weight: 700;
  opacity: 0.9;
}
.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--accent);
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: #06142f;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 800;
  transition: all 0.3s ease;
  box-shadow: 0 18px 45px rgba(214, 173, 75, 0.22);
}
.cta-button:hover {
  background: #f0ce73;
  color: #06142f;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.carousel-nav {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-arrow {
  background: rgba(214, 173, 75, 0.16);
  border: 1px solid rgba(214, 173, 75, 0.38);
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-arrow:hover {
  background: rgba(214, 173, 75, 0.34);
  transform: scale(1.1);
}
.nav-dots {
  display: flex;
  gap: 10px;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}
.dot.active {
  background: white;
  transform: scale(1.2);
}
/* ==========================================
   4. FOUNDER
   ========================================== */
.founder {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 110px 20px;
  background: linear-gradient(135deg, #06142f 0%, #0d3475 62%, #26145a 100%);
  border-bottom: 1px solid rgba(214, 173, 75, 0.28);
  color: var(--text);
}
.founder > * {
  max-width: 780px;
}
.founder h2 {
  font-size: 28px;
  margin-top: 10px;
  color: #ffffff;
  letter-spacing: 0;
}
.founder p {
  color: var(--muted);
}
.founder-img {
  width: 240px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 20px;
  border: 3px solid var(--accent);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.38), 0 0 0 10px rgba(255, 255, 255, 0.05);
}
.founder-badge {
  display: inline-block;
  margin-bottom: 15px;
  padding: 6px 14px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(214, 173, 75, 0.16);
  border: 1px solid rgba(214, 173, 75, 0.5);
  color: #f5d984;
  border-radius: 20px;
}
/* ==========================================
   5. GENERAL SECTIONS & PAGES
   ========================================== */
section {
  padding: 60px 20px;
}
.companies {
  padding: 140px 20px 60px;
  text-align: center;
  background: linear-gradient(135deg, #081735 0%, #103b82 64%, #071327 100%);
  border-bottom: 1px solid rgba(214, 173, 75, 0.28);
}
.companies h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #ffffff;
  letter-spacing: 0;
}
.companies h2::after {
  content: "";
  display: block;
  width: 96px;
  height: 3px;
  margin: 18px auto 0;
  background: var(--accent);
}
.companies-page {
  padding: 140px 20px 60px;
  text-align: center;
  min-height: 70vh;
  background: linear-gradient(145deg, #06142f 0%, #0e3478 48%, #2b1761 100%);
}
.page-header {
  max-width: 860px;
  margin: 0 auto 60px;
}
.page-header h1,
.page-header h2 {
  font-size: 3.25rem;
  color: #ffffff;
  letter-spacing: 0;
  margin-bottom: 20px;
}
.page-header h1::after,
.page-header h2::after {
  content: "";
  display: block;
  width: 96px;
  height: 3px;
  margin: 18px auto 0;
  background: var(--accent);
}
.page-header p {
  color: var(--muted);
  font-size: 24px;
}
.carousel-container {
  position: relative;
  width: 100%;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(3, 12, 32, 0.34);
  border: 1px solid rgba(214, 173, 75, 0.26);
  box-shadow: var(--shadow);
}
.carousel-track {
  display: flex;
  gap: 20px;
  padding: 10px;
  animation: scroll 30s linear infinite;
  will-change: transform;
}
.carousel-track:hover {
  animation-play-state: paused;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(214, 173, 75, 0.16);
  border: 1px solid rgba(214, 173, 75, 0.38);
  color: #ffffff;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 5px;
  z-index: 10;
  transition: all 0.2s ease;
}
.carousel-btn:hover {
  background: rgba(214, 173, 75, 0.34);
}
.carousel-prev {
  left: 10px;
}
.carousel-next {
  right: 10px;
}
#companies {
  display: flex;
}
/* ==========================================
   6. CARDS & GRIDS
   ========================================== */
.card,
.preview-card,
.company-card,
.ebook-card,
.blog-post {
  background: rgba(8, 23, 55, 0.84);
  border: 1px solid rgba(214, 173, 75, 0.28);
  box-shadow: var(--shadow);
  color: var(--text);
  border-radius: 10px;
  transition: all 0.3s ease;
}
.preview-card:nth-child(even),
.company-card:nth-child(even),
.ebook-card:nth-child(even) {
  border-color: rgba(182, 156, 255, 0.38);
}
.card:hover,
.preview-card:hover,
.company-card:hover,
.ebook-card:hover {
  background: rgba(13, 43, 100, 0.9);
  border-color: rgba(214, 173, 75, 0.6);
}
/* Classic Card Layout */
.card {
  padding: 20px;
  width: 260px;
  min-width: 260px;
  flex-shrink: 0;
}
.card:hover {
  transform: translateY(-5px) scale(1.02);
}
.card img {
  width: 60px;
  margin-bottom: 15px;
}
.card h3 {
  margin-bottom: 10px;
}
.card a {
  display: inline-block;
  margin-top: 10px;
  color: #f5d984;
  text-decoration: none;
}
/* Preview Grid & Cards */
.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  perspective: 1000px;
  position: relative;
  margin-top: 40px;
}
.preview-card {
  padding: 28px;
  border-radius: 18px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  /* Always visible, dynamic scaling & rotation on hover */
  opacity: 1;
  filter: none;
  transform: none;
}
.preview-card:hover {
  transform: translateY(-10px) scale(1.03) rotateX(4deg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}
.platform-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 18px;
  border-radius: 16px;
  background: #ffffff;
  padding: 8px;
  border: 1px solid rgba(0,0,0,0.08);
  transition: transform 0.4s ease, filter 0.4s ease;
}
.preview-card:hover .platform-logo {
  transform: scale(1.08);
  filter: brightness(1.2);
}
.preview-card h3 {
  font-size: clamp(1.4rem, 2.1vw, 1.8rem);
  margin: 0 0 16px;
}
.preview-card p {
  color: var(--muted);
  margin: 0 0 24px;
  flex: 1;
}
.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(214, 173, 75, 0.16);
  border: 1px solid rgba(214, 173, 75, 0.5);
  color: #f5d984;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  width: fit-content;
}
.preview-link {
  color: #f5d984;
  text-decoration: none;
  font-weight: 700;
}
.preview-link:hover {
  text-decoration: underline;
}
/* Companies Grid & Cards */
.companies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: stretch;
  margin-top: 40px;
}
.company-card {
  padding: 28px;
  border-radius: 18px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.company-card:hover {
  transform: translateY(-5px) scale(1.02);
}
.company-card img {
  width: 60px;
  margin-bottom: 15px;
}
.company-card h3 {
  font-size: clamp(1.4rem, 2.1vw, 1.8rem);
  margin: 0 0 16px;
}
.company-card p {
  color: var(--muted);
  margin: 0 0 24px;
  flex: 1;
}
.company-card a {
  color: #f5d984;
  text-decoration: none;
  font-weight: 700;
}
.company-card a:hover {
  text-decoration: underline;
}
/* Ebooks */
.ebooks-page {
  padding: 140px 20px 60px;
  min-height: 70vh;
  background: linear-gradient(145deg, #06142f 0%, #102d68 45%, #2f1764 100%);
}
.ebooks h2 {
  font-size: 36px;
  margin-bottom: 40px;
}
.ebooks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.ebook-card {
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}
.ebook-card:hover {
  transform: translateY(-5px) scale(1.02);
}
.ebook-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.ebook-card p {
  color: var(--muted);
  margin-bottom: 20px;
}
.ebook-card button {
  background: var(--accent);
  color: #06142f;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  transition: background 0.2s ease;
}
.ebook-card button:hover {
  background: var(--purple);
  color: #06142f;
}
/* Featured Content */
.featured-content {
  background: linear-gradient(135deg, #180f3d 0%, #2f1b6b 54%, #0a1f4d 100%);
  border-bottom: 1px solid rgba(214, 173, 75, 0.26);
}
/* ==========================================
   7. QUOTES & BLOGS
   ========================================== */
.quotes {
  padding: 60px 20px;
  background: linear-gradient(135deg, #d6ad4b 0%, #f1d783 52%, #7d63d9 100%);
}
.quotes blockquote {
  font-size: 28px;
  font-style: italic;
  margin: 40px 0;
  color: #06142f;
  position: relative;
  font-weight: 800;
}
.quotes blockquote:before {
  content: '"';
  font-size: 60px;
  position: absolute;
  left: -20px;
  top: -10px;
  color: rgba(6, 20, 47, 0.28);
}
.blogs-page {
  padding: 140px 20px 60px;
}
.blog h2 {
  font-size: 36px;
  margin-bottom: 40px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.blog-post {
  padding: 30px;
  border-radius: 10px;
  text-align: left;
}
.category {
  display: inline-block;
  background: rgba(214, 173, 75, 0.16);
  border: 1px solid rgba(214, 173, 75, 0.5);
  color: #f5d984;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  margin-bottom: 15px;
}
.blog-post h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.blog-post p {
  color: var(--muted);
  margin-bottom: 15px;
}
.read-more {
  color: #f5d984;
  text-decoration: none;
  font-weight: bold;
}
.read-more:hover {
  text-decoration: underline;
}
/* ==========================================
   8. FOOTER
   ========================================== */
.footer {
  text-align: center;
  padding: 60px 20px;
  background: #030c20;
  border-top: 1px solid rgba(214, 173, 75, 0.34);
  color: var(--muted);
  margin-top: 0;
}
.footer h3 {
  color: #ffffff;
  margin-bottom: 10px;
}
.footer-links {
  margin: 15px 0;
}
.footer-links a {
  color: var(--purple);
  margin: 0 10px;
  text-decoration: none;
}
.footer-links a:hover {
  color: var(--accent);
}
.copyright {
  font-size: 12px;
  color: rgba(248, 251, 255, 0.58);
  margin-top: 20px;
}
/* ==========================================
   9. SCROLL REVEAL (Safe animations)
   ========================================== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
/* ==========================================
   10. FEATURED RELEASES SLIDER & SPECIAL THEMES
   ========================================== */
.featured-releases {
  padding: 110px 20px;
  background: linear-gradient(135deg, #06142f 0%, #111f55 48%, #3b1d78 100%);
  border-top: 1px solid rgba(214, 173, 75, 0.24);
  color: white;
}
.featured-releases .page-header {
  margin-bottom: 44px;
}
.releases-slider {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
}
.slider-container {
  overflow: hidden;
  border-radius: 0;
  background: rgba(3, 12, 32, 0.72);
  border: 1px solid rgba(214, 173, 75, 0.28);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.slider-track {
  display: flex;
  transition: transform 0.8s ease;
}
.release-slide {
  min-width: 100%;
  min-height: 760px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(300px, 1.05fr);
  align-items: center;
  gap: 56px;
  padding: 72px;
  isolation: isolate;
  overflow: hidden;
}
.release-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}
.release-slide::after {
  content: "";
  position: absolute;
  inset: 28px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  pointer-events: none;
}
/* Release Theme Variants */
.release-theme-royal-gold::before {
  background:
    radial-gradient(circle at 24% 32%, rgba(214, 173, 75, 0.34), transparent 28%),
    linear-gradient(135deg, #020817 0%, #08245a 48%, #806122 100%);
}
.release-theme-violet-noir::before {
  background:
    radial-gradient(circle at 76% 22%, rgba(182, 156, 255, 0.32), transparent 30%),
    linear-gradient(135deg, #05030d 0%, #22104f 48%, #102b64 100%);
}
.release-theme-midnight-platinum::before {
  background:
    radial-gradient(circle at 18% 76%, rgba(255, 255, 255, 0.24), transparent 26%),
    linear-gradient(135deg, #071327 0%, #103b82 46%, #475569 100%);
}
.release-artwork-shell {
  position: relative;
  aspect-ratio: 1 / 1;
  width: min(100%, 520px);
  justify-self: center;
  padding: 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(214, 173, 75, 0.12));
  border: 1px solid rgba(214, 173, 75, 0.54);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}
.release-artwork-shell::before {
  content: "";
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: -1;
}
.release-artwork {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}
.release-info {
  position: static;
  max-width: 560px;
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  text-align: left;
  transform: none;
}
.release-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 14px;
  border: 1px solid rgba(214, 173, 75, 0.48);
  color: #f5d984;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.release-info h3 {
  margin: 0 0 14px;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.92;
  color: #ffffff;
}
.release-artist {
  margin: 0 0 18px;
  color: var(--purple);
  font-size: 1.3rem;
  font-weight: 800;
}
.release-info p {
  color: #dfe7fb;
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: 0.9;
}
.release-link {
  display: inline-flex;
  margin-top: 20px;
  padding: 13px 18px;
  background: #f5d984;
  color: #06142f;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, 0.26);
  transition: all 0.3s ease;
}
.release-link:hover {
  background: var(--purple);
}
.slider-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}
.slider-prev, .slider-next {
  background: rgba(214, 173, 75, 0.16);
  border: 1px solid rgba(214, 173, 75, 0.38);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-prev:hover, .slider-next:hover {
  background: rgba(214, 173, 75, 0.34);
  transform: scale(1.1);
}
.slider-dots {
  display: flex;
  gap: 10px;
}
.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}
.slider-dot.active {
  background: white;
  transform: scale(1.2);
}
.empty-state {
  grid-column: 1 / -1;
  color: var(--muted);
  background: rgba(8, 23, 55, 0.72);
  border: 1px solid rgba(214, 173, 75, 0.28);
  padding: 28px;
  border-radius: 10px;
}
/* ==========================================
   11. RESPONSIVE TYPOGRAPHY & MEDIA QUERIES
   ========================================== */
h1 {
  font-size: clamp(2rem, 5vw, 4.5rem);
}
h2 {
  font-size: clamp(1.5rem, 3vw, 3rem);
}
p {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
}
@media (max-width: 900px) {
  .release-slide {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 24px;
  }
  .release-slide::after {
    inset: 16px;
  }
  .release-info {
    text-align: center;
    margin: 0 auto;
  }
  .release-artwork-shell {
    width: min(100%, 420px);
  }
}
@media (max-width: 768px) {
  .nav {
    padding: 14px 0;
  }
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .nav-menu {
    flex-direction: column;
    gap: 12px;
    padding-left: 0;
    margin: 0;
  }
  .preview-grid,
  .companies-grid,
  .ebooks-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .hero-carousel {
    height: 82vh;
    min-height: 560px;
  }
  .slide-title {
    font-size: 2.75rem;
  }
  .slide-subtitle {
    font-size: 1.15rem;
  }
  .page-header h1,
  .page-header h2,
  .companies h2 {
    font-size: 2.25rem;
  }
  .page-header p {
    font-size: 1.1rem;
  }
}
.hero-carousel .slide-content {
  position: relative;
  z-index: 2;
  padding-bottom: 120px;
}

.carousel-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
.social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 30px;
}

.social-icons a {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  text-decoration: none;

  background: rgba(214, 173, 75, 0.12);
  border: 1px solid rgba(214, 173, 75, 0.35);

  color: #ffffff;
  font-size: 20px;

  backdrop-filter: blur(10px);

  transition: all 0.35s ease;
}

.social-icons a:hover {
  transform: translateY(-6px) scale(1.08);

  background: rgba(214, 173, 75, 0.28);

  border-color: rgba(214, 173, 75, 0.8);

  box-shadow: 0 14px 30px rgba(0,0,0,0.25);
}
.biography-hero {
  position: relative;
  min-height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

.hero-name-wrapper {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 20px;
}

.hero-name {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.drop-line,
.mansa-line {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
}

.drop-line span,
.mansa-line span {
  display: inline-block;

  font-size: clamp(2.4rem, 6vw, 6rem);
  font-weight: 900;

  color: #ffffff;

  opacity: 0;

  transform: translateY(-220px) scale(0.3);

  animation: letterDrop 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.drop-line span:nth-child(1) { animation-delay: 0.05s; }
.drop-line span:nth-child(2) { animation-delay: 0.1s; }
.drop-line span:nth-child(3) { animation-delay: 0.15s; }
.drop-line span:nth-child(4) { animation-delay: 0.2s; }
.drop-line span:nth-child(5) { animation-delay: 0.25s; }
.drop-line span:nth-child(6) { animation-delay: 0.3s; }
.drop-line span:nth-child(7) { animation-delay: 0.35s; }
.drop-line span:nth-child(8) { animation-delay: 0.4s; }

.mansa-line span:nth-child(1) { animation-delay: 1s; }
.mansa-line span:nth-child(2) { animation-delay: 1.08s; }
.mansa-line span:nth-child(3) { animation-delay: 1.16s; }
.mansa-line span:nth-child(4) { animation-delay: 1.24s; }
.mansa-line span:nth-child(5) { animation-delay: 1.32s; }

.mansa-line span:nth-child(7) { animation-delay: 1.5s; }
.mansa-line span:nth-child(8) { animation-delay: 1.58s; }
.mansa-line span:nth-child(9) { animation-delay: 1.66s; }
.mansa-line span:nth-child(10) { animation-delay: 1.74s; }
.mansa-line span:nth-child(11) { animation-delay: 1.82s; }
.mansa-line span:nth-child(12) { animation-delay: 1.9s; }
.mansa-line span:nth-child(13) { animation-delay: 1.98s; }
.mansa-line span:nth-child(14) { animation-delay: 2.06s; }

@keyframes letterDrop {
  0% {
    opacity: 0;
    transform: translateY(-220px) scale(0.2) rotate(-12deg);
  }

  60% {
    opacity: 1;
    transform: translateY(30px) scale(1.08) rotate(3deg);
  }

  80% {
    transform: translateY(-12px) scale(0.98);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.pka-line {
  display: flex;
  justify-content: center;
  align-items: center;

  gap: 10px;

  overflow: hidden;
}

.p-left,
.p-right {
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-weight: 700;

  color: #d6ad4b;

  opacity: 0;
}

.p-left {
  transform: translateX(-180px);

  animation: slideLeft 1s ease forwards;
  animation-delay: 0.8s;
}

.p-right {
  transform: translateX(180px);

  animation: slideRight 1s ease forwards;
  animation-delay: 0.8s;
}

@keyframes slideLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.space {
  width: 20px;
}

@media (max-width: 768px) {

  .drop-line span,
  .mansa-line span {
    font-size: 2.2rem;
  }

  .space {
    width: 10px;
  }

}