/* SportsGround Frontend Styles */

:root {
    --primary: #1a472a;
    --primary-dark: #0f2d1a;
    --accent: #f5a623;
    --accent-hover: #e09515;
    --text-dark: #212529;
    --text-muted: #6c757d;
    --bg-light: #f8f9fa;
    --border-color: #dee2e6;
    --font-body: 'Manrope', 'Segoe UI', sans-serif;
    --font-display: 'Space Grotesk', 'Manrope', sans-serif;
}

html{
    font-size:15px;
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: linear-gradient(180deg, #fbfcfb 0%, #ffffff 42%, #f5f8f5 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    letter-spacing: 0;
}

.container {
    --bs-gutter-x: 0.9rem;
}

h1, h2, h3, h4, h5, h6,
.navbar-brand,
.section-title,
.widget-title,
.hero-section h1,
.sports-hero h1,
.post-header h1,
.footer-heading {
    font-family: var(--font-display);
}

/* Header */
.site-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .navbar-brand {
    font-weight: 700;
    font-size: 1.4rem;
}

.site-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.site-header .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s;
}

.site-header .nav-link:hover {
    color: var(--accent) !important;
}

/* Main */
.site-main {
    flex: 1;
    padding: 2rem 0;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, #2d6a4f 100%);
    color: #fff;
    padding: 3rem 0;
    margin-bottom: 2rem;
    border-radius: 0 0 1rem 1rem;
}

.hero-section h1 {
    font-weight: 800;
    font-size: 2.5rem;
}

/* Live Scores */
.scores-section {
    margin-bottom: 2.5rem;
}

.section-title {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--accent);
    display: inline-block;
}

.match-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
    transition: box-shadow 0.2s, transform 0.2s;
}

.match-card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.match-card.live {
    border-left: 4px solid #dc3545;
}

.match-card.finished {
    border-left: 4px solid #6c757d;
}

.match-card.upcoming {
    border-left: 4px solid var(--accent);
}

.match-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.team-name {
    font-weight: 600;
    flex: 1;
}

.team-name.home {
    text-align: right;
}

.match-score {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    min-width: 80px;
    text-align: center;
}

.match-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.status-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    text-transform: uppercase;
}

.status-badge.live {
    background: #dc3545;
    color: #fff;
    animation: pulse 1.5s infinite;
}

.status-badge.finished {
    background: #e9ecef;
    color: #495057;
}

.status-badge.upcoming {
    background: #fff3cd;
    color: #856404;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.scores-loading {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
}

/* Blog Cards */
.blog-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    overflow: hidden;
    height: 100%;
    transition: box-shadow 0.2s, transform 0.2s;
}

.blog-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.blog-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-body {
    padding: 1.25rem;
}

.blog-card .category-badge {
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--primary);
    color: #fff;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    text-decoration: none;
}

.blog-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0.75rem 0 0.5rem;
}

.blog-card h3 a {
    color: var(--text-dark);
    text-decoration: none;
}

.blog-card h3 a:hover {
    color: var(--primary);
}

.article-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.18rem 0.5rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 0;
    vertical-align: middle;
}

.article-badge-sponsored {
    background: #0b0b0b;
    color: #fff;
}

.article-badge-featured {
    background: #e10600;
    color: #fff;
}

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

/* Sponsored Ads */
.sponsored-page {
    padding-top: 0.75rem;
    padding-bottom: 1.75rem;
}

.sponsored-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-items: flex-start;
    margin-top: 0.95rem;
}

.sponsored-hero-actions .btn {
    padding: 0.6rem 1rem;
    font-size: 0.92rem;
    line-height: 1.2;
}

.sponsored-label {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: #0b0b0b;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
    line-height: 1;
}

.sponsored-home-section,
.sponsored-inline-section {
    margin-bottom: 2rem;
}

