* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Fira Code", "Courier New", monospace;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  background-attachment: fixed;
  color: #00ff00;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(0, 255, 0, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(0, 170, 255, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(255, 170, 0, 0.02) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: -1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  margin-top: 50px;
  margin-bottom: 20px;
  position: relative;
}

.header-name-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-bottom: 5px;
  flex-wrap: wrap;
}

.header-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.download-btn {
  background: rgba(0, 170, 255, 0.1);
  border: 1px solid rgba(0, 170, 255, 0.3);
  border-radius: 8px;
  padding: 8px 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #00aaff;
  font-size: 1rem;
}

.download-btn:hover,
.download-btn:focus {
  background: rgba(0, 170, 255, 0.2);
  border-color: #00aaff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 170, 255, 0.2);
  outline: 2px solid rgba(0, 170, 255, 0.5);
  outline-offset: 2px;
}

.theme-toggle {
  background: rgba(0, 255, 0, 0.1);
  border: 1px solid rgba(0, 255, 0, 0.3);
  border-radius: 8px;
  padding: 8px 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #00ff00;
  font-size: 1rem;
}

.theme-toggle:hover,
.theme-toggle:focus {
  background: rgba(0, 255, 0, 0.2);
  border-color: #00ff00;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 255, 0, 0.2);
  outline: 2px solid rgba(0, 255, 0, 0.5);
  outline-offset: 2px;
}

