:root {
  --bg: #000000;
  --fg: #fff;
  --accent: #00ff1a;
  --nav-bg: rgba(0,0,0,0.85);
  --card-bg: rgba(61, 66, 70, 0.72);
  --divider: #00ff1a;
  --button-bg: linear-gradient(90deg, #00ff1a 60%, #fff 100%);
  --button-fg: #232323;
  --button-hover-bg: white;
  --button-hover-fg: #00ff1a;
  --social-bg: rgba(44,44,44,0.7);
  --social-hover-bg: #00ff1a;
  --social-hover-fg: #232a3a;
}

body {
  background: var(--bg);
  color: var(--fg);
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 25px;
  transition: background 1.2s, color 1.2s;
  max-width: 100vw;
  overflow-x: hidden;
}

/* Button Nav */
.button-nav {
  display: grid;
  justify-content: center;
  align-items: center;
  grid-template-columns: repeat(7, 1fr);
  gap: 30px;
  padding-left: 30px;
  padding-right: 30px;
  transition: 0.7s;
}
.button-nav:has(button:nth-child(1):hover) { background-color: #232323; border-radius: 24px; padding: 20px; }
.button-nav:has(button:nth-child(2):hover) { background-color: #444444; border-radius: 24px; padding: 20px; }
.button-nav:has(button:nth-child(3):hover) { background-color: #00ff1a; border-radius: 24px; padding: 20px; }
.button-nav:has(button:nth-child(4):hover) { background-color: #fff; border-radius: 24px; padding: 20px; }
.button-nav:has(button:nth-child(5):hover) { background-color: #e0e0e0; border-radius: 24px; padding: 20px; }
.button-nav:has(button:nth-child(6):hover) { background-color: #232323; border-radius: 24px; padding: 20px; }
.button-nav:has(button:nth-child(7):hover) { background-color: #00ff1a; border-radius: 24px; padding: 20px; }

#main-display {
  color: black;
  padding: 30px 150px;
  border: none;
  font-size: 46px;
  border-radius: 0 0 60px 60px;
  background-color: white;
  margin-left: auto;
  margin-right: auto;
}

#buttons {
  background-color: rgba(0, 0, 0, 0);
  font-size: 20px;
  padding: 20px;
  display: grid;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  border: solid 3px white;
  color: white;
  transition: 0.4s;
}
#buttons:hover {
  background-color: white;
  transform: scale(1.3);
  color: black;
}

/* Hero Section */
.hero-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  width: 100%;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: center; 
  justify-content: center; 
  text-align: center; 
  padding: 44px 3vw 32px 3vw;
  max-width: 820px;
  margin: 24px auto 0 auto;
  width: 96vw;
}

.hero-content {
  
  flex: 1;
  min-width: 260px;
}






.hero-hello {
  display: flex;
  font-size: 1.1rem;
  color: var(--accent);
  font-family: 'depixel', monospace;
  margin-bottom: 0.2rem;
  letter-spacing: 2px;
  opacity: 0.9;
  justify-content: center;
  
}
.hero-name {
  display: flex;
  justify-content: center;
  font-size: 4.0rem;
  font-family: 'Akira', sans-serif;
  line-height: 60px;
  font-weight: bold;
  letter-spacing: 0.2px;
  margin-bottom: 0px;
  color: #fff;
  
}
.hero-divider {
  width: 80px;
  height: 3px;
  
  border-radius: 2px;
  margin: 24px 0 24px 0;
  opacity: 0.8;
}
.hero-desc {
  display: flex;
  justify-content: center; 
  font-size: 0.95rem;
  margin-bottom: 28px;
  font-family: 'depixel', monospace;
  
  color: #e0e0e0;
  line-height: 1.5;
  opacity: 0.85;
  text-shadow: 0 1px 4px #0006;
}
.hero-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--button-fg);
  font-family: 'depixel', monospace;
  font-size: 1rem;
  padding: 12px 32px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px #0006;
  border: 1.5px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  backdrop-filter: blur(4px);
}
.hero-btn:hover {
  background: var(--button-hover-bg);
  color: var(--button-hover-fg);
  box-shadow: 0 4px 24px #ff950055;
}

/* Social Bar */
.socials-bar {
  
  display: flex;
  justify-content: center; /* Center the social icons */
  align-items: center;
  gap: 14px;
  margin-top: 8px;
  margin-bottom: 18px;
}
.social-btn {
  margin-top: 60px;
  font-size: 1.5rem;
  color: var(--fg);
  background: var(--fg);
  padding: 5px;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  text-decoration: none;
  box-shadow: 0 1px 6px #0005;
  backdrop-filter: blur(2px);
}
.social-btn img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  /* No filter by default for colored PNGs */
  transition: filter 0.2s;
}
.social-btn:hover {
  background: var(--social-hover-bg);
  color: var(--social-hover-fg);
  box-shadow: 0 2px 12px #ff950055;
}
.social-btn:hover img {
  filter: none;
}

/* Footer */
.footer {
  margin-top: 10px;
  padding: 10px;
  font-size: 8px;
  font-family: 'depixel';
}



/* Responsive Design */
@media (max-width: 900px) {
  .hero-row {
    flex-direction: column;
    gap: 24px;
  }
  .hero-left {
    flex-direction: column;
    align-items: center;
    padding: 28px 2vw 16px 2vw;
  }
  .hero-image {
    padding-left: 0;
    margin-top: 18px;
  }
  .profile-img {
    width: 140px;
    height: 140px;
  }
  .hero-name {
    font-size: 1.7rem;
  }
  .hero-divider {
    width: 36px;
    height: 2px;
    margin-bottom: 10px;
  }
  .hero-desc {
    display: flex;
  justify-content: center; 
    font-size: 0.92rem;
    margin-bottom: 14px;
  }
  .hero-btn {
    font-size: 0.92rem;
    padding: 8px 16px;
    border-radius: 8px;
    margin-bottom: 10px;
  }
  .socials-bar {
    gap: 8px;
  }
  .social-btn {
    font-size: 1.1rem;
    width: 28px;
    height: 28px;
  }
}
@media (max-width: 600px) {
  .hero-left {
    padding: 18px 2vw 8px 2vw;
    min-height: 50vh;
    border-radius: 12px;
    width: 89vw;
    margin: 6px 0 0 0;
  }
  .hero-hello {
    font-size: 0.95rem;
  }
  .hero-name {
    font-size: 1.5rem;
    line-height:25px;
    padding-bottom: 3px;
    margin-bottom: 8px;
  }
  .hero-divider {
    width: 24px;
    height: 2px;
    margin-bottom: 8px;
  }
  .hero-desc {
    display: flex;
  justify-content: center; 
    font-size: 0.85rem;
    margin-bottom: 12px;
  }
  .hero-btn {
    font-size: 0.92rem;
    padding: 7px 12px;
    border-radius: 7px;
    margin-bottom: 8px;
  }
  .socials-bar {
    gap: 6px;
  }
  .social-btn {
    padding:7px;
    font-size: 1rem;
    width: 22px;
    height: 22px;
  }
  .hero-image {
    display: none;
  }
}




