/* Base styles and variables */
:root {
  --terminal-bg: #1e1e2e;
  --terminal-header: #2d2b55;
  --terminal-text: #f8f8f2;
  --terminal-green: #4ade80;
  --terminal-purple: #bd93f9;
  --terminal-blue: #8be9fd;
  --terminal-yellow: #f1fa8c;
  --terminal-red: #ff5555;
  --terminal-gray: #6272a4;
  --terminal-border: #44475a;
  --terminal-prompt: #ff79c6;
  --terminal-selection: #44475a;
  --font-mono: 'Fira Code', monospace;
  --font-sans: 'Inter', sans-serif;
}

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

body {
  background-color: var(--terminal-bg);
  color: var(--terminal-text);
  font-family: var(--font-sans);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

/* Terminal header styles */
.terminal-header {
  background-color: var(--terminal-header);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--terminal-border);
  position: relative;
  z-index: 10;
}

.terminal-controls {
  display: flex;
  gap: 8px;
  margin-right: 15px;
}

.control-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  cursor: pointer;
}

.control-btn.close {
  background-color: var(--terminal-red);
}

.control-btn.minimize {
  background-color: var(--terminal-yellow);
}

.control-btn.expand {
  background-color: var(--terminal-green);
}

.terminal-title {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--terminal-gray);
}

/* Navigation styles */
.terminal-nav {
  padding: 15px 20px;
  background-color: rgba(40, 42, 54, 0.7);
  backdrop-filter: blur(5px);
  border-bottom: 1px solid var(--terminal-border);
}

.terminal-nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
  flex-wrap: wrap;
}

.terminal-nav a {
  color: var(--terminal-text);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 1rem;
  position: relative;
  padding: 5px 10px;
  transition: all 0.3s ease;
}

.terminal-nav a:hover {
  color: var(--terminal-green);
  background-color: rgba(79, 84, 122, 0.3);
  border-radius: 4px;
}

.terminal-nav a::after {
  content: "_";
  position: absolute;
  right: -5px;
  animation: blink 1s infinite;
}

/* Main content container */
.terminal-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
  min-height: calc(100vh - 200px);
}

.terminal-section {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.terminal-section.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Terminal content styling */
.terminal-content {
  background-color: rgba(30, 30, 46, 0.8);
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--terminal-border);
  backdrop-filter: blur(5px);
}

.command-line {
  display: flex;
  align-items: center;
  font-family: var(--font-mono);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--terminal-border);
}

.prompt {
  color: var(--terminal-prompt);
  margin-right: 10px;
}

.typing-command {
  color: var(--terminal-green);
}

.command-output {
  padding: 15px 0;
}

h1,
h2,
h3 {
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--terminal-blue);
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
  color: var(--terminal-purple);
}

.subtitle {
  font-size: 1.2rem;
  color: var(--terminal-gray);
  margin-bottom: 30px;
}

.highlight {
  color: var(--terminal-green);
  position: relative;
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--terminal-green);
  border-radius: 2px;
}

/* Code block styling */
.code-block {
  background-color: rgba(40, 42, 54, 0.7);
  border-radius: 6px;
  padding: 15px;
  margin: 25px 0;
  overflow-x: auto;
  border: 1px solid var(--terminal-border);
}

.code-block pre {
  margin: 0;
}

.code-block code {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  line-height: 1.5;
}

.language-javascript .function {
  color: var(--terminal-blue);
}

.language-javascript .keyword {
  color: var(--terminal-purple);
}

.language-javascript .string {
  color: var(--terminal-yellow);
}

.language-bash .prompt {
  color: var(--terminal-green);
}

/* Buttons */
.terminal-btn {
  background-color: var(--terminal-green);
  color: var(--terminal-bg);
  border: none;
  padding: 12px 25px;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  margin-top: 15px;
}

.terminal-btn:hover {
  background-color: #3acf70;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(74, 222, 128, 0.3);
}

.terminal-btn.secondary {
  background-color: transparent;
  color: var(--terminal-green);
  border: 1px solid var(--terminal-green);
}

.terminal-btn.secondary:hover {
  background-color: rgba(74, 222, 128, 0.1);
}

.terminal-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* Profile section */
.profile-container {
  display: flex;
  gap: 40px;
  margin-top: 20px;
  align-items: flex-start;
}

.profile-image {
  position: relative;
  flex-shrink: 0;
}

.image-placeholder {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--terminal-purple), var(--terminal-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.8);
  border: 4px solid var(--terminal-border);
  overflow: hidden;
}

.image-placeholder img {
  width: 100%;
  height: auto;
  object-fit: cover;
  position: relative;
  top: -4px;
  transition: transform 0.3s ease;
}