.sponsored-home-card,
.sponsored-inline-card,
.sponsored-sidebar-card {
    background: #fff;
    border: 0;
    border-radius: 0.85rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sponsored-home-card:hover,
.sponsored-inline-card:hover,
.sponsored-sidebar-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

.sponsored-home-link,
.sponsored-inline-link,
.sponsored-sidebar-link {
    display: grid;
    grid-template-rows: auto 1fr;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.sponsored-home-media,
.sponsored-inline-media,
.sponsored-sidebar-media {
    background: #f3f4f6;
    overflow: hidden;
}

.sponsored-home-media img,
.sponsored-inline-media img,
.sponsored-sidebar-thumb {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sponsored-home-media {
    aspect-ratio: 16 / 10;
}

.sponsored-inline-media {
    aspect-ratio: 728 / 90;
}

.sponsored-sidebar-media {
    aspect-ratio: 4 / 3;
}

.sponsored-home-thumb-empty,
.sponsored-inline-thumb-empty,
.sponsored-sidebar-thumb-empty {
    min-height: 100%;
    display: grid;
    place-items: center;
    color: #6c757d;
    font-size: 1.4rem;
}

.sponsored-home-copy,
.sponsored-inline-copy,
.sponsored-sidebar-copy {
    padding: 1rem 1rem 1.05rem;
    display: grid;
    gap: 0.5rem;
}

.sponsored-home-copy h3,
.sponsored-inline-copy h3,
.sponsored-sidebar-title {
    margin: 0;
    color: #0b0b0b;
    font-weight: 800;
    line-height: 1.25;
}

.sponsored-home-copy h3,
.sponsored-inline-copy h3 {
    font-size: 1rem;
}

.sponsored-home-meta,
.sponsored-inline-meta,
.sponsored-sidebar-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 0.75rem;
    color: var(--text-muted);
    font-size: 0.82rem;
}

.sponsored-home-meta span,
.sponsored-inline-meta span,
.sponsored-sidebar-meta span {
    min-width: 0;
}

.sponsored-home-cta,
.sponsored-inline-cta,
.sponsored-sidebar-cta {
    font-size: 0.82rem;
    font-weight: 700;
    color: #0b0b0b;
}

.sponsored-inline-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.sponsored-home-grid,
.sponsored-inline-section .row {
    --bs-gutter-y: 0.9rem;
}

.sponsored-sidebar-widget {
    background: #fff;
}

.sponsored-sidebar-list {
    display: grid;
    gap: 0.85rem;
}

.sponsored-sidebar-card {
    border-radius: 0.75rem;
}

.sponsored-sidebar-media {
    aspect-ratio: 300 / 200;
}

.sponsored-sidebar-copy {
    gap: 0.35rem;
}

.sponsored-sidebar-title {
    font-size: 0.92rem;
}

.sponsored-sidebar-meta {
    font-size: 0.76rem;
}

.sponsored-package-card {
    background: #fff;
    border: 0;
    border-radius: 0.85rem;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
    padding: 1.15rem;
    height: 100%;
    display: grid;
    gap: 0.6rem;
}

.sponsored-package-grid {
    margin-top: 0.35rem;
}

.sponsored-package-card.is-free {
    background: #f6f7f8;
}

.sponsored-package-card.is-paid {
    background: #fff;
}

.sponsored-package-card:hover {
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.08);
}

.sponsored-price {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0b0b0b;
}

.sponsored-package-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 0.8rem;
    color: var(--text-muted);
    font-size: 0.82rem;
}

.sponsored-package-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 0.35rem;
}

.sponsored-soft-card {
    background: #f8f9fa;
    border: 0;
    border-radius: 0.85rem;
    box-shadow: none;
    padding: 1.35rem;
}

.sponsored-soft-card .card-header-custom {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 1rem;
}

.sponsored-disclaimer,
.sponsored-payment-note {
    background: #f6f7f8;
    border: 0;
    border-radius: 0.85rem;
    padding: 1rem 1.1rem;
}

.sponsored-benefit-item {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    background: #f8f9fa;
    border-radius: 0.75rem;
    padding: 1rem;
    height: 100%;
}

.sponsored-benefit-item i {
    font-size: 1.2rem;
    color: #0b0b0b;
    flex: 0 0 auto;
    margin-top: 0.1rem;
}

.sponsored-benefit-item strong {
    display: block;
    margin-bottom: 0.2rem;
}

.sponsored-rules li {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--text-dark);
}

.sponsored-rules li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.sponsored-rules i {
    color: #0b0b0b;
    margin-top: 0.15rem;
}

.sponsored-dashboard-card,
.sponsored-payment-card {
    background: #fff;
    border: 0;
    border-radius: 0.85rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    padding: 1.35rem;
}

.sponsored-form-shell {
    background: #fff;
    border: 0;
    border-radius: 0.85rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    padding: 1.25rem;
}

.sponsored-request-form .form-label {
    margin-bottom: 0.45rem;
    font-weight: 700;
}

.sponsored-package-picker {
    display: grid;
    gap: 0.85rem;
}

.sponsored-package-choice {
    cursor: pointer;
    position: relative;
    display: grid;
    gap: 0.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border: 0;
    border-radius: 0.8rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    height: 100%;
}

.sponsored-package-choice.selected {
    background: #fff;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.sponsored-package-choice input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.sponsored-status-strip .profile-status-item {
    background: #fff;
}

.payment-method-panel {
    background: #fff;
    border: 0;
    border-radius: 0.75rem;
    padding: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.payment-proof-item {
    background: #fff;
    border: 0;
    border-radius: 0.75rem;
    padding: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 80px;
}

.sidebar-widget {
    background: var(--bg-light);
    border-radius: 0.75rem;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.widget-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
}

.popular-post-item {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.popular-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.popular-post-item a {
    display: flex;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-dark);
}

.popular-post-item a:hover .popular-title {
    color: var(--primary);
}

.popular-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 0.5rem;
    flex-shrink: 0;
}

.popular-title {
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    line-height: 1.3;
}

.category-list li {
    margin-bottom: 0.5rem;
}

.category-list a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.category-list a:hover {
    color: var(--primary);
}

/* Single Post */
.post-header {
    margin-bottom: 2rem;
}

.post-header {
background: #194529;
    padding: 31px;
    text-align: center;
    color: white;
    border-radius: 4px;
}


.post-header h1 {
    font-weight: 800;
    font-size: 2rem;
}

.post-featured-img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}

