:root {
    --bg-color-start: #ff758c; /* Hot Pink */
    --bg-color-end: #00c9a7;   /* Turquoise */
    --card-bg-color: rgba(255, 255, 255, 0.65);
    --primary-text-color: #2c3e50;
    --accent-color: #ffd700;   /* Glitter Gold */
    --border-color: rgba(255, 215, 0, 0.5);
    --shadow-color: rgba(0, 0, 0, 0.15);
    --heart-red: #ff4d4d;
}

body {
    font-family: 'Poppins', sans-serif;
    background-image: linear-gradient(135deg, var(--bg-color-start) 0%, var(--bg-color-end) 100%);
    color: var(--primary-text-color);
    margin: 0;
    padding: 25px 20px;
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

/* --- Ridiculous Animated Backgrounds --- */
#gold-flakes-container, #sparkle-container {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: -1;
}

.flake, .sparkle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: fall linear infinite;
}
.flake { background: var(--accent-color); }
.sparkle {
    background: white;
    animation-name: sparkle-anim;
    animation-timing-function: cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

@keyframes fall {
    0% { opacity: 0.7; transform: translateY(-10vh); }
    100% { opacity: 0; transform: translateY(105vh); }
}
@keyframes sparkle-anim {
    0%, 100% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); opacity: 1; }
}

.bubbles {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -2;
    overflow: hidden;
}

.bubble {
    position: absolute;
    bottom: -150px;
    width: 40px; height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: rise 10s infinite ease-in;
}
.bubble:nth-child(2) { left: 20%; animation-duration: 12s; width: 25px; height: 25px;}
.bubble:nth-child(3) { left: 35%; animation-duration: 7s; width: 50px; height: 50px;}
.bubble:nth-child(4) { left: 50%; animation-duration: 15s; }
.bubble:nth-child(5) { left: 65%; animation-duration: 8s; width: 30px; height: 30px;}
.bubble:nth-child(6) { left: 80%; animation-duration: 11s; width: 60px; height: 60px;}
.bubble:nth-child(7) { left: 90%; animation-duration: 9s; }

@keyframes rise {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(-120vh); opacity: 0; }
}

/* --- General Layout --- */
.container { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
h1, h2 { font-family: 'Playfair Display', serif; font-weight: 900; font-style: italic; }
h1 { font-size: 3em; }
h2 { font-size: 2em; color: var(--primary-text-color); margin-top: 0; margin-bottom: 25px; padding-bottom: 10px; border-bottom: 3px solid var(--accent-color); }
p, ul { color: #454545; }
ul { list-style: none; padding-left: 0; }
ul li::before { content: '✨'; margin-right: 10px; }

.card {
    background: var(--card-bg-color);
    border-radius: 16px;
    padding: 35px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 32px 0 var(--shadow-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.header { text-align: center; }
.headshot {
    width: 160px; height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid var(--accent-color);
    box-shadow: 0 0 25px var(--accent-color);
    margin: 0 auto 20px auto;
    animation: glow 3s infinite alternate;
}
@keyframes glow {
    from { box-shadow: 0 0 15px var(--accent-color); }
    to { box-shadow: 0 0 35px hotpink, 0 0 10px white; }
}

.header-content p {
    font-size: 1.2em;
    font-style: italic;
    color: var(--primary-text-color);
}

.shiny-text {
    background: linear-gradient(90deg, #ffd700, #ffb347, #ff69b4, #ffd700);
    background-size: 200% auto;
    color: #000;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s linear infinite;
}
@keyframes shine {
    to { background-position: 200% center; }
}

.job { margin-bottom: 25px; }
.job:last-child { margin-bottom: 0; }
.job .date { font-style: italic; font-size: 0.9em; color: #777; font-weight: 600; }

/* --- Instagram-style Card Footer --- */
.card-footer {
    margin-top: auto; /* Pushes footer to the bottom */
    padding-top: 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.likes-counter {
    font-weight: 600;
    font-size: 0.9em;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-btn svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-text-color);
    stroke-width: 2;
    fill: none;
    transition: all 0.2s ease-in-out;
}

.social-btn:hover svg {
    stroke: hotpink;
    transform: scale(1.1);
}

.social-btn.like-btn.active svg {
    fill: var(--heart-red);
    stroke: var(--heart-red);
}

.social-btn.like-btn.thump {
    animation: heart-thump 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes heart-thump {
    0% { transform: scale(1); }
    50% { transform: scale(1.4); }
    100% { transform: scale(1); }
}


@media (min-width: 992px) {
    body { padding: 50px; }
    h1 { font-size: 3.8em; }
    .main-layout { display: flex; flex-direction: row; align-items: stretch; gap: 30px; }
    .main-column { flex: 2; }
    .sidebar-column { flex: 1; position: sticky; top: 30px; }
}