@media screen and (max-width: 768px) {
  .image-placeholder img {
    position: relative;
    top: -14px;
  }
}

.status-indicator {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: var(--terminal-green);
  border-radius: 50%;
  border: 3px solid var(--terminal-bg);
  bottom: 15px;
  right: 15px;
}

.profile-info {
  flex: 1;
}

/* Timeline */
.terminal-timeline {
  margin-top: 30px;
  position: relative;
  padding-left: 30px;
  border-left: 2px solid var(--terminal-border);
}

.timeline-item {
  margin-bottom: 30px;
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--terminal-green);
  left: -36px;
  top: 6px;
  border: 2px solid var(--terminal-bg);
}

.timeline-date {
  font-family: var(--font-mono);
  color: var(--terminal-gray);
  margin-bottom: 5px;
  font-size: 0.9rem;
}

.timeline-content h3 {
  margin-bottom: 5px;
}

/* Projects grid */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.project-card {
  background-color: rgba(40, 42, 54, 0.7);
  border-radius: 8px;
  padding: 20px;
  border: 1px solid var(--terminal-border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border-color: var(--terminal-green);
}

.project-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--terminal-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.project-card:hover::before {
  transform: scaleX(1);
}

.project-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.project-header i {
  font-size: 1.8rem;
  color: var(--terminal-purple);
}

.tech-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 15px 0;
}

.tech-tags span {
  background-color: rgba(79, 84, 122, 0.5);
  color: var(--terminal-blue);
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-family: var(--font-mono);
}

.project-link {
  background: transparent;
  color: var(--terminal-green);
  border: none;
  font-family: var(--font-mono);
  padding: 8px 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.project-link:hover {
  background: #e0fbe0;
}

/* Skills section */
.skills-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin: 30px 0;
}

.skill-category {
  background-color: rgba(40, 42, 54, 0.7);
  border-radius: 8px;
  padding: 20px;
  border: 1px solid var(--terminal-border);
}

.skill-category h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.skill-category h3 i {
  color: var(--terminal-green);
}

.skill-bar {
  margin-bottom: 15px;
}

.skill-name {
  font-family: var(--font-mono);
  margin-bottom: 5px;
  display: flex;
  justify-content: space-between;
}

.skill-level {
  height: 8px;
  background-color: var(--terminal-border);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.skill-level::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: var(--terminal-green);
  width: 0;
  transition: width 1.5s ease-out;
}

/* Contact section */
.contact-container {
  display: flex;
  gap: 40px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-method {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.contact-method i {
  font-size: 1.5rem;
  color: var(--terminal-green);
  margin-top: 3px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-mono);
  color: var(--terminal-gray);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  background-color: rgba(40, 42, 54, 0.7);
  border: 1px solid var(--terminal-border);
  border-radius: 4px;
  color: var(--terminal-text);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: border 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--terminal-green);
}

/* Contact links styling */
.contact-method a {
  color: var(--terminal-blue);
  text-decoration: none;
  font-family: var(--font-mono);
  font-weight: 500;
  transition: color 0.3s, background 0.3s, box-shadow 0.3s;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(139, 233, 253, 0.07);
  box-shadow: 0 1px 2px rgba(139, 233, 253, 0.05);
  word-break: break-all;
  overflow-wrap: anywhere;
}

.contact-method a:hover,
.contact-method a:focus {
  color: var(--terminal-green);
  background: rgba(74, 222, 128, 0.12);
  text-decoration: underline;
  box-shadow: 0 2px 8px rgba(74, 222, 128, 0.12);
  outline: none;
}

.contact-method a:active {
  color: var(--terminal-purple);
}

/* Ensure contact links wrap on small screens */
@media (max-width: 480px) {
  .contact-method a {
    font-size: 0.95rem;
    display: inline-block;
    max-width: 100%;
    white-space: normal;
  }
}

/* Footer */
.terminal-footer {
  background-color: rgba(40, 42, 54, 0.8);
  border-top: 1px solid var(--terminal-border);
  padding: 15px 20px;
  position: relative;
  z-index: 10;
  backdrop-filter: blur(5px);
}

.status-bar {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--terminal-gray);
  flex-wrap: wrap;
  gap: 15px;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.typing-effect {
  position: relative;
  overflow: hidden;
  width: 180px;
}

.typing-effect::after {
  content: "|";
  position: absolute;
  right: -5px;
  animation: blink 1s infinite;
}

