:root {
    --color-primary: #1a1a2e;
    --color-secondary: #16213e;
    --color-accent: #0f3460;
    --color-highlight: #e94560;
    --color-bg: #f8f9fa;
    --color-white: #ffffff;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-text-muted: #999999;
    --color-border: #e0e0e0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --header-height: 60px;
    --ticker-height: 36px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--color-highlight);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
}

.header-top {
    height: auto;
    min-height: var(--header-height);
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.header-top .container {
    display: flex;
    align-items: center;
    gap: 24px;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.2s;
}

.logo:hover {
    transform: scale(1.02);
    text-decoration: none;
}

.logo-icon {
    height: 40px;
    width: auto;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    gap: 16px;
    flex: 1;
}

.main-nav a {
    color: var(--color-text);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
}

.main-nav a:hover {
    color: var(--color-highlight);
    border-bottom-color: var(--color-highlight);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-form {
    display: flex;
    align-items: center;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.search-form input {
    border: none;
    padding: 6px 12px;
    font-size: 0.85rem;
    width: 160px;
    outline: none;
}

.search-form button {
    background: none;
    border: none;
    padding: 6px 10px;
    cursor: pointer;
    color: var(--color-text-light);
}

.btn-login {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 16px;
    border: 1px solid var(--color-accent);
    border-radius: var(--radius-sm);
    color: var(--color-accent);
}

.btn-login:hover {
    background: var(--color-accent);
    color: var(--color-white);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
}

/* News Ticker */
.news-ticker {
    height: var(--ticker-height);
    background: var(--color-primary);
    color: var(--color-white);
    overflow: hidden;
}

.news-ticker .container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ticker-label {
    background: var(--color-highlight);
    padding: 2px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    white-space: nowrap;
}

.ticker-content {
    display: flex;
    gap: 40px;
    overflow: hidden;
    flex: 1;
}

.ticker-item {
    white-space: nowrap;
    font-size: 0.85rem;
    animation: ticker 30s linear infinite;
}

@keyframes ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Page Layout */
.page-layout {
    display: flex;
    gap: 32px;
    padding: 32px 0;
}

.main-content {
    flex: 1;
    min-width: 0;
}

/* Sidebar */
.sidebar {
    width: 320px;
    flex-shrink: 0;
}

.widget {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.widget h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--color-highlight);
}

.trending-item {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border);
}

.trending-item:last-child {
    border-bottom: none;
}

.trending-rank {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-highlight);
    min-width: 24px;
}

.trending-item a {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
}

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

.category-list li {
    padding: 6px 0;
    border-bottom: 1px solid var(--color-border);
}

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

.category-list a {
    font-size: 0.9rem;
}

/* Article Cards */
.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.article-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s;
}

.article-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.card-image {
    display: block;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s;
}

.article-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 16px;
}

.category-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    background: var(--color-accent);
    color: var(--color-white);
    margin-bottom: 8px;
}

.category-badge.breaking {
    background: var(--color-highlight);
}

.card-content h3 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
}

.card-content h3 a {
    color: var(--color-text);
}

.card-content h3 a:hover {
    color: var(--color-highlight);
}

.excerpt {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.meta {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* Breaking Section */
.breaking-section {
    margin-bottom: 40px;
}

.breaking-section h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 3px solid var(--color-highlight);
}

.breaking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.breaking-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.breaking-card.featured {
    grid-column: span 2;
}

.breaking-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.breaking-card .card-content {
    padding: 16px;
}

/* Latest Section */
.latest-section h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 3px solid var(--color-accent);
}

/* Full Article */
.full-article {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.article-header {
    margin-bottom: 24px;
}

.article-header h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1.3;
    margin: 12px 0;
}

.subheadline {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.article-meta {
    display: flex;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.article-image {
    margin: 24px 0;
}

.article-image img {
    width: 100%;
    border-radius: var(--radius-md);
}

.article-content {
    font-size: 1.05rem;
    line-height: 1.8;
}

.article-content p {
    margin-bottom: 16px;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 24px 0;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
}

.tag {
    background: var(--color-bg);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.article-share {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
}

.share-btn {
    padding: 8px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-white);
    cursor: pointer;
    font-size: 0.85rem;
    transition: background 0.2s;
}

.share-btn:hover {
    background: var(--color-bg);
}

/* Category Page */
.category-header {
    margin-bottom: 32px;
}

.category-header h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 8px;
}

.category-header p {
    color: var(--color-text-light);
}

/* Search */
.search-header {
    margin-bottom: 32px;
}

.search-header h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 16px;
}

.search-form-large {
    display: flex;
    gap: 12px;
}

.search-form-large input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 1rem;
}

.search-form-large button {
    padding: 12px 24px;
    background: var(--color-accent);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
}

.search-results-count {
    margin-bottom: 20px;
    color: var(--color-text-light);
}

.search-result-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--color-border);
}

.search-result-item h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

/* Static Pages */
.static-page {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.static-page h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 24px;
}

.static-page h2 {
    font-size: 1.3rem;
    margin: 24px 0 12px;
}

.static-page p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.static-page ul {
    margin: 12px 0 16px 24px;
}

.static-page li {
    margin-bottom: 8px;
}

/* Auth Pages */
.auth-page {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    max-width: 400px;
    margin: 0 auto;
}

.auth-page h1 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 24px;
    text-align: center;
}

.auth-form .form-group {
    margin-bottom: 16px;
}

.auth-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.auth-form input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
}

.btn-primary {
    width: 100%;
    padding: 12px;
    background: var(--color-accent);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: var(--color-secondary);
}

