
/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
}

body {
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  transition: background-color 0.3s ease, color 0.3s ease;
}

html[data-theme='dark'] body {
  background-color: #0a0a0a;
  color: #eee;
}

/* Container and layout */
.container {
  width: 100%;
  max-width: 350px;
  text-align: center;
  padding: 20px;
}

.profile-img {
  width: 200px;
  height: 200px;
  border-radius: 0;
  margin-bottom: 15px;
  pointer-events: none;
}

.username {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.links a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 8px 12px;
  margin: 10px 0;
  background-color: black;
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.links a:hover {
  background-color: #333;
}

html[data-theme='dark'] .links a {
  background-color: white;
  color: black;
}

html[data-theme='dark'] .links a:hover {
  background-color: #ddd;
}

.footer {
  margin-top: 20px;
  font-size: 14px;
  color: #666;
}

/* Theme toggle icon */
.theme-toggle {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 1000;
  will-change: transform;
}

.theme-toggle img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.theme-toggle:active img {
  transform: scale(0.9);
}
