/* ===================================================
   VORTECHS NETWORK SOLUTIONS - WEBSITE STYLES
   Modern glassmorphism design with Three.js integration
   Created: 2025 | Optimized for performance and readability
   =================================================== */

/* ===== GLOBAL RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'VT323', 'Inter', Arial, monospace;
  background: #000000;
  color: #ffffff;
  overflow-x: hidden;
  overflow-y: auto;
  min-height: 100vh;
}

p {
  font-size: 20px;
  color: #ffffff;
  max-width: 1520px;
  margin: 0 auto;
}
/* ===== SITE NAVIGATION HEADER ===== */
.site-navigation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 75px;
  background: rgba(0, 10, 1, 0.5);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s;
}

.brand-container {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 400;
  letter-spacing: 1px;
}

.brand-logo {
  height: 50px;
  width: auto;
  filter: brightness(1.1);
}

.brand-name {
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 1px;
}

/* From Uiverse.io by ArturCodeCraft */ 
/* <reset-style> ============================ */
.hamburger-menu {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font-family: inherit;
  z-index: 101;
}
/* ============================ */
/* <style for bg> ======== */
.background {
  /* border-radius: 16px; */
  /* border: 1px solid #1a1a1a;
  background: rgba(74, 74, 74, 0.39);
  mix-blend-mode: luminosity;
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.20); */
  /* backdrop-filter: blur(15px); */
  width: 65px;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* <style for menu__icon> ======== */
.menu__icon {
  width: 32px;
  height: 32px;
  padding: 4px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: end;
  transition: transform .4s;
}

.menu__icon span {
  width: 100%;
  height: 0.25rem;
  border-radius: 0.125rem;
  background-color: rgb(255, 255, 255);
  box-shadow: 0 .5px 2px 0 hsla(0, 0%, 0%, .2);
  transition: width .4s, transform .4s, background-color .4s;
}

.menu__icon :nth-child(2) {
  width: 100%;
}

.menu__icon :nth-child(3) {
  width: 100%;
}

.menu__icon:hover {
  transform: rotate(-90deg);
}

/* .menu__icon:hover span {
  width: .25rem;
  transform: translateX(-10px);
  background-color: rgb(87, 219, 11);
} */

/* Trigger animation when hovering over the entire hamburger button */
.hamburger-menu:hover .menu__icon {
  transform: rotate(-90deg);
}

.hamburger-menu:hover .menu__icon span {
  width: .25rem;
  transform: translateX(-10px);
  background-color: rgb(48, 255, 93);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 75px;
  right: 0;
  width: 250px;
  background: rgba(0, 10, 1, 0.95);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 99;
}

.hamburger-menu:hover + .dropdown-menu,
.dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content {
  padding: 20px 0;
}

.dropdown-content a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  font-weight: 400;
  font-size: 24px;
  padding: 12px 30px;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
  text-align: center;
}

.dropdown-content a:hover {
  color: #03cf14;
  background: rgba(255, 255, 255, 0.1);
  border-left-color: #01ca4e;
}

/* ===== HERO SECTION WITH 3D SCENE ===== */
.hero-section {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
  padding-bottom: 20px;
  overflow: hidden;
}

canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw !important;
  height: 100vh !important;
  display: block;
  z-index: 1;
}

/* ===== COMPANY INFORMATION SECTION (ABOUT US) ===== */
.company-info {
  position: relative;
  width: 100vw;
  background: rgba(0, 10, 1, 0.5);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-top: 1.5px solid rgba(255, 255, 255, 0.18);
  padding: 18px 40px;
  margin-top: -100px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.3s, box-shadow 0.3s;
}

.company-info__wrapper {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 32px;
  scroll-margin-top: 0px;
}

.about-content h1 {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 12px;
  color: #ffffff;
}

