@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@400;700&display=swap');

:root {
    --background-dark: #0D0E10;
    --wave-color: #000000;
    --button-bg: #1A1E22;
    --button-hover: #2b3036;
    --text-primary: #B7A99A;
    --text-secondary: #8C9094;
}

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

/* Global Styles */
body {
    background-color: var(--wave-color);
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    padding-top: 40px;
    overflow-x: hidden;
}

.container {
    text-align: center;
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
    padding: 0 16px 100px;
    padding-bottom: 100px;
}

/* Wave Background */
.wave-background {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40vh;
    background-color: transparent;
    z-index: -1;
}

.wave {
    width: 100%;
    height: 100%;
}

/* Profile Section */
.profile-picture {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.name {
    font-size: 32px;
    font-weight: bold;
    margin-top: 10px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
}

.username {
    font-size: 14px;
    color: var(--text-secondary);
    font-family: 'JetBrains Mono', monospace;
    margin-top: 0px;
    margin-bottom: 12px;
    opacity: 0.7;
}

.description {
    font-size: 16px;
    color: var(--text-secondary);
    opacity: 0.8;
    margin-top: 0px;
    margin-bottom: 20px;
    font-family: 'JetBrains Mono', monospace;
}

/* Links Section */
.links-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 40px;
    width: 100%;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 400px;
}

.link {
    background-color: var(--button-bg);
    color: var(--text-primary);
    text-decoration: none;
    padding: 20px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease, background-color .3s;
    font-family: 'Source Code Pro', monospace;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.link:hover {
    background-color: var(--button-hover);
    transform: scale(1.05) translateY(2px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.link:focus {
    outline: 2px solid var(--text-primary);
    outline-offset: 4px;
}

.links::after {
    content: "";
    display: block;
    height: 10vh;
}

/* Responsive Styles */
@media (min-width: 600px) {
  .profile-picture {
    width: 120px;
    height: 120px;
  }
  .name {
    font-size: 36px;
  }

  .description {
    font-size: 18px;
  }

  .link {
    font-size: 22px;
    padding: 24px;
  }
}