/* Base styles */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%; /* Changed from height: 100% to allow content to expand */
    font-family: 'Special Elite', monospace;
    background: url('/images/mainBackground.png') no-repeat center center fixed;
    background-size: cover;
    color: #ffffff;
    overflow-y: auto; /* Enable vertical scrolling for the entire page */
}

/* Container Layout */
.news-container {
    max-width: 1200px;
    margin: 80px auto 20px; /* Added bottom margin for spacing at the end */
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Header Styling */
.news-header {
    text-align: center;
    padding: 20px 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.site-title {
    font-size: 3rem;
    margin: 0;
    color: #4CAF50;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.tagline {
    font-size: 1.2rem;
    color: #90EE90;
    margin: 10px 0;
}

/* News Grid Layout */
.news-grid {
    display: grid;
    gap: 20px; /* Unified gap to 20px for consistency */
    padding: 20px 0;
}

/* Main Summary Styling */
.main-summary {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.summary-content {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Legal and Sports Specific Summary Styling */
.legal-analysis, .sports-analysis {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.summary-section {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ffffff;
}

/* Card Styling (Legal and Sports) */
.legal-card, .sports-card {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 6px;
    padding: 15px;
    transition: transform 0.2s ease;
}

.legal-card:hover, .sports-card:hover {
    transform: translateY(-2px);
    background: rgba(0, 0, 0, 0.7);
}

.category-badge {
    font-size: 0.8rem;
    color: #4CAF50;
    margin-bottom: 10px;
}

.legal-card h3, .sports-card h3 {
    font-size: 1.1rem;
    margin: 0 0 10px;
    color: #ffffff;
}

.legal-card p, .sports-card p {
    font-size: 0.9rem;
    margin: 0 0 10px;
    color: #90EE90;
}

.jurisdiction-tag {
    font-size: 0.8rem;
    color: #BDBDBD;
    margin-bottom: 10px;
}

.read-more {
    display: inline-block;
    color: #4CAF50;
    text-decoration: none;
    font-size: 0.9rem;
}

.read-more:hover {
    text-decoration: underline;
}

.timestamp {
    font-size: 0.8rem;
    color: #888;
    text-align: right;
    margin-top: 20px;
}

/* Top Stories Section */
.top-stories {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
}

.section-title {
    color: #4CAF50;
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #4CAF50;
    padding-bottom: 10px;
}

.stories-grid {
    display: grid;
    gap: 20px;
}

/* Story Card Styling */
.story-card {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 6px;
    transition: transform 0.2s ease;
}

.story-card:hover {
    transform: translateY(-2px);
    background: rgba(0, 0, 0, 0.7);
}

.story-link {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 15px;
    text-decoration: none;
    color: inherit;
}

.story-title {
    font-size: 1.1rem;
    margin: 0;
    flex: 1;
    padding-right: 15px;
}

/* Sentiment Badge Styling */
.sentiment-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: bold;
    min-width: 60px;
    text-align: center;
}

.positive {
    background: rgba(76, 175, 80, 0.3);
    color: #90EE90;
}

.negative {
    background: rgba(244, 67, 54, 0.3);
    color: #FF6B6B;
}

.neutral {
    background: rgba(158, 158, 158, 0.3);
    color: #BDBDBD;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .news-container {
        margin-top: 60px;
        padding: 15px;
    }

    .site-title {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .story-card, .legal-card, .sports-card {
        margin-bottom: 15px;
    }

    .story-link, .legal-card, .sports-card {
        flex-direction: column;
    }

    .story-title {
        padding-right: 0;
        margin-bottom: 10px;
    }

    .sentiment-badge {
        align-self: flex-start;
    }
}

/* No Content States */
.no-content {
    text-align: center;
    padding: 20px;
    color: #90EE90;
    font-style: italic;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
    background: #4CAF50;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #45a049;
}