.info-cards-grid {
  display: flex;
  height: auto;
  gap: 24px;
  width: 100%;
  max-width: 1200px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.info-card {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  padding: 24px;
  margin-bottom: 24px;
  background: rgba(40, 46, 58, 0.4);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  background: rgba(45, 52, 66, 0.5);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.info-card h3 {
  font-size: 23px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.5px;
  margin: 0 0 16px 0;
}

/* ===== OUR GAMES SECTION ===== */
/* --- Section Container --- */
.projects-section {
  position: relative;
  width: 100%;
  background: rgba(0, 10, 1, 0.5);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.3s, box-shadow 0.3s;
  margin-top: 0;
  margin-bottom: 0;
}

.about-project-content {
  width: 100%;
  /* max-width: 1200px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0px;
  padding: 40px 0;
}

.about-project-content h1 {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 12px;
  color: #ffffff;
}
.project-cards-grid {
  display: flex;
  height: auto;
  gap: 42px;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  margin: 40px 0px;
}

.book {
  position: relative;
  border-radius: 10px;
  width: 450px;
  height: 500px;
  background-color: rgba(40, 46, 58, 0.4);
  /* -webkit-box-shadow: 1px 1px 12px #ffffff;
  box-shadow: 3px 3px 5px #ffffff41; */
  -webkit-transform: preserve-3d;
  -ms-transform: preserve-3d;
  transform: preserve-3d;
  -webkit-perspective: 2000px;
  perspective: 2000px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #000;
}

.cover {
  top: 0;
  position: absolute;
  background-color: rgba(40, 46, 58);
  width: 100%;
  height: 100%;
  border-radius: 10px;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform-origin: 0;
  -ms-transform-origin: 0;
  transform-origin: 0;
  /* -webkit-box-shadow: 1px 1px 12px #000;
  box-shadow: 1px 1px 12px #000; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.book:hover .cover {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: rotatey(-80deg);
  -ms-transform: rotatey(-80deg);
  transform: rotatey(-80deg);
}

.book-logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  z-index: 1;
}

.book p {
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
  padding-left: 50px;
  padding-right: 10px;

}

/* ===== CONTACT US SECTION ===== */
.contact-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%; 
  margin-left: -50vw;
  margin-right: -50vw;
  padding-top: 40px;
  padding-bottom: 0px;
  box-sizing: border-box;
  background-color: rgba(0, 10, 1, 0.5);
}

.contact-section .company-info__wrapper {
  width: 1200px;
  margin: 0 auto;
}

.contact-section .contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 0px;
}

.contact-section .contact-content h2 {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 12px;
  color: #ffffff;
}

/* .contact-section .contact-content p {
  font-size: 20px;
  color: #ffffff;
  max-width: 1520px;
  margin: 0 auto;
} */

/* ===== TERMINAL INTERFACE ===== */
.terminal-container {
  width: 96vw;
  max-width: 1800px;
  margin: 24px 2vw 0 2vw;
  font-family: 'VT323', monospace;
}

.terminal_toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 30px;
  padding: 0 8px;
  box-sizing: border-box;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  background: linear-gradient(#504b45 0%, #3c3b37 100%);
}

.terminal-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.terminal-icon {
  color: #d5d0ce;
  font-size: 16px;
}

.terminal-title-text {
  color: #d5d0ce;
  font-size: 16px;
  line-height: 15px;
  font-family: 'VT323', monospace;
}

.window-controls {
  display: flex;
  gap: 4px;
}

.window-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
  border-radius: 2px;
  transition: background-color 0.2s ease;
}

.window-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.window-btn.minimize:hover {
  background: rgba(255, 255, 255, 0.1);
}

.window-btn.maximize:hover {
  background: rgba(255, 255, 255, 0.1);
}

.window-btn.close:hover {
  background: rgba(232, 17, 35, 0.8);
}

.terminal_body {
  background: rgba(20, 20, 20, 0.95);
  min-height: 400px;
  padding: 10px;
  margin-top: -1px;
  margin-bottom: 30px;
  font-size: 16px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  font-family: 'VT323', monospace;
}

.terminal-output {
  margin-bottom: 10px;
}

.terminal-line {
  color: #d5d0ce;
  margin: 2px 0;
  margin-left: 4px;
}

.terminal_promt {
  display: flex;
  align-items: center;
  margin: 12px 0 6px 0;
}

.terminal_promt span {
  margin-left: 4px;
  color: #2bff00;
}

.terminal_user {
  color: #2bff00;
}

.terminal_location {
  color: #4878c0;
}

.terminal_bling {
  color: #dddddd;
}

.terminal-form {
  margin-top: 15px;
}

.terminal-input-group {
  margin-bottom: 20px;
}

