@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&display=swap');
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #080808; --glass: rgba(255,255,255,0.06); --glass-b: rgba(255,255,255,0.1);
  --text: #ffffff; --text2: rgba(255,255,255,0.55); --text3: rgba(255,255,255,0.25);
  --accent: #F7C948; --font: 'Syne', sans-serif;
}

html, body { height: 100%; font-family: var(--font); background: var(--bg); color: var(--text); font-size: 16px; -webkit-font-smoothing: antialiased; }

body {
  min-height: 100dvh;
  background: radial-gradient(ellipse at 30% 0%, rgba(247,201,72,0.07) 0%, transparent 55%),
              radial-gradient(ellipse at 80% 90%, rgba(102,126,234,0.06) 0%, transparent 55%),
              var(--bg);
}

.page-wrap { max-width: 480px; margin: 0 auto; padding: 2.5rem 1.25rem 4rem; }

/* Profile */
.profile { text-align: center; margin-bottom: 2.5rem; }
.logo-ring {
  width: 5.5rem; height: 5.5rem; border-radius: 1.5rem;
  margin: 0 auto 1rem;
  border: 2px solid rgba(247,201,72,0.25);
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  box-shadow: 0 0 0 4px rgba(247,201,72,0.06), 0 8px 32px rgba(0,0,0,0.4);
}
.logo-ring img { width: 100%; height: 100%; object-fit: cover; }
.logo-ring i { font-size: 2rem; color: var(--text3); }

.profile-name { font-size: clamp(1.3rem, 5vw, 1.6rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 0.4rem; }
.profile-bio { font-size: 0.85rem; color: var(--text2); line-height: 1.6; max-width: 300px; margin: 0 auto; }

/* Sections */
.section-group { margin-bottom: 1.75rem; }
.sec-heading { font-size: 0.68rem; font-weight: 700; color: var(--text3); text-transform: uppercase; letter-spacing: 0.09em; margin-bottom: 0.75rem; text-align: center; }

/* Social icons row */
.social-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
.social-icon-btn {
  width: 3rem; height: 3rem;
  border-radius: 1rem;
  background: var(--glass);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-b);
  display: flex; align-items: center; justify-content: center;
  color: var(--text); font-size: 1.1rem;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.social-icon-btn:hover { transform: translateY(-2px) scale(1.05); background: rgba(255,255,255,0.1); box-shadow: 0 4px 16px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1); }

/* Custom link buttons */
.link-btn {
  display: flex; align-items: center; gap: 0.85rem;
  width: 100%; padding: 1rem 1.1rem;
  background: var(--glass);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-b);
  border-radius: var(--r);
  color: var(--text); text-decoration: none;
  font-size: 0.9rem; font-weight: 600;
  margin-bottom: 0.6rem;
  transition: transform 0.2s, background 0.2s;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07);
}
.link-btn:hover { transform: translateY(-1px); background: rgba(255,255,255,0.09); }
.link-btn i { color: var(--accent); font-size: 0.9rem; }
.link-btn .arrow { margin-left: auto; color: var(--text3); font-size: 0.8rem; }

/* Email / Phone */
.contact-btn {
  display: flex; align-items: center; gap: 0.75rem;
  width: 100%; padding: 0.85rem 1rem;
  background: var(--glass);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-b);
  border-radius: var(--r);
  color: var(--text); text-decoration: none;
  font-size: 0.85rem; font-weight: 600;
  margin-bottom: 0.6rem;
  transition: background 0.2s;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07);
}
.contact-btn:hover { background: rgba(255,255,255,0.09); }
.contact-btn i { width: 1.4rem; text-align: center; }

/* Footer */
.powered-by { text-align: center; margin-top: 2.5rem; }
.powered-by a { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.72rem; color: var(--text3); text-decoration: none; padding: 0.4rem 0.85rem; border: 1px solid rgba(255,255,255,0.06); border-radius: 100px; transition: color 0.2s, border-color 0.2s; }
.powered-by a:hover { color: var(--accent); border-color: rgba(247,201,72,0.2); }
.powered-by img { width: 0.9rem; height: 0.9rem; object-fit: contain; }

/* Not found */
.not-found { text-align: center; padding: 4rem 1.5rem; }
.not-found i { font-size: 3rem; color: var(--text3); margin-bottom: 1rem; display: block; }
.not-found h2 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; }
.not-found p { color: var(--text2); font-size: 0.85rem; margin-bottom: 1.5rem; }
.not-found a { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.7rem 1.4rem; background: var(--accent); border-radius: 100px; color: #000; font-weight: 700; font-size: 0.85rem; text-decoration: none; }
