:root {
  --bg: #020204;
  --neon: #00ff88;
  --neon-2: #00c8ff;
  --accent: #66ffb3;
  --glass: rgba(255,255,255,0.03);
}

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

html, body {
  height: 100vh;
}

body {
  
  font-family: 'Poppins', sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* MATRIX CANVAS */
canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 1.4;
}

/* subtle particle glow */
.bg-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  backdrop-filter: blur(6px);
}

/* FULL-WIDTH NAVBAR */
header.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  backdrop-filter: blur(9px);
  background: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(255,255,255,0.02));
  border-bottom: 1px solid #4444448F;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6), 0 2px 10px rgba(0,255,150,0.02) inset;
}

/* navbar time */
 .controls > #clock {
  border-radius: 5px;
  color: #00FF00;
  font-size: 13px;
  font-weight: 800;
  padding: 8px 10px;
  border: 1px solid rgba(0,255,150,0.08);
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,255,150,0.02);
}

.controls > .back-btn {
  border-radius: 5px;
  color: #00FF00;
  background: none;
  font-size: 13px;
  font-weight: 800;
  padding: 5px;
  width: 100px;
  margin-right: 6px;
  border: 1px solid red;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,255,150,0.02);
}



/* logo with typing & glitch */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-badge > img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 18px;
  background: linear-gradient(135deg, rgba(0,255,140,0.18), rgba(0,200,255,0.12));
  color: #001;
  box-shadow: 0 6px 22px rgba(0,255,150,0.06);
  border: 1px solid rgba(0,255,150,0.06);
}

.logo-text {
  font-size: 16px;
  line-height: 1;
  color: #00FF00;
  text-shadow: 0 0 8px rgba(0,255,150,0.15);
  display: flex;
  flex-direction: column;
}

.logo-main {
  display: flex;
  gap: 6px;
  align-items: center;
}

.logo-main .title {
  font-weight: 900;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  
}

.type {
  display: inline-block;
  white-space: nowrap;
  font-family: "Courier New", monospace;
  font-weight: 800;
}

.cursor {
  display: inline-block;
  width: 8px;
  height: 18px;
  margin-left: 6px;
  background: linear-gradient(180deg, var(--neon), var(--neon-2));
  border-radius: 2px;
  vertical-align: middle;
  animation: blink 0.9s steps(1, start) infinite;
}

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

/* glitch effect */
.glitch {
  position: relative;
  font-family: "Courier New", monospace;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0 0 0 0);
  opacity: 0.6;
  transform: translate(0);
  pointer-events: none;
}

.glitch::before {
  color: var(--neon-2);
  mix-blend-mode: screen;
  z-index: 2;
  transform: translate(-2px,-1px);
  animation: gl1 2.3s infinite linear;
}

.glitch::after {
  color: var(--accent);
  mix-blend-mode: screen;
  z-index: 1;
  transform: translate(1px,2px);
  animation: gl2 3.7s infinite linear;
}

@keyframes gl1 {
  0% { opacity: 0; }
  5% { opacity: 1; }
  10% { transform: translate(-6px, -2px); }
  12% { opacity: 0; }
  70% { opacity: 0; }
  100% { opacity: 0; }
}

@keyframes gl2 {
  0% { opacity: 0; }
  8% { opacity: 1; }
  14% { transform: translate(6px, 3px); }
  16% { opacity: 0; }
  100% { opacity: 0; }
}

/* nav links */
nav.navlinks {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 18px;
  align-items: center;
  margin: 0;
  padding: 0;
}

nav a {
  display: inline-block;
  color: var(--neon);
  text-decoration: none;
  font-weight: 700;
  padding: 8px 10px;
  border-radius: 8px;
  letter-spacing: 1px;
  position: relative;
  overflow: visible;
  transition: transform 0.2s ease, color 0.18s ease;
}

nav a:hover {
  transform: translateY(-3px);
  color: #fff;
  text-shadow: 0 0 10px rgba(0,255,150,0.18);
}

nav a .inner {
  display: inline-block;
  transform: translateY(0);
  position: relative;
  transition: transform 0.28s cubic-bezier(.2,.9,.2,1);
  padding: 2px 0;
}

