.news-detail-page {
    background: #ffffff;
    color: #000;
    padding-top: 80px;
    min-height: 100vh;
}

.news-detail-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 0;
    font-size: 14px;
    color: #999;
}

.breadcrumbs a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: #2563EB;
}

.breadcrumb-separator {
    color: #ccc;
}

.breadcrumb-current {
    color: #000;
}

.news-detail-article {
    padding: 40px 0;
}

.news-detail-header {
    margin-bottom: 60px;
}

.news-detail-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.news-detail-date {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.news-detail-category {
    background: #2563EB;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-detail-category.premieres {
    background: linear-gradient(135deg, #2563EB 0%, #1d4ed8 100%);
}

.news-detail-category.tours {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.news-detail-category.awards {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.news-detail-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
    color: #000;
}

.news-detail-hero-image {
    position: relative;
    width: 100%;
    height: clamp(400px, 50vh, 600px);
    border-radius: 20px;
    overflow: hidden;
}

.news-detail-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-detail-hero-logo {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 80px;
    height: 80px;
    background: #2563EB;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.news-detail-hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.news-detail-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    align-items: start;
}

.news-detail-text {
    max-width: 800px;
}

.news-detail-text p {
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    line-height: 1.8;
    color: #333;
    margin-bottom: 24px;
}

.news-detail-text p.lead {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.7;
    color: #000;
    font-weight: 500;
    margin-bottom: 40px;
}

.news-detail-text h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 24px;
    color: #000;
}

.quote-block {
    background: #f8f9fa;
    border-left: 4px solid #2563EB;
    border-radius: 8px;
    padding: 30px;
    margin: 40px 0;
}

.quote-block blockquote {
    margin: 0;
}

.quote-block p {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    font-style: italic;
    color: #000;
    margin-bottom: 16px;
    line-height: 1.6;
}

.quote-block cite {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    color: #666;
    font-style: normal;
    font-weight: 600;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.info-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    background: #f1f3f5;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.info-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.info-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.info-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.performance-dates {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.date-item {
    background: linear-gradient(135deg, #2563EB 0%, #1d4ed8 100%);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.date-day {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    font-size: 14px;
    opacity: 0.9;
    text-transform: uppercase;
}

.date-time {
    font-size: 16px;
    font-weight: 600;
    margin-top: 8px;
}

.cta-block {
    background: linear-gradient(135deg, #1a1d3a 0%, #2d1b3d 100%);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    margin: 50px 0;
    color: #fff;
}

.cta-block h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 12px;
}

.cta-block p {
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    opacity: 0.9;
    margin-bottom: 24px;
}

.btn-buy-tickets {
    background: #fff;
    color: #2563EB;
    border: none;
    padding: 16px 48px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-buy-tickets:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.review-item {
    background: #f8f9fa;
    border-left: 3px solid #2563EB;
    border-radius: 8px;
    padding: 24px;
}

.review-source {
    font-size: 14px;
    font-weight: 700;
    color: #2563EB;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.review-item p {
    font-size: clamp(0.95rem, 1.6vw, 1.05rem);
    color: #333;
    font-style: italic;
    margin: 0;
}

.news-detail-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-section {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 30px;
}

.sidebar-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.share-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.share-btn {
    background: #fff;
    border: 2px solid #e9ecef;
    color: #666;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.share-btn.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: #fff;
}

.share-btn.twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
    color: #fff;
}

.share-btn.telegram:hover {
    background: #0088cc;
    border-color: #0088cc;
    color: #fff;
}

.share-btn.whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
}

.related-news {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.related-news-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-news-item:hover {
    transform: translateX(5px);
}

.related-news-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.related-news-content time {
    display: block;
    font-size: 12px;
    color: #999;
    margin-bottom: 6px;
}

.related-news-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    line-height: 1.4;
    margin: 0;
    transition: color 0.3s ease;
}

.related-news-item:hover h4 {
    color: #2563EB;
}

.subscribe-box {
    background: linear-gradient(135deg, #2563EB 0%, #1d4ed8 100%);
    color: #fff;
}

.subscribe-box h3 {
    color: #fff;
}

.subscribe-box p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.subscribe-form input {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
}

.subscribe-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.subscribe-form button {
    background: #fff;
    color: #2563EB;
    border: none;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.more-news-section {
    padding: 80px 0;
    border-top: 1px solid #e9ecef;
}

.more-news-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.more-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.news-preview-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.news-preview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: #2563EB;
}

.news-preview-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.news-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-preview-card:hover .news-preview-image img {
    transform: scale(1.1);
}

.news-preview-content {
    padding: 24px;
}

.news-preview-content time {
    display: block;
    font-size: 14px;
    color: #999;
    margin-bottom: 12px;
}

.news-preview-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.4;
}

.news-preview-content h3 a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-preview-content h3 a:hover {
    color: #2563EB;
}

.news-preview-content .read-more {
    color: #2563EB;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.news-preview-content .read-more:hover {
    gap: 10px;
}

.back-to-news {
    text-align: center;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    color: #333;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: #2563EB;
    border-color: #2563EB;
    color: #fff;
    gap: 15px;
}

@media (max-width: 1024px) {
    .news-detail-content {
        grid-template-columns: 1fr;
    }

    .news-detail-sidebar {
        position: static;
        margin-top: 60px;
    }

    .sidebar-section {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .news-detail-container {
        padding: 0 20px;
    }

    .news-detail-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .news-detail-hero-image {
        height: clamp(300px, 50vw, 400px);
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .performance-dates {
        grid-template-columns: repeat(2, 1fr);
    }

    .more-news-grid {
        grid-template-columns: 1fr;
    }

    .share-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .news-detail-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .cta-block {
        padding: 30px 20px;
    }

    .btn-buy-tickets {
        padding: 14px 32px;
        font-size: 16px;
    }

    .performance-dates {
        grid-template-columns: 1fr;
    }
}
