:root {
    --color-bg: #1a1a1a;
    /* Dark gray/black background like a poster board */
    --color-card-bg: #0a0a0a;
    /* Deep black for the card */
    --color-text: #e0e0e0;
    --color-heading: #ffffff;
    --color-accent: #ffffff;
    /* Keeping headers white for high contrast per image vibe */
    --font-main: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    background-image: url('images/hero-bg.png');
    /* Re-using the subtle gradient if desired, or can be solid */
    background-size: cover;
    background-position: center;
}

.poster-container {
    background-color: rgba(10, 10, 10, 0.85);
    /* Dark semi-transparent card */
    backdrop-filter: blur(10px);
    border: 1px solid #333;
    padding: 60px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    /* Slight rounded corners */
}

.poster-header h1 {
    font-size: 2.5rem;
    color: var(--color-heading);
    margin-bottom: 40px;
    font-weight: 700;
    letter-spacing: -1px;
}

.poster-section {
    margin-bottom: 30px;
}

.poster-section h2 {
    font-size: 1.5rem;
    color: var(--color-heading);
    margin-bottom: 10px;
    font-weight: 700;
}

.poster-section p,
.poster-section ul {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #cccccc;
    font-weight: 400;
}

.highlight {
    font-weight: 400;
    color: #fff;
}

.client-list {
    list-style: none;
}

.client-list li {
    margin-bottom: 5px;
}

.poster-footer {
    margin-top: 50px;
    text-align: right;
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
    border-top: 1px solid #333;
    padding-top: 20px;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .poster-container {
        padding: 30px;
    }

    .poster-header h1 {
        font-size: 2rem;
    }

    .poster-section h2 {
        font-size: 1.3rem;
    }

    .poster-section p,
    .poster-section ul {
        font-size: 1rem;
    }
}