nav a:hover .inner {
  transform: translateY(-2px);
}

.active-indicator {
  position: absolute;
  height: 3px;
  background: linear-gradient(90deg, var(--neon), var(--neon-2));
  bottom: -6px;
  border-radius: 3px;
  box-shadow: 0 6px 18px rgba(0,255,150,0.08);
  transition: left 0.25s, width 0.25s, opacity 0.2s;
  opacity: 0;
}

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

.search {
  display: flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px dashed rgba(0,255,150,0.05);
  background: rgba(0,0,0,0.25);
}

.search input {
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--neon);
  font-family: inherit;
  width: 140px;
}

/* hamburger */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid rgba(0,255,150,0.06);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: transparent;
}

.hamburger .bar {
  width: 20px;
  height: 2px;
  background: var(--neon);
  position: relative;
}

.hamburger .bar::before,
.hamburger .bar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: inherit;
}

.hamburger .bar::before { top: -6px; }
.hamburger .bar::after { top: 6px; }

/* MOBILE PANEL */
.mobile-panel {
  position: fixed;
  left: 12px;
  right: 12px;
  top: 70px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(9px);
  border: 1px solid #6C6C6CBD;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 18;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.mobile-panel.show {
  max-height: 500px;
  opacity: 1;
}

.mobile-panel a {
  padding: 10px;
  border-radius: 8px;
  display: block;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}


.nav-icon {
  display: flex;
}

.nav-icon > a {
   outline: none;
   text-decoration: none;
   text-align: center;
   font-weight: 600;
   font-size: 22px;
}

.panel {
  background: linear-gradient(180deg, rgba(0,0,0,0.5), rgba(255,255,255,0.01));
  padding: 18px;
  border-radius: 10px;
  border: 1px solid rgba(0,255,150,0.04);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
}

/* responsive */
@media (max-width: 900px) {
  nav ul { display: none; }
  .search { display: none; }
  .hamburger { display: flex; }
}

/* hero */
.hero {
  max-width: 1200px;
  margin: 100px auto;
  padding: 20% 20px;
  position: relative;
  z-index: 5;
  justify-content: center;
}

.image {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  transform: translateY(-50px);
}

.image > img {
  width: 150px;
  border: 1px solid #00FF00;
  border-radius: 50%;
  margin-bottom: 40px;
  transition: .4s;
}

.image > img:hover {
  transform: rotate(10deg);
  box-shadow: 0 0 10px #00FF00;
}

.image > h1 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #00FF00;
}


.image > button {
  width: 30%;
  padding: 5px;
  border-radius: 10px;
  background: none;
  border: 1px solid #00FF00;
}

