/* Dark Mode (default) */
:root {
  --bg: #0f1724;
  --card: #0b1220;
  --text: #e6eef8;
  --muted: #94a3b8;
  --accent: #06b6d4;
  --glass: rgba(255,255,255,0.04);
  --btn-bg: rgba(0, 0, 0, 0.1);
  --border-hover: rgba(250, 249, 246, 0.25);
  --brand: #FAF9F6;
  --brand-hover: #c9c9c9;
  --brand-light: #999999;
  --text: #00FF00;
  --gradient-text: linear-gradient(135deg, var(--text) 0%, var(--brand-light) 100%);
  
  /* menu */
  --back: #0B1220BD;
  --brand-light: #999999;
  --btn: linear-gradient(135deg, #FDFF00BF 0%, #12CD43A8 135%);
}




 * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
}
    
 html {
      scroll-behavior: smooth;
      overflow-x: hidden;
}
    
body {
      font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      line-height: 1.6;
      color: #FFFFFF;
      background: #0A0C1B;
      min-height: 100vh;
      overflow-x: hidden;
      font-feature-settings: 'kern' 1, 'liga' 1;
      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

/* header & menu */
header {
  background: #0A0C1B;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 11px;
  border-bottom: 1px solid #444444B8;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
  z-index: 900;
}

.overlay.show {
  opacity: 1;
  visibility: visible;
}

.logo > img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  border: 1px solid #444444;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(3,7,18,0.6);
  animation:header-fade 1s forwards;
}

@keyframes header-fade{0%{opacity:0;transform:translateY(-20px);}100%{opacity:1;transform:translateY(0);}}

.brand-text {
  text-align: center;
}

.brand-text > h2 {
  background-image: url(https://files.catbox.moe/1lix8h.jpg);
  background-clip: text;
  background-size: 300% 300%;
  color: transparent;
  animation:header-fade 1s forwards;
  animation: bb 8s ease infinite;
}

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

.menu-btn {
  display: none;
  cursor: pointer;
  border: 1px solid #444444;
  background: #000;
  box-shadow: 1px 1px 0px #080C12, -1px -1px 0px #000000;
  padding: 8px 13px;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  animation:header-fade 1s forwards;
}

.menu {
  display: flex;
  gap: 16px;
  align-items: center;
}

.menu a {
  padding: 6px 40%;
  border-radius: 8px;
  transition: 0.2s;
}

.menu a:hover {
  background: rgba(255,255,255,0.05);
  border: 1px solid #444444;
}

@media (max-width: 768px) {
  .menu {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 200%;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
   -webkit-backdrop-filter: blur(10px);
    border-right: 1px solid #444;
    border-radius: 20px;
    box-shadow: 2px 0 24px rgba(0,0,0,0.7);
    transition: left 0.3s ease;
    z-index: 999;
  }
  .menu.show {
    left: 0;
  }
  .menu-btn {
    display: block;
  }
}

.main {
  padding: 5rem 1.5rem 1rem;
  max-width: 1400 auto;
  margin: 0 auto;
}


.image {
  margin-top: 10%;
  width: 100%;
  max-width: 500px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow:
    0 25px 50px -12px rgba(250, 249, 246, 0.25),
    0 0 0 1px var(--border);
  transition: all 0.3s ease;
}

.image:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 35px 70px -12px rgba(79, 255, 0, 0.35),
    0 0 0 1px var(--border-hover);
}

