
.media-review {
    max-width: 800px;
    margin: 0 auto;
}

/* Media Details Header */
.media-review__details {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.media-review__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.media-review__info {
    flex: 1;
}

.media-review__media-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.media-review__meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.media-review__creator {
    font-size: 1.1rem;
    font-style: italic;
    color: #555;
}

.media-review__type-genre {
    font-size: 0.9rem;
}

.media-type-badge {
    color: rgb(40, 39, 39);
    border-radius: 4px;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
}

.media-genre-badge {
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.media-review__release-date {
    color: #777;
    font-size: 0.9rem;
}

/* Rating Display */
.media-review__rating-display {
    text-align: center;
    flex-shrink: 0;
}

.rating-score {
    font-size: 2rem;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.rating-stars {
    font-size: 1.2rem;
    color: #ffc107;
}


/* Thumbnail */
.media-review__thumbnail {
    margin-top: 1rem;
    text-align: center; /* Center the image */
}

.media-thumbnail-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: block;
    margin: 0 auto; /* Additional centering */
}

/* Review Sections */
.media-review__summary,
.media-review__review {
    margin-bottom: 2rem;
}

.media-review__summary h3,
.media-review__review h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    border-bottom: 2px solid #eee;
    padding-bottom: 0.5rem;
}

.review-summary-content {
    background: #f1f3f4;
    padding: 1.5rem;
    border-radius: 6px;
}

.review-content {
    line-height: 1.6;
}

.review-placeholder {
    border-radius: 6px;
    padding: 1.5rem;
    text-align: center;
}

.review-placeholder p {
    margin: 0;
    color: #856404;
}

/* Actions */
.media-review__actions {
    text-align: center;
    margin: 2rem 0;
}

.media-review__external-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    background: #007bff;
    color: white;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.media-review__external-link:hover {
    background: #0056b3;
    text-decoration: none;
    color: white;
}

/* Tags */
.media-review__tags {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.media-review__tags h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.tags-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tags-list li a {
    background: #e9ecef;
    color: #495057;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.tags-list li a:hover {
    background: #007bff;
    color: white;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .media-review__details {
        padding: 1.5rem;
    }
    
    .media-review__header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .media-review__rating-display {
        align-self: center;
    }
    
    .rating-score {
        font-size: 1.5rem;
        padding: 0.4rem 0.8rem;
    }
    
    .media-review__media-title {
        font-size: 1.5rem;
    }

   /* Make thumbnail smaller on mobile */
    .media-thumbnail-image {
        max-width: 80%; /* Smaller on mobile */
        margin-top: 1rem;
    }
}