  @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&display=swap');

  .orbitron {
      font-family: 'Orbitron', monospace;
  }

  .inter {
      font-family: 'Inter', sans-serif;
  }

  .poppins {
      font-family: 'Poppins', sans-serif;
  }

  body {
      background:
          radial-gradient(circle at 10% 20%, rgb(90, 92, 106) 0%, transparent 50%),
          radial-gradient(circle at 80% 80%, rgb(120, 119, 198) 0%, transparent 50%),
          radial-gradient(circle at 40% 40%, rgb(255, 0, 128) 0%, transparent 50%),
          radial-gradient(circle at 0% 50%, rgb(255, 135, 135) 0%, transparent 50%),
          radial-gradient(circle at 80% 50%, rgb(120, 119, 198) 0%, transparent 50%),
          radial-gradient(circle at 0% 100%, rgb(135, 255, 135) 0%, transparent 50%),
          radial-gradient(circle at 80% 100%, rgb(255, 135, 135) 0%, transparent 50%),
          radial-gradient(circle at 0% 0%, rgb(255, 135, 135) 0%, transparent 50%),
          linear-gradient(45deg, rgb(13, 13, 13) 0%, rgb(25, 25, 25) 100%);
      min-height: 100vh;
      position: relative;
      overflow-x: hidden;
  }

  .stars {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 1;
  }

  .star {
      position: absolute;
      width: 2px;
      height: 2px;
      background: white;
      border-radius: 50%;
      animation: twinkle 3s infinite;
  }

  @keyframes twinkle {

      0%,
      100% {
          opacity: 0.3;
          transform: scale(1);
      }

      50% {
          opacity: 1;
          transform: scale(1.5);
      }
  }

  .floating-shapes {
      position: absolute;
      width: 100%;
      height: 100%;
      overflow: hidden;
      pointer-events: none;
  }

  .shape {
      position: absolute;
      opacity: 0.1;
      animation: floatShape 20s infinite linear;
  }

  @keyframes floatShape {
      0% {
          transform: translateY(100vh) rotate(0deg);
      }

      100% {
          transform: translateY(-100px) rotate(360deg);
      }
  }

  .particle {
      position: absolute;
      width: 8px;
      height: 8px;
      background: linear-gradient(45deg, #ff006e, #8338ec, #3a86ff, #06ffa5);
      border-radius: 50%;
      animation: float 10s infinite ease-in-out;
      box-shadow: 0 0 25px currentColor;
  }

  @keyframes float {

      0%,
      100% {
          transform: translateY(0) rotate(0deg) scale(1);
          opacity: 0.5;
      }

      25% {
          transform: translateY(-60px) rotate(90deg) scale(1.3);
          opacity: 0.9;
      }

      50% {
          transform: translateY(-120px) rotate(180deg) scale(1.6);
          opacity: 1;
      }

      75% {
          transform: translateY(-60px) rotate(270deg) scale(1.3);
          opacity: 0.9;
      }
  }

  .neon-text {
      text-shadow:
          0 0 5px currentColor,
          0 0 10px currentColor,
          0 0 15px currentColor,
          0 0 20px currentColor,
          0 0 35px currentColor,
          0 0 40px currentColor;
      animation: neonGlow 1.5s ease-in-out infinite alternate;
  }

  @keyframes neonGlow {
      from {
          text-shadow:
              0 0 5px currentColor,
              0 0 10px currentColor,
              0 0 15px currentColor,
              0 0 20px currentColor,
              0 0 35px currentColor,
              0 0 40px currentColor;
      }

      to {
          text-shadow:
              0 0 2px currentColor,
              0 0 5px currentColor,
              0 0 8px currentColor,
              0 0 12px currentColor,
              0 0 15px currentColor,
              0 0 20px currentColor,
              0 0 25px currentColor,
              0 0 30px currentColor;
      }
  }

  .cyber-box {
      background:
          linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%),
          linear-gradient(135deg, rgba(255, 0, 110, 0.05) 0%, rgba(131, 56, 236, 0.05) 50%, rgba(58, 134, 255, 0.05) 100%);
      backdrop-filter: blur(25px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      position: relative;
      overflow: hidden;
      box-shadow:
          0 8px 32px rgba(0, 0, 0, 0.3),
          inset 0 1px 0 rgba(255, 255, 255, 0.2),
          0 0 0 1px rgba(255, 255, 255, 0.05);
  }

  .cyber-box::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
      animation: shimmer 4s infinite;
  }

  .cyber-box::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(45deg, rgba(255, 0, 110, 0.1), transparent, rgba(131, 56, 236, 0.1));
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
  }

  .cyber-box:hover::after {
      opacity: 1;
  }

  @keyframes shimmer {
      0% {
          left: -100%;
      }

      100% {
          left: 100%;
      }
  }

  .hologram {
      background: linear-gradient(45deg, #ff006e, #8338ec, #3a86ff, #06ffa5, #ff006e);
      background-size: 600% 600%;
      animation: hologramShift 6s ease-in-out infinite;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      position: relative;
  }

  .hologram::after {
      content: attr(data-text);
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: glitch 0.3s infinite linear alternate-reverse;
  }

  @keyframes hologramShift {

      0%,
      100% {
          background-position: 0% 50%;
      }

      50% {
          background-position: 100% 50%;
      }
  }

  @keyframes glitch {
      0% {
          transform: translate(0);
      }

      20% {
          transform: translate(-2px, 2px);
      }

      40% {
          transform: translate(-2px, -2px);
      }

      60% {
          transform: translate(2px, 2px);
      }

      80% {
          transform: translate(2px, -2px);
      }

      100% {
          transform: translate(0);
      }
  }

  .pulse-border {
      position: relative;
  }

  .pulse-border::before {
      content: '';
      position: absolute;
      top: -3px;
      left: -3px;
      right: -3px;
      bottom: -3px;
      background: linear-gradient(45deg, #ff006e, #8338ec, #3a86ff, #06ffa5, #ff006e);
      background-size: 400% 400%;
      border-radius: inherit;
      z-index: -1;
      animation: pulseBorder 3s linear infinite;
      filter: blur(1px);
  }

  @keyframes pulseBorder {

      0%,
      100% {
          background-position: 0% 50%;
      }

      50% {
          background-position: 100% 50%;
      }
  }

  .morphing-bg {
      background: linear-gradient(-45deg, #ff006e, #8338ec, #3a86ff, #06ffa5, #ff8500, #ff006e);
      background-size: 600% 600%;
      animation: morphing 12s ease-in-out infinite;
  }

  @keyframes morphing {
      0% {
          background-position: 0% 50%;
      }

      50% {
          background-position: 100% 50%;
      }

      100% {
          background-position: 0% 50%;
      }
  }

  .floating-icon {
      animation: floatingIcon 6s ease-in-out infinite;
  }

  @keyframes floatingIcon {

      0%,
      100% {
          transform: translateY(0) rotate(0deg) scale(1);
      }

      25% {
          transform: translateY(-15px) rotate(5deg) scale(1.05);
      }

      50% {
          transform: translateY(-30px) rotate(0deg) scale(1.1);
      }

      75% {
          transform: translateY(-15px) rotate(-5deg) scale(1.05);
      }
  }

  .hover-glow {
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  .hover-glow:hover {
      transform: translateY(-15px) scale(1.02);
      box-shadow:
          0 25px 50px rgba(255, 0, 110, 0.25),
          0 0 0 1px rgba(255, 255, 255, 0.1),
          inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }

  .wave-animation {
      background: linear-gradient(270deg, #ff006e, #8338ec, #3a86ff, #06ffa5);
      background-size: 800% 800%;
      animation: wave 10s ease-in-out infinite;
  }

  @keyframes wave {

      0%,
      100% {
          background-position: 0% 50%;
      }

      50% {
          background-position: 100% 50%;
      }
  }

  .typewriter {
      overflow: hidden;
      border-right: 3px solid;
      white-space: nowrap;
      margin: 0 auto;
      animation: typing 4s steps(40, end), blink-caret 0.8s step-end infinite;
  }

  @keyframes typing {
      from {
          width: 0
      }

      to {
          width: 100%
      }
  }

  @keyframes blink-caret {

      from,
      to {
          border-color: transparent
      }

      50% {
          border-color: white
      }
  }

  .music-visualizer {
      display: flex;
      justify-content: center;
      align-items: flex-end;
      height: 100px;
      gap: 6px;
  }

  .bar {
      width: 8px;
      background: linear-gradient(to top, #ff006e, #8338ec, #3a86ff, #06ffa5);
      border-radius: 4px;
      animation: musicBar 1.2s ease-in-out infinite;
      box-shadow: 0 0 12px rgba(255, 0, 110, 0.6);
  }

  .bar:nth-child(1) {
      animation-delay: 0s;
      height: 30px;
  }

  .bar:nth-child(2) {
      animation-delay: 0.1s;
      height: 50px;
  }

  .bar:nth-child(3) {
      animation-delay: 0.2s;
      height: 70px;
  }

  .bar:nth-child(4) {
      animation-delay: 0.3s;
      height: 40px;
  }

  .bar:nth-child(5) {
      animation-delay: 0.4s;
      height: 60px;
  }

  .bar:nth-child(6) {
      animation-delay: 0.5s;
      height: 80px;
  }

  .bar:nth-child(7) {
      animation-delay: 0.6s;
      height: 45px;
  }

  .bar:nth-child(8) {
      animation-delay: 0.7s;
      height: 65px;
  }

  .bar:nth-child(9) {
      animation-delay: 0.8s;
      height: 35px;
  }

  .bar:nth-child(10) {
      animation-delay: 0.9s;
      height: 55px;
  }

  @keyframes musicBar {

      0%,
      100% {
          transform: scaleY(0.2);
          opacity: 0.5;
      }

      50% {
          transform: scaleY(1);
          opacity: 1;
      }
  }

  .scroll-indicator {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      width: 40px;
      height: 70px;
      border: 2px solid rgba(255, 255, 255, 0.7);
      border-radius: 30px;
      display: flex;
      justify-content: center;
      align-items: flex-start;
      padding-top: 12px;
  }

  .scroll-indicator::before {
      content: '';
      width: 8px;
      height: 12px;
      background: linear-gradient(to bottom, #ff006e, #8338ec);
      border-radius: 4px;
      animation: scrollDot 2.5s infinite;
  }

  @keyframes scrollDot {
      0% {
          transform: translateY(0);
          opacity: 1;
      }

      100% {
          transform: translateY(30px);
          opacity: 0;
      }
  }

  .comment-card {
      background:
          linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%),
          linear-gradient(135deg, rgba(255, 0, 110, 0.05) 0%, rgba(131, 56, 236, 0.05) 100%);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.15);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative;
      overflow: hidden;
  }

  .comment-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
      transition: left 0.5s ease;
  }

  .comment-card:hover::before {
      left: 100%;
  }

  .comment-card:hover {
      transform: translateY(-8px);
      box-shadow:
          0 20px 40px rgba(0, 0, 0, 0.3),
          0 0 0 1px rgba(255, 0, 110, 0.3),
          inset 0 1px 0 rgba(255, 255, 255, 0.2);
      border-color: rgba(255, 0, 110, 0.4);
  }

  .like-btn {
      transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  .like-btn:hover {
      transform: scale(1.2);
  }

  .like-btn.liked {
      color: #ff006e;
      animation: heartbeat 0.8s ease-in-out;
  }

  @keyframes heartbeat {
      0% {
          transform: scale(1);
      }

      50% {
          transform: scale(1.4);
      }

      100% {
          transform: scale(1);
      }
  }

  .profile-image {
      background:
          linear-gradient(45deg, #ff006e, #8338ec, #3a86ff, #06ffa5),
          url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCIgdmlld0JveD0iMCAwIDIwMCAyMDAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxjaXJjbGUgY3g9IjEwMCIgY3k9IjEwMCIgcj0iMTAwIiBmaWxsPSJ1cmwoI2dyYWRpZW50KSIvPgo8ZGVmcz4KPGI+SWQiZ3JhZGllbnQiIHgxPSIwJSIgeTE9IjAlIiB4Mj0iMTAwJSIgeTI9IjEwMCUiPgo8c3RvcCBvZmZzZXQ9IjAlIiBzdHlsZT0ic3RvcC1jb2xvcjojZmYwMDZlO3N0b3Atb3BhY2l0eTo5IiAvPgo8c3RvcCBvZmZzZXQ9IjUwJSIgc3R5bGU9InN0b3AtY29sb3I6IzgzMzhlYztzdG9wLW9wYWNpdHk6MCIgLz4KPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdHlsZT0ic3RvcC1jb2xvcjojM2E4NmZmO3N0b3Atb3BhY2l0eTo5IiAvPgo8L2xpbmVhckdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=');
      background-blend-mode: overlay;
      background-size: cover;
      background-position: center;
  }

  .studio-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
  }

  .equipment-card {
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
      backdrop-filter: blur(15px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 1rem;
      padding: 1.5rem;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
  }

  .equipment-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, #ff006e, #8338ec, #3a86ff);
      transform: scaleX(0);
      transition: transform 0.3s ease;
  }

  .equipment-card:hover::before {
      transform: scaleX(1);
  }

  .equipment-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(255, 0, 110, 0.2);
      border-color: rgba(255, 0, 110, 0.3);
  }

  .loading-dots {
      display: inline-block;
  }

  .loading-dots::after {
      content: '';
      animation: loadingDots 1.5s infinite;
  }

  @keyframes loadingDots {

      0%,
      20% {
          content: '.';
      }

      40% {
          content: '..';
      }

      60%,
      100% {
          content: '...';
      }
  }