.terminal-input {
  background: transparent;
  border: none;
  color: #ffffff;
  font-family: inherit;
  font-size: 20px;
  outline: none;
  margin-left: 10px;
  width: calc(100% - 120px);
  padding: 4px 0;
}

.terminal-textarea {
  resize: vertical;
  min-height: 80px;
  width: calc(100% - 120px);
  background: transparent;
  color: #ffffff;
  font-family: inherit;
  font-size: 20px;
  outline: none;
}

.terminal-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.terminal-input:focus {
  background: transparent;
}

.terminal-send-btn {
  background: rgba(126, 218, 40, 0.2);
  border: 1px solid #2bff00;
  color: #2bff00;
  padding: 2px 6px;
  margin-left: 10px;
  font-family: 'VT323', monospace;
  font-size: 12px;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.terminal-send-btn:hover {
  background: rgba(126, 218, 40, 0.3);
  box-shadow: 0 0 10px rgba(126, 218, 40, 0.5);
}

.terminal-send-btn:focus {
  outline: none;
}

.terminal_cursor {
  display: block;
  height: 14px;
  width: 5px;
  margin-left: 10px;
  animation: curbl 1200ms linear infinite;
}

@keyframes curbl {
  0% {
    background: #ffffff;
  }
  49% {
    background: #ffffff;
  }
  60% {
    background: transparent;
  }
  99% {
    background: transparent;
  }
  100% {
    background: #ffffff;
  }
}

/* ===== SITE FOOTER ===== */
.site-footer {
  width: 100vw;
  background: rgba(0, 0, 0, 0.479);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  border-top: 1.5px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 -2px 16px 0 rgba(31, 38, 135, 0.10);
  padding: 12px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-content {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.social-links {
  display: flex;
  gap: 18px;
}

.social-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.social-links a:hover {
  color: #66ccff;
}

.social-links img {
  height: 1.2em;
  width: auto;
  filter: invert(1);
}

/* ========== Modern About Section ========== */
.about-section {
  padding-top: 120px;
  padding-bottom: 80px;
}

.about-hero {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 48px;
}

.about-title {
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 2px;
  margin: 0 0 10px;
  color: #ffffff;
  text-shadow: 0 0 12px rgba(43,255,0,0.25);
  animation: glowPulse 6s ease-in-out infinite alternate;
}

.about-tagline {
  font-size: 22px;
  line-height: 1.35;
  color: #d8ffd9;
  opacity: .9;
}

/* Stats */
.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
  width: 100%;
  margin: 8px 0 48px;
}

.stat-chip {
  background: rgba(25, 30, 32, 0.55);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 16px 12px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.stat-chip .v {
  display: block;
  font-size: 40px;
  line-height: 1;
  color: #2bff00;
  text-shadow: 0 0 10px rgba(43,255,0,0.35);
}

.stat-chip .l {
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  margin-top: 6px;
  color: #cfe9d1;
}

.stat-chip:hover {
  transform: translateY(-4px);
  border-color: rgba(43,255,0,0.45);
  box-shadow: 0 12px 32px -10px rgba(43,255,0,0.35);
}

/* Feature Panels */
.about-panels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  width: 100%;
  margin-bottom: 56px;
}

.panel-card {
  position: relative;
  padding: 22px 20px 24px;
  background: rgba(40, 50, 54, 0.45);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(14px) saturate(170%);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.panel-card h3 {
  font-size: 26px;
  margin: 0 0 10px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 1px;
}

.panel-card p {
  font-size: 18px;
  line-height: 1.4;
  color: rgba(255,255,255,0.85);
  margin: 0;
}

.panel-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(43,255,0,0.12), transparent 60%);
  opacity: 0;
  transition: opacity .4s ease;
}

.panel-card:hover {
  transform: translateY(-6px);
  border-color: rgba(43,255,0,0.45);
  box-shadow: 0 14px 40px -12px rgba(43,255,0,0.35);
}

.panel-card:hover::before { opacity: 1; }

/* Team */
.team-section { width: 100%; margin-bottom: 64px; }

.team-heading {
  text-align: center;
  font-size: 36px;
  font-weight: 400;
  margin: 0 0 24px;
  letter-spacing: 2px;
  color: #ffffff;
}

.team-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.team-card {
  background: rgba(35, 40, 44, 0.55);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  padding: 20px 18px 22px;
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.team-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(43,255,0,0.12), transparent 65%);
  opacity: 0;
  transition: opacity .4s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(43,255,0,0.5);
  box-shadow: 0 10px 36px -10px rgba(43,255,0,0.35);
}

