:root {
    --primary-red: #DA291C;
    --primary-yellow: #FFC72C;
    --text-color: #1A1A1A;
    --text-white: #FFFFFF;
    --bg-gradient-start: #DA291C;
    --bg-gradient-end: #B01E14;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(180deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
    color: var(--text-white);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Vertically center the container */
    overflow-x: hidden;
    /* Prevent horizontal scroll from falling items */
    position: relative;
}

.container {
    width: 100%;
    max-width: 480px;
    /* Mobile focused max-width */
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    /* Above animation */
    position: relative;
}

/* Header */
.profile-header {
    text-align: center;
    margin-bottom: 2.5rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-image {
    width: 120px;
    height: 120px;
    background-color: transparent;
    border-radius: 50%;
    /* border: 4px solid var(--primary-yellow); REMOVED */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.placeholder-logo {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.2;
}

.profile-handle {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.profile-slogan {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.95;
    margin-top: 0;
}

/* Links */
.links-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.link-btn {
    display: block;
    width: 100%;
    background-color: #FAFAFA;
    /* Off-white/Cream */
    color: var(--text-color);
    text-decoration: none;
    padding: 18px 20px;
    border-radius: 50px;
    /* Pill shape */
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.2s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.link-btn:hover,
.link-btn:active {
    transform: scale(1.02);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    background-color: #FFFFFF;
}

/* Footer */
.site-footer {
    margin-top: 3rem;
    text-align: center;
}

.site-footer p {
    font-size: 0.8rem;
    opacity: 0.6;
    color: var(--text-white);
}

/* Falling Fries Animation */
.fries-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    /* Below content */
    overflow: hidden;
}

.falling-fry {
    position: absolute;
    top: -100px;
    /* Start above screen */
    width: 60px;
    /* Base size */
    opacity: 0.4;
    animation-name: fall;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes fall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(110vh) rotate(360deg);
        opacity: 0.2;
    }
}