/* Streaming Tools Pro - Combined Styles */
.streaming-tool-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* ==================== COMMON ELEMENTS ==================== */
.search-section {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #cbeae9 0%, #a8d8d6 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 115, 170, 0.1);
}

.search-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 15px 0;
    color: #1a3c4d;
    background: linear-gradient(135deg, #1a3c4d 0%, #2c5a72 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.search-description {
    font-size: 1.2rem;
    color: #4a6b7d;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.search-container {
    display: flex;
    max-width: 700px;
    margin: 0 auto 20px;
    gap: 12px;
}

.region-selector-container {
    flex: 0 0 200px;
}

.region-selector, #whatSearchInput, #whenSearchInput, #whereSearchInput {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #ddd;
    border-radius: 12px;
    font-size: 16px;
    background: white;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.region-selector:focus, #whatSearchInput:focus, #whenSearchInput:focus, #whereSearchInput:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.2), 0 4px 12px rgba(0, 115, 170, 0.1);
}

#whatSearchBtn, #whenSearchBtn, #whereSearchBtn {
    padding: 18px 35px;
    background: linear-gradient(135deg, #0073aa 0%, #005a87 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 115, 170, 0.3);
}

#whatSearchBtn:hover, #whenSearchBtn:hover, #whereSearchBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 115, 170, 0.4);
}

.search-examples {
    margin-top: 25px;
}

.search-examples span {
    color: #4a6b7d;
    margin-right: 10px;
    font-weight: 500;
}

.example-query, .trending-search {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #e0f0f5;
    padding: 10px 20px;
    margin: 0 8px 8px 0;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    color: #2c5a72;
}

.example-query:hover, .trending-search:hover {
    background: #0073aa;
    color: white;
    border-color: #0073aa;
    transform: translateY(-2px);
}

/* Loading and Error States */
.loading-container {
    display: none;
    text-align: center;
    padding: 50px;
    background: white;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #0073aa;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 25px;
}

.error-container {
    display: none;
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    border: 2px solid #f44336;
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
    color: #c62828;
    text-align: center;
    font-weight: 500;
}

/* Results Section */
.results-container {
    display: none;
    margin: 40px 0;
}

.result-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    border: 1px solid #f0f0f0;
}

.result-header {
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
}

.result-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0 0 15px 0;
    color: #1a3c4d;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.confidence-tag {
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

.confidence-tag.verified {
    background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
    color: white;
}

.confidence-tag.estimated {
    background: linear-gradient(135deg, #ff9800 0%, #e65100 100%);
    color: white;
}

.result-meta {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.result-summary {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #555;
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}

.quick-answer {
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
    border: 2px solid #4caf50;
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2e7d32;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    margin: 60px 0;
}

.content-column {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.content-section {
    background: white;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    border: 1px solid #f5f5f5;
}

.content-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.section-heading {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 4px solid;
    color: #1a3c4d;
    position: relative;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #0073aa 0%, #00a8e1 100%);
    border-radius: 2px;
}

/* ==================== WHAT TO WATCH SPECIFIC ==================== */
.what-tool .section-heading::after {
    background: linear-gradient(135deg, #0073aa 0%, #00a8e1 100%);
}

.shows-list, .trending-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.show-item, .trending-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 5px solid #0073aa;
    transition: all 0.3s ease;
}

.show-item:hover, .trending-item:hover {
    transform: translateX(8px);
    background: #f0f7ff;
}

.show-time {
    background: linear-gradient(135deg, #0073aa 0%, #00a8e1 100%);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    min-width: 100px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0, 115, 170, 0.3);
}

.show-title, .trending-title {
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #1a3c4d;
    font-size: 15px;
}

.show-network, .trending-genre {
    display: flex;
    gap: 12px;
    font-size: 0.85rem;
    color: #666;
}

.countdown {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-left: 10px;
}

/* Genre Buttons */
.genre-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
}

.genre-btn, .quick-pick {
    background: white;
    border: 2px solid #e0f0f5;
    padding: 12px 22px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
    font-weight: 600;
    color: #2c5a72;
}

.genre-btn:hover, .quick-pick:hover {
    background: linear-gradient(135deg, #0073aa 0%, #00a8e1 100%);
    color: white;
    border-color: #0073aa;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 115, 170, 0.3);
}

/* Quick Picks */
.quick-picks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.quick-pick {
    text-align: center;
    padding: 18px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px solid #e0f0f5;
    transition: all 0.3s ease;
    font-weight: 600;
}

.quick-pick:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Streaming Filters */
.streaming-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
    margin-top: 20px;
}

.streaming-filters label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 15px;
    background: #f8f9fa;
    padding: 14px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 2px solid #e0f0f5;
    font-weight: 500;
}

.streaming-filters label:hover {
    background: #f0f7ff;
    border-color: #0073aa;
}

#whatApplyFilters {
    padding: 14px 28px;
    background: linear-gradient(135deg, #0073aa 0%, #005a87 100%);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 115, 170, 0.3);
}

#whatApplyFilters:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 115, 170, 0.4);
}

/* AI Recommendations */
.ai-recommendations {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    border: 1px solid #f0f0f0;
}

.region-info {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 15px 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    font-size: 15px;
    color: #1976d2;
    text-align: center;
    border: 2px solid #bbdefb;
    font-weight: 600;
}

.recommendation-summary {
    color: #555;
    margin-bottom: 30px;
    text-align: center;
    font-size: 17px;
    line-height: 1.7;
    font-weight: 500;
}

.recommendations-grid {
    display: grid;
    gap: 25px;
    margin-bottom: 35px;
}

.recommendation-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    border-left: 6px solid #0073aa;
    transition: all 0.3s ease;
}

