/* News Index Page */
.news-page .page-header {
    position: relative;
    padding: 8rem 4rem 4rem;
    text-align: center;
    overflow: hidden;
}

.news-page .page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
    pointer-events: none;
}

.news-page .page-header-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.news-page .page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.news-page .page-header h1 span {
    color: var(--accent);
}

.news-page .page-header p {
    font-size: 1.0625rem;
    color: var(--text-muted);
}

.news-page .news-reset {
    margin-top: 1rem;
}

.news-page .news-reset-link {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.8125rem;
}

.news-page .news-reset-link:hover {
    text-decoration: underline;
}

.news-page .news-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 4rem 6rem;
}

.news-page .featured-post {
    text-decoration: none;
    color: inherit;
    display: block;
    margin-bottom: 3rem;
}

.news-page .featured-post-image {
    position: relative;
    aspect-ratio: 21/9;
    background: linear-gradient(135deg, var(--accent-glow) 0%, var(--bg-elevated) 50%, var(--bg-alt) 100%);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.news-page .featured-post-image::before {
    content: 'FEATURED';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    color: var(--accent);
    opacity: 0.15;
}

.news-page .featured-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    padding: 0.5rem 1rem;
    background: var(--accent);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: white;
    border-radius: 4px;
}

.news-page .featured-post-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.news-page .featured-post-content h2 span {
    color: var(--accent);
}

.news-page .featured-post-content p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.news-page .featured-post-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.8125rem;
    color: var(--text-dim);
}

.news-page .featured-post-meta span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.news-page .featured-post-meta svg {
    width: 14px;
    height: 14px;
    color: var(--accent);
}

.news-page .news-list-title {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.news-page .news-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.news-page .news-card:hover {
    border-color: var(--accent);
    transform: translateX(4px);
}

.news-page .news-card-image {
    width: 180px;
    flex-shrink: 0;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--bg-elevated) 0%, #1a1a1a 100%);
    border-radius: 8px;
    overflow: hidden;
}

.news-page .news-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-page .news-card-category {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.news-page .news-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.news-page .news-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.news-page .news-card-meta {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--text-dim);
}

.news-page .sidebar {
    position: sticky;
    top: 6rem;
    height: fit-content;
}

.news-page .sidebar-widget {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.news-page .sidebar-widget h3 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.news-page .category-list {
    list-style: none;
}

.news-page .category-list li {
    margin-bottom: 0.5rem;
}

.news-page .category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem 0.875rem;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s;
}

.news-page .category-list a:hover,
.news-page .category-list a.active {
    background: var(--bg-elevated);
    color: var(--accent);
}

.news-page .category-list span {
    font-size: 0.75rem;
    background: var(--bg);
    padding: 0.125rem 0.5rem;
    border-radius: 50px;
}

.news-page .trending-post {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    align-items: center;
}

.news-page .trending-post:last-child {
    border-bottom: none;
}

.news-page .trending-number {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.news-page .trending-post-content h4 {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.4;
}

.news-page .trending-post-content span {
    font-size: 0.7rem;
    color: var(--text-dim);
}

.news-page .newsletter-widget {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border: none;
}

.news-page .newsletter-widget h3 {
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
}

.news-page .newsletter-widget p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.news-page .newsletter-input {
    display: flex;
    gap: 0.5rem;
}

.news-page .newsletter-input input {
    flex: 1;
    padding: 0.625rem 0.875rem;
    background: white;
    color: #000;
    border: none;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.8125rem;
}

.news-page .newsletter-input button {
    padding: 0.625rem 1rem;
    background: var(--bg);
    border: none;
    border-radius: 6px;
    color: white;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
}

.news-page .tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.news-page .tag {
    padding: 0.375rem 0.75rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s;
}

.news-page .tag:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.news-page .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.news-page .pagination-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s;
}

