* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    user-select: none;
    background: #000000;
    background-attachment: fixed;
    color: #ffffff;
    padding-inline: 1.5rem;
    -webkit-tap-highlight-color: transparent;
}
html {
  scroll-behavior: smooth;
}


.navlist {
    display: flex;
    height: 3rem; 
    width: 95%; 
    align-items: center;
    border-radius: 50px; 
    margin-top: 1rem;
    justify-self: center;
    padding-inline: 2rem;
    transition: all 0.4s ease;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%); 
    z-index: 1000;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid #fff1;
    box-shadow: 0 10px 32px 0 #fff1;
}



.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.logo {
    width: 20%;
    font-size: 2rem;
    margin-left: 10px;
    font-family: "Orbitron", Sans-Serif;
}

.logo b {
    color: #9124ff;
}

.links {
    width: 70%;
    justify-items: center;
    height: 100%;
    margin-right: 3rem;
    
}

.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    display: none;
}

.nav-links li a {
    font-size: 1.5rem;
    text-decoration: none;
    text-align: center;
    color: #fff;
}

.nav-links li a {
    text-align: center;
    color: #fff;
    text-decoration: none;
    position: relative;
    font-size: 1.5rem;   
    transition: font-size 0.2s ease; 
}

.nav-links li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;     
  width: 0;         
  height: 4px;         
  background-color: #9124ff;
  transition: width 0.2s ease-in-out; 
}

.nav-links li a:hover {
  font-size: 1.8rem;     
}

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

.menu-container {
  display: inline-block; 
  cursor: pointer; 
  justify-content: center;
  align-content: center;
  padding: 0 auto;
  -webkit-tap-highlight-color: transparent;
}
.bar1 { width: 16px; }
.bar2 { width: 27px; }
.bar3 { width: 35px; }
.bar1, .bar2, .bar3 { 
  height: 5px; 
  background-color: #fff; 
  margin: 5px 0; 
  transition: 0.4s;
  border-radius: 3px;
}

.change .bar1 { 
  transform: translate(0, 11px) rotate(-45deg); 
  width: 35px; 
}
.change .bar2 { 
  opacity: 0;
  width: 35px;
}
.change .bar3 {
  transform: translate(0, -11px) rotate(45deg); 
}

.nav-links li a { font-size: 1.2rem; }

.menu-box {
  position: absolute;
  margin-top: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 300px;
  background: rgba(255, 255, 255, 1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 900;
}
.menu-box.active {
  opacity: 1; 
  visibility: visible; 
  transform: translate(-50%, -50%) scale(1); 
}
.menu-box a { 
  display: block;
  padding: 15px; 
  font-size: 22px; 
  color: #333;
  text-decoration: none; 
  font-weight: 600;
  transition: 0.3s; 
  -webkit-tap-highlight-color: transparent;
}
.menu-box a:hover { 
  color: #9124ff; 
  transform: translateY(-6px);
}

.social-icons {
  display: flex;
  flex-direction: row;
  margin: 0 auto;
  justify-self: center;
  margin-top: 2rem;
}

.social-icons i {
  font-size: 1.9rem;
}
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 800;
    display: none;
}

#overlay.active {
    display: block;
}
.header-btn {
  display: none;
}

section {
    width: 100%;
    margin: 0 auto;
}

.hero {
  height: 100vh;
  width: 100%;
  margin: 0 auto;
  padding-inline: 0;
}



.hero {
    position: relative; 
    overflow: hidden;
}

.grid-pattern-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; 
    pointer-events: none;
    transform: perspective(500px) rotateX(5deg);
    transform-origin: top;
    opacity: 0.6;
    
}

.grid-pattern-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #020005); 
    }



.container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-content: center;
    
}
.left {
    width: 98%;
    height: 25rem;
    align-content: center;
    padding-inline: 1rem;
    order: 2;
    margin-bottom: 3.9rem;
}

.hero-content {
  height: auto;
  text-align: center;
  font-size: 1.2rem;
  font-family: "Poppins", Sans-Serif;
  margin-bottom: 6rem;
}

.name {
  font-family: "Poppins" , Sans-Serif;
  font-size: 1.9rem;
  font-weight: 600;
}
.bra {
    font-size: 3rem;
    color: #9124ff;
    font-weight: 500;
}
.name span {
  font-size: 3.4rem;
  font-weight: 500;
  
}

.role {
  font-size: 1.6rem;
  font-weight: 500;
}
.role b {
  color: #9124ff;
}