.image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(250, 249, 246, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.image:hover::before {
  opacity: 1;
}

.main-text {
  text-align: center;
  margin-top: 10%;
}

.main-text .myname {
  font-size: clamp(2.5rem, 6vw, 4rem);
      font-weight: 900;
      line-height: 1.1;
      letter-spacing: -0.02em;
      background: var(--gradient-text);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin: 0;
}

.text {
  text-align: center;
  margin-top: 5%;
}

.text > h3 {
  font-size: 25px;
  font-weight: 800;
}

.text > h1 {
  font-weight: 900;
  background-image: url(https://files.catbox.moe/hf1bmp.jpeg);
  background-clip: text;
  background-size: 300% 300%;
  color: transparent;
  text-shadow: 0 0 2px #23FF00;
}

.text > p {
  margin-top: 5%;
  font-size: 16px;
  font-weight: 600;
  color: #CFCFCF;
}

/* ====== ABOUT ME ========= */
.about {
  text-align: center;
  margin-top: 26%;
}


.about h1 {
  background-image: url(https://files.catbox.moe/1lix8h.jpg);
  background-clip: text;
  background-size: 300% 300%;
  color: transparent;
  animation:header-fade 1s forwards;
  animation: bb 8s ease infinite;
  
}

.about span {
  display: inline-block;
  border: 1px solid #444;
  width: 90%;
}

.about > .img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  padding: 4px; /* border thickness */
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.05),
    0 15px 40px rgba(0,0,0,0.9);
  background: #2B2B2B40;
  object-fit: cover;
  margin-top: 10%;
  transition: .4s;
}

.about > img:hover {
  box-shadow: 0 0 5px #00FF00;
  border: 1px solid #444;
  background: #53E05C69;
  transform: translateY(-10px);
}

.about > h3 {
   font-size: 40px;
   font-weight: 900;
   color: #CECECE;
}

.about > h4 {
  font-size: 30px;
  font-weight: 800;
  color: #CECECE;
}

.about > p {
  margin-top: 5%;
  font-weight: 600;
  color: #A9A6A6;
}


.icon {
  margin-top: 10%;
  padding: 20px;
  border-radius: 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  place-content: center;
  background: #2B2B2B40;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.05),
    0 15px 40px rgba(0,0,0,0.9);
}

.card {
  width: 80px;
  height: 90px;
  padding: 10px;
  
  background: #2B2B2B40;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #eee;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.05),
    0 10px 30px rgba(0,0,0,0.8);
  transition: all 0.3s ease;
}

.card i {
  font-size: 28px;
  margin-bottom: 12px;
  opacity: 0.85;
}

.card h3 {
  margin: 0;
  font-weight: 500;
  font-size: 14px;
}


/* Hover animation */
.card:hover {
  transform: translateY(-8px);
  color: #E62020;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.1),
    0 20px 40px rgba(0,0,0,1);
}


.service h1 {
  background-image: url(https://files.catbox.moe/1lix8h.jpg);
  background-clip: text;
  background-size: 300% 300%;
  color: transparent;
  animation:header-fade 1s forwards;
  animation: bb 8s ease infinite;
}


.service > span {
  display: inline-block;
  border: 1px solid #444;
  width: 90%;
}

.service {
  margin-top: 20%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
  padding: 40px 0;
}

.service-card {
  width: 90%;
  max-width: 420px;
  background: #2B2B2B40;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  color: #eee;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.05),
    0 15px 40px rgba(0,0,0,0.9);
  transition: all .4s ease;
}

.service-card:hover {
  border-top: 1px solid #1552A4;
  transform: translateY(-5px);
}

.service-icon {
  font-size: 42px;
  color: #00FF00;
  margin-bottom: 15px;
}

.service-card h3 {
  margin: 10px 0;
  font-size: 22px;
}

.service-card p {
  font-size: 15px;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.service-card ul li {
  margin: 12px 0;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-card ul i {
  color: #00FF00;
}

.btn-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.btn-btn a {
  margin-top: 5%;
  background: #2B2B2B40;
  width: 100%;
  padding: 10px;
  border-radius: 20px;
  font-weight: 700;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.05),
    0 15px 40px rgba(0,0,0,0.9);
  border: 1px solid #444;
  transition: all 0.3s ease;
}

.btn-btn > a:hover {
  box-shadow: 0 0 10px #949494;
  transform: translateY(-4px);
}

.btn-btn button {
  margin-top: 10%;
  display: flex;
  align-items: center;
  font-weight: 600;
  gap: 8px;
  padding: 8px 21px;
  font-size: 16px;
  cursor: pointer;
  background: #ffcc00;
  border: 1px solid #444;
  border-radius: 6px;
}












/* 𝗔𝗨𝗧𝗢 𝗦𝗢𝗡𝗚 𝗣𝗟𝗔𝗬 𝗯𝗻 🌚🩷🩷🩷🩷🩷 */
/* PLAYER CARD */
/* =========================
   RADIO CARD
========================= */

/* =========================
   RADIO CARD
========================= */
.radio-card {
  position: fixed;
  bottom: 88px;
  left: 64%;
  transform: translateX(-50%);
  width: 60%;
  max-width: 420px;
  height: 23%;
  background: linear-gradient(160deg, #141833, #0a0d1f);
  border-radius: 22px;
  border: 2px solid #444;
  padding: 18px;
  box-shadow: 0 0 40px rgba(80, 90, 255, 0.25);
  z-index: 999;
  animation: slideDown 0.4s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translate(-50%, -20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

/* =========================
   HEADER
========================= */
.radio-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: red;
  border-radius: 50%;
  animation: blink 1s infinite;
}

@keyframes blink {
  50% {
    opacity: 0.4;
  }
}

.live-text {
  font-size: 12px;
  opacity: 0.85;
}

.close {
  margin-left: auto;
  font-size: 18px;
  cursor: pointer;
  opacity: 0.8;
}

/* =========================
   BODY
========================= */
.radio-body {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 20px 0;
}

.signal {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #313088, #313088);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  
}

.info h3 {
  font-size: 18px;
  font-weight: 600;
}

.info p {
  font-size: 12px;
  opacity: 0.6;
  margin-top: 3px;
}

/* =========================
   CONTROLS
========================= */
.controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stop-btn {
  flex: 1;
  padding: 10px 1px;
  border-radius: 16px;
  border: none;
  background: linear-gradient(135deg, #6c7cff, #4e5bff);
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 0 30px rgba(79, 90, 164, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.signal .music-anim {
  font-size: 30px;
  color: #00FF0D;
  display: inline-block;
  animation: eqMove 0.7s infinite ease-in-out;
  transform-origin: bottom;
}

@keyframes eqMove {
  0%   { transform: scaleY(0.5); }
  30%  { transform: scaleY(1.2); }
  60%  { transform: scaleY(0.7); }
  100% { transform: scaleY(1); }
}

.next-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: #1b1f3a;
  color: #7c86ff;
  font-size: 20px;
  cursor: pointer;
  box-shadow: inset 0 0 10px rgba(255,255,255,0.05);
}

/* =========================
   SPEAKER ICON (MINIMIZED)
========================= */
.speaker-icon {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #444;
  background: linear-gradient(135deg, #0A0C1B, #0A0C1B);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #5C19DF;
  cursor: pointer;
  box-shadow: 0 0 25px rgba(100, 120, 255, 0.7);
  z-index: 999;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 #151A3A;
  }
  70% {
    box-shadow: 0 0 25px #151A3A;
  }
  100% {
    box-shadow: 0 0 0 #151A3A;
  }
}


.red-dot {
  position: absolute;
  bottom: 35px;
  left: 35px;
  width: 8px;
  height: 8px;
  background: #00FF2B69;
  border-radius: 50%;
  animation: blink 1s infinite;
}

@keyframes blink {
  50% {
    opacity: 0.4;
  }
}

/* =========================
   DESKTOP ONLY
========================= */
@media (min-width: 768px) {
  .radio-card {
    top: 60px;
  }
}  


.folder {
  text-align: center;
  color: #444;
  font-size: 13px;
  font-weight: 600;
}

@media (min-width: 768px) {
  header {
    
  }  
}