.image > button > a {
  outline:  none;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.box-div {
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  margin-top: 20px;
  border: 1px solid #676767C4;
  border-radius: 20px;
  height: 160px;
  width: 100%;
  background: rgba(0,0,0,0.6);
  transition: .4s;
}

.box-div:hover {
  transform: translateY(-5px);
  border: 1px solid #00FF00;
  box-shadow: 0 0 10px #00FF00;
}

.box-div > h4,i {
  margin-top: 10px;
  font-weight: 600;
}

.box-div > i {
  font-size: 26px;
  color: #00FF00;
}

.box-div > p {
  margin-top: 6px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  margin-left: 27px;
}

.box-div > a {
  font-size: 15px;
  margin-top: 6px;
  color: #0F2B9E;
  font-weight: 600;
}

/*=====================================*/
.last-box {
  font-family: 'Poppins', sans-serif;
  border: 1px solid #00FF00;
  margin-top: 50px;
  padding: 20px;
  border-radius: 10px;
}

.last-box > h4 {
  text-align:  center;
  margin-bottom: 30px;
  font-weight: 600;
  color: #00FF00;
}

.last-box > p {
  font-weight: 600;
}



/* Change button */
.buttons {
     margin-top: 80px;
      margin-bottom: 20px;
    }

.buttons > button {
      background: #000000B3;
      color: #00FF00;
      border: 1px solid #65ff00;
      padding: 10px 20px;
      margin: 5px;
      font-size: 16px;
      font-weight: 600;
      border-radius: 8px;
      cursor: pointer;
      transition: 0.3s;
    }

.buttons > button:hover {
      background: #18BA276B;
      color: #fff;
      
    }
  
  .btn-text {
    display: none;
    height: 300px;
    
  }
  
  .btn-text > span {
    display:inline-block; 
    width: 100%; 
    height:2px; 
    background: #00FF00;
    margin-bottom: 10px;
    
  }
 
 .btn-text > p {
   line-height: 1.6;
   font-size: 16px;
   font-weight: 600;
   font-family: 'Poppins', sans-serif;
 }
 
 .btn-text > h3 {
   text-shadow: 0 0 3px #00FF00;
   color: #00FF00;
 }
 
 .btn-text > ul {
   font-size: 12;
   line-height: 1.6;
   font-weight: 600;
   margin-top: 10px;
   font-family: 'Poppins', sans-serif;
 }
 
 .btn-text > button {
   padding: 5px;
   border: 1px solid #00FF00;
   border-radius: 10px;
   background: #111;
 }
 
 .btn-text > button > a {
   outline: none;
   text-decoration: none;
   color: #65ff00;
   font-size: 15px;
   font-weight: 700;
 }
 
 
 
/*====== image-box========*/
 .image-box {
   text-align: center;
   font-family: 'Poppins', sans-serif;
 }
 
 .image-box > img {
   margin-top: 160px;
   width: 260px;
   border-radius: 10px;
   border: 1px solid #00FF00;
 }
 
 .image-box > h2 {
   margin-top: 10px;
   color: #00FF00;
   text-shadow: 0 0 2px #00FF00;
   font-family: 'Poppins', sans-serif;
 }
 
 .image-box > p {
   margin-top: 20px;
   font-size: 14px;
   font-weight: 600;
   font-family: 'Poppins', sans-serif;
 }
 
 .image-box > h3 {
   margin-top: 17px;
   margin-bottom: 14px;
   color: #00FF00;
   text-shadow: 0 0 2px #00FF00;
   font-family: 'Poppins', sans-serif;
 }
 
 .p-text > p {
   display: flex;
   margin-left: 40px;
   margin-top: 5px;
   font-weight: 500;
   font-family: 'Poppins', sans-serif;
 } 
 
 
 
 
 
/* ======== main/========*/
 .main {
   margin-top: 40px;
   text-align: center;
   width: 100%;
   border: 1px solid #00FF00;
   border-radius: 10px;
   background: #133A176B;
   height: 160px;
 }
 
 .main > h4 {
   margin-bottom: 10px;
   margin-top: 16px;
   color: #00FF00;
   font-family: 'Poppins', sans-serif;
 }
 
 .main > p {
   font-size: 14px;
   font-weight: 500;
   display: block;
   font-family: 'Poppins', sans-serif;
 }
 
 .main > button {
   width: 27%;
   margin-top: 8px;
   padding: 5px;
   border-radius: 10px;
   border: 1px solid #00FF00;
   background: #000000C2;
   color: #00FF00;
   font-size: 13px;
   font-weight: 600;
 }
 
 .main > button:hover {
  background:#219C2D4D;
 } 
 
 .hacker-main {
   margin-top: 70px;
   text-align: center;
 }
 
 .hacker-main > h2 {
   margin-bottom: 10px;
   color: #00FF00;
   font-family: 'Poppins', sans-serif;
 }
 
 .hacker-main > p {
   line-height: 1.4;
   color: #fff;
   font-weight: 600;
   text-shadow: 0 0 5px #00FF00;
   font-family: 'Poppins', sans-serif;
 }

  .hacker-main > img {
    width: 350px;
    margin-top: 70px;
    border-radius: 10px;
    border: 1px solid #00FF00;
  }
  
  
  /*=============== number Change =====*/
.counter-box {
      text-align: center;
      margin-top: 30px;
    }

    .number {
      font-size: 60px;
      font-weight: 800;
      color: limegreen;
      margin-top: 30px;
      font-family: 'Poppins', sans-serif;
    }

    .label {
      font-size: 17px;
      margin-top: 17px;
      font-weight: 600;
      letter-spacing: 2px;
      color: #fff;
      font-family: 'Poppins', sans-serif;
    }
    
    
    
    /*====== index-box/=======*/
  .last-index {
      margin-top: 30px;
      background: rgba(0,0,0,0.5);
      border: 1px solid #505050BA;
      border-radius: 17px;
      height: 165px;
      transition: .4s;
      font-family: 'Poppins', sans-serif;
      text-align: center;
    }
    
    .last-index:hover {
      transform: rotate(2deg);
      border: 1px solid #00FF00;
      box-shadow: 0 0 7px #00FF00;
    }
  
    .index-box > h1  {
      color: #fff;
      text-shadow: 0 0 6px #fff;
      text-align: center;
      font-family: 'Poppins', sans-serif;
    }
    
    .last-index > h3 {
      color: #00FF00;
      margin-top: 10px;
      margin-bottom:10px;
      font-size: 27px;
    }
    
    .last-index > p {
      margin-bottom: 10px;
      font-weight: 600;
      font-size: 14px;
      line-height: 1.4;
    }
    
    .last-index > button {
      width: 40%;
      padding: 5px;
      border: 1px solid #00FF00;
      background: none;
      border-radius: 17px;
      color: #fff;
      font-size: 15px;
      font-weight: 600;
      transition: .4s;
      
    }
    
    .last-index > .btn {
      transform: translateY(-4px)
    }
    
    .last-index > button:hover {
      transform: translateY(-5px);
      box-shadow: 0 0 5px #00FF00;
    }
    
   
   
   
   
   /*======== skills css =====*/
    .skills-div {
      margin-top: 60px;
      height: 540px;
      border: 1px solid #00FF00;
      border-radius: 19px;
      background: rgba(0,0,0,0.3);
      font-family: 'Poppins', sans-serif;
    }
   
    
    .skills-div > h4 {
      margin-top: 10px;
      font-size: 29px;
      color: #fff;
      text-shadow: 0 0 5px #fff;
      font-weight: 800;
      text-align: center;
    }
    
    .skills-div > .typewriter {
      font-size: 15px;
      font-weight: 600;
      color: #00FF00;
      line-height: 1.2;
      display: flex;
      margin-left: 15px;
      margin-top: 15px;
      border-right: 2px solid #00FF00B5;
      white-space: nowrap;
      overflow: hidden;
    } 
    
    
    
    /*======= skills-box - css ====*/
    .skills-box {
      height: 377px;
      margin-top: 80px;
      border: 1px solid #00FF00B3;
      border-radius: 18px;
      background: rgba(0,0,0,0.3)
    }
    
    .skills-box > p {
      display: flex;
      line-height: 1.4;
      margin-top: 5px;
      font-size: 15px;
      font-weight: 600;
      margin-left: 10px;
      color: #fff;
      text-shadow: 0 0 6px #00FF00;
      font-family: 'Poppins', sans-serif;
    }
    
    
    /*======© image and links button ====*/
    .video {
      justify-content: center;
      align-items: center;
      text-align: center;
    }
    
    .video > h3 {
      text-align: center;
      font-size: 24px;
      margin-top: 90px;
      text-shadow: 0 0 5px #00FF00;
      font-family: 'Poppins', sans-serif;
    }
    
    .slider-container {
      position: relative;
      width: 80%;
      margin-left: 40px;
      margin-top: 70px;
      max-width: 900px;
      overflow: hidden;
      border-radius: 12px;
      border: 1px solid #00FF00;
      cursor: grab;
    }

/* ----- Tablet / Small Laptop ----- */
    @media (min-width: 768px) {
      .slider-container {
        max-width: 600px;
        text-align: center;
        margin-left: 150px;
      }
    }

/* ----- Desktop Mode (big screens) ----- */
    @media (min-width: 1024px) {
    .slider-container {
        max-width: 600px;
        text-align: center;
        margin-left: 150px;
      }
    }

    .slider {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }

    .slider a {
      flex: 0 0 100%;
      text-align: center;
      user-select: none; /* drag කරනකොට text select වෙන්නේ නෑ */
    }

    .slider img {
      width: 100%;
      aspect-ratio: 16/9; /* YouTube ratio */
      object-fit: cover;
      border-radius: 12px;
      display: block;
      pointer-events: none; /* drag හැම එකේම smooth වෙන්න */
    }

    .button {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0,0,0,0.6);
      color: #FF0000;
      border: none;
      font-size: 2rem;
      cursor: pointer;
      padding: 10px 15px;
      border-radius: 50%;
      transition: background 0.3s;
      z-index: 10;
    }

    .btn:hover {
      background: rgba(0, 255, 136, 0.7);
      color: #000;
    }

    .btn-left {
      left: 10px;
    }

    .btn-right {
      right: 10px;
    }
    
    
    
  /*=========== news csss 🌝🌝🌝=======*/