.intro {
  margin-top: 13px;
  font-size: 0.9rem;
}
.right {
    width: 98%;
    height: 25rem;
    align-content: center;
    order: 1;
    margin-top: 9rem;
}
.img {
  margin: 0 auto;
  justify-self: center;
  margin-top: 6rem;
}
.right img{
    height: 200px;
    width: 200px;
    border-radius: 50%;
    box-shadow: 0 0 25px #8d04f4;
    transition: 0.3s ease;
    margin: 0 auto;
}

.header-btn {
  height: 90%;
  width: auto ;
  padding-inline: 3px;
}
.btn0 {
  height: 35px;
  width: 150px;
  margin: 0 auto;
  border-radius: 16px;
  border: 3px solid #ffff;
  box-shadow: 0px 0px 10px #ffff; 
  background: rgba(0,0,0,0.054);
  margin: 7px auto;
  color: #ffff;
  font-size: 1rem;
  font-family: "Poppins", Sans-Serif;
  font-weight: 400;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.btn0:hover {
  border-color: #9124ff;
  box-shadow: 0 0 10px #9124ff;
  height: 40px;
  width: 160px;
  font-family: "Orbitron", Sans-Serif;
  font-weight: 700;
}

.btn-container {
  min-height: 3.6rem;
  height: auto;
  width: auto ;
  max-width: 15rem;
  margin: 0 auto;
  padding-inline: 5px;
  margin-top: 2rem;
  
}
.btn1 {
  height: 45px;
  min-width: 180px;
  width: auto;
  margin: 0 auto;
  border-radius: 16px;
  border: 3px solid #9124ff;
  box-shadow: 0 0 10px rgba(141, 4, 244, 0.5); 
  background: rgba(0,0,0,0.054);
  margin: 7px auto;
  color: #fff;
  font-size: 0.9rem;
  font-family: "Poppins", Sans-Serif;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  outline: none;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
        .btn1:hover {
            background: #8d04f4;
            box-shadow: 0 0 25px #8d04f4;
            transform: translateY(-5px);
            
        }

        .btn1:active {
            transform: scale(0.95);
        }

.hero-icons {
  font-size: 2.3rem;
  margin-top: 2.4rem;
}
.hero-icons a {
  color: #fff;
  border-radius: 50px;
}
.about {
  height: auto;
  width: 100%;
  margin-top: 9rem;
}
.about-container {
  height: auto;
  width: 96%;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  margin-bottom: 2rem;
}

.left1 {
  height: auto;
  width: 50%;
  padding-bottom: 3rem;
  backdrop-filter: blur(10px);
  border: 1px dashed rgba(255, 255, 255, 0.3); 
  box-shadow: 0 4px 30px linear-gradient(135deg #9124ff 20% #120020 80%); 
  border-radius: 40px;
  margin-top: 3rem;
  padding-inline: 0.7rem;
}
.right1 {
  height: auto;
  padding-bottom: 3rem;
  width:45%;
}
.section-tittle {
  margin: 0 auto;
  width: 100%;
  justify-items: center;
  transition: all 0.3s ease;
}
.tittle-under {
  height: 5px;
  width: 5rem;
  border-radius: 5px;
  background-color: #9124ff;
}
        .section-title h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
        }
.about-content {
  height: 95%;
  width: 98%;
  font-family: "Poppins" , Sans-Serif;
  text-align: center;
}
.about-content h1 {
  color: #9124ff;
  margin-bottom: 2rem;
  font-family: "Poppins", Sans-Serif;
  margin-top: 2rem;
}

.skills-wrapper {
    margin-top: 3rem;
    padding: 20px;
    border-radius: 30px;
    border: 1px dashed rgba(145, 36, 255, 0.4);
    order: 1;
}

.skills-subtitle {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.skills-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.skill-item {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(145, 36, 255, 0.1);
    border-radius: 15px;
    font-size: 1.8rem;
    color: #9124ff;
    transition: all 0.3s ease;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.skill-item:hover {
    background: #9124ff;
    color: #fff;
    transform: scale(1.5) rotate(10deg);
    box-shadow: 0 0 15px #9124ff;
}
.minimal-counter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 10px;
    margin-top: 2rem;
    border-top: 1px solid rgba(145, 36, 255, 0.2);
    border-bottom: 1px solid rgba(145, 36, 255, 0.2);
    width: 100%;
    height: auto;
    
}

.counter-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    justify-content: center;
    margin-left: 1rem;
}

.counter-icon {
    font-size: 0.9rem;
    color: rgba(145, 36, 255, 0.8);
    display: none;
}

.counter-text h2 {
    font-size: 2rem;
    color: #fff;
    font-weight: 700;
    line-height: 1;
}

.counter-text span {
    font-size: 0.85rem;
    color: #9124ff;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
}

.counter-divider {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, #9124ff, transparent);
    opacity: 0.5;
}
.marquee-section {
    margin-top: 3rem;
    padding-bottom: 2rem;
    overflow: hidden;
}

.marquee-title {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    mask-image: linear-gradient(
        to right,
        hsl(0 0% 0% / 0),
        hsl(0 0% 0% / 1) 10%,
        hsl(0 0% 0% / 1) 90%,
        hsl(0 0% 0% / 0)
    );
}

.marquee-content {
    display: flex;
    flex-shrink: 0;
    gap: 30px;
    padding-block: 10px;
    animation: scroll 30s linear infinite;
}

.marquee:hover .marquee-content {
    animation-play-state: paused;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(145, 36, 255, 0.05);
    padding: 10px 25px;
    border-radius: 12px;
    border: 1px solid rgba(145, 36, 255, 0.2);
    font-weight: 500;
    white-space: nowrap;
    transition: 0.3s ease;
}

.marquee-item i {
    font-size: 1.5rem;
}

.marquee-item:hover {
    background: rgba(145, 36, 255, 0.2);
    border-color: #9124ff;
    transform: scale(1.05);
}

/* Keyframes for smooth motion */
@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 15px));}
}

