* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #1a1a2e;
    color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.header-banner {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.banner-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    display: block;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.15);
}

.site-title {
    font-family: 'Cinzel', serif;
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 8px;
    color: #ffffff;
    text-shadow: 
        0 0 10px rgba(102, 126, 234, 0.8),
        0 0 20px rgba(102, 126, 234, 0.6),
        0 0 30px rgba(102, 126, 234, 0.4),
        3px 3px 8px rgba(0, 0, 0, 0.9);
    margin: 0;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 
            0 0 10px rgba(102, 126, 234, 0.8),
            0 0 20px rgba(102, 126, 234, 0.6),
            0 0 30px rgba(102, 126, 234, 0.4),
            3px 3px 8px rgba(0, 0, 0, 0.9);
    }
    50% {
        text-shadow: 
            0 0 20px rgba(102, 126, 234, 1),
            0 0 30px rgba(102, 126, 234, 0.8),
            0 0 40px rgba(102, 126, 234, 0.6),
            3px 3px 8px rgba(0, 0, 0, 0.9);
    }
}

.logo {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.tagline {
    font-size: 0.95rem;
    opacity: 0.95;
    text-align: center;
    padding: 15px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 0;
}

/* Main Content Grid */
.main-content {
    padding: 30px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

/* News Feed */
.news-feed {
    min-height: 100vh;
}

#newsContainer {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* News Card */
.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.news-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.news-content {
    padding: 20px;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: #666;
}

.game-tag {
    background: #667eea;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
}

.news-date {
    color: #999;
}

.news-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #222;
    line-height: 1.3;
}

.news-summary {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.news-full-content {
    color: #444;
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1rem;
}

.news-full-content p {
    margin-bottom: 15px;
}

.news-full-content h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: #333;
    font-size: 1.2rem;
}

.news-full-content ul, .news-full-content ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.news-source {
    margin-bottom: 15px;
    padding: 12px;
    background: #f8f9fa;
    border-left: 3px solid #667eea;
    border-radius: 4px;
}

.news-source a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.news-source a:hover {
    color: #5568d3;
    text-decoration: underline;
}

.news-actions {
    display: flex;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.btn-share {
    background: none;
    border: 1px solid #ddd;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-share:hover {
    background: #f0f0f0;
    border-color: #ccc;
}

.btn-read-more {
    background: #667eea;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s ease;
    margin-left: auto;
}

.btn-read-more:hover {
    background: #5568d3;
}

/* Ads Sidebar */
.ads-sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
}

.ads-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ad-unit {
    background: white;
    border-radius: 12px;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
}

.ad-placeholder {
    text-align: center;
    padding: 40px 20px;
    color: #999;
}

.ad-placeholder p {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.ad-placeholder small {
    font-size: 0.85rem;
    color: #bbb;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    margin-top: 60px;
    padding: 40px 0 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-family: 'Cinzel', serif;
    color: #667eea;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.footer-section h4 {
    color: #667eea;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-section p {
    color: #bbb;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #667eea;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.disclaimer {
    font-size: 0.8rem !important;
    color: #777 !important;
    font-style: italic;
}

/* Loading States */
.loading {
    text-align: center;
    padding: 40px;
    color: #999;
    font-size: 1.1rem;
}

.end-message {
    text-align: center;
    padding: 40px;
    color: #999;
    font-size: 1rem;
}

/* Share Modal */
.share-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.share-modal.active {
    display: flex;
}

.share-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    max-width: 400px;
    width: 90%;
}

.share-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
}

.share-btn {
    padding: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: transform 0.2s ease;
}

.share-btn:hover {
    transform: scale(1.05);
}

.share-btn.facebook {
    background: #1877f2;
    color: white;
}

.share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.share-btn.whatsapp {
    background: #25d366;
    color: white;
}

.share-btn.copy {
    background: #6c757d;
    color: white;
}

/* Responsive */
@media (max-width: 968px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .ads-sidebar {
        position: static;
    }

    .banner-image {
        max-height: 250px;
    }

    .site-title {
        font-size: 3rem;
        letter-spacing: 5px;
    }
}

@media (max-width: 640px) {
    .news-title {
        font-size: 1.2rem;
    }

    .news-image {
        height: 200px;
    }

    .news-actions {
        flex-wrap: wrap;
    }

    .banner-image {
        max-height: 150px;
    }

    .site-title {
        font-size: 2rem;
        letter-spacing: 3px;
    }
}