.news-page .pagination-btn:hover,
.news-page .pagination-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.news-page .pagination-btn svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 1100px) {
    .news-page .news-container {
        grid-template-columns: 1fr;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .news-page .sidebar {
        position: static;
    }
}

@media (max-width: 640px) {
    .news-page .page-header {
        padding: 7rem 1.5rem 3rem;
    }

    .news-page .news-container {
        padding: 2rem 1.5rem 4rem;
    }

    .news-page .featured-post h2 {
        font-size: 1.5rem;
    }

    .news-page .news-card {
        flex-direction: column;
    }

    .news-page .news-card-image {
        width: 100%;
    }
}

/* News Article Page */
.news-article .article-header {
    position: relative;
    padding: 8rem 4rem 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.news-article .article-meta-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.news-article .article-category {
    padding: 0.4rem 1rem;
    background: var(--accent);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: white;
    border-radius: 4px;
}

.news-article .article-date {
    font-size: 0.8125rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.news-article .article-date svg {
    width: 14px;
    height: 14px;
}

.news-article .article-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.news-article .article-header h1 span {
    color: var(--accent);
}

.news-article .article-excerpt {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.news-article .article-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.news-article .author-avatar {
    width: 48px;
    height: 48px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
}

.news-article .author-info h4 {
    font-size: 0.9375rem;
    font-weight: 600;
}

.news-article .author-info span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.news-article .article-featured-image {
    position: relative;
    aspect-ratio: 21/9;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    background: linear-gradient(135deg, var(--accent-glow) 0%, var(--bg-elevated) 50%, var(--bg-alt) 100%);
}

.news-article .article-featured-image::before {
    content: 'FEATURED';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    opacity: 0.2;
}

.news-article .article-content {
    max-width: 740px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.news-article .article-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.news-article .article-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.news-article .article-content p {
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.news-article .article-content ul,
.news-article .article-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.news-article .article-content li {
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.news-article .article-content blockquote {
    border-left: 3px solid var(--accent);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.125rem;
    color: var(--text);
}

.news-article .article-content a {
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.2s;
}

.news-article .article-content a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.news-article .highlight-box {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.news-article .highlight-box.accent {
    border-color: var(--accent);
    background: rgba(220, 38, 38, 0.05);
}

.news-article .highlight-box h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 1rem;
}

.news-article .highlight-box p {
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

.news-article .prize-banner {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    margin: 3rem auto;
    max-width: 740px;
}

.news-article .prize-amount {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: white;
    line-height: 1;
}

.news-article .prize-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
}

.news-article .info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.news-article .info-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
}

.news-article .info-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.news-article .info-card .icon {
    width: 48px;
    height: 48px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--accent);
}

.news-article .info-card .icon svg {
    width: 24px;
    height: 24px;
}

.news-article .info-card h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.news-article .info-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.news-article .game-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.news-article .game-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1rem;
    transition: all 0.3s;
}

.news-article .game-item:hover {
    border-color: var(--accent);
}

.news-article .game-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
}

.news-article .game-info h4 {
    font-size: 0.9375rem;
    font-weight: 600;
}

.news-article .game-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.news-article .article-footer {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    padding: 4rem 2rem;
}

.news-article .article-footer-content {
    max-width: 740px;
    margin: 0 auto;
}

.news-article .share-section {
    text-align: center;
    margin-bottom: 3rem;
}

.news-article .share-section h3 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.news-article .share-links {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.news-article .share-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-muted);
    transition: all 0.3s;
}

.news-article .share-link:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.news-article .share-link svg {
    width: 18px;
    height: 18px;
}

.news-article .related-section {
    padding: 4rem 2rem;
    background: var(--bg-alt);
}

.news-article .related-news {
    max-width: 1200px;
    margin: 0 auto;
}

.news-article .related-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.news-article .related-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.news-article .related-link {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.875rem;
}

.news-article .related-link:hover {
    text-decoration: underline;
}

.news-article .related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.news-article .related-card {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s;
}

.news-article .related-card:hover {
    transform: translateY(-4px);
}

.news-article .related-card-image {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--bg-alt) 0%, #1a1a1a 100%);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.news-article .related-card-category {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.news-article .related-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.news-article .related-card p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-article .newsletter-section {
    background: var(--accent);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    margin: 4rem auto;
    max-width: 740px;
}

.news-article .newsletter-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.news-article .newsletter-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.news-article .newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.news-article .newsletter-form input {
    flex: 1;
    padding: 0.875rem 1rem;
    background: white;
    color: #000;
    border: none;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
}

.news-article .newsletter-form button {
    padding: 0.875rem 1.5rem;
    background: var(--bg);
    color: white;
    border: none;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s;
}

.news-article .newsletter-form button:hover {
    background: var(--bg-alt);
}

.news-article .back-button {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 500;
    transition: all 0.3s;
    z-index: 50;
}

.news-article .back-button:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.news-article .back-button svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 1100px) {
    .news-article .article-header,
    .news-article .article-content {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .news-article .related-grid {
        grid-template-columns: 1fr;
    }

    .news-article .game-list,
    .news-article .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .news-article .article-header {
        padding: 7rem 1.5rem 3rem;
    }

    .news-article .article-content {
        padding: 2rem 1.5rem;
    }

    .news-article .article-featured-image {
        aspect-ratio: 16/9;
    }

    .news-article .article-header h1 {
        font-size: 1.75rem;
    }

    .news-article .prize-banner {
        padding: 2rem 1.5rem;
    }

    .news-article .info-grid,
    .news-article .game-list {
        grid-template-columns: 1fr;
    }

    .news-article .newsletter-form {
        flex-direction: column;
    }

    .news-article .back-button {
        left: 1rem;
        bottom: 1rem;
    }
}
