:root {
    --bg: #0b0f17;
    --glass: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.12);
    --text: #ffffff;
    --muted: rgba(255, 255, 255, 0.65);
    --accent: #08afff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Orbitron', sans-serif;
    background: radial-gradient(circle at top, #111827, #0b0f17);
    color: var(--text);
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(8,175,255,0.08), transparent 40%),
        radial-gradient(circle at 80% 30%, rgba(99,102,241,0.08), transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(0,0,0,0.2), transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(20, 24, 35, 0.6);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    border-radius: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.logo {
    color: white;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 18px;
}

.nav-links {
    display: flex;
    gap: 24px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a i {
    transition: 0.3s;
}

.nav-links a:hover i {
    color: var(--accent);
    transform: translateY(-2px);
}

.nav-button a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, #08afff, #3b82f6);
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 10px 30px rgba(8, 175, 255, 0.2);
}

.nav-button a:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(8, 175, 255, 0.35);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
}

html, body {
    height: 100%;
    width: 100%;
    background: #0b0f17 !important;
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    z-index: 1;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text);
}

.hero p {
    font-size: 18px;
    color: var(--muted);
    max-width: 600px;
    margin-bottom: 30px;
}

.hero-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 12px;
    background: linear-gradient(135deg, #08afff, #3b82f6);
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 10px 30px rgba(8, 175, 255, 0.2);
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(8, 175, 255, 0.35);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }
}

.hero-description {
    font-size: 20px;
    color: var(--accent);
    font-weight: 600;
    min-height: 30px; 
}

#typed {
    display: inline-block;
}

.typed-cursor {
    color: var(--accent);
    font-size: 20px;
    margin-left: 2px;
}

.hero-description p {
    display: inline-block;
    margin-left: 8px;
    color: var(--muted);
    font-weight: 400;
    color: #08afff
}

.music-player {
    position: fixed;
    bottom: 20px;
    right: 20px;

    width: 280px;
    padding: 16px;

    background: rgba(20, 24, 35, 0.85);
    backdrop-filter: blur(18px);

    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;

    color: white;
    font-family: 'Orbitron', sans-serif;
    z-index: 999;
}

.mp3-info {
    text-align: center;
    margin-bottom: 10px;
}

#title {
    font-weight: 700;
    font-size: 14px;
}

#artist {
    font-size: 12px;
    opacity: 0.7;
}

#progress {
    width: 100%;
    accent-color: #08afff;
    margin: 10px 0;
}

.controls-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.controls-row button {
    border: none;
    cursor: pointer;
    color: white;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    width: 38px;
    height: 38px;
    transition: 0.2s;
}

.controls-row button:hover {
    background: rgba(8,175,255,0.3);
    transform: translateY(-2px);
}

.play {
    width: 48px !important;
    height: 48px !important;
    background: linear-gradient(135deg, #08afff, #3b82f6) !important;
}

.volume-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.volume-row input {
    width: 100%;
    accent-color: #08afff;
}

.scroll-down {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);

    width: 42px;
    height: 42px;

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

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);

    color: #08afff;
    font-size: 16px;

    cursor: pointer;

    animation: bounce 1.6s infinite;
    transition: 0.3s ease;
    z-index: 999;
}

.scroll-down:hover {
    transform: translateX(-50%) scale(1.1);
    background: rgba(8, 175, 255, 0.15);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

.scroll-hidden {
    opacity: 0;
    pointer-events: none;
    transition: 0.4s ease;
}

footer {
    padding: 40px 20px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.9rem;
    color: #777;
        }

.footer-links a {
    color: #aaa;
    margin: 0 15px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #0780c7;
}

#linksModal {
  backdrop-filter: blur(10px);
}

.link-item {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 14px 16px;
  border-radius: 12px;

  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);

  color: white;
  text-decoration: none;

  transition: 0.25s ease;
  position: relative;
  overflow: hidden;
}

.link-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.link-left .icon {
  opacity: 0.6;
  transform: translateX(-4px);
  transition: 0.25s ease;
}

.arrow {
  opacity: 0.4;
  transition: 0.25s ease;
}

.link-item:hover {
  border-color: #08afff;
  background: rgba(8, 175, 255, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(8, 175, 255, 0.2);
}

.link-item:hover .icon {
  opacity: 1;
  transform: translateX(0);
  color: #08afff;
}

.link-item:hover .arrow {
  opacity: 1;
  transform: translateX(4px);
  color: #08afff;
}

.link-item span {
  font-weight: 500;
  letter-spacing: 0.2px;
}

#linksModal > div {
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
  animation: pop 0.25s ease;
}

@keyframes pop {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

#musicToggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(8,175,255,0.15);
  border: 1px solid rgba(8,175,255,0.3);
  color: #08afff;
  font-size: 20px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  z-index: 999;
}

#musicToggle:hover {
  transform: scale(1.1);
  background: rgba(8,175,255,0.25);
  box-shadow: 0 0 20px rgba(8,175,255,0.4);
}

.music-player {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 280px;
  background: rgba(11,15,23,0.95);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 15px;
  backdrop-filter: blur(15px);

  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s ease;
}

.music-player.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}


