/* Vizyondaki Filmler Sayfası */

.movies-page {
    min-height: 100vh;
    padding: 24px 0 40px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #020617 100%);
}

.movies-header {
    text-align: center;
    margin-bottom: 32px;
    color: #e5e7eb;
}

.movies-header h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.movies-header h1 i {
    color: #f97316;
    font-size: 28px;
}

.movies-header p {
    font-size: 16px;
    color: #9ca3af;
}

/* Filmler Grid */
.movies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.movie-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(2, 6, 23, 0.95));
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.movie-card:hover {
    transform: translateY(-8px);
    border-color: #f97316;
    box-shadow: 0 16px 32px rgba(249, 115, 22, 0.3);
}

.movie-card-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.5);
}

.movie-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.movie-card:hover .movie-card-image img {
    transform: scale(1.05);
}

.movie-rating {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.movie-rating i {
    font-size: 12px;
}

.movie-card-content {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.movie-card-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: #f1f5f9;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.movie-genre {
    font-size: 12px;
    color: #cbd5e1;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.movie-genre i {
    color: #f97316;
}

.movie-duration {
    font-size: 12px;
    color: #cbd5e1;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.movie-duration i {
    color: #f97316;
}

/* Film Detay Sayfası */
.movie-detail-page {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(2, 6, 23, 0.8));
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 40px;
}

.movie-detail-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(2, 6, 23, 0.8));
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 8px;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.back-button:hover {
    transform: translateX(-3px);
    box-shadow: 0 8px 16px rgba(249, 115, 22, 0.4);
}

.header-title {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.header-title h1 {
    font-size: 28px;
    font-weight: 700;
    color: #f1f5f9;
    margin: 0;
}

.header-title i {
    color: #f97316;
    font-size: 24px;
}

/* Film Bilgi Kartı */
.movie-info-card {
    display: flex;
    flex-direction: column;
    gap: 32px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.6), rgba(2, 6, 23, 0.6));
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 12px;
    padding: 32px;
}

.movie-video-container {
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
}

.movie-video-container video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.movie-image-container {
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 400px;
}

.movie-image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}

.movie-image {
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.5);
}

.movie-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.movie-details h2 {
    font-size: 28px;
    font-weight: 700;
    color: #f1f5f9;
    margin: 0 0 24px 0;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #cbd5e1;
}

.detail-item.full-width {
    grid-column: 1 / -1;
    margin-bottom: 20px;
}

.detail-item.full-width div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-item.full-width strong {
    color: #f1f5f9;
    font-weight: 600;
}

.detail-item i {
    color: #f97316;
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 16px;
}

.movie-synopsis {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(249, 115, 22, 0.2);
    width: 100%;
}

.movie-synopsis h3 {
    font-size: 18px;
    font-weight: 700;
    color: #f1f5f9;
    margin: 0 0 16px 0;
}

.movie-synopsis p {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.8;
    margin: 0;
    text-align: justify;
}

.buy-ticket-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
}

.buy-ticket-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(249, 115, 22, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .movies-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 16px;
    }

    .movie-info-card {
        gap: 24px;
        padding: 20px;
    }

    .details-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .movie-detail-header {
        flex-wrap: wrap;
    }

    .header-title h1 {
        font-size: 22px;
    }

    .movie-details h2 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .movies-header h1 {
        font-size: 24px;
    }

    .movies-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .movie-card-image {
        height: 220px;
    }
}

