:root {
  --primary-blue: #00D2FF;
  --bg-dark: #050505;
  --text-white: #ffffff;
  --text-gray: rgba(255, 255, 255, 0.7);
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.12);
  --font-main: 'Inter', sans-serif;
  --font-title: 'Playfair Display', serif;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-white);
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  justify-content: center;
}

/* Video Background */
.video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
}

#bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65) contrast(1.15) saturate(0.8);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.85) 100%);
  z-index: -1;
}

/* App Container */
#app {
  width: 100%;
  max-width: 480px;
  padding: 60px 20px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

header {
  text-align: center;
  margin-bottom: 40px;
}

.profile-container {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
}

#profile-pic {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: white;
  padding: 4px;
}

.verified-badge {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
  background: white;
  border-radius: 50%;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.premium-title {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.premium-tagline {
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
  line-height: 1.5;
  font-weight: 300;
}

.premium-description {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.6;
}

.premium-description span {
  color: var(--primary-blue);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.75rem;
}

/* Links Section */
.links-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--primary-blue);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 25px 0 10px 10px;
  opacity: 0.8;
}

.link-card {
  width: 100%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 16px 20px;
  border-radius: 16px;
  text-decoration: none;
  color: var(--text-white);
  display: flex;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.link-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--primary-blue);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 210, 255, 0.15);
}

.icon-wrapper {
  width: 24px;
  height: 24px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-blue);
}

.icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.icon-rounded {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.icon-no-radius {
  width: 28px;
  height: 28px;
  border-radius: 0;
  object-fit: contain;
}

.link-card span {
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

/* Footer style */
footer {
  margin-top: 50px;
  text-align: center;
  padding-bottom: 30px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile adjustments */
@media (max-width: 400px) {
  .premium-title { font-size: 1.7rem; }
  .link-card { padding: 14px 18px; }
  .link-card span { font-size: 0.8rem; }
}
