:root {
    --text-color: #333;
    --link-color: #3b82f6;
    --bg-color: #fff;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 600px;
    padding: 2rem;
    text-align: left;
}

h1 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.profile-emoji {
    font-size: 1.5em;
    /* Slightly larger for the emoji/image placeholder */
}

section {
    margin-bottom: 2rem;
    font-size: 1.25rem;
    /* Large readable text */
    color: #4b5563;
    /* Slightly softer than black */
}

p {
    margin: 0.5rem 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.icon-group,
.social-group {
    display: inline-flex;
    align-items: center;
    margin-left: 10px;
    /* spacing from text */
}

.app-icon+.app-icon,
.social-icon+.social-icon {
    margin-left: -10px;
    /* Overlap effect */
}

.app-icon,
.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    font-weight: bold;
    color: white;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.app-icon:hover,
.social-icon:hover {
    transform: scale(1.1);
    z-index: 10;
}

/* Specific Basic Styling for placeholders */
.youtube-icon {
    color: red;
    font-size: 2rem;
    vertical-align: middle;
}

.x-icon {
    background: #000;
}

.insta-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.tiktok-icon {
    background: #000;
}

.linkedin-icon {
    background: #0077b5;
}

a {
    color: var(--link-color);
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}

.startup {
    margin-top: 3rem;
    padding-top: 1rem;
    /* Optional divider if needed, though image doesn't strictly show one unless it's very faint
       border-top: 1px solid #f3f4f6; 
    */
}