@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap");

* {
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  transition: all 0.3s ease;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

html, body {
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: fixed;
}

:root {
  --primary-color: #67e8f9;
  --secondary-color: #a78bfa;
  --bg-color: #02030a; /* deep black */
  --card-bg: rgba(8, 12, 28, 0.6);
  --text-color: #e2e8f0;
  --heading-color: #ffffff;
  --accent-color: #22d3ee;
  --primary-color-intensity: rgba(103, 232, 249, 0.12);
  --secondary-color-intensity: rgba(167, 139, 250, 0.10);
}

body {
  background-color: var(--bg-color);
  background-image: 
    radial-gradient(1200px 800px at 15% 20%, rgba(103, 232, 249, 0.05), transparent 60%),
    radial-gradient(1000px 700px at 80% 70%, rgba(167, 139, 250, 0.04), transparent 60%);
  color: var(--text-color);
  margin: 0;
  padding: 0;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
  -webkit-touch-callout: none;
}

/* Canvas starfield */
.stars-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100svh; /* mobile safe viewport height */
  z-index: -5;
  pointer-events: none;
}

/* Prevent image dragging */
img {
  -webkit-user-drag: none;
  user-drag: none;
}

.center-screen {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100svh; /* mobile safe height */
  padding: 1.5rem;
  overflow: hidden;
}

h1 {
  color: var(--heading-color);
  font-size: 4rem;
  font-weight: 700;
  background-image: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient 10s linear infinite;
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
  text-shadow: 0 0 24px rgba(103, 232, 249, 0.2), 0 0 50px rgba(167, 139, 250, 0.12);
}

@keyframes gradient { 0% { background-position: 0% center; } 100% { background-position: 200% center; } }

h3 { color: var(--heading-color); font-size: 1.5rem; font-weight: 600; margin-bottom: 0.5rem; }

.undertext { font-size: 1.2rem; opacity: 0.85; margin-bottom: 2rem; letter-spacing: 1.2px; }

.box-contain { display: flex; justify-content: center; gap: 1.5rem; max-width: 1000px; margin: 2rem 0; }

.box-brrr {
  background: linear-gradient(180deg, rgba(14, 18, 42, 0.7), rgba(14, 18, 42, 0.5));
  border-radius: 14px;
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  transform: translateY(0);
  border: 1px solid rgba(103, 232, 249, 0.12);
}

.box-brrr:hover { transform: translateY(-10px); box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45), 0 0 30px rgba(103, 232, 249, 0.2); border: 1px solid rgba(167, 139, 250, 0.25); }

.box-brrr svg { margin-bottom: 1rem; height: 50px; width: auto; }

.box-brrr svg path { fill: var(--accent-color); }

.box-brrr p { margin-top: 0.5rem; opacity: 0.9; font-size: 0.95rem; }

.pfp { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; margin-bottom: 1.5rem; border: 3px solid rgba(103, 232, 249, 0.8); box-shadow: 0 0 30px rgba(103, 232, 249, 0.35), 0 0 60px rgba(167, 139, 250, 0.25); }

a { color: var(--accent-color); text-decoration: none; font-weight: 500; }

a:hover { text-decoration: underline; }

.socials-text { margin: 2rem 0 1rem; position: relative; font-size: 1.1rem; font-weight: 600; letter-spacing: 2px; }

.socials-text::before, .socials-text::after { content: ""; display: inline-block; width: 30px; height: 1px; background: var(--accent-color); margin: 0 10px; vertical-align: middle; }

.socials { display: flex; gap: 20px; justify-content: center; }

.socials a { display: flex; align-items: center; justify-content: center; width: 50px; height: 50px; border-radius: 50%; background-color: var(--card-bg); transition: all 0.3s ease; border: 1px solid rgba(255, 255, 255, 0.1); }

.socials a:hover { transform: translateY(-5px) scale(1.1); background: linear-gradient(135deg, rgba(103, 232, 249, 0.25), rgba(167, 139, 250, 0.25)); box-shadow: 0 0 24px rgba(103, 232, 249, 0.25); }

.socials img { width: 25px; height: auto; }