/* Animations */
@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* Responsive design */
@media (max-width: 768px) {
  .profile-container {
    flex-direction: column;
  }

  .image-placeholder {
    width: 150px;
    height: 150px;
  }

  .terminal-nav ul {
    gap: 10px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .terminal-actions {
    flex-direction: column;
  }

  .terminal-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .terminal-content {
    padding: 15px;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .skills-container {
    grid-template-columns: 1fr;
  }

  .status-bar {
    flex-direction: column;
    gap: 10px;
  }
}

/* New Media Queries for Specified Breakpoints */
/* Mobile Devices – 320px — 480px */
@media (min-width: 320px) and (max-width: 480px) {

  /* Mobile-specific styles */
  .terminal-header {
    padding: 8px 12px;
  }

  .terminal-title {
    font-size: 0.8rem;
  }

  .terminal-nav {
    padding: 10px 12px;
  }

  .terminal-nav a {
    font-size: 0.9rem;
    padding: 4px 8px;
  }

  .terminal-container {
    padding: 20px 12px;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .profile-container {
    gap: 20px;
  }

  .contact-container {
    gap: 20px;
  }
}

/* iPads and Tablets – 481px — 768px */
@media (min-width: 481px) and (max-width: 768px) {

  /* Tablet-specific styles */
  .terminal-header {
    padding: 10px 15px;
  }

  .terminal-nav {
    padding: 12px 15px;
  }

  .terminal-nav a {
    font-size: 0.95rem;
  }

  .terminal-container {
    padding: 25px 15px;
  }

  .project-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  .profile-container {
    flex-direction: row;
    align-items: center;
  }

  .image-placeholder {
    width: 170px;
    height: 170px;
  }
}

/* Laptops and small screen – 769px — 1024px */
@media (min-width: 769px) and (max-width: 1024px) {

  /* Laptop-small-screen-specific styles */
  .terminal-container {
    max-width: 900px;
  }

  .terminal-content {
    padding: 20px;
  }

  .profile-container {
    gap: 30px;
  }

  .image-placeholder {
    width: 180px;
    height: 180px;
  }

  .project-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

/* Large screens and Desktops – 1025px — 1200px */
@media (min-width: 1025px) and (max-width: 1200px) {

  /* Large-desktop-specific styles */
  .terminal-container {
    max-width: 1100px;
  }

  .terminal-content {
    padding: 22px;
  }

  .profile-container {
    gap: 35px;
  }

  .project-grid {
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  }
}

/* TV and Extra Large Screens – 1201px and more */
@media (min-width: 1201px) {

  /* Extra-large-specific styles */
  .terminal-container {
    max-width: 1300px;
  }

  .terminal-content {
    padding: 30px;
  }

  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .profile-container {
    gap: 50px;
  }

  .image-placeholder {
    width: 220px;
    height: 220px;
  }

  .project-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
}

/* Enhanced Dark/Light Mode Toggle */
#theme-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 100;
  background: var(--terminal-header);
  color: var(--terminal-green);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12), 0 1.5px 4px rgba(74,222,128,0.10);
  transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.2s;
  outline: none;
}

#theme-toggle:focus {
  box-shadow: 0 0 0 3px var(--terminal-green), 0 4px 16px rgba(0,0,0,0.12);
}

#theme-toggle:hover {
  background: var(--terminal-green);
  color: var(--terminal-bg);
  transform: scale(1.08) rotate(-8deg);
}

body.light-mode #theme-toggle {
  background: var(--terminal-bg);
  color: var(--terminal-blue);
  box-shadow: 0 4px 16px rgba(139,233,253,0.13), 0 1.5px 4px rgba(37,99,235,0.10);
}

body.light-mode #theme-toggle:hover {
  background: var(--terminal-blue);
  color: var(--terminal-bg);
}

/* Smooth transition for background and text */
body, .terminal-header, .terminal-content, .terminal-footer, .project-card, .skill-category, .testimonials-list, .testimonial {
  transition: background 0.4s, color 0.4s, box-shadow 0.4s;
}

@media (max-width: 480px) {
  #theme-toggle {
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
}

/* Scroll to Top Button */
#scrollToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  background: var(--terminal-green);
  color: var(--terminal-bg);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(74, 222, 128, 0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

#scrollToTopBtn.show {
  opacity: 1;
  pointer-events: auto;
}

/* Project Filter */
#project-filter {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

#project-filter .terminal-btn.secondary.active {
  background: var(--terminal-green);
  color: var(--terminal-bg);
}

/* Testimonials */
#testimonials .testimonials-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 20px;
}

#testimonials .testimonial {
  background: rgba(40, 42, 54, 0.7);
  border-left: 4px solid var(--terminal-green);
  padding: 18px 25px;
  border-radius: 8px;
  font-style: italic;
  color: var(--terminal-text);
  box-shadow: 0 2px 8px rgba(74, 222, 128, 0.08);
}