.name {
  font-size: 2.5rem;
  font-weight: 600;
  background: linear-gradient(45deg, #00ff00, #00aaff, #00ff00);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
  margin-bottom: 0;
  animation: gradientShift 3s ease-in-out infinite;
  position: relative;
  flex: 1;
  min-width: 0;
}

.name::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00ff00, transparent);
  animation: underlineGlow 2s ease-in-out infinite;
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes underlineGlow {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleX(0.8);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes textGlow {
  0%,
  100% {
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.3);
  }
  50% {
    text-shadow: 0 0 15px rgba(0, 255, 0, 0.6), 0 0 25px rgba(0, 255, 0, 0.3);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.loading-dots {
  display: inline-block;
  animation: pulse 1.5s ease-in-out infinite;
}

.loading-dots::after {
  content: "...";
  animation: loadingDots 1.5s infinite;
}

@keyframes loadingDots {
  0%,
  20% {
    content: ".";
  }
  40% {
    content: "..";
  }
  60%,
  100% {
    content: "...";
  }
}

.title {
  font-size: 1.2rem;
  color: #888;
  font-weight: 300;
}

.navigation {
  margin-bottom: 30px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 255, 0, 0.2);
  font-size: 0.9rem;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

/* Desktop: 2 rows layout (5 items per row) */
@media (min-width: 1025px) {
  .navigation {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    justify-items: center;
    align-items: center;
  }

  .separator {
    display: none;
  }
}

/* Very wide screens: single line with separators */
@media (min-width: 1400px) {
  .navigation {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 8px;
  }

  .separator {
    display: inline;
    margin: 0 4px;
  }
}

.navigation::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #00ff00, transparent);
  opacity: 0.5;
}

.nav-item {
  color: #00aaff;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.nav-item:hover,
.nav-item:focus,
.nav-item:active {
  color: #00ff00;
  text-shadow: 0 0 10px #00ff00;
  background: rgba(0, 255, 0, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 255, 0, 0.2);
  outline: 2px solid rgba(0, 255, 0, 0.5);
  outline-offset: 2px;
}

/* Touch-specific styles */
@media (hover: none) and (pointer: coarse) {
  .nav-item:active,
  .nav-item.touching {
    transform: translateY(-1px) scale(0.98);
    background: rgba(0, 255, 0, 0.1);
    transition: all 0.1s ease;
  }
}

.separator {
  color: #666;
  margin: 0 4px;
  flex-shrink: 0;
}

.terminal {
  flex: 1;
  background: linear-gradient(145deg, #111 0%, #1a1a1a 100%);
  border: 1px solid rgba(0, 255, 0, 0.3);
  border-radius: 12px;
  padding: 25px;
  font-size: 0.95rem;
  position: relative;
  box-shadow: 0 0 30px rgba(0, 255, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.terminal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #00ff00, transparent);
  opacity: 0.6;
}

.terminal::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(0, 255, 0, 0.02) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(0, 170, 255, 0.02) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: -1;
}

.terminal-output {
  margin-bottom: 20px;
  max-height: 60vh;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: #333 #111;
  -webkit-overflow-scrolling: touch;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.terminal-output::-webkit-scrollbar {
  width: 8px;
}

.terminal-output::-webkit-scrollbar-track {
  background: #111;
}

.terminal-output::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 4px;
}

.terminal-output::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.command-line {
  margin-bottom: 10px;
}

.prompt {
  color: #00aaff;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

.command {
  color: #00ff00;
  margin-left: 10px;
}

.output {
  margin-left: 20px;
  margin-bottom: 20px;
  color: #ccc;
}

.output p {
  margin-bottom: 8px;
}

.output .highlight {
  color: #00ff00;
  font-weight: 500;
}

.output .secondary {
  color: #888;
}

.output .link {
  color: #00aaff;
  text-decoration: underline;
  cursor: pointer;
}

.output .link:hover {
  color: #00ff00;
}

.input-line {
  display: flex;
  align-items: center;
  position: relative;
  flex-wrap: nowrap;
  overflow: hidden;
}

.terminal-input {
  background: transparent;
  border: none;
  color: #00ff00;
  font-family: inherit;
  font-size: inherit;
  outline: none;
  flex: 1;
  margin-left: 10px;
  caret-color: transparent;
  border-radius: 4px;
  padding: 2px 4px;
  min-width: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.terminal-input:focus {
  background: transparent;
  outline: none;
}

.cursor {
  color: #00ff00;
  animation: blink 1s infinite;
  position: absolute;
  left: 0px;
  transition: left 0.1s ease;
  text-shadow: 0 0 5px #00ff00;
  font-weight: bold;
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
    text-shadow: 0 0 5px #00ff00, 0 0 10px #00ff00;
  }
  51%,
  100% {
    opacity: 0.3;
    text-shadow: 0 0 2px #00ff00;
  }
}

.timestamp {
  text-align: right;
  color: #666;
  font-size: 0.8rem;
  margin-top: 20px;
}

.error {
  color: #ff4444 !important;
}

.success {
  color: #00ff00 !important;
}

.warning {
  color: #ffaa00 !important;
}

/* Portrait Tablet - Grid layout */
@media (max-width: 1024px) and (orientation: portrait) {
  .navigation {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding: 10px 0;
  }

  .nav-item {
    padding: 8px 10px;
    min-height: 40px;
  }

  .separator {
    display: none;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 15px;
  }

  .name {
    font-size: 2rem;
  }

  .navigation {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    font-size: 0.8rem;
    padding: 12px 0;
    gap: 6px;
  }

  .nav-item {
    padding: 8px 10px;
    min-height: 40px;
  }

  .separator {
    display: none;
  }

  .terminal {
    padding: 18px;
    font-size: 0.85rem;
    border-radius: 8px;
  }

  .terminal-output {
    max-height: 50vh;
  }

  .download-btn {
    padding: 6px 10px;
    font-size: 0.9rem;
  }

  .theme-toggle {
    padding: 6px 10px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 10px 8px;
  }

  .header {
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .header-name-row {
    gap: 10px;
    margin-bottom: 5px;
  }

  .name {
    font-size: 1.4rem;
    margin-bottom: 0;
    line-height: 1.2;
  }

  .title {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }

  .navigation {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    padding: 8px 0;
    margin-bottom: 15px;
    font-size: 0.65rem;
  }

  .separator {
    display: none;
  }

  .nav-item {
    background: rgba(0, 255, 0, 0.05);
    border: 1px solid rgba(0, 255, 0, 0.2);
    padding: 8px 4px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.65rem;
    transition: all 0.3s ease;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    -webkit-tap-highlight-color: rgba(0, 255, 0, 0.2);
    word-break: break-word;
  }

  .nav-item:hover,
  .nav-item:active {
    background: rgba(0, 255, 0, 0.1);
    transform: translateY(-1px);
  }

  .terminal {
    padding: 12px 10px;
    font-size: 0.75rem;
    border-radius: 8px;
  }

  .terminal-output {
    max-height: 50vh;
    margin-bottom: 15px;
  }

  .command-line {
    margin-bottom: 8px;
    word-break: break-word;
  }

  .prompt {
    font-size: 0.7rem;
    display: inline-block;
  }

  .command {
    font-size: 0.7rem;
    margin-left: 4px;
    word-break: break-all;
  }

  .output {
    margin-left: 0;
    margin-bottom: 15px;
    font-size: 0.75rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .output p {
    margin-bottom: 6px;
    line-height: 1.5;
  }

  .input-line {
    flex-wrap: nowrap;
    gap: 4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .input-line .prompt {
    font-size: 0.7rem;
    flex-shrink: 0;
  }

  .terminal-input {
    font-size: 0.75rem;
    margin-left: 4px;
    min-width: 0;
    flex: 1 1 auto;
    max-width: 100%;
  }

  .cursor {
    font-size: 0.75rem;
    flex-shrink: 0;
  }

  .download-btn {
    padding: 8px 10px;
    font-size: 0.85rem;
    min-height: 36px;
    min-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .theme-toggle {
    padding: 8px 10px;
    font-size: 0.85rem;
    min-height: 36px;
    min-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .contact-btn {
    padding: 14px 18px;
    font-size: 0.85rem;
    min-height: 44px;
  }

  .popup-content {
    padding: 20px 15px;
    max-width: 95%;
    margin: 10px;
  }

  .popup-content h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }

  .timestamp {
    font-size: 0.7rem;
    margin-top: 15px;
    text-align: center;
  }
}

/* Extra small phones (320px and below) */
@media (max-width: 360px) {
  .container {
    padding: 8px 6px;
  }

  .name {
    font-size: 1.2rem;
  }

  .title {
    font-size: 0.85rem;
  }

  .navigation {
    font-size: 0.6rem;
    gap: 3px;
    padding: 6px 0;
    grid-template-columns: repeat(4, 1fr);
  }

  .nav-item {
    padding: 6px 4px;
    font-size: 0.6rem;
    min-height: 32px;
  }

  .terminal {
    padding: 10px 8px;
    font-size: 0.7rem;
  }

  .terminal-output {
    max-height: 45vh;
  }

  .prompt {
    font-size: 0.65rem;
  }

  .command {
    font-size: 0.65rem;
  }

  .output {
    font-size: 0.7rem;
  }

  .input-line .prompt {
    font-size: 0.65rem;
  }

  .terminal-input {
    font-size: 0.7rem;
    max-width: 100%;
  }

  .cursor {
    font-size: 0.7rem;
  }

  .download-btn {
    padding: 6px 8px;
    font-size: 0.8rem;
    min-height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .theme-toggle {
    padding: 6px 8px;
    font-size: 0.8rem;
    min-height: 32px;
    min-width: 32px;
  }

  .popup-content {
    padding: 18px 12px;
  }

  .popup-content h3 {
    font-size: 1.1rem;
  }

  .contact-btn {
    padding: 12px 16px;
    font-size: 0.8rem;
    min-height: 40px;
  }
}

/* Landscape phone orientation */
@media (max-width: 768px) and (orientation: landscape) {
  .terminal-output {
    max-height: 40vh;
  }

  .navigation {
    grid-template-columns: repeat(4, 1fr);
    padding: 6px 0;
    margin-bottom: 12px;
    gap: 4px;
  }

  .nav-item {
    padding: 6px 8px;
    min-height: 32px;
    font-size: 0.65rem;
  }

  .header {
    margin-top: 20px;
    margin-bottom: 12px;
  }

  .header-name-row {
    gap: 8px;
  }
}

/* Animation for typing effect */
.typing {
  overflow: hidden;
  border-right: 2px solid #00ff00;
  white-space: nowrap;
  animation: typing 2s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: #00ff00;
  }
}

/* Contact Popup Styles */
.contact-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  animation: fadeIn 0.3s ease;
}

.popup-content {
  background: linear-gradient(145deg, #111 0%, #1a1a1a 100%);
  border: 2px solid #00ff00;
  border-radius: 15px;
  padding: 35px;
  text-align: center;
  max-width: 450px;
  width: 90%;
  position: relative;
  box-shadow: 0 0 30px rgba(0, 255, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
}

.popup-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #00ff00, transparent);
  opacity: 0.8;
}

.popup-content h3 {
  color: #00ff00;
  margin-bottom: 20px;
  font-size: 1.5rem;
  text-shadow: 0 0 10px #00ff00;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-btn {
  padding: 18px 25px;
  border: 2px solid #00ff00;
  background: linear-gradient(
    145deg,
    transparent 0%,
    rgba(0, 255, 0, 0.05) 100%
  );
  color: #00ff00;
  border-radius: 12px;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.contact-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 255, 0, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.contact-btn:hover::before {
  left: 100%;
}

.contact-btn:hover {
  background-color: #00ff00;
  color: #000;
  box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
  transform: translateY(-2px);
}

.phone-btn:hover {
  border-color: #00aaff;
  background-color: #00aaff;
  color: #000;
}

.whatsapp-btn:hover {
  border-color: #25d366;
  background-color: #25d366;
  color: #000;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  color: #666;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.close-btn:hover {
  color: #ff4444;
  background-color: rgba(255, 68, 68, 0.1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Light Theme Styles */
.light-theme {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
  color: #212529;
}

.light-theme::before {
  background: radial-gradient(
      circle at 20% 80%,
      rgba(0, 123, 255, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(40, 167, 69, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(255, 193, 7, 0.03) 0%,
      transparent 50%
    );
}

.light-theme .name {
  background: linear-gradient(45deg, #007bff, #28a745, #007bff);
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.light-theme .name::after {
  background: linear-gradient(90deg, transparent, #007bff, transparent);
}

.light-theme .terminal {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  border-color: rgba(0, 123, 255, 0.3);
  color: #212529;
  box-shadow: 0 0 30px rgba(0, 123, 255, 0.15),
    inset 0 1px 0 rgba(0, 0, 0, 0.05);
}

.light-theme .terminal::before {
  background: linear-gradient(90deg, transparent, #007bff, transparent);
}

.light-theme .terminal::after {
  background: radial-gradient(
      circle at 20% 20%,
      rgba(0, 123, 255, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(40, 167, 69, 0.03) 0%,
      transparent 50%
    );
}

.light-theme .nav-item {
  color: #007bff;
}

.light-theme .nav-item:hover {
  color: #28a745;
  text-shadow: 0 0 10px #28a745;
  background: rgba(40, 167, 69, 0.05);
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
}

.light-theme .nav-item::before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(40, 167, 69, 0.1),
    transparent
  );
}

.light-theme .prompt {
  color: #007bff;
}

.light-theme .command {
  color: #28a745;
}

.light-theme .cursor {
  color: #28a745;
  text-shadow: 0 0 5px #28a745;
}

.light-theme .output {
  color: #495057;
}

.light-theme .highlight {
  color: #28a745;
}

.light-theme .secondary {
  color: #6c757d;
}

.light-theme .link {
  color: #007bff;
}

.light-theme .link:hover {
  color: #28a745;
}

.light-theme .download-btn {
  background: rgba(0, 123, 255, 0.1);
  border-color: rgba(0, 123, 255, 0.3);
  color: #007bff;
}

.light-theme .download-btn:hover {
  background: rgba(0, 123, 255, 0.2);
  border-color: #007bff;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

.light-theme .theme-toggle {
  background: rgba(0, 123, 255, 0.1);
  border-color: rgba(0, 123, 255, 0.3);
  color: #007bff;
}

.light-theme .theme-toggle:hover {
  background: rgba(0, 123, 255, 0.2);
  border-color: #007bff;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}