/* Responsive */
@media (max-width: 480px) {
    .minimal-counter-container {
        flex-direction: row;
        gap: 30px;
        border: none;
        background: rgba(255,255,255,0.02);
        border-radius: 20px;
    }
    .counter-divider {
        display: none;
    }
}


/* Responsive adjustment */
@media (max-width: 768px) {
    .counter-section {
        flex-direction: row;
        gap: 30px;
    }
}






    .resume-popup {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: transparent;
      z-index: 2100;
      justify-content: center;
      align-items: center;
      backdrop-filter: blur(8px);
    }
    @media (min-width: 769px) {
      .resume-popup {
        overflow-y: auto;
        scrollbar-width: thin;
        scrollbar-color: #9124ff rgba(26, 26, 46, 0.8);
      }
      .resume-popup::-webkit-scrollbar {
        width: 8px;
      }
      .resume-popup::-webkit-scrollbar-track {
        background: rgba(26, 26, 46, 0.8);
        border-radius: 10px;
      }
      .resume-popup::-webkit-scrollbar-thumb {
        background: #110123;
        border-radius: 10px;
      }
      .resume-popup::-webkit-scrollbar-thumb:hover {
        background: #9124ff;
      }
    }
    .resume-popup-content {
      position: relative;
      background: transparent;
      border: none;
      border-radius: 15px;
      padding: 3rem;
      max-width: 90%;
      max-height: 90vh;
      overflow: visible;
      animation: resumePopupFadeIn 0.5s ease forwards;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .resume-container {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
    }
    .resume-image {
      max-width: 100%;
      max-height: 80vh;
      border-radius: 10px;
      box-shadow: 0 0 29px rgba(0, 234, 255, 1);
      transition: transform 0.3s ease, opacity 0.3s ease;
      opacity: 0;
      transform: scale(0.9);
      animation: imageFadeIn 0.6s ease forwards 0.3s;
      cursor: zoom-in;
    }
    .resume-image.zoomed {
      transform: scale(1.5);
      max-height: none;
      cursor: zoom-out;
      z-index: 2200;
    }
    .resume-popup-content .close-popup {
      position: absolute;
      top: -1rem;
      right: -1rem;
      font-size: 2rem;
      color: var(--color-primary);
      background: rgba(26, 26, 46, 0.8);
      border-radius: 50%;
      padding: 0.5rem;
      transition: color 0.3s ease, transform 0.3s ease, background 0.3s ease;
      z-index: 2300;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .resume-popup-content .close-popup:hover {
      color: #9124ff;
      transform: rotate(360deg);
      background: rgba(40, 40, 60, 0.9);
    }
    .download-icon {
      margin-top: 1rem;
      font-size: 1.8rem;
      color: #fff;
      background: transparent;
      border: 2px solid #fff;
      border-radius: 50%;
      padding: 0.6rem;
      transition: color 0.3s ease, transform 0.3s ease, background 0.3s ease;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    .download-icon:hover {
      color: #9124ff;
      transform: scale(1.2);
      background: #110123;
      box-shadow: #8d04f4;
    }

@keyframes resumePopupFadeIn {
  0% {
    opacity: 0; 
    transform: scale(0.7) translateY(50px);
  }
  100% { 
    opacity: 1; 
    transform: scale(1) translateY(0);
  }
} 
@keyframes imageFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}






/* Responsiveness*/ 

@media (min-width: 992px)  {
  .nav-links{
    display: block;
    margin-right: 4rem;
  }
  .navlist {
    width: 95%;
    margin-top: 3rem;
  }
  .links {
    margin: 0 auto;
  }
  .nav-links {
    display: flex;
    margin-right: 5px;
  }
  .nav-links a {
    font-size: 0.5rem;
    font-style: bold;
    
  }
  .header-btn {
    display: block;
  }
  .menu-container, 
  .menu-box {
    display: none;
  }
  .container {
    flex-direction: row;
  }
  .left {
    order: 1;
    width: 55%;
    height: 100%;
    margin-bottom: 0;
  
  }
  .hero-content {
    margin-bottom: 0;
    text-align: left;
  }
  .btn-container {
    display: flex;
    width: auto;
    height: auto;
    max-width: 23rem;
    gap: 1.6rem;
    margin-left: 0;
    margin-right: 0;
    justify-content: flex-start;
  }
  .btn1 {
    height: auto;
    min-width: 10rem;
    width: auto;
    font-size: 1rem;
    padding: 10px;
  }
  .right {
    order: 2;
    width: 45%;
    height: 100%;
    margin-top: 0rem;
  }
  .right img {
    margin-top: 0;
    height: 320px;
    width: 320px;
  }
  .about-container {
    flex-direction: row;
    gap: 5%;
    margin-top: 5rem;
    width: 90%;
    margin: 0 auto;
  }
  .about-content {
    padding-inline: 20px;
  }
  .about-content p {
    text-align: left;
  }
  .left1,
  .right1 {
    height: auto;
  }
  .left1{
    width: 45%;
    
  }
  .right1{
    width: 45%;
  }
}
@media (min-width: 1200px){
  .container {
    width: 87%;
    gap: 3.2rem;
  }
  .navlist {
    width: 95%;
  }
  .left {
    width: 50%;
  }
  .right {
    width: 45%;
  }
  .right img {
    height: 300px;
    width: 300px;
    margin-left: 8rem;
  }
  .hero-content {
    font-size: 2rem;
    margin-left: 7rem;
    width: 80%;
    margin-top: 6.5rem;
    
  }
  .name {
    font-size: 2.5rem;
  }
  .name span ,
  .bra {
    font-size: 3.4rem;
  }
  .intro {
    font-size: 0.9rem;
    
  }
  
}

@media (min-width: 1400px) {
  .btn-container {
    margin-right: auto;
    display: flex;
    justify-content: flex-start;
  }
  .navlist {
    width: 80%;
    box-shadow: 0 10px 25px #080016;
  }
  .right img {
    height: 400px;
    width: 400px;
    margin-left: 10rem;
  }
  .hero-content {
    font-size: 3rem;
  }
  .role {
    font-size: 2rem;
  }
  .name span ,
  .bra {
    font-size: 4rem;
  }
  .intro {
    font-size: 1.5rem;
  }
  .nav-links {
    margin-right: 4rem;
  }
}
@media (max-width: 480px) {
  .left1,
  .right1 {
    width: 100%;
  }
  .btn1 {
    font-size: 1rem;
  }
  .right img {
    height: 180px;
    width: 180px;
    margin-bottom: 2rem;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .left1,
  .right1 {
    width: 100%;
  }
  
  .nav-links {
    display: none;
  }
  .menu-container,
  .menu-box {
    display: block;
  }
}

@media (min-width: 768px) {
  .header-btn{
    display: block;
    margin-right: 3rem;
  }
}

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

  .menu-container,
  .menu-box {
    display: block;
  }

  .menu-container, 
  .menu-box {
    display: block;
  }
  .container {
    flex-direction: row;
  }
  .left {
    order: 1;
    width: 55%;
    height: 100%;
    margin-bottom: 0;
  
  }
  .hero-content {
    margin-bottom: 0;
    text-align: left;
  }
  .btn-container {
    display: flex;
    width: auto;
    height: auto;
    max-width: 23rem;
    gap: 1.6rem;
    margin-left: 0;
    margin-right: 0;
    justify-content: flex-start;
  }
  .btn1 {
    height: auto;
    min-width: 10rem;
    width: auto;
    font-size: 1rem;
    padding: 10px;
  }
  .right {
    order: 2;
    width: 45%;
    height: 100%;
    margin-top: 0rem;
  }
  .right img {
    margin-top: 0;
    height: 300px;
    width: 300px;
  }
  .about-container {
    flex-direction: row;
    gap: 5%;
    margin-top: 5rem;
    width: 90%;
    margin: 0 auto;
  }
  .about-content {
    padding-inline: 20px;
  }
  .about-content p {
    text-align: left;
  }
  .left1,
  .right1 {
    height: auto;
  }
  .left1{
    width: 45%;
    
  }
  .right1{
    width: 45%;
  }
}






#loader-screen.jarvis-ultra {
    position: fixed; inset: 0; background: #00080f;
    z-index: 1000000; color: #00f2ff; font-family: 'Orbitron', sans-serif;
    overflow: hidden; display: flex; justify-content: center; align-items: center;
    transition: transform 1.2s cubic-bezier(0.8, 0, 0.2, 1);
}

.loader-up { transform: translateY(-100%); }

/* Backgrounds */
#matrix-canvas { position: absolute; inset: 0; opacity: 1; z-index: 1; }
.hacker-grid-svg {
    position: absolute; inset: 0; z-index: 2;
    background-image: linear-gradient(rgba(0, 242, 255, 0.05) 1px, transparent 1px), 
                      linear-gradient(90deg, rgba(0, 242, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* Panel Design */
.hud-panel {
    position: absolute; padding: 12px; background: rgba(0, 242, 255, 0.02);
    border: 1px solid rgba(0, 242, 255, 0.2); z-index: 100;
}
.panel-tag { font-size: 0.6rem; color: #fff; background: rgba(0, 242, 255, 0.2); padding: 2px 6px; margin-bottom: 8px; }

/* Top Panels */
.top-left-scan { top: 25px; left: 25px; border: none; }
.scan-circle-container { width: 70px; height: 70px; border: 2px solid rgba(0, 242, 255, 0.3); border-radius: 50%; position: relative; }
.radar-hand { position: absolute; width: 50%; height: 2px; background: #00f2ff; top: 50%; left: 50%; transform-origin: left; animation: rotate 2s linear infinite; }

.ai-thinking-box { top: 25px; right: 25px; width: 160px; text-align: center; }
.thinking-waves { display: flex; justify-content: center; gap: 4px; margin: 10px 0; }
.wave { width: 3px; height: 15px; background: #00f2ff; animation: wave-anim 1s infinite ease-in-out; }

/* Bottom Panels */
.kernel-terminal { bottom: 25px; left: 25px; width: 260px; height: 130px; }
.hacking-console { bottom: 25px; right: 25px; width: 280px; height: 130px; }
.log-stream { font-size: 0.65rem; font-family: 'Courier New', monospace; color: #00ffaa; overflow: hidden; line-height: 1.4; }

/* Center HUD */
.center-interface { position: relative; z-index: 200; display: flex; flex-direction: column; align-items: center; }
.jarvis-rings { position: relative; width: clamp(300px, 80vw, 450px); height: clamp(300px, 80vw, 450px); display: flex; justify-content: center; align-items: center; }
.ring-svg-container { position: absolute; width: 100%; height: 100%; }
.ring { fill: none; stroke: #00f2ff; stroke-width: 0.5; transform-origin: center; }
.r-outer { animation: rotate 15s linear infinite; stroke-width: 1; opacity: 0.6; }
.r-middle { animation: rotate 10s linear reverse infinite; stroke: #00ffaa; }

/* Glitch Name & Visible Data */
.center-content { text-align: center; z-index: 10; }
.meta-data { font-size: 1rem; letter-spacing: 4px; color: #00f2ff; font-weight: bold; text-shadow: 0 0 10px rgba(0, 242, 255, 0.5); }
.glitch-name {
    font-size: clamp(3rem, 10vw, 5rem); letter-spacing: 12px; color: #fff; margin: 10px 0;
    position: relative; animation: glitch-skew 1s infinite;
}
.glitch-name::before { content: attr(data-text); position: absolute; top: 0; left: -2px; text-shadow: 2px 0 #ff00c1; clip: rect(44px, 450px, 56px, 0); animation: glitch-anim 2s infinite linear alternate-reverse; }

/* Welcome Terminal */
.welcome-terminal-box {
    margin-top: 30px; width: 100%; max-width: 400px;
    background: rgba(0, 0, 0, 0.7); border-bottom: 2px solid #00ffaa; padding: 12px; font-size: 0.85rem;
}

/* Animations */
@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes wave-anim { 0%, 100% { transform: scaleY(0.5); } 50% { transform: scaleY(1.5); } }
@keyframes glitch-anim { 0% { clip: rect(10px, 9999px, 40px, 0); } 100% { clip: rect(80px, 9999px, 90px, 0); } }
.blink-cursor { animation: blink 0.8s infinite; }
@keyframes blink { 50% { opacity: 0; } }
