/* Puslu Mercek - Tam Entegre Tema Tasarımı (3.1) */
.pm-oscar-card {
    background: #000000;
    border: 1px solid #1a1a1a;
    padding: 25px;
    font-family: 'Helvetica', sans-serif; /* Georgia yerine modern sans-serif */
    color: #ffffff;
    max-width: 100%;
    box-sizing: border-box;
    transition: all 0.4s ease;
    border-radius: 15px; /* Temanın yuvarlak köşe yarıçapı */
    overflow: hidden;
}

.pm-oscar-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #e74c3c; /* Tema etiket stili gibi kırmızı */
    color: #fff;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 5px; /* Etiket yuvarlaklığı */
    font-family: 'Helvetica', sans-serif;
}

.pm-oscar-poster-wrapper {
    position: relative;
    margin-bottom: 20px;
    border-radius: 12px; /* Poster yuvarlaklığı */
    overflow: hidden;
}

.pm-oscar-poster {
    width: 100%;
    height: auto;
    filter: grayscale(100%) contrast(1.2);
    transition: filter 0.5s ease;
}

.pm-oscar-card:hover .pm-oscar-poster {
    filter: grayscale(20%) contrast(1);
}

.pm-oscar-title {
    font-size: 24px;
    margin: 0 0 5px 0;
    font-weight: bold;
    color: #fff;
}

.pm-oscar-meta {
    color: #888;
    font-size: 14px;
    margin-bottom: 20px;
    display: block;
}

.pm-oscar-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #1a1a1a;
    padding-top: 15px;
}

.pm-oscar-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.pm-oscar-link:hover {
    color: #aaa;
}

.pm-oscar-link::after {
    content: ' →';
}