.news {
    align-items: center;
    gap: 15px;
    font-family: 'Poppins', sans-serif;
  }

.news-box {
  margin-top: 40px;
  text-align: center;
}

.news-box > img {
  width: 260px;
  border-radius: 10px;
  border: 1px solid #59595999;
  margin-top: 40px;
}

.news-box > h2 {
  margin-top: 20px;
  font-size: 25px;
  margin-bottom: 17px;
  color: #00FF00;
  text-shadow: 0 0 5px #00FF00;
}

.news-box > h3 {
  margin-top: 20px;
  font-size: 16px;
  margin-bottom: 17px;
  color: #00FF00;
  text-shadow: 0 0 5px #00FF00;
}

.news-box > span {
  display: flex;
  width: 100%;
  border: 1px solid #fff;
  transform: translateY(-18px);
}

 .news-box > p {
    font-size: 15px;
    font-weight: 600;
    display: flex;
    text-align: center;
    line-height: 1.4;
    opacity: 0;
    transform: rotateY(100deg); /* start එකේ කැරකීලා hide */
    transition: all 3s ease;
  }

.news-box > p.show {
    opacity: 1;
    transform: rotateY(0deg); /* scroll වෙලා දැක්කම open */
    display: flex;
}  


/*========== main-news css ☺️☺️  */
.main-news {
  margin-top: 100px;
  font-family: 'Poppins', sans-serif;
}

