/* style.css */
.imdb-display-card {
    background: #1e1e1e;
    color: #fff;
    border-radius: 12px;
    padding: 20px;
    margin: 40px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    border: 1px solid #333;
}

.imdb-card-content {
    display: flex;
    gap: 24px;
}

.imdb-image-column {
    flex: 0 0 200px;
    position: relative;
}

.imdb-poster {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.imdb-rating-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #f5c518;
    color: #000;
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.imdb-score {
    font-size: 1.2em;
}

.imdb-denominator {
    font-size: 0.8em;
    opacity: 0.8;
}

.imdb-info-column {
    flex: 1;
}

.imdb-title {
    margin: 0 0 10px 0;
    font-size: 2em;
    font-weight: 800;
    color: #fff !important;
    font-style: normal !important;
}

.imdb-title a {
    color: #fff !important;
    text-decoration: none;
    font-style: normal !important;
}

.imdb-title a:hover {
    color: #f5c518;
}

.imdb-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.imdb-genre-tag {
    background: #333;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.85em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.imdb-genre-tag.no-bg {
    background: transparent;
    border: 1px solid #555;
}

.imdb-main-info dl {
    margin: 0;
    padding: 0;
}

.imdb-info-row {
    display: flex;
    margin-bottom: 8px;
    border-bottom: 1px solid #333;
    padding-bottom: 8px;
}

.imdb-info-row:last-child {
    border-bottom: none;
}

.imdb-info-row dt {
    flex: 0 0 120px;
    font-weight: bold;
    color: #aaa;
}

.imdb-info-row dd {
    margin: 0;
    flex: 1;
}

.imdb-plot {
    margin-top: 20px;
    font-size: 0.95em;
    line-height: 1.6;
    color: #ccc;
    background: #2a2a2a;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #f5c518;
}

/* Dedicated IMDb Button Styles */
.imdb-action-link {
    margin-top: 20px;
    text-align: right;
}

.imdb-btn {
    display: inline-block;
    background-color: #f5c518;
    color: #000 !important;
    font-style: normal !important;
    padding: 10px 20px;
    font-weight: 800;
    font-size: 0.5em;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.imdb-btn:hover {
    background-color: #e3b616;
    color: #000;
}

/* Responsive view for mobile */
@media (max-width: 768px) {
    .imdb-card-content {
        flex-direction: column;
    }

    .imdb-image-column {
        flex: 0 0 auto;
        max-width: 200px;
        margin: 0 auto;
    }

    .imdb-title {
        text-align: center;
        font-size: 1.6em;
    }

    .imdb-tags {
        justify-content: center;
    }

    .imdb-info-row {
        flex-direction: column;
        border-bottom: none;
        margin-bottom: 12px;
    }

    .imdb-info-row dt {
        flex: 1 1 auto;
        color: #f5c518;
        font-size: 0.9em;
        margin-bottom: 2px;
    }

    .imdb-action-link {
        text-align: center;
    }
}