.recommendation-item:hover {
    transform: translateX(10px);
    background: #f0f7ff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.recommendation-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.recommendation-header h4 {
    margin: 0;
    color: #1a3c4d;
    font-size: 19px;
    font-weight: 700;
}

.rating-badge {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 800;
}

.recommendation-meta {
    color: #666;
    font-size: 15px;
    margin-bottom: 15px;
    font-weight: 500;
}

.recommendation-reason {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #555;
    font-size: 16px;
}

.streaming-info {
    color: #0073aa;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.streaming-info::before {
    content: "▶️";
    font-size: 14px;
}

/* Alternative Suggestions */
.alternative-suggestions {
    margin-top: 35px;
    padding-top: 30px;
    border-top: 3px solid #f0f0f0;
}

.alternative-suggestions h4 {
    color: #1a3c4d;
    margin-bottom: 20px;
    font-size: 18px;
    text-align: center;
    font-weight: 700;
}

.suggestion-tags {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.suggestion-tag {
    background: #f8f9fa;
    padding: 14px 24px;
    border-radius: 30px;
    font-size: 15px;
    color: #333;
    border: 2px solid #e0f0f5;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 600;
}

.suggestion-tag:hover {
    background: linear-gradient(135deg, #0073aa 0%, #00a8e1 100%);
    color: white;
    border-color: #0073aa;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 115, 170, 0.3);
}

/* Streaming Badges */
.streaming-badges {
    margin-top: 15px;
}

.streaming-badge {
    display: inline-block;
    background: #e3f2fd;
    color: #1976d2;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12px;
    margin-right: 10px;
    margin-top: 8px;
    font-weight: 700;
    border: 1px solid #bbdefb;
}

.netflix { background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%); color: #e50914; border-color: #ffcdd2; }
.hbo-max { background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%); color: #7b1fa2; border-color: #e1bee7; }
.disney-plus { background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%); color: #113ccf; border-color: #bbdefb; }
.prime-video { background: linear-gradient(135deg, #e0f2f1 0%, #b2dfdb 100%); color: #00a8e1; border-color: #b2dfdb; }
.hulu { background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%); color: #1ce783; border-color: #c8e6c9; }
.peacock { background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%); color: #0072c6; border-color: #bbdefb; }
.bbc-iplayer { background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%); color: #990000; border-color: #ffcdd2; }
.itvx { background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%); color: #ff2e00; border-color: #ffe0b2; }
.stan { background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%); color: #0099cc; border-color: #b2ebf2; }
.binge { background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 100%); color: #e6007e; border-color: #f8bbd9; }

.trending-description {
    font-size: 14px;
    line-height: 1.5;
    margin: 10px 0;
    color: #666;
}

.no-content {
    color: #888;
    text-align: center;
    padding: 45px;
    font-style: italic;
    background: #f8f9fa;
    border-radius: 12px;
    font-size: 16px;
}

/* ==================== WHEN TO WATCH SPECIFIC ==================== */
.when-tool .section-heading::after {
    background: linear-gradient(135deg, #ff9800 0%, #ff5722 100%);
}

.release-calendar {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.release-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 5px solid #ff9800;
    transition: all 0.3s ease;
}

.release-item:hover {
    transform: translateX(8px);
    background: #fff8e1;
}

.release-date {
    background: linear-gradient(135deg, #ff9800 0%, #ff5722 100%);
    color: white;
    padding: 12px 15px;
    border-radius: 8px;
    text-align: center;
    min-width: 70px;
    box-shadow: 0 4px 10px rgba(255, 152, 0, 0.3);
}

.release-date .day {
    font-size: 1.4rem;
    font-weight: 800;
    display: block;
}

.release-date .month {
    font-size: 0.9rem;
    display: block;
    font-weight: 600;
}

.release-title {
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #1a3c4d;
}

.release-meta {
    display: flex;
    gap: 12px;
    font-size: 0.9rem;
    color: #666;
}

.release-type {
    background: #e3f2fd;
    color: #1976d2;
    padding: 4px 10px;
    border-radius: 5px;
    font-weight: 600;
}

/* Premieres & Finales */
.premieres-finales {
    display: grid;
    gap: 15px;
}

.premiere-item {
    padding: 18px;
    background: #fff3e0;
    border-radius: 12px;
    border-left: 5px solid #ff9800;
    transition: all 0.3s ease;
}

.premiere-item:hover {
    transform: translateX(5px);
    background: #ffe0b2;
}

.premiere-item.finale {
    background: #fce4ec;
    border-left-color: #e91e63;
}

.premiere-item.finale:hover {
    background: #f8bbd9;
}

.premiere-title {
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #1a3c4d;
}

.premiere-details {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Live Events */
.live-events {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.event-item {
    padding: 20px;
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
    border-radius: 12px;
    border-left: 5px solid #4caf50;
    transition: all 0.3s ease;
}

.event-item:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, #c8e6c9 0%, #a5d6a7 100%);
}

.event-title {
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #1a3c4d;
}

.event-sport {
    color: #2e7d32;
    font-size: 0.95rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.event-teams {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Streaming Drops */
.streaming-drops {
    display: grid;
    gap: 12px;
}

.streaming-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px;
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
    border-radius: 10px;
    border-left: 4px solid #7b1fa2;
    transition: all 0.3s ease;
}

.streaming-item:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, #e1bee7 0%, #ce93d8 100%);
}

.streaming-platform {
    background: linear-gradient(135deg, #7b1fa2 0%, #4a148c 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 700;
}

.streaming-title {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
}

.streaming-date {
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
}

/* Countdown Section */
.countdown-section {
    margin: 60px 0;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.countdown-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.countdown-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.5);
}

.countdown-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.1);
}

.countdown-card > * {
    position: relative;
    z-index: 1;
}

.countdown-event {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.countdown-timer {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    font-family: 'Courier New', monospace;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.countdown-label {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 10px;
}

.countdown-type {
    background: rgba(255,255,255,0.3);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    backdrop-filter: blur(10px);
}

/* Schedule Timeline */
.schedule-timeline {
    margin: 35px 0;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 22px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 18px;
    border-left: 6px solid #ff9800;
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateX(8px);
    background: #fff8e1;
}

.timeline-date {
    background: linear-gradient(135deg, #ff9800 0%, #ff5722 100%);
    color: white;
    padding: 12px 18px;
    border-radius: 8px;
    text-align: center;
    min-width: 120px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(255, 152, 0, 0.3);
}

.timeline-info {
    flex: 1;
}

.timeline-event {
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #1a3c4d;
    font-size: 16px;
}

.timeline-channel {
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
}

.countdown-badge {
    background: linear-gradient(135deg, #ff9800 0%, #ff5722 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 800;
    min-width: 80px;
    text-align: center;
}

/* Release Phases */
.release-phases {
    display: grid;
    gap: 18px;
    margin: 30px 0;
}

.phase-card {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid #1976d2;
    transition: all 0.3s ease;
}

.phase-card:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, #bbdefb 0%, #90caf9 100%);
}

.phase-title {
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #1976d2;
    font-size: 17px;
}

.phase-details {
    color: #333;
    font-size: 15px;
    line-height: 1.6;
}

/* Reminder Tips */
.reminder-tips {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border: 3px solid #ff9800;
    border-radius: 15px;
    padding: 30px;
    margin-top: 35px;
}

.tips-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #e65100;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tips-list {
    list-style: none;
    padding: 0;
}

.tips-list li {
    padding: 12px 0;
    border-bottom: 2px solid #ffe0b2;
    color: #555;
    font-size: 16px;
    position: relative;
    padding-left: 30px;
}

.tips-list li::before {
    content: "💡";
    position: absolute;
    left: 0;
    top: 12px;
}

.tips-list li:last-child {
    border-bottom: none;
}

/* Schedule Types */
.schedule-types {
    margin: 60px 0;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.schedule-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.schedule-card:hover {
    transform: translateY(-8px);
    border-color: #0073aa;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.schedule-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.schedule-card h4 {
    margin: 0 0 12px 0;
    color: #1a3c4d;
    font-size: 1.2rem;
    font-weight: 700;
}

.schedule-card p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* Trending Searches */
.trending-section {
    margin: 60px 0;
    text-align: center;
}

.trending-searches {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 25px;
}

/* ==================== WHERE TO WATCH SPECIFIC ==================== */
.where-tool .section-heading::after {
    background: linear-gradient(135deg, #0073aa 0%, #00a8e1 100%);
}

.now-streaming {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.streaming-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 5px solid #0073aa;
    transition: all 0.3s ease;
}

.streaming-item:hover {
    transform: translateX(8px);
    background: #f0f7ff;
}

.streaming-platform {
    background: linear-gradient(135deg, #0073aa 0%, #00a8e1 100%);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    min-width: 100px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0, 115, 170, 0.3);
}

.streaming-info {
    flex: 1;
}

.streaming-title {
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #1a3c4d;
    font-size: 15px;
}

.streaming-meta {
    display: flex;
    gap: 12px;
    font-size: 0.85rem;
    color: #666;
}

.streaming-rating {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.8rem;
}

/* Free Content */
.free-content {
    display: grid;
    gap: 12px;
}

.free-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px;
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
    border-radius: 10px;
    border-left: 4px solid #4caf50;
    transition: all 0.3s ease;
}

.free-item:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, #c8e6c9 0%, #a5d6a7 100%);
}

.free-badge {
    background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 800;
}

.free-title {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
}

.free-duration {
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
}

/* Platform Exclusives */
.exclusives {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.exclusive-item {
    padding: 18px;
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-radius: 12px;
    border-left: 5px solid #ff9800;
    transition: all 0.3s ease;
}

.exclusive-item:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, #ffe0b2 0%, #ffcc80 100%);
}

.exclusive-title {
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #1a3c4d;
}

.exclusive-details {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.exclusive-type {
    background: linear-gradient(135deg, #ff9800 0%, #ff5722 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 800;
}

/* Leaving Soon */
.leaving-soon {
    display: grid;
    gap: 12px;
}

.leaving-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px;
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    border-radius: 10px;
    border-left: 4px solid #f44336;
    transition: all 0.3s ease;
}

.leaving-item:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, #ffcdd2 0%, #ef9a9a 100%);
}

.leaving-alert {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 800;
}

.leaving-title {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
}

.leaving-time {
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
}

/* Platform Comparison */
.platform-comparison {
    margin: 60px 0;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.platform-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 3px solid #f0f0f0;
    transition: all 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-8px);
    border-color: #0073aa;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.platform-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 3px solid #f0f0f0;
}

.platform-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 15px 0;
    color: #1a3c4d;
}

.platform-price {
    background: linear-gradient(135deg, #0073aa 0%, #00a8e1 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 800;
    font-size: 1rem;
    display: inline-block;
}

.platform-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.platform-detail {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 2px solid #f0f0f0;
}

.detail-label {
    font-weight: 700;
    color: #333;
}

.detail-value {
    color: #666;
    text-align: right;
    font-weight: 500;
}

.popular-shows {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 3px solid #f0f0f0;
}

.shows-label {
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    font-size: 16px;
}

.shows-list {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 500;
}

/* Categories */
.categories {
    margin: 60px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.category-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-8px);
    border-color: #0073aa;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.category-card h4 {
    margin: 0 0 12px 0;
    color: #1a3c4d;
    font-size: 1.2rem;
    font-weight: 700;
}

.category-card p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* Availability Grid */
.availability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 35px 0;
}

.country-availability {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    border: 2px solid #e0f0f5;
    transition: all 0.3s ease;
}

.country-availability:hover {
    background: white;
    border-color: #0073aa;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.country-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.country-flag {
    font-size: 2rem;
}

.country-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1a3c4d;
}

.platform-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.platform-result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    border-left: 5px solid #0073aa;
    transition: all 0.3s ease;
}

.platform-result-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.platform-result-info {
    flex: 1;
}

.platform-result-name {
    font-weight: 800;
    color: #1a3c4d;
    margin-bottom: 8px;
    font-size: 17px;
}

.platform-result-details {
    display: flex;
    gap: 20px;
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

.platform-result-type {
    background: #e3f2fd;
    color: #1976d2;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 700;
}

.platform-result-price {
    color: #4caf50;
    font-weight: 800;
    font-size: 1rem;
}

.watch-button {
    background: linear-gradient(135deg, #0073aa 0%, #005a87 100%);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 800;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 115, 170, 0.3);
}

.watch-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 115, 170, 0.4);
}

/* Options Grid */
.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 35px 0;
}

.free-options, .premium-options {
    padding: 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.free-options {
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
    border: 3px solid #4caf50;
}

.premium-options {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border: 3px solid #ff9800;
}

.free-options h4, .premium-options h4 {
    margin: 0 0 20px 0;
    font-size: 1.3rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
}

.free-options h4 {
    color: #2e7d32;
}

.premium-options h4 {
    color: #e65100;
}

.options-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.option-tag {
    background: white;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.free-options .option-tag {
    color: #2e7d32;
    border: 2px solid #c8e6c9;
}

.premium-options .option-tag {
    color: #e65100;
    border: 2px solid #ffe0b2;
}

/* Tips Section */
.tips-section {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
    border: 3px solid #7b1fa2;
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
}

.tips-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #7b1fa2;
    display: flex;
    align-items: center;
    gap: 15px;
}

.tips-section .tips-list {
    list-style: none;
    padding: 0;
}

.tips-section .tips-list li {
    padding: 15px 0;
    border-bottom: 2px solid #e1bee7;
    color: #555;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    padding-left: 35px;
}

.tips-section .tips-list li::before {
    content: "✨";
    position: absolute;
    left: 0;
    top: 15px;
}

.tips-section .tips-list li:last-child {
    border-bottom: none;
}

/* Animations */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { transform: translateX(-30px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Apply animations */
.result-card, .ai-recommendations, .content-section, .platform-card, .category-card, .schedule-card {
    animation: fadeIn 0.6s ease-out;
}

.show-item:hover, .trending-item:hover, .streaming-item:hover, .release-item:hover {
    animation: slideIn 0.3s ease-out;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .availability-grid, .options-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .streaming-tool-container {
        padding: 20px 15px;
    }
    
    .search-section {
        padding: 30px 15px;
    }
    
    .search-section h2 {
        font-size: 2rem;
    }
    
    .search-container {
        flex-direction: column;
    }
    
    .region-selector-container {
        flex: none;
        width: 100%;
    }
    
    .search-description {
        font-size: 1.1rem;
    }
    
    .content-grid {
        margin: 40px 0;
    }
    
    .content-section {
        padding: 22px;
    }
    
    .section-heading {
        font-size: 1.4rem;
    }
    
    .quick-picks-grid {
        grid-template-columns: 1fr;
    }
    
    .countdown-grid, .platform-grid, .categories-grid, .schedule-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .timeline-date {
        align-self: stretch;
        text-align: center;
    }
    
    .platform-result-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .watch-button {
        align-self: stretch;
        text-align: center;
    }
    
    .search-examples {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .example-query, .trending-search {
        margin: 5px;
    }
    
    .streaming-filters {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    #whatApplyFilters {
        width: 100%;
        margin-top: 10px;
    }
    
    .suggestion-tags {
        flex-direction: column;
        align-items: center;
    }
    
    .suggestion-tag {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .genre-buttons {
        justify-content: center;
    }
    
    .trending-searches {
        flex-direction: column;
        align-items: center;
    }
    
    .trending-search {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .search-section h2 {
        font-size: 1.7rem;
    }
    
    .search-description {
        font-size: 1rem;
    }
    
    #whatSearchBtn, #whenSearchBtn, #whereSearchBtn {
        padding: 16px 25px;
        font-size: 15px;
    }
    
    .result-title {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .confidence-tag {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .quick-answer {
        font-size: 1.1rem;
        padding: 20px;
        flex-direction: column;
        gap: 10px;
    }
}

/* Print Styles */
@media print {
    .streaming-tool-container {
        max-width: 100%;
        padding: 0;
    }
    
    .search-section, .loading-container, .error-container,
    #whatSearchBtn, #whenSearchBtn, #whereSearchBtn,
    .example-query, .trending-search, .genre-btn, .quick-pick,
    .watch-button, .suggestion-tag, .category-card, .schedule-card {
        display: none !important;
    }
    
    .content-grid, .availability-grid, .platform-grid {
        display: block;
    }
    
    .result-card, .content-section, .platform-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
        margin-bottom: 20px;
    }
}