/* Movie Poster Generator Styles */
.movie-poster-gradient {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

/* Gradient backgrounds for different genres */
.poster-thriller {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.poster-action {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.poster-comedy {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.poster-horror {
    background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
}

.poster-drama {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.poster-scifi {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.poster-anime {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.poster-animation {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.poster-barbie {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
}

.poster-spiderman {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.poster-guardians {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.poster-fast {
    background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
}

.poster-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.2;
}

.poster-year {
    font-size: 18px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.poster-genre {
    font-size: 14px;
    background: rgba(0,0,0,0.3);
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.poster-rating {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.9);
    color: #333;
    padding: 5px 10px;
    border-radius: 15px;
    font-weight: bold;
    font-size: 14px;
}

.poster-price {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: #ff6b6b;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 16px;
}

.poster-original-price {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0,0,0,0.3);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    text-decoration: line-through;
    opacity: 0.8;
}