.footer { margin-top: 3rem; font-size: 0.85rem; opacity: 0.75; text-align: center; border-top: 1px solid rgba(255, 255, 255, 0.08); padding-top: 1rem; width: 100%; max-width: 800px; }

.profile-container { display: flex; flex-direction: column; align-items: center; margin-bottom: 1rem; transition: all 0.5s ease; }

.intro-screen { position: fixed; top: 0; left: 0; width: 100%; height: 100svh; background-color: var(--bg-color); display: flex; flex-direction: column; justify-content: center; align-items: center; z-index: 1000; transition: opacity 1s ease, visibility 1s ease; background-image: radial-gradient(800px 800px at 20% 20%, rgba(103, 232, 249, 0.14), transparent 60%), radial-gradient(700px 700px at 80% 80%, rgba(167, 139, 250, 0.12), transparent 60%); }

.intro-screen.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.intro-screen h1 { font-size: 3.5rem; margin-bottom: 0.5rem; }

.intro-button { background: linear-gradient(135deg, rgba(103, 232, 249, 0.12), rgba(167, 139, 250, 0.12)); color: var(--text-color); border: 1px solid rgba(255, 255, 255, 0.18); padding: 12px 30px; border-radius: 50px; font-size: 1.2rem; cursor: pointer; transition: all 0.3s ease; backdrop-filter: blur(10px); box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25); }

.intro-button:hover { transform: translateY(-3px); background: linear-gradient(135deg, rgba(103, 232, 249, 0.24), rgba(167, 139, 250, 0.24)); box-shadow: 0 8px 28px rgba(103, 232, 249, 0.24); }

.main-content { opacity: 0; transition: opacity 1s ease 0.5s; position: relative; z-index: 1; }

.main-content.visible { opacity: 1; }

.audio-visualizer { position: fixed; top: 0; left: 0; width: 100%; height: 100svh; z-index: 0; pointer-events: none; }

.audio-pulse { position: fixed; top: 0; left: 0; width: 100%; height: 100svh; background: radial-gradient(circle at center, rgba(103, 232, 249, 0.3) 10%, transparent 70%), radial-gradient(circle at 30% 70%, rgba(167, 139, 250, 0.24) 10%, transparent 70%); z-index: -1; opacity: 0; transition: opacity 0.4s ease; pointer-events: none; mix-blend-mode: screen; }

.audio-visualizer::after { content: ''; position: fixed; top: 0; left: 0; width: 100%; height: 100svh; background: radial-gradient(circle at center, transparent 30%, var(--bg-color) 70%); opacity: 0; z-index: -2; animation: subtle-pulse 10s infinite alternate; pointer-events: none; }

@keyframes subtle-pulse { 0% { opacity: 0; transform: scale(0.985); } 50% { opacity: 0.06; transform: scale(1); } 100% { opacity: 0; transform: scale(1.015); } }

@media (max-width: 768px) { h1 { font-size: 2.5rem; } .box-contain { flex-direction: column; max-width: 100%; gap: 1rem; } .box-brrr { max-width: 100%; padding: 1.2rem; } .pfp { width: 100px; height: 100px; } .socials-text { margin: 1rem 0 0.5rem; } .footer { margin-top: 1.5rem; } }

@media (max-height: 700px) { .pfp { width: 80px; height: 80px; margin-bottom: 0.8rem; } h1 { font-size: 2.2rem; margin-bottom: 0.2rem; } .undertext { font-size: 1rem; margin-bottom: 1rem; } .box-contain { gap: 0.8rem; margin: 1rem 0; } .box-brrr { padding: 1rem; } .box-brrr p { font-size: 0.85rem; margin-top: 0.3rem; } .socials-text { margin: 0.5rem 0; } .footer { margin-top: 0.8rem; font-size: 0.75rem; } }

@media (max-width: 480px) { h1 { font-size: 2rem; } .undertext { font-size: 0.9rem; } .pfp { width: 90px; height: 90px; } .box-brrr { padding: 1rem; } .box-brrr h3 { font-size: 1.2rem; } .box-brrr p { font-size: 0.8rem; } }
