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

:root {
  --accent-red: #C41E2A;
  --accent-gold: #D4A017;
  --card-bg: #14181f;
  --card-border: #232a35;
  --card-border-hover: #3a4658;
  --text-main: #ffffff;
  --text-muted: #94a0b3;
}

html {
  min-height: 100%;
}

body {
  font-family: 'Segoe UI', Roboto, Arial, sans-serif;
  background: linear-gradient(160deg, #060a12 0%, #0a1220 35%, #050608 75%, #000000 100%);
  background-attachment: fixed;
  background-size: 100% 100vh;
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 40px 16px;
  position: relative;
  overflow-x: hidden;
}

.glow-orb {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 700px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(120, 190, 255, 0.22) 0%, rgba(90, 160, 230, 0.12) 40%, rgba(60, 120, 200, 0) 70%);
  filter: blur(40px);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  animation: pulseOrb 8s ease-in-out infinite;
}

@keyframes pulseOrb {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.25);
    opacity: 1;
  }
}

#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.container {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-bottom: 48px;
}

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 28px;
  text-align: center;
}

.logo {
  width: 435px;
  height: auto;
  margin-bottom: 18px;
  filter: drop-shadow(0 4px 20px rgba(212, 160, 23, 0.15));
}

.subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.link-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 16px 18px;
  text-decoration: none;
  color: var(--text-main);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.2s ease, background 0.2s ease;
}

.link-btn:hover {
  transform: translateY(-2px);
  background: #181e28;
  border-color: var(--card-border-hover);
}

.link-btn:active {
  transform: translateY(0);
}

.link-content {
  display: flex;
  align-items: center;
  gap: 14px;
}

.icon {
  font-size: 1.2rem;
  width: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.icon svg {
  display: block;
}

.icon-whatsapp { color: #25D366; }
.icon-tiktok { color: #ffffff; }
.icon-youtube { color: #FF0000; }
.icon-facebook { color: #1877F2; }
.icon-instagram { color: #E4405F; }
.icon-linkedin { color: #0A66C2; }
.icon-x { color: #ffffff; }
.icon-globe, .icon-globe-sm { color: var(--accent-gold); }

.chevron {
  color: var(--text-muted);
  font-size: 1.2rem;
}

.section-label {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 12px 0 2px;
  position: relative;
}

.section-label::before,
.section-label::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  vertical-align: middle;
  margin: 0 10px;
  opacity: 0.4;
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: max-height 0.4s ease;
}

.accordion-panel.open {
  max-height: 3000px;
  margin-top: -2px;
}

.sub-link {
  padding: 12px 18px 12px 30px;
  font-size: 0.9rem;
  background: #10141a;
}

/* Contact profile cards */
.contact-panel {
  gap: 16px;
}

.contact-card {
  background: linear-gradient(180deg, #14181f 0%, #0f1319 100%);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-avatar {
  width: 64px;
  height: 55px;
  object-fit: contain;
  margin-bottom: 14px;
  filter: drop-shadow(0 2px 8px rgba(212, 160, 23, 0.2));
}

.contact-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.contact-role {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.contact-rows {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  background: #1a1f28;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 12px 16px;
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.9rem;
  text-align: left;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-row:hover {
  border-color: var(--card-border-hover);
  background: #1f242e;
}

.row-icon {
  font-size: 1rem;
  width: 18px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.row-icon.icon-whatsapp { color: #25D366; }
.row-icon.icon-maps { color: var(--accent-gold); }

.save-contact-btn {
  display: inline-flex;
  align-self: center;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: auto;
  background: linear-gradient(135deg, #1c2733, #0a0f16 60%, #050709);
  border: 1px solid #3d5a80;
  border-radius: 30px;
  padding: 13px 32px;
  color: #dce8f5;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 2px 12px rgba(61, 90, 128, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.save-contact-btn:hover {
  transform: translateY(-2px);
  border-color: #5b84b1;
  box-shadow: 0 6px 20px rgba(74, 130, 196, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.save-contact-btn:active {
  transform: translateY(0);
}

.footer {
  margin-top: 32px;
  width: 100%;
  display: flex;
  justify-content: center;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer a {
  color: var(--accent-gold);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

@media (max-width: 400px) {
  .logo { width: 170px; }
  .link-btn { padding: 14px; font-size: 0.95rem; }
  .glow-orb { width: 450px; height: 450px; }
}
