/* Uncanny Minimalist Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: crosshair;
}

body {
    background-color: #050505;
    color: #dedede;
    font-family: "Courier New", Courier, monospace;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow-x: hidden;
    position: relative;
}

.static-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 8px 8px;
    pointer-events: none;
    z-index: 1;
}

.uncanny-container {
    width: 100%;
    max-width: 600px;
    padding: 40px 20px;
    text-align: center;
    z-index: 2;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between;
}

/* Album Presentation Layout Group (Top) */
.album-focus {
    margin-bottom: 60px;
    width: 100%;
}

.artwork-frame {
    width: 240px;
    height: 240px;
    margin: 0 auto 35px auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.rounded-artwork {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(10%) contrast(105%);
}

.album-header {
    margin-bottom: 40px;
}

.album-title {
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: lowercase;
    color: #ffffff;
    margin-bottom: 8px;
}

.release-date {
    font-size: 0.9rem;
    color: #555555;
    letter-spacing: 6px;
    text-transform: lowercase;
}

/* Commerce Block Links */
.commerce-vault {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bento-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background-color: #090909;
    border: 1px solid #141414;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.bento-link .label {
    color: #888888;
}

.bento-link .status {
    color: #444444;
    font-size: 0.65rem;
}

.bento-link:hover {
    background-color: #121212;
    border-color: #333333;
}

.bento-link:hover .label {
    color: #ffffff;
}

.bento-link:hover .status {
    color: #8c1d1d;
}

/* Integrated Footer Hub (Bottom Layout) */
.footer-links-hub {
    width: 100%;
    border-top: 1px solid #141414;
    padding-top: 40px;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Unified Flexible Row Layout Strategy */
.link-row-layer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    width: 100%;
}

/* Social Layer Adjustments */
.social-layer {
    margin-bottom: 35px;
}

/* Music Layer Adjustments */
.music-layer {
    border-top: 1px solid #111111;
    padding-top: 25px;
    margin-bottom: 40px;
}

/* Perfect Circle Foundation Styling Rules */
.circle-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #222222;
    background-color: #0a0a0a;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

/* Updated Image Rules for Custom SVGs */
.circle-link img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    opacity: 0.4; /* Gives that muted, low-contrast initial state */
    transition: opacity 0.2s ease;
}

/* Universal Hover Dynamics */
.circle-link:hover {
    border-color: #ffffff;
    transform: scale(1.05);
    background-color: #000000;
}

.circle-link:hover img {
    opacity: 1; /* Fully illuminates the custom graphic on hover */
}

/* Studio Notice Styling Baseline */
.copyright-baseline {
    font-size: 0.6rem;
    color: #2b2b2b;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 10px;
    width: 100%;
    text-align: center;
}