.post-content {
    font-size: 1.05rem;
    line-height: 1.8;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

.post-content h2,
.post-content h3,
.post-content h4 {
    font-family: var(--font-display);
    font-weight: 700;
}

.related-posts h3 {
    font-weight: 700;
    margin-bottom: 1.25rem;
}

/* Contact Form */
.contact-form {
    background: var(--bg-light);
    border-radius: 0.75rem;
    padding: 2rem;
}

.contact-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(26, 71, 42, 0.15);
}

.btn-primary-custom {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
}

/* Footer */
.site-footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.8);
    padding: 3rem 0 1.5rem;
    margin-top: auto;
}

.footer-heading {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    display: block;
    padding: 0.25rem 0;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent);
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    margin-right: 0.5rem;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--accent);
    color: var(--primary-dark);
}

.footer-divider {
    border-color: rgba(255,255,255,0.15);
    margin: 2rem 0 1rem;
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

/* Pagination */
.pagination .page-link {
    color: var(--primary);
}

.pagination .page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
}

/* Sports Page */
.sports-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #2d6a4f 100%);
    color: #fff;
    padding: 2.5rem 0;
    margin-bottom: 2rem;
    text-align: center;
}

.sports-hero h1 {
    font-weight: 800;
}

.sports-hero.football {
    background: linear-gradient(135deg, #1a472a 0%, #40916c 100%);
}

.sports-hero.cricket {
    background: linear-gradient(135deg, #0d47a1 0%, #1976d2 100%);
}

/* Alerts */
.alert-success, .alert-danger, .alert-info {
    border-radius: 0.5rem;
}

/* Responsive */
@media (max-width: 991px) {
    .sidebar {
        position: static;
        margin-top: 2rem;
    }

    .hero-section h1 {
        font-size: 1.8rem;
    }

    .match-teams {
        flex-direction: column;
        text-align: center;
    }

    .team-name.home {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .post-header h1 {
        font-size: 1.5rem;
    }
}

/* Editorial monochrome overhaul */
:root {
    --primary: #0b0b0b;
    --primary-dark: #000000;
    --accent: #e10600;
    --accent-hover: #bf0500;
    --text-dark: #0b0b0b;
    --text-muted: #666b73;
    --bg-light: #f4f5f7;
    --border-color: #d8dce1;
}

body {
    background: #fff;
    color: var(--text-dark);
}

.site-header {
    background: #0b0b0b;
    border-bottom: 1px solid #1f1f1f;
    box-shadow: none;
}

.site-topbar {
    background: #000;
    color: rgba(255,255,255,0.72);
    font-size: 0.72rem;
    padding: 0.35rem 0;
    border-bottom: 1px solid #1e1e1e;
}

.site-header .navbar {
    padding: 0.9rem 0;
}

.site-header .navbar-brand {
    font-size: 1.2rem;
    text-transform: uppercase;
}

.site-header .nav-link {
    color: rgba(255,255,255,0.84) !important;
    text-transform: uppercase;
    font-size: 0.8rem;
    border-bottom: 2px solid transparent;
}

.site-header .nav-link:hover,
.site-header .nav-link:focus,
.site-header .nav-link.active {
    color: #fff !important;
    border-bottom-color: var(--accent);
}

.navbar-toggler {
    border-color: rgba(255,255,255,0.2);
}

.navbar-dark .navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

.site-main {
    padding: 1.25rem 0 3rem;
}

.hero-section,
.sports-hero {
    background: #0b0b0b;
    color: #fff;
    border-radius: 0;
    margin-bottom: 1.5rem;
    padding: 2.25rem 0;
    border-bottom: 1px solid #dfe3e8;
}

.hero-section h1,
.sports-hero h1 {
    font-size: clamp(2rem, 4vw, 3.75rem);
    font-weight: 800;
    line-height: 1;
}

.hero-section .lead,
.sports-hero .lead {
    color: rgba(255,255,255,0.72);
    max-width: 60ch;
}

.front-hero {
    margin-bottom: 2rem;
}

.home-section-intro {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 0.9rem;
}

.front-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(340px, 0.9fr);
    gap: 0.9rem;
}

.feature-story,
.story-rail,
.scoreboard-panel,
.feed-panel,
.editorial-panel,
.sidebar-widget,
.content-card,
.contact-form,
.seo-assistant {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    box-shadow: none;
}

.sponsored-hero {
    margin-bottom: 1.75rem;
}

.sponsored-soft-card {
    background: #f8f9fa;
    border: 0;
    border-radius: 0.85rem;
    box-shadow: none;
    padding: 1.35rem;
}

.sponsored-soft-card .card-header-custom {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 1rem;
}

.feature-story {
    overflow: visible;
    position: relative;
    background: transparent;
    border: 0;
    border-radius: 0;
}

.feature-story a,
.rail-title a {
    color: inherit;
}

.feature-story-media {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #eceef1;
    border-radius: 0.45rem;
    overflow: hidden;
}

.feature-story-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-story-body {
    padding: 0.9rem 0.1rem 0;
}

.story-kicker-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
}

.story-kicker-row .eyebrow {
    flex: 0 0 auto;
}

.eyebrow,
.category-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
    background: #0b0b0b;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
}

.article-source {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-width: 0;
    color: #0b0b0b;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;
}

.article-source--compact {
    flex: 0 1 auto;
}

.article-source--full {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
}

