* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  body {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), 
      url('data:image/svg+xml;utf8,<svg xmlns="https://unsplash.com/s/photos/night-landscape width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="black"/><path d="M0 0L100 100M100 0L0 100" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #f5f5f5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    position: relative;
    overflow-x: hidden;
    animation: backgroundShift 25s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    transition: background-image 0.5s ease;
  }

  @keyframes backgroundShift {
    0%, 100% { 
      background-position: 0% 0%;
    }
    50% { 
      background-position: 100% 100%;
    }
  }

  /* Animated background particles */
  body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(120, 219, 255, 0.1) 0%, transparent 50%);
    animation: particleFloat 20s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    pointer-events: none;
    z-index: -1;
  }

  @keyframes particleFloat {
    0% { 
      transform: translate(0, 0) rotate(0deg) scale(1);
      opacity: 0.3;
    }
    20% { 
      transform: translate(20px, -10px) rotate(72deg) scale(1.1);
      opacity: 0.5;
    }
    40% { 
      transform: translate(35px, -25px) rotate(144deg) scale(0.9);
      opacity: 0.6;
    }
    60% { 
      transform: translate(25px, -35px) rotate(216deg) scale(1.2);
      opacity: 0.4;
    }
    80% { 
      transform: translate(10px, -20px) rotate(288deg) scale(0.8);
      opacity: 0.5;
    }
    100% { 
      transform: translate(0, 0) rotate(360deg) scale(1);
      opacity: 0.3;
    }
  }

  /* Ripple effect */
  .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: rippleEffect 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }

  @keyframes rippleEffect {
    0% {
      transform: scale(0);
      opacity: 0.8;
    }
    50% {
      transform: scale(2);
      opacity: 0.4;
    }
    100% {
      transform: scale(4);
      opacity: 0;
    }
  }

  /* Fade animations */
  @keyframes fadeOut {
    0% {
      opacity: 1;
      transform: scale(1);
    }
    50% {
      opacity: 0.5;
      transform: scale(0.98);
    }
    100% {
      opacity: 0;
      transform: scale(0.95);
    }
  }



  .container {
    max-width: 1400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    margin-top: 2rem;
    animation: fadeInUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .main-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
  }


  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    50% {
      opacity: 0.7;
      transform: translateY(10px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 100;
    transition: opacity 0.5s ease;
  }

  .overlay.hidden {
    opacity: 0;
    pointer-events: none;
  }

  .enter-text {
    font-size: 2.5rem;
    color: #f5f5f5;
    cursor: pointer;
    padding: 1rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    font-weight: 300;
    letter-spacing: 2px;
    animation: pulse 3s cubic-bezier(0.4, 0, 0.2, 1) infinite, float 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  }

  @keyframes pulse {
    0%, 100% {
      transform: scale(1);
    }
    25% {
      transform: scale(1.02);
    }
    50% {
      transform: scale(1.05);
    }
    75% {
      transform: scale(1.02);
    }
  }

  @keyframes float {
    0%, 100% {
      transform: translateY(0px);
    }
    25% {
      transform: translateY(-5px);
    }
    50% {
      transform: translateY(-10px);
    }
    75% {
      transform: translateY(-5px);
    }
  }

  .enter-text:hover {
    color: #aaa;
  }

  .enter-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: #f5f5f5;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
  }

  .enter-text:hover::after {
    width: 100%;
  }

  .profile-section {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.08);
    border: 3px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    animation: slideInLeft 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  @keyframes slideInLeft {
    0% {
      opacity: 0;
      transform: translateX(-30px);
    }
    50% {
      opacity: 0.7;
      transform: translateX(-15px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .profile-section:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.15);
  }

  .profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #000;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
    animation: rotateIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), glow 3s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  @keyframes rotateIn {
    0% {
      opacity: 0;
      transform: rotate(-90deg) scale(0.7);
    }
    50% {
      opacity: 0.7;
      transform: rotate(-45deg) scale(0.85);
    }
    100% {
      opacity: 1;
      transform: rotate(0deg) scale(1);
    }
  }

  @keyframes glow {
    0% {
      box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
    }
    50% {
      box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2), 0 0 15px rgba(255, 255, 255, 0.05);
    }
    100% {
      box-shadow: 0 5px 25px rgba(255, 255, 255, 0.3), 0 0 20px rgba(255, 255, 255, 0.1);
    }
  }

  .profile-pic:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
  }

  .profile-name {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #f5f5f5;
    font-weight: 600;
  }

  .loading-name {
    display: inline-block;
    min-width: 2rem;
    text-align: center;
    animation: nameGlow 1s ease-in-out infinite;
    position: relative;
  }

  .loading-name::after {
    content: '|';
    animation: blink 1s infinite;
    margin-left: 2px;
    color: #f5f5f5;
  }

  @keyframes nameGlow {
    0%, 100% {
      text-shadow: 0 0 10px rgba(245, 245, 245, 0.5);
    }
    50% {
      text-shadow: 0 0 20px rgba(245, 245, 245, 0.8), 0 0 30px rgba(245, 245, 245, 0.4);
    }
  }

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

  .profile-desc {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 300;
  }

  .social-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 2rem auto;
    justify-items: center;
    transform: translateX(-10px);
  }

  .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    color: #f5f5f5;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    border: 2px solid rgba(255, 255, 255, 0.08);
    width: 100%;
    text-align: center;
    animation: bounceIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation-fill-mode: both;
  }

  @keyframes bounceIn {
    0% {
      opacity: 0;
      transform: scale(0.5);
    }
    30% {
      opacity: 0.7;
      transform: scale(0.8);
    }
    50% {
      opacity: 1;
      transform: scale(1.05);
    }
    70% {
      transform: scale(0.95);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }

  .social-link:nth-child(1) { animation-delay: 0.1s; }
  .social-link:nth-child(2) { animation-delay: 0.2s; }
  .social-link:nth-child(3) { animation-delay: 0.3s; }
  .social-link:nth-child(4) { animation-delay: 0.4s; }
  .social-link:nth-child(5) { animation-delay: 0.5s; }
  .social-link:nth-child(6) { animation-delay: 0.6s; }
  .social-link:nth-child(7) { animation-delay: 0.7s; }
  .social-link:nth-child(8) { animation-delay: 0.8s; }

  .social-link:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
  }

  .social-link:active {
    transform: translateY(0px) scale(0.98);
  }

  .social-link i {
    margin-right: 10px;
    font-size: 1.5rem;
  }

  .github, .youtube, .tiktok, .steam, .instagram, .spotify, .x, .discord { color: #f5f5f5; }



  .projects-section {
    width: 100%;
    max-width: 1200px;
    padding: 3rem;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
    border: 3px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    animation: slideInUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  @keyframes slideInUp {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }
    50% {
      opacity: 0.7;
      transform: translateY(15px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .projects-section:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.15);
  }

  .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }

  .project-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    display: block;
    border: 2px solid rgba(255, 255, 255, 0.1);
    animation: zoomIn 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), floatingCard 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation-fill-mode: both;
    position: relative;
    overflow: hidden;
  }

  .project-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;
  }

  .project-card:hover::before {
    left: 100%;
  }

  .project-card:nth-child(1) { animation-delay: 0.2s; }
  .project-card:nth-child(2) { animation-delay: 0.4s; }
  .project-card:nth-child(3) { animation-delay: 0.6s; }

  .project-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
  }

  .project-card:active {
    transform: translateY(-4px) scale(1.01);
    animation: clickBounce 0.3s ease-in-out;
  }

  .project-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .project-card:hover .project-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border-color: rgba(255, 255, 255, 0.3);
  }

  .project-icon i {
    font-size: 1.8rem;
    color: #f5f5f5;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .project-card:hover .project-icon i {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  }

  .project-name {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #f5f5f5;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .project-card:hover .project-name {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  }

  .project-desc {
    color: #ccc;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .project-card:hover .project-desc {
    color: #f5f5f5;
  }

  .project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .tag {
    background: rgba(255, 255, 255, 0.1);
    color: #f5f5f5;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .project-card:hover .tag {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #f5f5f5;
    font-weight: 600;
  }

  /* New Music Player Styles */
  .music-player-section {
    flex: 1;
    min-width: 350px;
    padding: 3.5rem;
    background: rgba(0, 0, 0, 0.85);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
    border: 3px solid rgba(255, 255, 255, 0.25);
    margin: 0 1rem;
    text-align: center;
    backdrop-filter: blur(10px);
    animation: slideInUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  @keyframes slideInUp {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }
    50% {
      opacity: 0.7;
      transform: translateY(15px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .music-player-section:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.15);
  }



  .album-section {
    text-align: center;
    margin-bottom: 2rem;
  }

  .album-art-container {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .album-art-container:hover {
    transform: translateY(-8px) scale(1.05) rotate(2deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
    animation: pulse 1s ease-in-out infinite;
  }

  .album-art {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }



  .song-info {
    margin-bottom: 1.5rem;
  }

  .song-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
  }

  .song-title {
    font-size: 1.3rem;
    color: #fff;
    margin: 0;
    font-weight: bold;
  }

  .song-artist {
    color: #ccc;
    margin: 0;
    font-size: 1rem;
  }

  .progress-section {
    margin-bottom: 2rem;
    text-align: center;
  }

  .progress-bar {
    position: relative;
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    margin-bottom: 0.8rem;
    cursor: pointer;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
  }

  .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #fff, #f0f0f0, #fff);
    background-size: 200% 100%;
    border-radius: 5px;
    width: 0%;
    transition: width 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    animation: progressShimmer 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  }

  @keyframes progressShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
  }

  .progress-handle {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .progress-handle:hover {
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }

  .time-display {
    display: flex;
    justify-content: space-between;
    color: #fff;
    font-size: 0.9rem;
    max-width: 300px;
    margin: 0 auto;
  }

  .control-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
  }

  .control-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    padding: 0;
    line-height: 1;
    flex-shrink: 0;
    box-sizing: border-box;
  }

  .control-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
    animation: bounce 0.6s ease-in-out;
  }

  .control-btn:active {
    animation: clickBounce 0.3s ease-in-out;
  }

  @keyframes bounce {
    0%, 100% { transform: translateY(-5px) scale(1.1); }
    50% { transform: translateY(-8px) scale(1.15); }
  }

  .control-btn.active {
    color: #00FF00;
  }

  .play-btn {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #fff;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 1.5rem;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
    line-height: 1;
    flex-shrink: 0;
    box-sizing: border-box;
  }

  .play-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-6px) scale(1.1);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
    animation: playPulse 0.8s ease-in-out infinite;
  }

  .play-btn:active {
    animation: clickBounce 0.3s ease-in-out;
  }

  @keyframes playPulse {
    0%, 100% { 
      transform: translateY(-6px) scale(1.1);
      box-shadow: 0 12px 40px rgba(255, 255, 255, 0.3);
    }
    50% { 
      transform: translateY(-8px) scale(1.15);
      box-shadow: 0 15px 50px rgba(255, 255, 255, 0.4);
    }
  }



  .volume-section {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .volume-control {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
  }

  .volume-control i {
    color: #fff;
    font-size: 1.2rem;
  }

  .volume-slider {
    width: 200px;
    -webkit-appearance: none;
    appearance: none;
    height: 8px;
    border-radius: 4px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.4));
    outline: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
  }

  .volume-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: sliderShine 3s ease-in-out infinite;
  }

  @keyframes sliderShine {
    0% { left: -100%; }
    100% { left: 100%; }
  }

  .volume-slider:hover {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.5));
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
  }

  .volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
  }





  .back-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #f5f5f5;
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .back-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
  }

  .back-btn:active {
    animation: clickBounce 0.3s ease-in-out;
  }

  /* PC Specs Button Styles */
  .pc-specs-button {
    position: relative;
    margin: 2rem auto 0 auto;
    background: rgba(0, 0, 0, 0.8);
    color: #f5f5f5;
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 10;
    width: fit-content;
  }

  .pc-specs-button:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 7px 25px rgba(0, 0, 0, 0.4);
  }

  .pc-specs-button i {
    font-size: 1.2rem;
  }

  /* PC Specs Popup Styles */
  .pc-specs-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 300;
  }

  .specs-popup-content {
    background: rgba(0, 0, 0, 0.95);
    border-radius: 15px;
    padding: 2rem;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  }

  .specs-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .close-specs-btn {
    background: none;
    border: none;
    color: #f5f5f5;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
  }

  .close-specs-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
  }

  .specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
  }

  .spec-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 12px;
  }

  .spec-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
  }

  .spec-emoji {
    font-size: 1.3rem;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
  }

  .spec-text {
    font-size: 0.95rem;
    color: #f5f5f5;
    font-weight: 500;
    text-align: center;
  }

  /* PC Check Learning Page Styles */
  .pc-check-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.95)), 
      url('data:image/svg+xml;utf8,<svg xmlns="https://unsplash.com/s/photos/night-landscape width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="black"/><path d="M0 0L100 100M100 0L0 100" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 200;
  }

  .pc-check-content {
    text-align: center;
    max-width: 600px;
    padding: 3rem;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .pc-check-image-container {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
  }

  .pc-check-image {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    object-fit: cover;
  }

  .pc-check-title {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #f5f5f5;
    font-weight: 600;
    letter-spacing: 2px;
  }

  .pc-check-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .pc-check-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    color: #f5f5f5;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1.1rem;
  }

  .pc-check-link:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
  }

  .pc-check-link:active {
    animation: clickBounce 0.3s ease-in-out;
  }

  .pc-check-link i {
    margin-right: 15px;
    font-size: 1.5rem;
  }

  /* More Info Page Styles */
  .more-info-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.95)), 
      url('data:image/svg+xml;utf8,<svg xmlns="https://unsplash.com/s/photos/night-landscape width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="black"/><path d="M0 0L100 100M100 0L0 100" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 200;
    overflow-y: auto;
    padding: 2rem 0;
  }

  .more-info-content {
    text-align: left;
    max-width: 800px;
    width: 90%;
    padding: 3rem;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
  }

  .more-info-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #f5f5f5;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
  }

  .info-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
  }

  .info-section-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #f5f5f5;
    font-weight: 600;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
  }

  .subsection-title {
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem 0;
    color: #f5f5f5;
    font-weight: 500;
  }

  .tier-subtitle {
    font-size: 1.1rem;
    margin: 1rem 0 0.5rem 0;
    color: #ccc;
    font-weight: 500;
  }

  .info-list {
    margin: 1rem 0;
    padding-left: 1.5rem;
    color: #f5f5f5;
  }

  .info-list li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }

  .pricing-note, .tier-note {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid #4CAF50;
    color: #f5f5f5;
    font-style: italic;
  }

  .tos-intro {
    margin-bottom: 1.5rem;
    color: #ccc;
    font-style: italic;
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
  }

  .tos-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border-left: 3px solid rgba(255, 255, 255, 0.1);
  }

  .tos-section p {
    margin-bottom: 1rem;
    color: #f5f5f5;
    line-height: 1.6;
  }

  .warning-text {
    background: rgba(255, 87, 87, 0.1);
    border: 1px solid rgba(255, 87, 87, 0.3);
    border-radius: 6px;
    padding: 1rem;
    color: #ff5757;
    font-weight: 500;
    margin: 1rem 0;
  }

  .discord-link {
    color: #5865F2;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .discord-link:hover {
    color: #4752C4;
    text-decoration: underline;
  }

  /* DMA Forensics Page Styles */
  .dma-forensics-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.95)), 
      url('data:image/svg+xml;utf8,<svg xmlns="https://unsplash.com/s/photos/night-landscape width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="black"/><path d="M0 0L100 100M100 0L0 100" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 200;
    overflow-y: auto;
    padding: 2rem 0;
  }

  .dma-forensics-content {
    text-align: center;
    max-width: 600px;
    width: 90%;
    padding: 3rem;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
  }

  .dma-forensics-image-container {
    margin-bottom: 2rem;
  }

  .dma-forensics-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }

  .dma-forensics-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #f5f5f5;
    font-weight: 600;
    letter-spacing: 1px;
  }

  .dma-forensics-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .important-notice {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
    border-left: 4px solid #FFC107;
  }

  .important-notice p {
    color: #f5f5f5;
    margin: 0;
    line-height: 1.5;
  }

  .warning-notice {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(255, 87, 87, 0.1);
    border: 1px solid rgba(255, 87, 87, 0.3);
    border-radius: 8px;
    border-left: 4px solid #ff5757;
  }

  .pricing-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 8px;
    border-left: 4px solid #4CAF50;
  }

  .discord-links-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }

  .discord-links-section .pc-check-link {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #f5f5f5;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-weight: 500;
  }

  .discord-links-section .pc-check-link:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
  }

  .discord-links-section .pc-check-link i {
    margin-right: 15px;
    font-size: 1.5rem;
  }

  /* DMA Forensics More Info Page Styles */
  .dma-forensics-more-info-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.95)), 
      url('data:image/svg+xml;utf8,<svg xmlns="https://unsplash.com/s/photos/night-landscape width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="black"/><path d="M0 0L100 100M100 0L0 100" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 200;
    overflow-y: auto;
    padding: 2rem 0;
  }

