
:root {
  --bg-color: #0d0c1d;
  --text-color: #ffffff;
  --accent-color: #FFD700;
}

body {
  margin: 0;
  font-family: 'Cinzel', serif;
  background: linear-gradient(to bottom, #0f0c29, #302b63, #24243e);
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  transition: background 0.3s ease;
}

body.light {
  background: linear-gradient(to bottom, #f4f4f4, #ffffff);
  color: #000;
}

.theme-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-color);
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid var(--accent-color);
  box-shadow: 0 0 15px var(--accent-color);
  margin-bottom: 40px;
}

.links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.link-button {
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 2px solid var(--accent-color);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.link-button:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: scale(1.1);
}

.link-button img {
  width: 40px;
  height: 40px;
}

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