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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #121212;
    /* Dark background */
    color: #ffffff;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

/* Mobile-first main container */
.container {
    width: 100%;
    max-width: 480px;
    /* Forces a mobile width on larger screens */
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Profile Section Styles */
.profile {
    margin-bottom: 30px;
}

.profile-img {
    width: 100%;
    max-width: 180px;
    /* Adjust this to change the logo size */
    height: auto;
    object-fit: contain;
    margin-bottom: 20px;
}

.profile h1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.bio {
    font-size: 15px;
    line-height: 1.5;
    color: #cccccc;
    margin: 0 auto;
    max-width: 90%;
}

/* Links Section Styles */
.links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    /* Spacing between buttons */
    margin-bottom: 40px;
}

.link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    background-color: #1e1e1e;
    color: #ffffff;
    text-decoration: none;
    padding: 16px 20px;
    border-radius: 30px;
    /* Pill shape */
    font-weight: 600;
    font-size: 16px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.link-btn .icon {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.link-btn:hover,
.link-btn:active {
    background-color: #C9D524;
    color: #121212;
    transform: translateY(-2px);
    /* Slight lift effect */
    box-shadow: 0 6px 15px rgba(201, 213, 36, 0.3);
    border-color: #C9D524;
}