/* ... existing styles ... */

/* Card Link */
.card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-link:hover .play-title {
    color: var(--primary-color);
}

/* Play Details Page */
.play-details-container {
    padding-top: 2rem;
    padding-bottom: 4rem;
    color: #fff;
}

.play-header {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

#detail-image {
    width: 300px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.play-info {
    flex: 1;
}

#detail-title {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

#detail-genre {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.play-info .play-meta {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.play-info .play-meta span {
    margin-right: 20px;
}

.btn-large {
    font-size: 1.2rem;
    padding: 15px 30px;
}

.play-description-section {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    line-height: 1.8;
}

.play-description-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

/* Mini Header */
.header-mini {
    background: #000;
    padding: 1rem 0;
    border-bottom: 1px solid #333;
}

.header-mini .logo {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-decoration: none;
    font-weight: 700;
}

@media (max-width: 768px) {
    .play-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #detail-image {
        width: 100%;
        max-width: 300px;
    }

    #detail-title {
        font-size: 2.5rem;
    }
}
/* Schedule Section */
.play-schedule-section {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    line-height: 1.6;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.play-schedule-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

/* Schedule List (Unique Dates) */
.schedule-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.schedule-list li {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    border-left: 3px solid var(--primary-color);
}

.schedule-list li::before {
    content: '\f073'; /* Calendar icon - Font Awesome unicode might need escaping in CSS string if not careful, but usually fine in cat */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 10px;
    color: var(--text-muted);
}

/* Schedule Summary (Recurring) */
.schedule-summary {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid var(--secondary-color);
}

.schedule-summary p {
    margin-bottom: 0.5rem;
}

.schedule-summary p:last-child {
    margin-bottom: 0;
}

.schedule-summary strong {
    color: #fff;
    font-size: 1.1rem;
}

/* Free Price Badge */
.price-free {
    color: #2ecc71 !important; /* Green */
    font-weight: 800;
    font-size: 1.2em;
    text-transform: uppercase;
    background: rgba(46, 204, 113, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid rgba(46, 204, 113, 0.3);
}
