:root {
  --bg-color: #0a0a0a;
  --card-bg: #111111;
  --text-primary: #ffffff;
  --text-secondary: #a1a1aa;
  --accent-color: #3b82f6;
  --border-color: #27272a;
  --icon-bg: #18181b;
  --hover-color: #2563eb;
}

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

body {
  font-family: "Inter", sans-serif;
  background-color: var(--bg-color);
  color: var(--text-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.container {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.card {
  background-color: var(--card-bg);
  padding: 4rem 3rem;
  border-radius: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.name {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  background: linear-gradient(to right, #ffffff, #a1a1aa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tagline {
  font-size: 1.5rem;
  color: #d4d4d8;
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.4;
  letter-spacing: 0.01em;
  padding-bottom: 0.5rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.icon-container {
  background-color: var(--icon-bg);
  border-radius: 0.75rem;
  width: 3.25rem;
  height: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  transition: all 0.2s ease;
}

.icon {
  width: 1.65rem;
  height: 1.65rem;
}

.company-link .icon-container .icon {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

.icon-link:hover .icon-container {
  transform: translateY(-3px);
  border-color: var(--accent-color);
  box-shadow: 0 5px 10px rgba(59, 130, 246, 0.2);
}

.company-link {
  margin-top: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  transition: all 0.2s ease;
  width: 100%;
  max-width: 360px;
}
.company-link .icon-container {
  flex-shrink: 0;
}

.newsletter-link {
  background-color: rgba(59, 130, 246, 0.1);
  border: 1.5px solid var(--accent-color);
  box-shadow: 0 4px 10px rgba(59, 130, 246, 0.15);
}

.newsletter-link .company-text strong {
  color: var(--accent-color);
  font-weight: 700;
}

.newsletter-link:hover {
  transform: translateY(-4px);
  background-color: rgba(59, 130, 246, 0.15);
  border-color: #2563eb;
  box-shadow: 0 6px 12px rgba(59, 130, 246, 0.2);
}

.company-link a {
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 1.1rem;
}

.company-link .company-icon {
  margin-right: 0;
}

.company-link .company-text {
  text-align: center;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.company-link .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.company-link span {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 0.25rem;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0.01em;
  opacity: 0.9;
}

.company-link strong {
  font-weight: 600;
  font-size: 1.15rem;
}

.company-link:hover {
  border-color: var(--accent-color);
  background-color: rgba(59, 130, 246, 0.1);
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  .name {
    font-size: 2.5rem;
  }

  .tagline {
    font-size: 1.3rem;
  }

  .card {
    padding: 2.5rem 1.8rem;
  }
}
