

/* ==========================================================================
   3. CENTERED POSTER STYLING
   ========================================================================== */
.poster-main-container {
    flex: 1; /* Menolak footer ke bahagian paling bawah halaman */
    padding-top: 100px; /* Memberi ruang agar tidak ditindih oleh fixed header */
    padding-bottom: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    
}

.poster-wrapper {
    max-width: 800px; /* Mengehadkan lebar maksima poster supaya tidak terlalu besar pada skrin monitor */
    width: 90%; /* Memberikan ruang tepi sebanyak 10% pada peranti skrin kecil */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    
}

.poster-title {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-align: center;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.poster-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 16px;
    border-radius: var(--radius-lg);
    border: 1px solid white;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(8px);
    width: 100%;
    display: flex;
    justify-content: center;
}

.centered-poster {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 12px; /* Membuat sudut bucu poster sedikit bulat dan kemas */
    object-fit: contain;
}

.btn-download {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    color: white;
    padding: 14px 28px;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.5);
}
