/* 
  DB Enterprises - Link in Bio Stylesheet
  Custom styled specifically for mobile-first link aggregation.
*/

:root {
  --color-primary: #020817; 
  --color-primary-light: #0A192F;
  --color-electric: #00D1FF;
  --color-text: #F1F5F9;
  --color-text-muted: #94A3B8;
  --color-gold: #C8A96B;
  
  --font-heading: "Merriweather", serif;
  --font-body: "Source Sans 3", sans-serif;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-primary);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  background-image: radial-gradient(circle at center 0%, var(--color-primary-light) 0%, var(--color-primary) 70%);
}

.links-container {
  width: 100%;
  max-width: 500px;
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Header */
.links-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.profile-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 2px solid var(--color-electric);
  box-shadow: 0 0 15px rgba(0, 209, 255, 0.2);
}

.links-header h1 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
  letter-spacing: 0.5px;
}

.tagline {
  color: var(--color-electric);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.bio {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.4;
}

/* Link Buttons */
.links-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  padding: 1rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--color-text);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.link-btn i {
  position: absolute;
  left: 1.5rem;
  font-size: 1.2rem;
  color: var(--color-electric);
  opacity: 0.8;
}

.link-btn:hover, .link-btn:focus {
  background-color: rgba(0, 209, 255, 0.05);
  border-color: var(--color-electric);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 209, 255, 0.15);
}

/* Primary Highlighted Button */
.primary-btn {
  background: linear-gradient(90deg, var(--color-electric) 0%, #00B4DB 100%);
  color: var(--color-primary);
  border: none;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0, 209, 255, 0.3);
}

.primary-btn i {
  color: var(--color-primary);
  opacity: 1;
}

.primary-btn:hover, .primary-btn:focus {
  background: #fff;
  color: var(--color-primary);
  box-shadow: 0 6px 25px rgba(0, 209, 255, 0.4);
}

.facebook-btn {
  border-color: rgba(24, 119, 242, 0.3);
}

.facebook-btn i {
  color: #1877F2;
  opacity: 1;
}

.facebook-btn:hover, .facebook-btn:focus {
  background-color: rgba(24, 119, 242, 0.05);
  border-color: #1877F2;
  box-shadow: 0 4px 15px rgba(24, 119, 242, 0.2);
}

.youtube-btn {
  border-color: rgba(255, 0, 0, 0.3);
}

.youtube-btn i {
  color: #FF0000;
  opacity: 1;
}

.youtube-btn:hover, .youtube-btn:focus {
  background-color: rgba(255, 0, 0, 0.05);
  border-color: #FF0000;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.2);
}

/* Footer */
.links-footer {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  width: 100%;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.social-icons a {
  color: var(--color-text-muted);
  font-size: 1.5rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: var(--color-electric);
  transform: translateY(-2px);
}

.links-footer p {
  margin-bottom: 0.25rem;
}