.team-card:hover::before { opacity: 1; }

.avatar {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2bff00, #0d4818);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: #081608;
  margin-bottom: 12px;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.4);
}

.team-card h4 {
  margin: 0 0 2px;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #ffffff;
}

.team-card .role {
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: 1px;
  color: #9cff9d;
  text-transform: uppercase;
}

.team-card .blurb {
  font-size: 14px;
  line-height: 1.35;
  color: #d6f9d7;
  opacity: .85;
  margin: 0;
}

/* Values */
.values { width: 100%; max-width: 980px; margin: 0 auto; }

.values-heading {
  text-align: center;
  font-size: 34px;
  font-weight: 400;
  margin: 0 0 22px;
  letter-spacing: 2px;
  color: #ffffff;
}

.value-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.value-list li {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  background: rgba(30, 36, 38, 0.55);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  padding: 14px 18px;
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.value-list li::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(102,255,200,0.1), transparent 70%);
  opacity: 0;
  transition: opacity .4s ease;
}

.value-list li:hover {
  border-color: rgba(43,255,0,0.5);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px -8px rgba(43,255,0,0.3);
}

.value-list li:hover::before { opacity: 1; }

.value-key {
  font-size: 18px;
  letter-spacing: 1px;
  color: #2bff00;
  text-shadow: 0 0 6px rgba(43,255,0,0.4);
}

.value-desc { font-size: 16px; color: #d8ffd9; opacity: .85; }

/* Animations */
@keyframes glowPulse {
  0% { text-shadow: 0 0 6px rgba(43,255,0,0.2), 0 0 0 rgba(43,255,0,0); }
  100% { text-shadow: 0 0 14px rgba(43,255,0,0.5), 0 0 36px rgba(43,255,0,0.25); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.reveal {
  opacity: 0;
  animation: fadeUp .8s ease-out both;
  animation-delay: var(--d, 0s);
}

/* Team slider (continuous scroll) */
.team-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  /* optional edge fade using mask for modern browsers */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
}

.team-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: team-scroll 28s linear infinite;
}

.team-slider:hover .team-track {
  animation-play-state: paused;
}

/* fix card width for smooth scroll */
.team-card {
  flex: 0 0 260px;
}

/* scroll keyframes: shift by width of first set (50%) */
@keyframes team-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .team-track { animation: none; }
}

/* Responsive tweaks */
@media (max-width: 860px) {
  .about-title { font-size: 40px; }
  .about-tagline { font-size: 20px; }
  .team-heading, .values-heading { font-size: 30px; }
}

@media (max-width: 560px) {
  .about-title { font-size: 34px; }
  .about-tagline { font-size: 18px; }
  .stat-chip .v { font-size: 34px; }
  .team-card { padding: 18px 16px 20px; }
  .avatar { width: 48px; height: 48px; }
  .value-list li { padding: 12px 14px; }
}

/* ===== SCROLL DOWN INDICATOR (updated) ===== */
.scroll-indicator {
  margin: 0 0 40px 0;
  /* move up by increasing negative margin-top */
  margin-top: -90px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.scroll-indicator__link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* Button styles (no drop shadow, themed) */
.Btn-Container {
  display: flex;
  /* Remove background */
  background: transparent;
  border-radius: 40px;
  justify-content: space-between;
  align-items: center;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  gap: 8px;
  /* Add drop shadow */
  box-shadow: 0 4px 24px 0 rgba(43,255,0,0.25), 0 1px 8px 0 rgba(0,0,0,0.18);
}

.icon-Container {
  width: 45px;
  height: 45px;
  background-color: #0c3d02; /* themed green capsule */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 3px solid #1d2129;
}

.text {
  width: calc(170px - 45px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 23px;
  letter-spacing: 1.2px;
  font-family: 'VT323', monospace;
}

/* Downward nudge on hover for the dotted arrow */
.icon-Container svg {
  transition-duration: 1.5s;
}

.Btn-Container:hover .icon-Container svg {
  animation: arrow 1s linear infinite;
}

@keyframes arrow {
  0% { opacity: 0; margin-top: 0px; }
  100% { opacity: 1; margin-top: 10px; }
}