.article-source-logo {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    display: grid;
    place-items: center;
    background: #0b0b0b;
    color: #fff;
    flex: 0 0 auto;
}

.article-source-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.article-source-fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.article-source-name {
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 16ch;
}

.article-source-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0;
}

.article-source-main {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-width: 0;
}

.article-source-main a,
.article-source-main strong {
    color: #0b0b0b;
    text-decoration: none;
    font-weight: 800;
}

.article-source-main a:hover {
    text-decoration: underline;
}

.feature-story h2,
.story-rail h3,
.blog-card h3,
.post-header h1,
.section-title,
.widget-title,
.related-posts h3 {
    color: #0b0b0b;
}

.feature-story h2 {
    font-size: clamp(1.6rem, 2vw, 2.4rem);
    font-weight: 800;
    line-height: 1.05;
    margin: 0.8rem 0 0.65rem;
}

.feature-story p {
    color: var(--text-muted);
    margin-bottom: 0;
    max-width: 65ch;
}

.story-rail {
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
}

.rail-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.78rem;
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.headline-list {
    display: grid;
    gap: 0.7rem;
}

.top-stories-list {
    display: grid;
}

.top-story-row {
    padding: 1.05rem 0;
    border-bottom: 1px solid var(--border-color);
}

.top-story-row:first-child {
    padding-top: 0;
}

.top-story-row:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.top-story-link {
    display: grid;
    grid-template-columns: clamp(120px, 11vw, 152px) minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
    color: inherit;
}

.top-story-link:hover h3 {
    color: var(--primary);
}

.top-story-media {
    min-width: 0;
}

.top-story-thumb {
    width: 100%;
    aspect-ratio: 1280 / 769;
    object-fit: cover;
    border-radius: 0.4rem;
    display: block;
    background: #eceef1;
}

.top-story-thumb-empty {
    display: grid;
    place-items: center;
    color: #8b9198;
    font-size: 1.35rem;
}

.top-story-copy {
    min-width: 0;
}

.top-story-copy h3 {
    margin: 0.05rem 0 0.3rem;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.2;
    color: #0b0b0b;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.5em;
}

.section-title {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #0b0b0b;
    margin-bottom: 1rem;
}

.scores-section,
.blog-section {
    margin-bottom: 2.25rem;
}

.latest-news-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.latest-news-header > div {
    min-width: 0;
}

.latest-news-viewall {
    flex-shrink: 0;
    white-space: nowrap;
}

.scores-summary-bar {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    padding: 0.75rem 0.95rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    background: #fff;
    margin-bottom: 0.8rem;
}

.scores-summary-bar strong {
    color: #0b0b0b;
}

.match-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    margin-bottom: 0.8rem;
    overflow: hidden;
    transition: transform 0.15s ease, border-color 0.15s ease;
}

.match-card:hover {
    transform: translateY(-1px);
    border-color: #b6bcc4;
}

.match-card.live {
    border-left: 4px solid var(--accent);
}

.match-card.finished,
.match-card.upcoming {
    border-left: 4px solid #0b0b0b;
}

.match-league-bar {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.65rem 0.85rem;
    background: #f7f8fa;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.76rem;
}

.league-name,
.league-round,
.status-badge {
    text-transform: uppercase;
}

.league-name {
    font-weight: 800;
}

.league-round {
    color: var(--text-muted);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.18rem 0.45rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 800;
}

.status-badge.live {
    background: var(--accent);
    color: #fff;
}

.status-badge.finished {
    background: #111;
    color: #fff;
}

.status-badge.upcoming {
    background: #e6e8eb;
    color: #111;
}

.match-teams {
    padding: 0.9rem 0.95rem;
}

.team-name {
    font-size: 0.96rem;
    font-weight: 700;
}

.match-score {
    color: #0b0b0b;
    font-size: 1.45rem;
    font-weight: 800;
}

.ht-score,
.match-venue,
.blog-meta,
.popular-post-item small,
.post-meta,
.copyright {
    color: var(--text-muted);
}

.match-footer {
    padding: 0.65rem 0.95rem 0.9rem;
    border-top: 1px solid var(--border-color);
    background: #fafafa;
}

.scores-loading {
    text-align: center;
    padding: 1.4rem;
    color: var(--text-muted);
}

.blog-card {
    background: transparent;
    border: 0;
    border-radius: 0;
    overflow: visible;
    height: 100%;
    transition: none;
}

.blog-card:hover {
    transform: none;
    box-shadow: none;
}

.blog-card-img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    background: #eceef1;
    border-radius: 0.45rem;
}

.blog-card-body {
    padding: 0.85rem 0 0;
}

.blog-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.25;
    min-height: 2.75em;
}

.blog-card h3 a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card h3 a,
.headline-item,
.popular-post-item a,
.category-list a {
    color: #0b0b0b;
}

.blog-card h3 a:hover,
.headline-item:hover h4,
.popular-post-item a:hover .popular-title,
.category-list a:hover {
    color: var(--accent);
}

.blog-meta {
    font-size: 0.8rem;
}

.article-card-meta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.8rem;
    flex-wrap: nowrap;
    margin-top: 0.55rem;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.article-card-meta-left {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 0;
    flex: 1 1 auto;
    flex-wrap: nowrap;
    overflow: hidden;
}

