:root {
    --bg-color: #050505;
    --text-color: #e0e0e0;
    --font-stack: "Helvetica Neue", Helvetica, Arial, sans-serif;
    --plastic-highlight: rgba(255, 255, 255, 0.07);
    --plastic-shadow: rgba(0, 0, 0, 0.4);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-stack);
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.plastic-atmosphere {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background: #0d0f14;
}

.light-reflections {
    display: none;
}

@keyframes slow-drift {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-2%, -2%) rotate(1deg); }
}

.layout-container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6rem;
    padding: 4rem;
    max-width: 1400px;
    width: 100%;
}

.artist-name {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #ffffff;
    opacity: 0.9;

    user-select: none;

    transform: translateY(2px);
    white-space: nowrap;
}

.art-wrapper {
    position: relative;
    width: 500px;
    height: 340px;
    overflow: hidden;
    background: #111;

    box-shadow: 0 20px 50px -10px rgba(0,0,0,0.5);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.art-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    filter: grayscale(20%) contrast(110%);
    transition: all 0.6s ease;
}

.art-sheen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.05) 40%,
        rgba(255,255,255,0.0) 60%);
    pointer-events: none;
    z-index: 2;
}

.art-wrapper:hover {
    transform: scale(1.02);
}

.art-wrapper:hover .art-image {
    opacity: 1;
    filter: grayscale(0%) contrast(100%);
}

@media (max-width: 900px) {
    .layout-container {
        gap: 3rem;
        flex-direction: column;
    }
    .art-wrapper {
        width: 100%;
        max-width: 500px;
        height: auto;
        aspect-ratio: 3/2;
    }
}