.auth-link {
    text-align: center;
    margin-top: 16px;
    font-size: 0.9rem;
}

/* Newsletter */
.newsletter-section {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 48px 0;
    margin-top: 40px;
}

.newsletter-content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.newsletter-content p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
}

.newsletter-form button {
    padding: 12px 24px;
    background: var(--color-highlight);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
}

.newsletter-note {
    font-size: 0.75rem;
    opacity: 0.6;
}

/* Footer */
.site-footer {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 48px 0 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-icon {
    height: 36px;
    width: auto;
}

.footer-brand-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-white);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 32px;
}

.footer-col h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.footer-col p {
    font-size: 0.85rem;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 8px;
}

.footer-col a {
    color: var(--color-white);
    opacity: 0.7;
    font-size: 0.85rem;
}

.footer-col a:hover {
    opacity: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.8rem;
    opacity: 0.6;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    font-size: 0.8rem;
    opacity: 0.6;
}

.footer-social a:hover {
    opacity: 1;
}

/* Media Hub */
.media-hub-page h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 8px;
}

.media-hub-desc {
    color: var(--color-text-light);
    margin-bottom: 24px;
}

.media-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.tab-btn {
    padding: 8px 20px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-white);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
}

.tab-btn.active {
    background: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
}

.channel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.channel-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s;
}

.channel-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.player-container {
    margin-top: 24px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-md);
}

.player-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.close-player {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text-light);
}

/* No Results */
.no-results {
    text-align: center;
    padding: 40px;
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

.loading {
    text-align: center;
    padding: 40px;
    color: var(--color-text-muted);
}

.channel-count {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.media-hub-controls {
    margin-bottom: 16px;
}

.channel-search {
    width: 100%;
    padding: 10px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
}

.globe-filters {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.country-select,
.category-select {
    padding: 8px 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    flex: 1;
}

.channel-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s;
}

.channel-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.channel-card h4 {
    font-size: 0.9rem;
    margin-bottom: 4px;
    color: var(--color-text);
}

.channel-meta {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.channel-play {
    font-size: 0.75rem;
    color: var(--color-accent);
    font-weight: 500;
}

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

    .breaking-card.featured {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .logo-icon {
        height: 32px;
    }

    .logo-text {
        display: none;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .page-layout {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
    }

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

    .breaking-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

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

    .search-form-large {
        flex-direction: column;
    }

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

    .full-article {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .header-top .container {
        gap: 12px;
    }

    .search-form {
        display: none;
    }

    .btn-login {
        padding: 4px 10px;
        font-size: 0.8rem;
    }

    .container {
        padding: 0 16px;
    }
}

/* Article Image Placeholders */
.article-image {
    margin: 2rem 0;
    text-align: center;
}

.article-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.article-image figcaption {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-text-light);
    font-style: italic;
}

.article-image-placeholder {
    margin: 2rem 0;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
    border: 2px dashed var(--color-border);
    border-radius: var(--radius-md);
    text-align: center;
}

.article-image-placeholder .placeholder-icon {
    margin-bottom: 1rem;
    color: var(--color-text-muted);
}

.article-image-placeholder .placeholder-text {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.article-image-placeholder .placeholder-filename {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-family: monospace;
}

/* Article Content Typography */
.full-article h1.article-h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1.2;
    margin: 2rem 0 1rem;
    color: var(--color-primary);
}

.full-article h2.article-h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    line-height: 1.3;
    margin: 1.5rem 0 0.75rem;
    color: var(--color-secondary);
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: 0.5rem;
}

.full-article h3.article-h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    line-height: 1.4;
    margin: 1.25rem 0 0.5rem;
    color: var(--color-accent);
}

.full-article h4.article-h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1rem 0 0.5rem;
    color: var(--color-text);
}

.full-article p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.full-article ul, .full-article ol {
    margin: 1rem 0 1rem 1.5rem;
}

.full-article li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.full-article blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--color-accent);
    background: var(--color-bg);
    font-style: italic;
    color: var(--color-text-light);
}

.full-article .internal-link {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: var(--color-accent);
    color: var(--color-white);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    margin: 0.25rem 0;
}

.full-article .internal-link:hover {
    background: var(--color-highlight);
    color: var(--color-white);
}

/* Language Selector */
.language-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    margin: 1rem 0;
    padding: 0.75rem 1rem;
    background: var(--color-bg);
    border-radius: var(--radius-md);
}

.language-selector .lang-label {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--color-text);
}

.language-selector .lang-option {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    color: var(--color-text-light);
    transition: all 0.2s;
}

.language-selector .lang-option:hover {
    background: var(--color-accent);
    color: var(--color-white);
    text-decoration: none;
}

.language-selector .lang-option.active {
    background: var(--color-highlight);
    color: var(--color-white);
    font-weight: 600;
}

/* RTL Support */
[dir="rtl"] .full-article {
    text-align: right;
}

[dir="rtl"] .full-article blockquote {
    border-left: none;
    border-right: 4px solid var(--color-accent);
}

[dir="rtl"] .full-article ul,
[dir="rtl"] .full-article ol {
    margin-left: 0;
    margin-right: 1.5rem;
}

/* Content Score Badge */
.content-score-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
}

.content-score-badge.excellent {
    background: #d4edda;
    color: #155724;
}

.content-score-badge.good {
    background: #fff3cd;
    color: #856404;
}

.content-score-badge.needs-work {
    background: #f8d7da;
    color: #721c24;
}

/* Word Count Display */
.word-count-display {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-top: 0.25rem;
}

/* Admin Generation Mode Selector */
.mode-description {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-top: 0.25rem;
}

.mode-description strong {
    color: var(--color-text);
}
