* { margin:0; padding:0; box-sizing:border-box; }
body {
  font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,sans-serif;
  background:#000000;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow-x:hidden;
  color:#fff;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
.container { text-align:center; padding:clamp(1rem,4vw,2rem); max-width:min(420px,90vw); width:100%; }
.profile-section { margin-bottom:clamp(2rem,6vw,3rem); animation:fadeInUp .8s ease-out; }
.profile-image {
  width:clamp(120px,25vw,150px);
  height:clamp(120px,25vw,150px);
  border-radius:50%;
  background:linear-gradient(45deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  padding:3px;
  margin:0 auto clamp(1rem,4vw,1.5rem);
  animation:pulse 2s infinite;
  position:relative;
}
.profile-image::after {
  content:'';
  position:absolute;
  inset:0;
  border-radius:50%;
  background:linear-gradient(45deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  opacity:0.3;
  filter:blur(15px);
  z-index:-1;
  animation:glow 2s ease-in-out infinite alternate;
}
.profile-image img {
  width:100%; height:100%;
  border-radius:50%;
  object-fit:cover;
  background:#000;
  border:2px solid #000;
  display:block;
}
.profile-placeholder {
  width:100%; height:100%;
  border-radius:50%;
  background:#000;
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-size:clamp(2rem,6vw,3rem); font-weight:700;
  border:2px solid #000;
}
h1 {
  color:#fff;
  font-size:clamp(2rem,7vw,2.5rem);
  margin-bottom:clamp(.25rem,2vw,.5rem);
  font-weight:700;
  animation:fadeInUp .8s ease-out .2s both;
  line-height:1.2;
  background:linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}
.subtitle {
  color:#a0a0a0;
  font-size:clamp(1rem,3.5vw,1.1rem);
  margin-bottom:clamp(2rem,6vw,2.5rem);
  animation:fadeInUp .8s ease-out .4s both;
  line-height:1.4;
}
.btn-container {
  display:flex;
  flex-direction:column;
  gap:clamp(.5rem,2vw,.75rem);
  align-items:center;
  animation:fadeInUp .8s ease-out .6s both;
}
.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:clamp(8px,2vw,12px);
  text-decoration:none;
  border-radius:12px;
  font-size:clamp(.9rem,3.2vw,1rem);
  font-weight:600;
  transition:all .3s cubic-bezier(.4,0,.2,1);
  position:relative;
  overflow:hidden;
  width:100%;
  max-width:300px;
  height:44px;
  cursor:pointer;
  border:none;
  color:#fff;
  padding: 0 clamp(20px, 5vw, 24px);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}
.instagram-btn {
  background:linear-gradient(135deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  box-shadow:0 4px 15px rgba(240,148,51,.25), 0 2px 8px rgba(0,0,0,.1);
  border:1px solid rgba(255,255,255,.1);
}
.signal-btn {
  background:linear-gradient(135deg,#3a76f0 0%,#2563eb 50%,#1d4ed8 100%);
  box-shadow:0 4px 15px rgba(59,130,246,.25), 0 2px 8px rgba(0,0,0,.1);
  border:1px solid rgba(255,255,255,.1);
}
.signal-btn:disabled {
  opacity:.7;
  cursor:not-allowed;
}
.pgp-btn {
  background:linear-gradient(135deg,#f59e0b 0%,#d97706 50%,#b45309 100%);
  box-shadow:0 4px 15px rgba(245,158,11,.25), 0 2px 8px rgba(0,0,0,.1);
  border:1px solid rgba(255,255,255,.1);
}
.btn::before {
  content:'';
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.15),transparent);
  transition:left .6s ease;
  border-radius:12px;
}
.btn:hover::before { left:100%; }
.instagram-btn:hover {
  transform:translateY(-1px);
  box-shadow:0 6px 20px rgba(240,148,51,.35), 0 4px 12px rgba(0,0,0,.15);
  scale:1.02;
}
.signal-btn:hover:not(:disabled) {
  transform:translateY(-1px);
  box-shadow:0 6px 20px rgba(59,130,246,.35), 0 4px 12px rgba(0,0,0,.15);
  scale:1.02;
}
.pgp-btn:hover {
  transform:translateY(-1px);
  box-shadow:0 6px 20px rgba(245,158,11,.35), 0 4px 12px rgba(0,0,0,.15);
  scale:1.02;
}
.btn:active {
  transform:translateY(0);
  scale:0.98;
}
.btn-icon {
  width:clamp(18px,3.5vw,20px);
  height:clamp(18px,3.5vw,20px);
  fill:currentColor;
  flex-shrink:0;
  opacity:.9;
}
/* Modal */
.modal {
  display:none;
  position:fixed;
  z-index:1000;
  inset:0;
  width:100%;
  height:100%;
  background-color:rgba(0,0,0,.85);
  animation:fadeIn .3s ease;
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}
.modal.active { display:flex; align-items:center; justify-content:center; }
.modal-content {
  background:#111111;
  padding:2rem;
  border-radius:16px;
  max-width:90%;
  width:400px;
  text-align:center;
  animation:slideUp .3s ease;
  border:1px solid rgba(255,255,255,.1);
  box-shadow:0 20px 40px rgba(0,0,0,.5);
}
.modal-title {
  color:#fff;
  margin-bottom:1.5rem;
  font-size:1.2rem;
  font-weight:600;
}
.recaptcha-container {
  display:flex;
  justify-content:center;
  margin-bottom:1rem;
  min-height:78px;
}
.close-modal {
  background:rgba(255,255,255,.1);
  color:#fff;
  border:1px solid rgba(255,255,255,.2);
  padding:.5rem 1.5rem;
  border-radius:8px;
  cursor:pointer;
  font-size:.9rem;
  transition:all .3s ease;
  margin-top:1rem;
  font-weight:500;
}
.close-modal:hover {
  background:rgba(255,255,255,.2);
  transform:translateY(-1px);
}
.success-message {
  background:linear-gradient(135deg,#059669,#047857);
  color:#fff;
  padding:1rem;
  border-radius:8px;
  margin:1rem 0;
  animation:fadeIn .5s ease;
  border:1px solid rgba(255,255,255,.1);
}
.error-message {
  background:linear-gradient(135deg,rgba(239,68,68,.2),rgba(220,38,38,.2));
  color:#fca5a5;
  padding:1rem;
  border-radius:8px;
  margin:1rem 0;
  animation:fadeIn .5s ease;
  border:1px solid rgba(239,68,68,.3);
}
.loading-spinner {
  display:inline-block;
  width:18px;
  height:18px;
  border:2px solid rgba(255,255,255,.3);
  border-top:2px solid #fff;
  border-radius:50%;
  animation:spin 1s linear infinite;
  margin-right:8px;
}
@keyframes spin { 0%{transform:rotate(0)} 100%{transform:rotate(360deg)} }
@keyframes slideUp { from{opacity:0; transform:translateY(30px) scale(.95)} to{opacity:1; transform:translateY(0) scale(1)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
@keyframes fadeInUp { from{opacity:0; transform:translateY(clamp(20px,5vw,30px))} to{opacity:1; transform:translateY(0)} }
@keyframes pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.03)} }
@keyframes glow { 0%{opacity:.2} 100%{opacity:.4} }
@media (max-width:480px){
  .container{ padding:1rem }
  .btn-container{ gap:.6rem }
  .btn { height:42px; max-width:280px; }
}
@media (max-width:360px){
  .container{ padding:.75rem }
  .btn { height:40px; font-size:.85rem; }
}
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.01ms !important;
    scroll-behavior:auto !important;
  }
}
