@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@100..700&display=swap');


:root {
  /* Fonts */
  --font-ibm: "IBM Plex Mono", monospace;

  /* Colors */
  --color-background: #1E1E2E;  /* dark slate */
  --color-background-light: #313244; /* lighter dark */
  --color-primary: #CBA6F7;  /* purple */
  --color-secondary: #89B4FA; /* soft blue */
  --color-accent: #F38BA8;  /* pink/red */
  --color-muted: #6C7086;   /* grayish */
  --color-highlight: #A6E3A1; /* green highlight */

  /* Typography sizes */
  --text-4-5xl: 2.5rem;
  --text-7xl: 5rem;
}

body{
  margin: 0;
  padding: 0;
}

/* Ensure fonts are applied */
.font-ibm {
  font-family: "IBM Plex Mono", monospace !important;
}

#glass {
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

}
.text-glow{
  text-shadow: 0 0 5px rgba(207, 231, 244, 0.8);
}

#glass span {
  text-shadow: none !important;
}

/* Hide scrollbars */
::-webkit-scrollbar {
  display: none;
}

html {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.text-glow-yellow{
  /* Multilayered glow for yellow: small sharp core, larger soft halo */
  color: #F6FA0B;
  text-shadow: 0 0 2px rgba(246,250,11,0.9),
               0 0 6px rgba(246,250,11,0.6),
               0 0 14px rgba(246,250,11,0.3);
}
.text-glow-cyan{
  /* Multilayered glow for cyan: crisp inner glow and soft outer halo */
  color: #3FB2EF;
  text-shadow: 0 0 2px rgba(63,178,239,0.95),
               0 0 8px rgba(63,178,239,0.55),
               0 0 18px rgba(63,178,239,0.25);
}

/* Reusable glass-card to match #glass but scoped for cards */
.glass-card{
  background: rgba(0, 0, 0, 0.20);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

/* Accent glow for important numeric figures (e.g., 10++) */
.text-glow-accent{
  color: #F38BA8; /* pink-ish accent */
  text-shadow: 0 0 2px rgba(243,139,168,0.95),
               0 0 8px rgba(243,139,168,0.5),
               0 0 16px rgba(243,139,168,0.25);
}
.glass-for-cards {
  backdrop-filter: blur(12px);
  background-color: rgba(169, 168, 204, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

#bg-desktop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.music-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background-color: rgba(203, 166, 247, 0.1);
    color: #CBA6F7;
    border: 2px solid #CBA6F7;
    border-radius: 50px;
    padding: 0 1rem;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: bold;
}

.music-btn:hover {
    background-color: #CBA6F7;
    color: #1E1E2E;
    box-shadow: 0 0 20px rgba(203, 166, 247, 0.6);
    transform: scale(1.1);
}