.main-news > h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 80px;
  text-shadow: 0 0 5px #00FF00;
}

.main-news-box {
  margin-top: 26px;
}

.main-news-box > h4,p {
  display:  flex;
}

.main-news-box > h4 {
  margin-top: 20px;
  font-size: 18px;
  color: #00FF00;
}

.main-news-box > span {
  display: flex;
  width: 100%;       /* දිග */
  border: 1px solid #1466A0C2; /* වර්ණය */
  transform: translateY(4px)
  
}

.main-news-box > p {
  margin-top: 17px;
  font-size: 16px;
  font-weight: 600;
}



/*========== Questions-div 🥷🇱🇰*/
.Questions-div {
  margin-top: 90px;
}

.Questions-div > h4{
  margin-top: 30px;
  text-align: center;
}

.Questions-div > p {
  margin-left: 100px;
  margin-top: 4px;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 500;
}

.Questions-div > img {
  width: 350px;
  border-radius: 10px;
  border: 1px solid #00FF00;
  margin-left: 30px;
}


.toggle-box {
    margin-bottom: 15px;
  }

  .toggle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 20px;
    background: rgba(0,0,0,0.6);
    border: 1px solid #444444A8;
    padding: 10px 15px;
    border-radius: 8px;
  }

  .toggle-header:hover {
    background: #444444C2;
    border: 1px solid #00FF00;
    transition: .4s;
  }

  .toggle-box {
    font-size: 14px;
    font-weight: 600;
    color: #00ff00;
  }


  .toggle-header > span {
    font-weight: bold;
    transition: transform 0.3s;
  }

  .toggle-header.active span {
    transform: rotate(80deg); /* + එක × වෙයි */
  }

  .toggle-content {
    max-height: 0; /* collapse */
    overflow: hidden;
    transition: max-height 0.5s ease;
    padding: 0 15px;
    background: rgba(0,0,0,0.25);
    border: 1px solid #444444A8;
    border-radius: 0 0 8px 8px;
  }

.toggle-content > a {
  display: flex;
  margin-top: 10px;
  margin-bottom: 5px;
  outline: none;
  text-decoration: none;
  color: #fff;
}