.article-card-meta-time,
.article-card-meta-views {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
}

.article-card-meta-views {
    margin-left: auto;
    font-weight: 700;
    flex-shrink: 0;
}

.article-card-meta .article-source {
    font-size: 0.76rem;
    min-width: 0;
}

.sidebar {
    position: sticky;
    top: 88px;
}

.sidebar-widget {
    padding: 1rem;
    margin-bottom: 1rem;
}

.widget-title {
    font-size: 0.92rem;
    font-weight: 800;
    text-transform: uppercase;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0.8rem;
}

.popular-post-item {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
}

.popular-post-item:last-child {
    border-bottom: 0;
}

.popular-post-item a {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    text-decoration: none;
}

.popular-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 66px;
    min-width: 0;
}

.popular-thumb {
    width: 66px;
    height: 66px;
    object-fit: cover;
    border-radius: 0.35rem;
    flex-shrink: 0;
}

.popular-title {
    display: block;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.25;
    min-height: 2.5em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.popular-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.55rem;
    min-width: 0;
}

.popular-source {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 0.72rem;
}

.popular-source .article-source-logo {
    width: 20px;
    height: 20px;
}

.popular-source .article-source-name {
    max-width: 12ch;
}

.popular-views {
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 0.72rem;
}

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

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

.post-header {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 1rem 1.1rem;
    margin-bottom: 1rem;
    text-align: left;
}

.post-header h1 {
    font-size: clamp(2rem, 3.2vw, 3.35rem);
    font-weight: 800;
    line-height: 1.02;
    margin: 0.65rem 0 0.45rem;
}

.post-featured-img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
}

.post-content {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.85;
}

.post-content p,
.post-content ul,
.post-content ol {
    margin-bottom: 1rem;
}

.post-content a {
    color: #0b0b0b;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.15em;
}

.post-content h2,
.post-content h3,
.post-content h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.related-posts h3 {
    text-transform: uppercase;
    font-size: 0.9rem;
    border-bottom: 2px solid #0b0b0b;
    padding-bottom: 0.45rem;
}

.guest-post-page {
    padding-top: 0.25rem;
}

.guest-post-page .content-card,
.profile-page .content-card {
    overflow: visible;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0.35rem 0;
}

.guest-post-page .content-card .card-header-custom,
.profile-page .content-card .card-header-custom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
    padding-bottom: 0.95rem;
    margin-bottom: 1.05rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.package-picker {
    background: #fcfcfc;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 0.5rem;
    padding: 1rem;
}

.package-card {
    display: block;
    position: relative;
    height: 100%;
    padding: 0.85rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.package-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.package-card.selected {
    border-color: #0b0b0b;
    box-shadow: 0 6px 18px rgba(11, 11, 11, 0.08);
    transform: translateY(-1px);
}

.package-card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.45rem;
}

.package-price {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.package-desc {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.45;
}

.guest-guidelines {
    margin: 0;
}

.guest-guidelines li {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    padding: 0.55rem 0;
    border-top: 1px solid var(--border-color);
    line-height: 1.45;
}

.guest-guidelines li:first-child {
    border-top: 0;
    padding-top: 0;
}

.guest-guidelines li i {
    color: #0b0b0b;
    margin-top: 0.15rem;
    flex: 0 0 auto;
}

.guest-status-banner {
    display: inline-flex;
    align-items: center;
    padding: 0.65rem 0.9rem;
    border: 1px solid #d8dce1;
    background: #fafafa;
    border-radius: 0.5rem;
    color: #0b0b0b;
    font-size: 0.92rem;
}

.guest-login-prompt {
    background: #f8f9fa;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 1rem;
    color: var(--text-muted);
}

.post-byline {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.guest-post-byline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem 1rem;
}

.guest-publisher-card {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 0.85rem;
    background: #fafafa;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
}

.guest-publisher-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    display: grid;
    place-items: center;
    background: #0b0b0b;
    color: #fff;
    flex: 0 0 auto;
}

.guest-publisher-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.guest-publisher-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.guest-publisher-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0;
}

.guest-publisher-copy a {
    color: #0b0b0b;
    text-decoration: none;
    font-weight: 700;
}

.guest-publisher-copy a:hover {
    text-decoration: underline;
}

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

