:root {
  --bg-color: #070809;
  --card-bg: transparent;
  --text-main: #d1d5db;
  --text-muted: #6b7280;
  --accent-green: #34d399;
  --accent-green-hover: #10b981;
  --accent-green-glow: rgba(52, 211, 153, 0.15);
  --dock-bg: rgba(26, 27, 30, 0.85);
  --dock-border: rgba(255, 255, 255, 0.08);
  --icon-bg: #1e2024;
  --icon-bg-hover: #2a2d34;
  --icon-color: #e5e7eb;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-sans);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Subtle ambient background glow */
.background-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.03) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 630px;
  padding: 3rem 1.5rem;
  margin: auto;
}

.content-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

/* Main paragraph */
.description {
  color: #FFF;
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 131.284%; /* 31.508px */
  margin-bottom: 60px;
}

/* Contact section */
.contact-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 60px;
}

.contact-label {
  color: #FFF;
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.email-wrapper {
  display: inline-flex;
  align-items: center;
  position: relative;
}

.email-btn {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  color: #70ED7E;
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  user-select: text;
}

.email-btn:hover {
  color: #8eff9b;
  text-shadow: 0 0 16px rgba(112, 237, 126, 0.35);
}

.email-btn:active {
  transform: scale(0.99);
}

.tooltip {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%) scale(0.9);
  background: #18191c;
  color: var(--accent-green);
  font-size: 0.75rem;
  font-family: var(--font-sans);
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(52, 211, 153, 0.25);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  pointer-events: none;
  opacity: 0;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  z-index: 10;
}

.tooltip.show {
  opacity: 1;
  transform: translateX(-50%) scale(1);
  top: -34px;
}

/* Small disclaimer note */
.disclaimer {
  font-size: 0.72rem;
  color: #4b5563;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

/* Responsive queries */
@media (max-width: 600px) {
  .container {
    padding: 2rem 1.25rem;
  }

  .description {
    font-size: 18px;
    margin-bottom: 2rem;
  }

  .contact-label {
    font-size: 18px;
  }

  .email-btn {
    font-size: 22px;
  }
}