.toggle-content > .link {
  margin-top: 20px;
  width: 10px;
  transform: translateX(180px);
}
 
  .toggle-content p {
    margin: 10px 0;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    color: #fff;
  }

  .toggle-content.show {
    max-height: 200px; /* enough height to show content */
  }
  
.Questions-main{
  width: 100%;        /* Full width */
  height: 400px;      /* Full screen height */
  border: 1px solid none;
  border-radius: 15px;
  padding: 20px;
  overflow-y: scroll;   /* vertical scroll */
  overflow-x: hidden;   /* sideways scroll hide */
  background: none;
}









/* back Model=============*/
 /* backdrop */
  .backdrop{
    position:fixed;
    inset:0;
    background: rgba(2,6,10,0.6);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:40;
    padding:24px;
    backdrop-filter: blur(6px) saturate(1.05);
  }
  .backdrop.show{ display:flex; }

  /* modal card */
  .card{
    width:100%;
    max-width:520px;
    border-radius:16px;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.18));
    box-shadow: 0 0 40px rgba(0,0,0,0.5);
    border: 1px solid #444444AD;
    padding:28px 24px;
    position:relative;
    transform: translateY(-30px);
    opacity:0;
    transition: transform .42s cubic-bezier(.2,.9,.3,1), opacity .42s;
  }
  .backdrop.show .card{
    transform: translateY(0);
    opacity:1;
  }

  .close-x{
    position:absolute;
    right:14px;
    top:12px;
    width: 40px;
    height: 40px;
    border-radius:10px;
    display:grid;
    place-items:center;
    cursor:pointer;
    color: #9aa6b3;
    background:transparent;
    border:0;
    font-size:24px;
  }

  .avatar{
    width:92px;
    height:92px;
    border-radius:50%;
    border:6px solid rgba(255,255,255,0.06);
    background:linear-gradient(180deg,#dbefff88,#a8d7ff33);
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
    font-size:28px;
    margin:0 auto 12px;
  }

  .avatar > img {
    width: 100px;
    border-radius: 50%;
    box-shadow: 0 0 5px #00FF00;
    border: 1px solid #00FF00;
    transition: .4s;
  }

  .avatar > img:hover {
    transform: rotate(15deg);
    box-shadow: 0 0 25px #00FF00;
  }


  #profileTitle{
    text-align:center;
    color: #00FF00;
    margin:6px 0 0;
    font-size:22px;
    letter-spacing:0.6px;
  }
  .sub{
    text-align:center;
    color: #444;
    margin-top:6px;
    font-size:14px;
  }

  .pills{
    margin-top:18px;
    display:flex;
    gap:12px;
    flex-direction:column;

    text-align: center;
    margin: 30px auto;
    padding: 10px;
    border-radius: 10px;
    min-height: 80px;
    max-height: 260px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    scroll-behavior: smooth; 
  }

  .pill{
    display:flex;
    align-items:center;
    gap:12px;
    padding:12px 14px;
    border-radius:12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.03);
    cursor:pointer;
    transition: transform .14s ease, box-shadow .14s;
    text-decoration:none;
    color:inherit;
  }
  .pill:hover{
    transform: translateY(-4px);
    box-shadow: 0 0 5px #00FF00;
  }


  
 .pill .text {
    display:flex; 
    flex-direction:column;
  }
  
  .pill .text .title {
    font-weight: 800; 
    color: #00FF0091;
    text-shadow: 0 0 3px #00FF0091;
  }
  
  .pill .text .muted{ 
    font-size: 13px; 
    color: #9aa6b3; 
    display: flex;
    font-weight: 400;
  }

  /* small screens adjustments */
  @media (max-width:420px){
    .card{ padding:18px; border-radius:14px; }
    .avatar{ width:78px; height:78px; font-size:24px; }
    .pill{ padding:10px; gap:10px; }
  }
  
  
  
  /* file Close footer last cssa 👋😌*/
 .footer {
   margin-top: 50px;
   text-align: center;
   font-family: 'Poppins', sans-serif;
 }
 
.icon-box > a {
  outline: none;
  text-decoration: none;
  margin: 10px;
  font-size: 19px;
}

footer {
  color: #444;
  font-size: 12px;
  font-weight: 600;
  margin-top: 5px;
}
  
  
  
  
  
  