#testimonials .testimonial span {
  display: block;
  margin-top: 10px;
  font-family: var(--font-mono);
  color: var(--terminal-green);
  font-style: normal;
  font-size: 1rem;
}

/* Social Share Buttons */
.social-share {
  background: transparent;
  border: none;
  color: var(--terminal-blue);
  font-size: 1.2rem;
  margin: 0 4px;
  cursor: pointer;
  transition: color 0.3s;
}

.social-share:hover {
  color: var(--terminal-green);
}

/* Animated Headline Typing Effect */
#headline-typing {
  min-height: 2.5rem;
  position: relative;
  overflow: hidden;
}

/* Easter Egg (optional highlight) */
.easter-egg {
  animation: egg-pop 0.7s cubic-bezier(.68,-0.55,.27,1.55) both;
  color: var(--terminal-purple) !important;
}

@keyframes egg-pop {
  0% { transform: scale(1); }
  60% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* Light Theme */
body.light-mode {
  --terminal-bg: #f8f8f2;
  --terminal-header: #e0e0e0;
  --terminal-text: #232136;
  --terminal-green: #16a34a;
  --terminal-purple: #7c3aed;
  --terminal-blue: #2563eb;
  --terminal-yellow: #eab308;
  --terminal-red: #dc2626;
  --terminal-gray: #64748b;
  --terminal-border: #cbd5e1;
  --terminal-prompt: #d946ef;
  --terminal-selection: #e0e7ef;
}
body.light-mode .terminal-header,
body.light-mode .terminal-footer,
body.light-mode .terminal-content,
body.light-mode .project-card,
body.light-mode .skill-category,
body.light-mode .testimonials-list,
body.light-mode .testimonial {
  background: #fff !important;
  color: var(--terminal-text) !important;
  box-shadow: 0 2px 8px rgba(37,99,235,0.04);
}
body.light-mode .terminal-nav {
  background: #f1f5f9 !important;
}
body.light-mode .terminal-nav a {
  color: var(--terminal-blue) !important;
}
body.light-mode .terminal-nav a:hover {
  color: var(--terminal-green) !important;
  background: #e0f2fe !important;
}
body.light-mode .terminal-btn {
  background: var(--terminal-green);
  color: #fff;
}
body.light-mode .terminal-btn.secondary {
  background: transparent;
  color: var(--terminal-green);
  border: 1px solid var(--terminal-green);
}
body.light-mode .terminal-btn.secondary:hover {
  background: #e0fbe0;
}
body.light-mode .code-block {
  background: #f3f4f6 !important;
  color: #232136 !important;
  border: 1px solid #cbd5e1;
}
body.light-mode .highlight,
body.light-mode .timeline-date,
body.light-mode .skill-category h3 i,
body.light-mode .testimonials-list .testimonial span {
  color: var(--terminal-green) !important;
}
body.light-mode .project-link {
  color: var(--terminal-green);
}
body.light-mode .project-link:hover {
  background: #e0fbe0;
}
body.light-mode .contact-method a {
  color: var(--terminal-blue);
  background: #e0f2fe;
}
body.light-mode .contact-method a:hover {
  color: var(--terminal-green);
  background: #e0fbe0;
}
body.light-mode .status-bar {
  color: var(--terminal-gray);
}
body.light-mode .skill-level {
  background: #e5e7eb;
}
body.light-mode .skill-level::after {
  background: var(--terminal-green);
}
body.light-mode .testimonials-list .testimonial {
  border-left: 4px solid var(--terminal-green);
  background: #f9fafb !important;
  color: #232136 !important;
}
body.light-mode .terminal-title {
  color: var(--terminal-gray);
}
body.light-mode .form-group input,
body.light-mode .form-group textarea {
  background: #f3f4f6;
  color: #232136;
  border: 1px solid #cbd5e1;
}
body.light-mode .form-group input:focus,
body.light-mode .form-group textarea:focus {
  border-color: var(--terminal-green);
}
body.light-mode #theme-toggle {
  background: #fff;
  color: var(--terminal-blue);
  box-shadow: 0 4px 16px rgba(139,233,253,0.13), 0 1.5px 4px rgba(37,99,235,0.10);
}
body.light-mode #theme-toggle:hover {
  background: var(--terminal-blue);
  color: #fff;
}
body.light-mode #scrollToTopBtn {
  background: var(--terminal-blue);
  color: #fff;
}
body.light-mode #scrollToTopBtn:hover {
  background: var(--terminal-green);
}
body.light-mode .social-share {
  color: var(--terminal-blue);
}
body.light-mode .social-share:hover {
  color: var(--terminal-green);
}