/* Import Pinyon Script (True White Cursive) and Quicksand (Clean Content Font) */
@import url('https://googleapis.com');

body {
    background-color: #FFDFE5; /* Baby Pink */
    /* High-contrast crisp white polka dot grids */
    background-image: radial-gradient(#ffffff 16%, transparent 17%),
                      radial-gradient(#ffffff 16%, transparent 17%);
    background-size: 26px 26px;
    background-position: 0 0, 13px 13px;
    font-family: 'Quicksand', sans-serif;
    margin: 0;
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://w3.org' width='40' height='40' style='font-size:24px'><text y='24'>🎀</text></svg>"), auto;
}

/* Master Framework Setup Layout */
.main-layout {
    display: flex;
    max-width: 950px;
    width: 100%;
    gap: 30px;
    position: relative;
}

/* LEFT COLUMN: Main Lace-Trimmed Card Profile */
.profile-card {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.97);
    padding: 40px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    
    /* Intricate double-lace scalloped edge border framing */
    border: 4px dashed #FFF0F2;
    outline: 10px double #FFF0F2;
    outline-offset: -14px;
}

/* Large Bold Title Headline */
.site-main-header {
    font-size: 3.5rem;
    font-weight: 700;
    color: #111111;
    margin: 0 0 5px 0;
    letter-spacing: -2px;
    text-align: center;
    text-transform: lowercase;
}

/* Navigation Menu Row */
.top-navigation-row {
    display: flex;
    justify-content: center;
    gap: 25px;
    border-top: 1px dashed #FFC0CB;
    border-bottom: 1px dashed #FFC0CB;
    padding: 12px 0;
    margin: 15px 0 40px 0;
}

.top-navigation-row a {
    color: #111111;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.top-navigation-row a:hover {
    color: #7FA7B8; /* Baby Blue Hover */
}

/* Pink Content Section Title Panels */
.pink-accent-strip {
    background-color: #FFC0CB; /* Baby Pink Bar */
    padding: 12px;
    border-radius: 35px;
    margin: 45px 0 25px 0;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

/* TRUE White Pinyon Script Formatting */
.pinyon-script-title {
    font-family: 'Pinyon Script', cursive !important;
    color: #ffffff !important; /* Crisp Pure White cursive font */
    font-size: 3.8rem;
    margin: 0;
    font-weight: normal;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
}

/* Editable Text Content Blocks */
.layout-content-bio {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #333333;
    text-align: left;
    padding: 0 10px;
}

/* Playlist Node Items formatting */
.playlist-wrapper {
    margin: 20px auto;
    max-width: 550px;
}

.song-track-node {
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    border-bottom: 1px dashed #FFC0CB;
    font-size: 0.95rem;
    text-align: left;
}

/* Lookbook Media Media Grid Boxes */
.cinema-poster-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 25px;
}

/* Dramatic High-Contrast Photo Container Boxes */
.poster-frame-container {
    background: #ffffff;
    border: 2px solid #111111; /* Dramatic solid black borders */
    padding: 14px;
    border-radius: 12px;
    box-shadow: 6px 6px 0px #111111; /* Strong 2000s hardware shadow drop */
    text-align: center;
}

/* Live Picture Scaling Parameters */
.poster-frame-container img {
    width: 100%;
    height: 310px;
    object-fit: cover;
    border: 2px solid #111111;
    border-radius: 8px;
    margin-bottom: 8px;
}

.poster-frame-container span {
    display: block;
    font-size: 0.8rem;
    font-weight: bold;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* RIGHT COLUMN: Floating Media Jukebox Widget */
.floating-audio-widget {
    width: 240px;
    background: #ffffff;
    border: 2px solid #111111;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 6px 6px 0px #111111;
    text-align: center;
    position: sticky;
    top: 50px;
}

.widget-art-box {
    width: 100%;
    height: 180px;
    border: 2px solid #111111;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.widget-art-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.widget-controls-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 15px 0;
}

.widget-action-btn {
    background: #ffffff;
    border: 1px solid #111111;
    padding: 6px 14px;
    font-size: 0.8rem;
    cursor: pointer;
    font-weight: bold;
    border-radius: 6px;
    box-shadow: 2px 2px 0px #111111;
}

.widget-action-btn:active {
    transform: translate(1px, 1px);
    box-shadow: 0px 0px 0px #111111;
}

/* Streaming Tracker Timelines */
.widget-timeline-track {
    background: #FFF0F2;
    height: 8px;
    border-radius: 4px;
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 12px;
    border: 1px solid #111111;
}

.widget-timeline-fill {
    background: #7FA7B8; /* Baby blue fill timeline tracker */
    width: 0%;
    height: 100%;
    transition: width 0.2s linear;
}