.guest-source-note {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: center;
    padding-top: 0.9rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.guest-source-label {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.72rem;
    color: var(--text-muted);
}

.guest-source-note a {
    color: #0b0b0b;
    text-decoration: none;
    word-break: break-word;
}

.guest-source-note a:hover {
    text-decoration: underline;
}

.guest-payment-note {
    background: #f8f9fa;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 0.9rem;
}

.payment-method-panel {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 1rem;
}

.guest-payment-page {
    padding-top: 0.4rem;
    padding-bottom: 1rem;
}

.guest-appeal-page {
    padding-top: 0.4rem;
    padding-bottom: 1rem;
}

.guest-payment-page .content-card.guest-payment-card {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
}

.guest-appeal-page .content-card.guest-appeal-card {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
}

.guest-payment-page .card-header-custom {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 1.1rem;
}

.guest-appeal-page .card-header-custom {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 1.1rem;
}

.guest-payment-page .profile-status-item {
    background: #f7f8fa;
    border: 0;
}

.guest-payment-page .guest-payment-note,
.guest-payment-page .payment-method-panel,
.guest-payment-page .payment-proof-item {
    background: #f7f8fa;
    border: 0;
    box-shadow: none;
}

.guest-appeal-note {
    background: #f7f8fa;
    border: 0;
    box-shadow: none;
    border-radius: 0.5rem;
    padding: 1rem 1.1rem;
}

.guest-payment-page .guest-payment-note {
    margin-bottom: 1.25rem;
    padding: 1rem 1.1rem;
}

.payment-proof-form {
    border-top: 0;
    padding-top: 0;
    margin-top: 1.5rem;
}

.payment-proof-list {
    display: grid;
    gap: 0.85rem;
}

.payment-proof-item {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 1rem;
}

.guest-payment-page .form-label {
    margin-bottom: 0.45rem;
}

.guest-payment-page .row.g-4 {
    --bs-gutter-y: 1rem;
}

.guest-appeal-page .row.g-4 {
    --bs-gutter-y: 1rem;
}

.guest-appeal-form .form-label {
    margin-bottom: 0.45rem;
}

.guest-appeal-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.guest-appeal-image-wrap {
    display: inline-flex;
    max-width: 100%;
}

.guest-appeal-image-link {
    display: inline-flex;
    max-width: 100%;
}

.guest-appeal-image {
    display: block;
    max-width: 240px;
    width: 100%;
    height: auto;
    border-radius: 0.65rem;
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.seo-assistant {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    position: sticky;
    top: 1.25rem;
}

.seo-assistant .seo-score-wrap {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.seo-score-badge {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.45rem;
    font-weight: 800;
    color: #fff;
    background: conic-gradient(#0b0b0b 0deg, #0b0b0b 0deg, #d8dce1 0deg);
    box-shadow: inset 0 0 0 10px rgba(255,255,255,0.15);
}

.seo-score-meta small {
    display: block;
    color: var(--text-muted);
}

.seo-score-meta strong {
    font-size: 1rem;
}

.seo-status {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border-radius: 999px;
    padding: 0.25rem 0.7rem;
    font-size: 0.72rem;
    font-weight: 700;
    margin-top: 0.35rem;
}

.seo-status.excellent { background: #d1f1da; color: #156b2f; }
.seo-status.good { background: #dcf0ff; color: #085b8f; }
.seo-status.poor { background: #ffe1e1; color: #a12b2b; }

.seo-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.seo-checklist li {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.55rem 0;
    border-top: 1px solid #e8e8ea;
}

.seo-checklist li:first-child {
    border-top: 0;
}

.seo-checklist .check-label {
    font-weight: 600;
}

.seo-checklist .check-hint {
    color: var(--text-muted);
    font-size: 0.78rem;
}

.seo-checklist .check-ok {
    color: #198754;
}

.seo-checklist .check-bad {
    color: #b02a37;
}

.seo-preview {
    background: #fafafa;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-top: 1rem;
}

.seo-preview .preview-url {
    color: #0b0b0b;
    font-size: 0.78rem;
    word-break: break-all;
}

.seo-preview .preview-title {
    font-family: var(--font-display);
    color: #0b0b0b;
    font-weight: 700;
    margin: 0.25rem 0;
}

.seo-preview .preview-description {
    color: var(--text-muted);
    font-size: 0.86rem;
    line-height: 1.5;
    margin: 0;
}

.gallery-grid,
.gallery-edit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.85rem;
}

.gallery-item,
.gallery-edit-item {
    margin: 0;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    background: #fff;
}

.gallery-item img,
.gallery-edit-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 0.4rem;
    display: block;
}

.gallery-item figcaption {
    margin-top: 0.5rem;
    color: var(--text-muted);
    font-size: 0.78rem;
}

.contact-form,
.seo-assistant {
    padding: 1.1rem;
}

.contact-form .form-control:focus {
    border-color: #0b0b0b;
    box-shadow: 0 0 0 0.15rem rgba(11,11,11,0.08);
}

.btn-primary-custom,
.site-main .btn-primary,
.site-main .btn-success,
.site-main .btn-outline-success,
.site-main .btn-outline-primary,
.site-main .btn-outline-secondary,
.site-main .btn-success:focus,
.site-main .btn-primary:focus {
    border-color: #0b0b0b;
}

.btn-primary-custom,
.site-main .btn-primary,
.site-main .btn-success {
    background: #0b0b0b;
    color: #fff;
}

.btn-primary-custom:hover,
.site-main .btn-primary:hover,
.site-main .btn-success:hover {
    background: #000;
    border-color: #000;
    color: #fff;
}

.site-main .btn-outline-success,
.site-main .btn-outline-primary,
.site-main .btn-outline-secondary {
    color: #0b0b0b;
    background: transparent;
}

.site-main .btn-outline-success:hover,
.site-main .btn-outline-primary:hover,
.site-main .btn-outline-secondary:hover {
    background: #0b0b0b;
    color: #fff;
}

.pagination .page-link {
    color: #0b0b0b;
}

.pagination .page-item.active .page-link {
    background: #0b0b0b;
    border-color: #0b0b0b;
    color: #fff;
}

.sports-hero.football,
.sports-hero.cricket {
    background: #0b0b0b;
}

.site-footer {
    background: #0b0b0b;
    color: rgba(255,255,255,0.78);
}

.footer-heading {
    color: #fff;
    text-transform: uppercase;
    font-size: 0.82rem;
}

.footer-links a {
    color: rgba(255,255,255,0.74);
}

.footer-links a:hover,
.social-icons a:hover {
    color: #fff;
}

.social-icons a {
    background: rgba(255,255,255,0.08);
}

.footer-divider {
    border-color: rgba(255,255,255,0.12);
}

.hero-section .btn-outline-success,
.sports-hero .btn-outline-success,
.sports-hero .btn-outline-primary {
    color: #fff;
    border-color: rgba(255,255,255,0.35);
}

.hero-section .btn-outline-success:hover,
.sports-hero .btn-outline-success:hover,
.sports-hero .btn-outline-primary:hover {
    background: #fff;
    color: #0b0b0b;
    border-color: #fff;
}

.hero-section .btn-outline-secondary,
.sports-hero .btn-outline-secondary {
    color: #fff;
    border-color: rgba(255,255,255,0.35);
}

.hero-section .btn-outline-secondary:hover,
.sports-hero .btn-outline-secondary:hover {
    background: #fff;
    color: #0b0b0b;
}

.alert-success {
    background: #f4f5f7;
    color: #0b0b0b;
    border-color: #d8dce1;
}

.alert-danger,
.alert-info,
.alert-warning {
    border-radius: 0.5rem;
}

.match-score-block {
    min-width: 84px;
}

.match-card .team {
    align-items: center;
}

@media (max-width: 991px) {
    .front-hero-grid {
        grid-template-columns: 1fr;
    }

    .top-story-link {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
        margin-top: 1.25rem;
    }
}

@media (max-width: 576px) {
    .site-topbar .container {
        font-size: 0.68rem;
    }

    .feature-story h2 {
        font-size: 1.45rem;
    }

    .blog-card-img {
        height: 180px;
    }

    .latest-news-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.65rem;
        margin-bottom: 1.4rem;
    }

    .latest-news-viewall {
        width: auto;
        padding-inline: 0.85rem;
        margin-top: 0.35rem;
        margin-bottom: 0.35rem;
        align-self: flex-start;
    }

    .post-content {
        padding: 1rem;
    }
}

.auth-shell {
    min-height: calc(100vh - 220px);
    display: grid;
    place-items: center;
    padding: 2rem 0;
}

.auth-card {
    width: 100%;
    max-width: 520px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 0.6rem;
    padding: 1.5rem;
}

.auth-card h1 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.auth-card .auth-subtitle {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.auth-actions .btn {
    white-space: nowrap;
}

.auth-dropdown .dropdown-toggle {
    min-width: 0;
}

.auth-dropdown .dropdown-menu {
    min-width: 14rem;
}

.auth-dropdown .dropdown-item i {
    width: 1rem;
    display: inline-flex;
    justify-content: center;
}

.site-notification-button {
    min-width: 2.4rem;
    padding-inline: 0.6rem;
}

.site-user-chip {
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    border-radius: 999px;
    padding: 0.32rem 0.7rem;
    font-size: 0.78rem;
}

@media (max-width: 991.98px) {
    .site-header .navbar-collapse {
        padding-top: 0.85rem;
    }

    .site-header .navbar-collapse.show {
        max-height: calc(100vh - 112px);
        max-height: calc(100dvh - 112px);
        overflow-y: auto;
        overflow-x: hidden;
        overscroll-behavior: contain;
        padding-bottom: 0.85rem;
        scrollbar-width: thin;
        scrollbar-color: rgba(255, 255, 255, 0.45) rgba(255, 255, 255, 0.08);
    }

    .site-header .navbar-collapse.show::-webkit-scrollbar {
        width: 6px;
    }

    .site-header .navbar-collapse.show::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.08);
        border-radius: 999px;
    }

    .site-header .navbar-collapse.show::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.45);
        border-radius: 999px;
    }

    .site-header .navbar-nav {
        gap: 0.1rem;
    }

    .site-header .nav-link {
        padding: 0.65rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .site-header .nav-link:hover,
    .site-header .nav-link:focus,
    .site-header .nav-link.active {
        border-bottom-color: rgba(255, 255, 255, 0.18);
    }

    .auth-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch !important;
        gap: 0.65rem !important;
        margin-top: 0.85rem !important;
        padding-top: 0.85rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .site-notification-button {
        width: 100%;
        min-height: 2.65rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-color: rgba(255, 255, 255, 0.24);
    }

    .site-notification-button [data-notification-badge] {
        top: 0.35rem !important;
        right: 0.6rem !important;
        left: auto !important;
        transform: none !important;
    }

    .auth-dropdown {
        width: 100%;
        position: relative;
    }

    .auth-dropdown .dropdown-toggle {
        width: 100%;
        min-height: 2.65rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .auth-dropdown .dropdown-menu {
        position: static !important;
        inset: auto !important;
        transform: none !important;
        width: 100%;
        min-width: 0;
        margin: 0.45rem 0 0;
        padding: 0.4rem;
        border: 0;
        border-radius: 0.5rem;
        box-shadow: none;
    }

    .auth-dropdown .dropdown-menu.show {
        display: block;
    }

    .auth-dropdown .dropdown-item {
        border-radius: 0.4rem;
        padding: 0.68rem 0.75rem;
        white-space: normal;
    }

    .auth-dropdown .dropdown-divider {
        margin: 0.35rem 0;
    }
}

.auth-note {
    border: 1px solid var(--border-color);
    background: #fafafa;
    border-radius: 0.5rem;
    padding: 0.9rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.verification-resend-panel {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.05rem;
    background: #f7f8fa;
    border: 0;
    border-radius: 0.5rem;
}

.verification-resend-copy {
    min-width: 0;
    flex: 1 1 auto;
}

.verification-resend-title {
    font-weight: 800;
    color: #0b0b0b;
    margin-bottom: 0.2rem;
}

.verification-resend-wait {
    margin-top: 0.35rem;
    font-weight: 600;
    color: #0b0b0b;
}

.verification-resend-action,
.verification-resend-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 0 0 auto;
}

.verification-resend-button {
    min-width: 8.75rem;
    padding-inline: 0.9rem;
}

.verification-resend-button:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

@media (max-width: 575.98px) {
    .verification-resend-panel {
        flex-direction: column;
        align-items: stretch;
    }

    .verification-resend-action,
    .verification-resend-actions {
        width: 100%;
    }

    .verification-resend-actions .btn,
    .verification-resend-action .btn {
        width: 100%;
        justify-content: center;
    }
}

.profile-page {
    padding-top: 0.25rem;
}

.profile-status-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.profile-status-item {
    border: 1px solid var(--border-color);
    background: #fafafa;
    border-radius: 0.5rem;
    padding: 0.85rem 0.95rem;
}

.profile-status-item span {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.profile-count-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: #0b0b0b;
    color: #fff;
    font-size: 0.76rem;
    font-weight: 700;
}

.request-status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.28rem 0.58rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.15;
    text-align: center;
    text-transform: uppercase;
    border: 1px solid transparent;
}

.request-status-pill.pending,
.request-status-pill.pending_review {
    background: #f4b400;
    color: #111;
}

.request-status-pill.pending_payment {
    background: #f97316;
    color: #111;
}

.request-status-pill.approved_payment_pending {
    background: #eab308;
    color: #111;
}

.request-status-pill.approved {
    background: #0ea5e9;
    color: #fff;
}

.request-status-pill.published,
.request-status-pill.verified {
    background: #198754;
    color: #fff;
}

.request-status-pill.rejected {
    background: #dc3545;
    color: #fff;
}

.request-status-pill.reviewed {
    background: #6b7280;
    color: #fff;
}

.request-status-pill.dismissed {
    background: #4b5563;
    color: #fff;
}

.request-status-pill.not_required {
    background: #e5e7eb;
    color: #111;
}

.request-status-pill.not_requested {
    background: #e5e7eb;
    color: #111;
}

.request-status-pill.payment_pending,
.request-status-pill.payment_proof_submitted {
    background: #f59e0b;
    color: #111;
}

.request-status-pill.payment_approved,
.request-status-pill.active {
    background: #198754;
    color: #fff;
}

.request-status-pill.payment_rejected,
.request-status-pill.rejected,
.request-status-pill.cancelled {
    background: #dc3545;
    color: #fff;
}

.request-status-pill.paused,
.request-status-pill.expired {
    background: #6c757d;
    color: #fff;
}

.profile-notification-list {
    display: grid;
    gap: 0.75rem;
}

.notifications-page {
    padding-top: 0.5rem;
    padding-bottom: 1.25rem;
}

.notifications-page .content-card {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    margin-bottom: 0;
}

.notifications-page .card-header-custom {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 1rem;
}

.notifications-page .profile-notification-list {
    gap: 0;
}

.profile-notification-item {
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 0.95rem 1rem;
    background: #fff;
}

.notifications-page .profile-notification-item {
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.notifications-page .profile-notification-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.profile-notification-item.is-unread {
    border-left: 4px solid #0b0b0b;
    background: #fcfcfd;
}

.notifications-page .profile-notification-item.is-unread {
    border-left: 0;
    background: transparent;
    border-bottom-color: rgba(0, 0, 0, 0.14);
}

.profile-notification-item .text-muted {
    color: var(--text-muted) !important;
}

.request-status-pill.received,
.request-status-pill.payment_proof_submitted {
    background: #c084fc;
    color: #111;
}

.profile-guest-table .guest-title-cell {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.profile-guest-table .guest-title-cell small {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.profile-guest-table thead th {
    text-transform: uppercase;
    font-size: 0.76rem;
    color: var(--text-muted);
    border-bottom-width: 1px;
}

.profile-guest-table th:nth-child(3),
.profile-guest-table th:nth-child(4),
.profile-guest-table td:nth-child(3),
.profile-guest-table td:nth-child(4) {
    text-align: center;
}

.profile-guest-table td:nth-child(3) .request-status-pill,
.profile-guest-table td:nth-child(4) .request-status-pill {
    min-width: 7.25rem;
}

@media (max-width: 767.98px) {
    .profile-status-strip {
        grid-template-columns: 1fr;
    }
}
