* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: url('assets/image/beach-6203544.jpg') center/cover no-repeat;
  color: #f3f3f3;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  position: relative;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  border-radius: 24px;
  padding: 2rem;
  gap: 2rem;

  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);

  z-index: 10;
  transition: transform 0.2s ease-out;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.profile-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.profile-info h1 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.description {
  font-size: 1rem;
  color: #fdfdfdab;
  margin-bottom: 1.5rem;
}

.links {
  display: grid;
  grid-template-columns: repeat(2, 70px);
  grid-template-rows: repeat(2, 70px);
  gap: 1rem;
  justify-content: center;
  align-content: center;
}

.links a {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, background 0.3s ease;
}

.links a img {
  width: 50%;
  height: 50%;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.links a:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
}

.links a:hover img {
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.4));
}

.footer {
  position: fixed;
  bottom: 10px;
  width: 100%;
  text-align: center;
  font-family: "Pixelify Sans", sans-serif;
  color: #fff;
  font-size: 28px;
  opacity: 0.8;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
  opacity: 1;
}

.spotlight {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(30%);
  bottom: 0;
  width: 120%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.1s ease-in-out;
  transition-delay: 0.5s;
  z-index: 21;
}

.fade {
  position: fixed;
  width: 100%;
  right: 0%;
  top: 0%;
  bottom: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease-in-out;
  z-index: 9;
}

.footer a:hover ~ .spotlight {
  opacity: 1;
  transition-delay: 0.5s;
}

.footer a:hover ~ .fade {
  opacity: 1;
  transition-delay: 0s;
}

.spotlight {
  transition-delay: 0s;
}

.fade {
  transition-delay: 0.5s;
}

@media (max-width: 700px) {
}

.top-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: radial-gradient(ellipse at center top, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 11;
}

.top-glow.visible {
  opacity: 1;
}

.top-menu {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-top: none;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 12;
  font-size: 0.9rem;
  color: #f3f3f3;
  white-space: nowrap;
}

.top-menu.visible {
  transform: translateX(-50%) translateY(0);
}

.top-menu p {
  margin: 0;
}

.top-menu a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.top-menu a:hover {
  opacity: 0.7;
  text-decoration: underline;
}
