* {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
 scroll-behavior: smooth;
}

:root {
    --color: #667dff;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --accent: #00AEAC;
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow: rgba(0, 0, 0, 0.3);
}


body {
    font-family: "Inter", sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/*Loading Screen*/
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    flex-direction: column;
}

.loader-text {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    opacity: 0;
}

.loader-bar {
    width: 300px;
    height: 4px;
    background-color: var(--bg-secondary);
    border-radius: 2px;
    overflow: hidden;
}

.loader-progress {
    width: 0%;
    height: 100px;
    background: linear-gradient(90deg, var(--color), var(--accent))
}

/*custom Cursor*/
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50px;
    z-index: 9999;
    pointer-events: none;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    pointer-events: none;
    z-index: 9998;
    border: 2px solid var(--accent);
    border-radius: 50%;
    transition: transform 0.2s ease; 
}




nav {
    position: fixed;
    top: 0;
    width: 100vw;
    padding: 1.5rem 4rem;
    background-color: black;
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: background-color 0.3s ease;
    transform: translateY(-100%);
}



.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent);
    font-family: 'BBH Sans Bartle', sans-serif;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    transition: transform 0.3s ease;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 120%;
    height: 4px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
} 

.hero {
    display: flex;
    justify-content: space-between; /* text left, robot right */
    align-items: center;            /* vertically centered */
    padding: 0 100px;
    height: 100vh;  
    position: relative;
    overflow: hidden;
    width: 100%;
    flex-wrap: nowrap; 
}

.hero-bg {
    width: 500px;  /* bigger than before */
    height: 500px; /* keep proportions */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50% rgba(0, 102, 255, 0.1) 0%, transparent 50%);
}

.hero-image {
    height: 50%;
    margin-left: 39%;
    width: 5000px;
}

.hero-content {
text-align: center;
z-index: 2;
max-width: 400px;
padding: 0 1rem;
}

.hero-title {
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: 'BBH Sans Bartle', sans-serif;
      font-size: 45px;
     line-height: 1; 
    filter: blur(10px);
    transform: translateY(5rem);
    opacity: 0;
    white-space: nowrap;
    max-width: none;
}

.hero-subtitle {

      font-family: "Poppins", sans-serif;
      font-size: 34px;
      line-height: 1;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    filter: blur(10px);
    transform: translateY(5rem);
    opacity: 0;
    white-space: nowrap;
    max-width: none;
}


.hero-description {
    font-family: "Poppins", sans-serif;
      font-size: 30px;
      line-height: 1;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    filter: blur(10px);
    transform: translateY(5rem);
    opacity: 0;
    white-space: nowrap;
    max-width: none;
}


.typed-cursor {
    color: red; /* default for dark mode */
    animation: blink 0.7s infinite;
    transition: color 0.3s;
}

.typed-cursor {
    color: red;
     animation: blink 0.7s infinite;
     transition: color 0.3s; /* cursor turns black in light mode */
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0; }
}

.text {
    color: var(--accent)
}

.about-section {
  padding: 3rem 10%;       /* smaller top padding to lift section up */
}

.about-heading {
  font-family: 'BBH Sans Bartle', sans-serif;
  font-size: 60px;      /* big heading */
  margin-bottom: 3rem;  /* space below heading */
  color: var(--accent); /* or white */
  text-align: center;    /* centered on top */
  margin-bottom: 2rem;  
}

.about-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 3rem;
}

.about-content {
  flex: 1;
  font-family:"Poppins", sans-serif;
  font-size: 33px;
}

.about-spline {
  flex-shrink: 0;              /* stops it from resizing weirdly */
  width: 530px;
  height: 530px;
  position: relative;
  margin-left: 1rem;               /* ensure no offset */
}

.about-spline spline-viewer {
  width: 100%;
  height: 100%;
}

.accent-text {
    color: var(--accent);
    font-weight: 200;
}


.status-heading {
  font-family: 'BBH Sans Bartle', sans-serif;
  font-size: 50px;      /* big heading */
  margin-bottom: 34rem;  /* space below heading */
  color: var(--accent); /* or white */
  text-align: center;    /* centered on top */
  margin-bottom: 2rem;  
}

.scroll-down {
  position: absolute;
  bottom: 20px; /* distance from bottom of hero */
  left: 50%;
  transform: translateX(-50%);
  font-size: 3rem; /* size of the arrow */
  color: var(--accent);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

.status-section {
 display: flex;
  flex-wrap: wrap;          /* allows cards to wrap */
  justify-content: center;  /* center cards horizontally */
  gap: 2rem;                /* space between cards */
  margin-bottom: 3rem;
  background-color: var(--bg-primary);
  color: var(--text-primary);
}

/* Cards */
.status-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  background-color: var(--bg-secondary);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 0 20px var(--shadow);
  min-width: 300px;
}

/* Icons */
.status-card i {
  font-size: 3rem;
  color: var(--accent);
  animation: bounceIcon 2s infinite ease-in-out;
}

/* Fade-in animation for track info */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

.status-card h2 {
  margin: 0;
  font-size: 1.5rem;
  text-align: center;
  animation: fadeInUp 0.6s ease forwards;
}

.status-card p {
  margin: 0;
  font-size: 1rem;
  color: var(--text-secondary);
  text-align: center;
  animation: fadeInUp 0.6s ease 0.2s forwards;
}

.status-card h3 {
  margin: 0;
  font-family: 'BBH Sans Bartle', sans-serif;
  text-align: center;
}

/* Icon bounce */
@keyframes bounceIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.status-card img {
  max-width: 100%;          /* make Discord widget fill the card */
  border-radius: 15px;
}

.socials-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
    margin-top: 3rem;      /* space above */
  margin-bottom: 5rem
}

.social-icon i {
  font-size: 3rem;         /* icon size */
  color: var(--accent);    /* your accent color */
  transition: transform 0.3s, color 0.3s;
    margin-top: 3rem;      /* space above */
  margin-bottom: 5rem
}

.social-icon:hover i {
  transform: scale(1.2);   /* slight grow on hover */
  color: var(--text-secondary); /* optional hover color */
}

.copy-message {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.copy-message.show {
  opacity: 1;
}

footer {
  background-color: var(--bg-secondary);
  text-align: center;
  padding: 1.5rem 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: auto;
}
.footer-link {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover {
  color: var(--text-primary);
}

.socials-heading {
   font-family: 'BBH Sans Bartle', sans-serif;
  font-size: 50px;      /* big heading */
  margin-bottom: 2rem;  /* space below heading */
  color: var(--accent);
  text-align: center;
}







.credits-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  padding: 4rem 2rem;
}

.credits-heading {
  font-family: 'BBH Sans Bartle', sans-serif;
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 2rem;
  text-align: center;
  animation: fadeInUp 0.6s ease forwards;
}

.credits-content {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  width: 100%;
  max-width: 900px;
}

.credit-box {
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 0 20px var(--shadow);
  text-align: center;
  animation: fadeInUp 0.8s ease forwards;
}

.credit-box h3 {
  color: var(--accent);
  font-family: 'BBH Sans Bartle', sans-serif;
}

.credit-box ul {
  list-style: none;
  padding: 0;
}

.credit-box li {
  margin: 0.5rem 0;
}

.back-btn {
  margin-top: 3rem;
  text-align: center;
}

.back-btn a {
  color: var(--accent);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.back-btn a:hover {
  color: var(--text-secondary);
}

.credit-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}
