:root {
    --poster-pink: #f75eb9; /* Very bright, saturated pink like the poster */
    --poster-black: #111111;
}

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

body {
    background-color: var(--poster-pink); /* Main outer bg is pink */
    font-family: 'Anton', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    /* Adding a subtle paper grain texture */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.08'/%3E%3C/svg%3E");
}

.poster-container {
    width: 100%;
    min-height: 100vh;
    background-color: var(--poster-black);
    display: flex;
    flex-direction: column;
    padding: 0; /* Remove inner border */
    container-type: inline-size;
}

/* TOP SECTION: Black background, Pink text */
.top-section {
    color: var(--poster-pink);
    text-align: center;
    padding: 2rem 5cqi 5cqi 5cqi;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.massive-stacked {
    display: flex;
    flex-direction: column;
    width: 100%;
    line-height: 0.8;
}

.line-1 {
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    transform: scaleY(1.3); /* extreme stretch vertically like SKID ROW */
    display: block;
    width: 100%;
    text-align: center;
    text-align-last: justify; /* Force it to spread perfectly to edges */
}

.line-1 { 
    font-size: 28cqi; 
    margin-bottom: 2cqi; /* Standard layout spacing */
}

/* MIDDLE SECTION: Pink background, Black text */
.middle-section {
    background-color: var(--poster-pink);
    color: var(--poster-black);
    text-align: center;
    padding: 4cqi 2cqi 0.5cqi 2cqi; /* Further reduced bottom padding */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.date-large {
    font-family: 'Anton', sans-serif;
    font-size: 34cqi; /* Larger size to make 5 letters fit perfectly edge to edge */
    line-height: 1;
    transform: scaleY(1.3);
    margin-bottom: 2cqi;
    text-transform: uppercase;
    width: 100%;
    text-align-last: center; /* Back to centered */
}

.location {
    font-family: 'Archivo Black', sans-serif;
    font-size: 14cqi; 
    margin-top: 2cqi;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    letter-spacing: -0.01em;
}



/* LINKS SECTION: Pink background, Black text and bold */
.links-section {
    background-color: var(--poster-pink);
    color: var(--poster-black);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 2cqi 1cqi;
    border-top: 0.8cqi solid var(--poster-black); /* Like the original poster separator */
    flex-wrap: wrap;
    gap: 2cqi;
}

.social-link {
    font-family: 'Archivo Black', sans-serif;
    font-size: 3cqi;
    text-decoration: none;
    color: var(--poster-black);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.social-link:hover {
    color: var(--poster-pink);
    background-color: var(--poster-black);
    padding: 0 1cqi; 
}

/* VERY LAST SECTION: Black, Bill Graham Presents etc */
.very-bottom {
    background-color: var(--poster-black);
    color: var(--poster-pink);
    text-align: center;
    padding-top: 1.5cqi;
    padding-bottom: calc(1.5cqi + 10px);
    font-family: 'Arial', sans-serif;
    font-size: 1.5cqi;
    font-weight: bold;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
