/* General Setup & Background */
body {
    background-color: #121212;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

/* The Main Content Card */
.main-card {
    background-color: #1e1e1e;
    border-radius: 24px;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Left Section: Info */
.info-section {
    flex-shrink: 0;
}

.profile-picture {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #333;
}

.subtitle {
    color: #888;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 10px 0;
}

h1 {
    color: #fff;
    font-size: 3rem;
    margin: 0 0 10px 0;
}

.tagline {
    color: #aaa;
    font-size: 1.1rem;
    margin: 0;
}

/* Right Section: Links */
.links-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.link-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.link-button i {
    font-size: 1.2rem;
}

/* Button Gradients */
.linkedin { background: linear-gradient(90deg, #0A66C2, #0077B5); }
.instagram { background: linear-gradient(90deg, #C13584, #833AB4, #F56040); }
.mergefund { background: linear-gradient(90deg, #8A2BE2, #4B0082); }

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .main-card {
        flex-direction: column;
        text-align: center;
        padding: 30px;
        gap: 30px;
    }

    .info-section {
        order: 1; /* Show info first */
    }

    .links-section {
        order: 2; /* Show links after */
    }
}
