@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg-color: #030712;
  --bg-card: rgba(17, 24, 39, 0.7);
  --accent-color: #22d3ee;
  --accent-glow: rgba(34, 211, 238, 0.4);
  --accent-dim: rgba(34, 211, 238, 0.1);
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border: rgba(255, 255, 255, 0.08);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Outfit', sans-serif;
  background-color: #050505;
  background-image: 
    linear-gradient(135deg, rgba(34, 211, 238, 0.05) 25%, transparent 25%), 
    linear-gradient(225deg, rgba(34, 211, 238, 0.05) 25%, transparent 25%), 
    linear-gradient(45deg, rgba(34, 211, 238, 0.05) 25%, transparent 25%), 
    linear-gradient(315deg, rgba(34, 211, 238, 0.05) 25%, transparent 25%);
  background-size: 100px 100px;
  background-position: 50px 0, 50px 0, 0 0, 0 0;
  color: var(--text-primary);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 60px 20px;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(34, 211, 238, 0.12) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: 520px;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* --- Header --- */
header {
  text-align: center;
  margin-bottom: 50px;
  animation: fadeInDown 1s ease-out;
}

.badge-verified {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-glow);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-color);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.logo-wrapper {
  position: relative;
  width: 130px;
  height: 130px;
  margin: 0 auto 30px;
}

.logo-glow {
  position: absolute;
  inset: -10px;
  background: var(--accent-color);
  filter: blur(28px);
  opacity: 0.18;
  border-radius: 50%;
  animation: pulseLogo 3s infinite ease-in-out;
}

.logo-container {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--accent-color);
  padding: 5px;
  background: #000;
  position: relative;
  z-index: 2;
}

.logo-container img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

h1 {
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.tagline {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--accent-color);
  opacity: 0.8;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* --- Action Grid --- */
.action-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 30px;
}

.action-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 22px 15px;
  border-radius: 22px;
  text-decoration: none;
  color: var(--text-primary);
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.action-item:hover {
  background: var(--accent-dim);
  border-color: var(--accent-color);
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(34, 211, 238, 0.1);
}

.action-item i {
  font-size: 1.4rem;
  color: var(--accent-color);
  margin-bottom: 12px;
  display: block;
}

.action-item span {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
}

/* --- Portals List --- */
.portals-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 60px;
}

.portal-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  padding: 22px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  transition: var(--transition);
  animation: fadeInUp 0.8s ease-out backwards;
  backdrop-filter: blur(10px);
}

.portal-card:hover {
  background: var(--accent-dim);
  border-color: var(--accent-color);
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(34, 211, 238, 0.08);
}

.portal-info {
  display: flex;
  align-items: center;
  gap: 18px;
}

.portal-icon {
  width: 50px;
  height: 50px;
  background: var(--accent-dim);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.portal-text h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.portal-text p {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.portal-arrow {
  color: var(--text-muted);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* --- Footer --- */
footer {
  text-align: center;
  padding-bottom: 120px;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 25px;
  opacity: 0.35;
}

.trust-badges i {
  font-size: 1.6rem;
  color: var(--accent-color);
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s;
}

.footer-nav a:hover { color: var(--accent-color); }

.copyright {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* --- Floating Assistance Buttons --- */
.float-group {
  position: fixed;
  bottom: 35px;
  right: 35px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

.float-btn {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  animation: floatBounce 3s infinite ease-in-out;
}

.email-float {
  background: #ffffff;
  color: #000000;
  animation-delay: 0.5s;
}

.whatsapp-float {
  background: var(--accent-color);
  color: #000000;
}

.float-btn:hover {
  transform: scale(1.15) !important;
  animation-play-state: paused;
}

/* Tooltip — hidden by default, only shows on hover */
.float-tooltip {
  display: none;
}

/* --- Animations --- */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes pulseLogo {
  0%, 100% { transform: scale(1); opacity: 0.18; }
  50% { transform: scale(1.12); opacity: 0.35; }
}

@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* --- Responsive --- */
@media (max-width: 540px) {
  body { padding: 40px 15px; }
  h1 { font-size: 1.8rem; }
  .float-group { bottom: 20px; right: 20px; }
  .float-btn { width: 54px; height: 54px; font-size: 1.3rem; }
}
