:root {
    --bg-color-dark: #0f1218;
    --bg-color-light: #1b1e28;
    --text-primary: #f8f9fa;
    --text-secondary: #adb5bd;
    --accent-color: #d1b280; /* A soft gold/bronze representing hope/the cross */
    --accent-hover: #e0c598;
    --transition-speed: 0.3s;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, var(--bg-color-dark) 0%, var(--bg-color-light) 100%);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    overflow-x: hidden;
}

/* Screen Reader Only Utility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.easter-container {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    animation: fadeIn 1s ease-out;
}

/* Graphic Wrapper */
.poster-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 60px rgba(209, 178, 128, 0.1);
    background-color: #000;
    position: relative;
}

.poster-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    pointer-events: none;
    border-radius: 12px;
}

.poster-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform var(--transition-speed) ease;
}

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

/* Call to Action Actions */
.actions-wrapper {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-speed) cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}

.btn svg {
    transition: transform var(--transition-speed);
}

.btn:hover svg {
    transform: scale(1.1);
}

.btn-primary {
    background-color: var(--accent-color);
    color: #000;
    box-shadow: 0 8px 20px rgba(209, 178, 128, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(209, 178, 128, 0.4);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .btn {
        width: 100%;
        justify-content: center;
    }
    .poster-wrapper {
        border-radius: 8px;
    }
}
