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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 20px;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  background: #000;
}

#bgVideo {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 0;
  object-fit: cover;
}

.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: 1;
}

.cherry-blossom {
  position: fixed;
  width: 15px;
  height: 15px;
  background: radial-gradient(ellipse at center, #ffb3d9 0%, #ff69b4 50%, #ff1493 100%);
  border-radius: 50% 0 50% 0;
  opacity: 0.8;
  pointer-events: none;
  z-index: 10000;
  animation: fall linear infinite, sway ease-in-out infinite, glow 1.5s ease-in-out infinite;
  box-shadow: 
    0 0 10px rgba(255, 105, 180, 0.6),
    0 0 20px rgba(255, 105, 180, 0.4),
    0 0 30px rgba(255, 105, 180, 0.2);
  filter: drop-shadow(0 0 5px rgba(255, 182, 193, 0.8));
}

.cherry-blossom::before,
.cherry-blossom::after {
  content: '';
  position: absolute;
  width: 15px;
  height: 15px;
  background: radial-gradient(ellipse at center, #ffb3d9 0%, #ff69b4 50%, #ff1493 100%);
  border-radius: 50% 0 50% 0;
}

.cherry-blossom::before {
  transform: rotate(90deg);
}

.cherry-blossom::after {
  transform: rotate(180deg);
}

@keyframes fall {
  to {
    transform: translateY(100vh) rotate(720deg);
  }
}

@keyframes sway {
  0%, 100% {
    margin-left: 0;
  }
  50% {
    margin-left: 50px;
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 
      0 0 10px rgba(255, 105, 180, 0.6),
      0 0 20px rgba(255, 105, 180, 0.4),
      0 0 30px rgba(255, 105, 180, 0.2);
    filter: drop-shadow(0 0 5px rgba(255, 182, 193, 0.8));
  }
  50% {
    box-shadow: 
      0 0 15px rgba(255, 105, 180, 0.8),
      0 0 30px rgba(255, 105, 180, 0.6),
      0 0 45px rgba(255, 105, 180, 0.4);
    filter: drop-shadow(0 0 8px rgba(255, 182, 193, 1));
  }
}



#profile {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(2px) saturate(250%);
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 8px 32px rgba(0,0,0,0.37);
  padding: 50px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
  animation: slideIn 0.8s ease-out;
  transition: transform 0.1s ease;
  cursor: pointer;
}

#profile.shake {
  animation: shake 0.5s ease-in-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
  20%, 40%, 60%, 80% { transform: translateX(5px); }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.loading {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
}

.avatar-container {
  margin-bottom: 30px;
  position: relative;
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: 30px;
  border-radius: 30%;
}

.avatar-container img.zoom-click{
  transform: scale(1.15);
  transform: transform 0.1s ease-out;
}



.electric-circle {
  fill: none;
  stroke: #48aaff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 10 5;
  animation: electricRotate 3s linear infinite, electricPulse 1.5s ease-in-out infinite;
  cx: 50%;
  cy: 50%;
  r: 47%;
}


.avatar-container img {
  border-radius: 50%;
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.avatar-container:hover img {
  transform: scale(1.05);
}

h1 {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

h1 span {
  background: linear-gradient(45deg, #ff69b4, #ffb3d9, #ff1493, #ff69b4);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: sparkleGradient 3s ease infinite;
  filter: drop-shadow(0 0 10px rgba(255, 105, 180, 0.6)) drop-shadow(0 0 20px rgba(255, 105, 180, 0.4));
}

@keyframes sparkleGradient {
  0%, 100% {
    background-position: 0% 50%;
    filter: drop-shadow(0 0 10px rgba(255, 105, 180, 0.6)) drop-shadow(0 0 20px rgba(255, 105, 180, 0.4));
  }
  50% {
    background-position: 100% 50%;
    filter: drop-shadow(0 0 15px rgba(255, 105, 180, 0.9)) drop-shadow(0 0 30px rgba(255, 105, 180, 0.6));
  }
}

.verified-badge {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 2px 4px rgba(29, 161, 242, 0.5));
  animation: verifiedPulse 2s ease-in-out infinite;
  margin-top: 5px;
}

@keyframes verifiedPulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 2px 4px rgba(29, 161, 242, 0.5));
  }
  50% {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(29, 161, 242, 0.8));
  }
}

.info-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 15px;
  line-height: 1.6;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.info-text strong {
  color: #ffffff;
  font-weight: 600;
}

.links-container {
  margin-top: 35px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.glass-button {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 12px 28px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 350px;
  text-align: center;
}

.glass-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.glass-button:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

.glass-button:hover::before {
  left: 100%;
}

.glass-button:active {
  transform: translateY(0);
}

.firework {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff, transparent);
  animation: explode 0.8s ease-out forwards;
}

@keyframes explode {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(var(--tx), var(--ty)) scale(0);
    opacity: 0;
  }
}

.social-buttons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 480px;
}

.social-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.social-button::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}

.social-button:hover::before {
  opacity: 1;
}

.social-button:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  color: #ffffff;
}

.social-button:active {
  transform: translateY(-1px) scale(1.02);
}

@media (max-width: 768px) {
  body {
    padding: 80px 20px;
  }
  #profile {
    padding: 30px 20px;
    text-align: center;
  }
  h1 {
    font-size: 2rem;
  }
  .verified-badge {
    width: 28px;
    height: 28px;
  }
  .avatar-container img {
    width: 100px;
    height: 100px;
  }

  .info-text {
    font-size: 1rem;
  }
  .glass-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  body {
    padding: 60px 10px;
  }
  #profile {
    padding: 25px 15px;
    max-width: 100%;
  }
  h1 {
    font-size: 1.7rem;
  }
  .verified-badge {
    width: 24px;
    height: 24px;
  }
  .links-container {
    gap: 10px;
  }
  .glass-button {
    max-width: 100%;
  }
  .social-buttons {
    gap: 12px;
    margin-top: 25px;
  }
  .social-button {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
}