#secondary.sidebar.widget-area {
    background: transparent;
    border-radius: 12px;
    padding: 0;
    margin-top: 0;
    padding-left: 16px;
    position: sticky;
    top: 80px;
}

.single #secondary.sidebar.widget-area {
    position: relative;
    top: auto;
}

.widget {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.widget:hover {
    background: rgba(255, 255, 255, 0.75);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.widget-title {
    font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget ul li {
    padding: 5px 0;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.widget ul li:last-child {
    border-bottom: none;
}

.widget ul li:hover {
    padding-left: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.widget a {
    color: #475569;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.widget a:hover {
    color: #1e293b;
}

.widget_recent_entries ul li,
.widget_recent_comments ul li {
    padding: 12px 0;
}

.widget_text {
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
}

.widget_search {
    display: none;
}

.widget_search .search-form {
    display: flex;
    gap: 8px;
}

.widget_search input[type="search"] {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.widget_search input[type="search"]:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.8);
}

.widget_search input[type="submit"],
.widget_search .search-submit,
.widget_search button[type="submit"] {
    padding: 8px 16px !important;
    background: #000000 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 6px !important;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.widget_search input[type="submit"]::before,
.widget_search .search-submit::before,
.widget_search button[type="submit"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transition: left 0.3s ease;
    z-index: 0;
}

.widget_search input[type="submit"]:hover,
.widget_search .search-submit:hover,
.widget_search button[type="submit"]:hover {
    background: #1a1a1a !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.widget_search input[type="submit"]:hover::before,
.widget_search .search-submit:hover::before,
.widget_search button[type="submit"]:hover::before {
    left: 100%;
}

.widget_calendar table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 6px;
    overflow: hidden;
}

.widget_calendar th,
.widget_calendar td {
    padding: 8px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.widget_calendar th {
    background: rgba(0, 0, 0, 0.05);
    font-weight: 600;
    color: #1e293b;
}

.widget_calendar a {
    color: #1e293b;
    font-weight: 600;
}

.widget_tag_cloud .tagcloud a {
    display: inline-block;
    padding: 6px 12px;
    margin: 4px 4px 4px 0;
    background: rgba(255, 255, 255, 0.6);
    color: #475569;
    border-radius: 20px;
    font-size: 13px !important;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.widget_tag_cloud .tagcloud a:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.widget_categories ul li,
.widget_archive ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.widget_categories .count,
.widget_archive .count {
    background: rgba(0, 0, 0, 0.1);
    color: #1e293b;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.bp-grid-layout .post-card-title,
.bp-grid-layout .entry-title {
    font-family: sans-serif !important;
    font-size: 16px !important;
    font-weight: 600;
    line-height: 1.4;
    text-align: center !important;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* Responsive font sizes for card titles */
@media (max-width: 600px) {

    .bp-grid-layout .post-card-title,
    .bp-grid-layout .entry-title {
        font-size: 14px !important;
        padding-bottom: 8px;
        margin-bottom: 8px;
    }
}

@media (min-width: 601px) and (max-width: 992px) {

    .bp-grid-layout .post-card-title,
    .bp-grid-layout .entry-title {
        font-size: 15px !important;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
}

@media (min-width: 1200px) {

    .bp-grid-layout .post-card-title,
    .bp-grid-layout .entry-title {
        font-size: 17px !important;
    }
}

.single .entry-title,
.page .entry-title {
    text-align: left !important;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 20px;
}

.bp-grid-layout .post-card-title a,
.bp-grid-layout .entry-title a {
    font-size: inherit;
    font-family: inherit;
    text-decoration: none !important;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.bp-grid-layout .post-card-title a::before,
.bp-grid-layout .entry-title a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
    z-index: 0;
}

.bp-grid-layout .post-card-title a:hover::before,
.bp-grid-layout .entry-title a:hover::before {
    left: 100%;
}

.bp-grid-layout .post-card-title a:hover,
.bp-grid-layout .entry-title a:hover {
    text-decoration: none !important;
    transform: translateY(-2px);
    opacity: 0.85;
}

.bp-grid-layout .post-card-title a::after,
.bp-grid-layout .entry-title a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width 0.3s ease;
    z-index: 1;
}

.bp-grid-layout .post-card-title a:hover::after,
.bp-grid-layout .entry-title a:hover::after {
    width: 100%;
}

.post-card.bp-match-today .post-card-title,
article.bp-match-today .entry-title {
    border-bottom-color: rgba(6, 95, 70, 0.2);
}

.post-card.bp-match-tomorrow .post-card-title,
article.bp-match-tomorrow .entry-title {
    border-bottom-color: rgba(146, 64, 14, 0.2);
}

.post-card.bp-match-weekend .post-card-title,
article.bp-match-weekend .entry-title {
    border-bottom-color: rgba(30, 64, 175, 0.2);
}

.post-card.bp-match-past .post-card-title,
article.bp-match-past .entry-title {
    border-bottom-color: rgba(107, 33, 168, 0.2);
}

.post-card-header-meta a,
.entry-header-meta a {
    text-decoration: none !important;
}

.post-card-header-meta a:hover,
.entry-header-meta a:hover {
    text-decoration: none !important;
}

.bp-grid-layout .post-card-content,
.bp-grid-layout .entry-content,
.bp-grid-layout .bp-excerpt,
.bp-grid-layout .bp-match,
.bp-grid-layout .post-card-caption {
    text-align: center !important;
    font-size: 15px !important;
    line-height: 1.5;
}

.bp-grid-layout .post-card-content p,
.bp-grid-layout .entry-content p,
.bp-grid-layout .bp-excerpt p,
.bp-grid-layout .bp-match p {
    text-align: center !important;
    font-size: 15px !important;
    line-height: 1.5;
}

.bp-grid-layout .post-card-content *,
.bp-grid-layout .entry-content *,
.bp-grid-layout .bp-excerpt * {
    text-align: center !important;
}

.single .entry-content,
.page .entry-content {
    text-align: left !important;
}

.single .entry-content *,
.page .entry-content * {
    text-align: left !important;
}

.single .entry-title,
.page .entry-title {
    text-align: left !important;
}

.entry-footer {
    margin-top: 0 !important;
}

.bp-grid-layout .post-card.bp-match-today .entry-content a,
.bp-grid-layout article.bp-match-today .entry-content a,
.bp-grid-layout .post-card.bp-match-today .entry-summary a,
.bp-grid-layout article.bp-match-today .entry-summary a,
.bp-grid-layout .post-card.bp-match-today .taxonomy-description a,
.bp-grid-layout article.bp-match-today .taxonomy-description a,
.bp-grid-layout .post-card.bp-match-today .logged-in-as a,
.bp-grid-layout article.bp-match-today .logged-in-as a,
.bp-grid-layout .post-card.bp-match-today .comment-content a,
.bp-grid-layout article.bp-match-today .comment-content a,
.bp-grid-layout .post-card.bp-match-today .pingback .comment-body>a,
.bp-grid-layout article.bp-match-today .pingback .comment-body>a,
.bp-grid-layout .post-card.bp-match-today .textwidget a,
.bp-grid-layout article.bp-match-today .textwidget a {
    box-shadow: 0 1px 0 0 #047857;
}

.bp-grid-layout .post-card.bp-match-tomorrow .entry-content a,
.bp-grid-layout article.bp-match-tomorrow .entry-content a,
.bp-grid-layout .post-card.bp-match-tomorrow .entry-summary a,
.bp-grid-layout article.bp-match-tomorrow .entry-summary a,
.bp-grid-layout .post-card.bp-match-tomorrow .bp-excerpt a,
.bp-grid-layout article.bp-match-tomorrow .bp-excerpt a,
.bp-grid-layout .post-card.bp-match-tomorrow .taxonomy-description a,
.bp-grid-layout article.bp-match-tomorrow .taxonomy-description a,
.bp-grid-layout .post-card.bp-match-tomorrow .logged-in-as a,
.bp-grid-layout article.bp-match-tomorrow .logged-in-as a,
.bp-grid-layout .post-card.bp-match-tomorrow .comment-content a,
.bp-grid-layout article.bp-match-tomorrow .comment-content a,
.bp-grid-layout .post-card.bp-match-tomorrow .pingback .comment-body>a,
.bp-grid-layout article.bp-match-tomorrow .pingback .comment-body>a,
.bp-grid-layout .post-card.bp-match-tomorrow .textwidget a,
.bp-grid-layout article.bp-match-tomorrow .textwidget a {
    box-shadow: 0 1px 0 0 #b45309;
}

.bp-grid-layout .post-card.bp-match-weekend .entry-content a,
.bp-grid-layout article.bp-match-weekend .entry-content a,
.bp-grid-layout .post-card.bp-match-weekend .entry-summary a,
.bp-grid-layout article.bp-match-weekend .entry-summary a,
.bp-grid-layout .post-card.bp-match-weekend .bp-excerpt a,
.bp-grid-layout article.bp-match-weekend .bp-excerpt a,
.bp-grid-layout .post-card.bp-match-weekend .taxonomy-description a,
.bp-grid-layout article.bp-match-weekend .taxonomy-description a,
.bp-grid-layout .post-card.bp-match-weekend .logged-in-as a,
.bp-grid-layout article.bp-match-weekend .logged-in-as a,
.bp-grid-layout .post-card.bp-match-weekend .comment-content a,
.bp-grid-layout article.bp-match-weekend .comment-content a,
.bp-grid-layout .post-card.bp-match-weekend .pingback .comment-body>a,
.bp-grid-layout article.bp-match-weekend .pingback .comment-body>a,
.bp-grid-layout .post-card.bp-match-weekend .textwidget a,
.bp-grid-layout article.bp-match-weekend .textwidget a {
    box-shadow: 0 1px 0 0 #1e3a8a;
}

.bp-grid-layout .post-card.bp-match-past .entry-content a,
.bp-grid-layout article.bp-match-past .entry-content a,
.bp-grid-layout .post-card.bp-match-past .entry-summary a,
.bp-grid-layout article.bp-match-past .entry-summary a,
.bp-grid-layout .post-card.bp-match-past .bp-excerpt a,
.bp-grid-layout article.bp-match-past .bp-excerpt a,
.bp-grid-layout .post-card.bp-match-past .taxonomy-description a,
.bp-grid-layout article.bp-match-past .taxonomy-description a,
.bp-grid-layout .post-card.bp-match-past .logged-in-as a,
.bp-grid-layout article.bp-match-past .logged-in-as a,
.bp-grid-layout .post-card.bp-match-past .comment-content a,
.bp-grid-layout article.bp-match-past .comment-content a,
.bp-grid-layout .post-card.bp-match-past .pingback .comment-body>a,
.bp-grid-layout article.bp-match-past .pingback .comment-body>a,
.bp-grid-layout .post-card.bp-match-past .textwidget a,
.bp-grid-layout article.bp-match-past .textwidget a {
    box-shadow: 0 1px 0 0 #7c3aed;
}

.bp-grid-layout .post-card.bp-match-this-week .entry-content a,
.bp-grid-layout article.bp-match-this-week .entry-content a,
.bp-grid-layout .post-card.bp-match-this-week .entry-summary a,
.bp-grid-layout article.bp-match-this-week .entry-summary a,
.bp-grid-layout .post-card.bp-match-this-week .bp-excerpt a,
.bp-grid-layout article.bp-match-this-week .bp-excerpt a,
.bp-grid-layout .post-card.bp-match-this-week .taxonomy-description a,
.bp-grid-layout article.bp-match-this-week .taxonomy-description a,
.bp-grid-layout .post-card.bp-match-this-week .logged-in-as a,
.bp-grid-layout article.bp-match-this-week .logged-in-as a,
.bp-grid-layout .post-card.bp-match-this-week .comment-content a,
.bp-grid-layout article.bp-match-this-week .comment-content a,
.bp-grid-layout .post-card.bp-match-this-week .pingback .comment-body>a,
.bp-grid-layout article.bp-match-this-week .pingback .comment-body>a,
.bp-grid-layout .post-card.bp-match-this-week .textwidget a,
.bp-grid-layout article.bp-match-this-week .textwidget a {
    box-shadow: 0 1px 0 0 #000000;
}

.bp-grid-layout .post-card.bp-match-future .entry-content a,
.bp-grid-layout article.bp-match-future .entry-content a,
.bp-grid-layout .post-card.bp-match-future .entry-summary a,
.bp-grid-layout article.bp-match-future .entry-summary a,
.bp-grid-layout .post-card.bp-match-future .bp-excerpt a,
.bp-grid-layout article.bp-match-future .bp-excerpt a,
.bp-grid-layout .post-card.bp-match-future .taxonomy-description a,
.bp-grid-layout article.bp-match-future .taxonomy-description a,
.bp-grid-layout .post-card.bp-match-future .logged-in-as a,
.bp-grid-layout article.bp-match-future .logged-in-as a,
.bp-grid-layout .post-card.bp-match-future .comment-content a,
.bp-grid-layout article.bp-match-future .comment-content a,
.bp-grid-layout .post-card.bp-match-future .pingback .comment-body>a,
.bp-grid-layout article.bp-match-future .pingback .comment-body>a,
.bp-grid-layout .post-card.bp-match-future .textwidget a,
.bp-grid-layout article.bp-match-future .textwidget a {
    box-shadow: 0 1px 0 0 #1e3a8a;
}

.bp-grid-layout .post-card.bp-casino-post .entry-content a,
.bp-grid-layout article.bp-casino-post .entry-content a,
.bp-grid-layout .post-card.bp-casino-post .entry-summary a,
.bp-grid-layout article.bp-casino-post .entry-summary a,
.bp-grid-layout .post-card.bp-casino-post .taxonomy-description a,
.bp-grid-layout article.bp-casino-post .taxonomy-description a,
.bp-grid-layout .post-card.bp-casino-post .logged-in-as a,
.bp-grid-layout article.bp-casino-post .logged-in-as a,
.bp-grid-layout .post-card.bp-casino-post .comment-content a,
.bp-grid-layout article.bp-casino-post .comment-content a,
.bp-grid-layout .post-card.bp-casino-post .pingback .comment-body>a,
.bp-grid-layout article.bp-casino-post .pingback .comment-body>a,
.bp-grid-layout .post-card.bp-casino-post .textwidget a,
.bp-grid-layout article.bp-casino-post .textwidget a {
    box-shadow: 0 1px 0 0 #991b1b;
}

.bp-grid-layout .post-card-header-meta,
.bp-grid-layout .entry-header-meta {
    text-align: inherit !important;
}

.bp-grid-layout .post-card-header-meta *,
.bp-grid-layout .entry-header-meta * {
    text-align: inherit !important;
}

.bp-grid-layout .bp-read-more-wrapper {
    margin-top: auto;
    padding-top: 4px;
    padding-bottom: 0;
    margin-bottom: 0;
    text-align: center;
}

.bp-grid-layout .bp-read-more-link {
    display: inline-block;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 6px 16px;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.bp-grid-layout .bp-read-more-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
    z-index: 0;
}

.bp-grid-layout .bp-read-more-link:hover::before {
    left: 100%;
}

.bp-grid-layout .bp-excerpt {
    flex-grow: 0;
    flex-shrink: 0;
    min-height: 40px;
}

.bp-grid-layout .entry-summary {
    flex-grow: 0;
    flex-shrink: 0;
    min-height: 196px;
    margin-bottom: 0 !important;
}

.bp-grid-layout .post-card.bp-match-today .bp-read-more-link,
.bp-grid-layout article.bp-match-today .bp-read-more-link,
.bp-grid-layout .bp-match.match-today .bp-read-more-link {
    color: #065f46 !important;
}

.bp-grid-layout .post-card.bp-match-today .bp-read-more-link:hover,
.bp-grid-layout article.bp-match-today .bp-read-more-link:hover,
.bp-grid-layout .bp-match.match-today .bp-read-more-link:hover {
    color: #065f46 !important;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(6, 95, 70, 0.2);
}

.bp-grid-layout .post-card.bp-match-tomorrow .bp-read-more-link,
.bp-grid-layout article.bp-match-tomorrow .bp-read-more-link,
.bp-grid-layout .bp-match.match-tomorrow .bp-read-more-link {
    color: #92400e !important;
}

.bp-grid-layout .post-card.bp-match-tomorrow .bp-read-more-link:hover,
.bp-grid-layout article.bp-match-tomorrow .bp-read-more-link:hover,
.bp-grid-layout .bp-match.match-tomorrow .bp-read-more-link:hover {
    color: #92400e !important;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(146, 64, 14, 0.2);
}

.bp-grid-layout .post-card.bp-match-weekend .bp-read-more-link,
.bp-grid-layout article.bp-match-weekend .bp-read-more-link,
.bp-grid-layout .bp-match.match-weekend .bp-read-more-link {
    color: #1e40af !important;
}

.bp-grid-layout .post-card.bp-match-weekend .bp-read-more-link:hover,
.bp-grid-layout article.bp-match-weekend .bp-read-more-link:hover,
.bp-grid-layout .bp-match.match-weekend .bp-read-more-link:hover {
    color: #1e40af !important;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(30, 64, 175, 0.2);
}

.bp-grid-layout .post-card.bp-match-past .bp-read-more-link,
.bp-grid-layout article.bp-match-past .bp-read-more-link,
.bp-grid-layout .bp-match.match-past .bp-read-more-link {
    color: #6b21a8 !important;
}

.bp-grid-layout .post-card.bp-match-past .bp-read-more-link:hover,
.bp-grid-layout article.bp-match-past .bp-read-more-link:hover,
.bp-grid-layout .bp-match.match-past .bp-read-more-link:hover {
    color: #6b21a8 !important;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(107, 33, 168, 0.2);
}

.bp-grid-layout .post-card.bp-match-this-week .bp-read-more-link,
.bp-grid-layout article.bp-match-this-week .bp-read-more-link,
.bp-grid-layout .bp-match.match-this-week .bp-read-more-link {
    color: #000000 !important;
    box-shadow: 0 1px 0 0 #000000;
}

.bp-grid-layout .post-card.bp-match-this-week .bp-read-more-link:hover,
.bp-grid-layout article.bp-match-this-week .bp-read-more-link:hover,
.bp-grid-layout .bp-match.match-this-week .bp-read-more-link:hover {
    color: #111827 !important;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 1px 0 0 #111827, 0 4px 8px rgba(0, 0, 0, 0.2);
}

.bp-grid-layout .post-card.bp-match-future .bp-read-more-link,
.bp-grid-layout article.bp-match-future .bp-read-more-link,
.bp-grid-layout .bp-match.match-future .bp-read-more-link {
    color: #1e3a8a !important;
    box-shadow: 0 1px 0 0 #1e3a8a;
}

.bp-grid-layout .post-card.bp-match-future .bp-read-more-link:hover,
.bp-grid-layout article.bp-match-future .bp-read-more-link:hover,
.bp-grid-layout .bp-match.match-future .bp-read-more-link:hover {
    color: #1e40af !important;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 1px 0 0 #1e40af, 0 4px 8px rgba(30, 58, 138, 0.2);
}

.bp-grid-layout .post-card.bp-casino-post .bp-read-more-link,
.bp-grid-layout article.bp-casino-post .bp-read-more-link {
    color: #991b1b !important;
    box-shadow: 0 1px 0 0 #991b1b;
}

.bp-grid-layout .post-card.bp-casino-post .bp-read-more-link:hover,
.bp-grid-layout article.bp-casino-post .bp-read-more-link:hover {
    color: #b91c1c !important;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 1px 0 0 #b91c1c, 0 4px 8px rgba(185, 28, 28, 0.2);
}

.bp-grid-layout .post-card.bp-football-post:not(.bp-match-today):not(.bp-match-tomorrow):not(.bp-match-weekend):not(.bp-match-past):not(.bp-match-this-week):not(.bp-match-future) .bp-read-more-link,
.bp-grid-layout article.bp-football-post:not(.bp-match-today):not(.bp-match-tomorrow):not(.bp-match-weekend):not(.bp-match-past):not(.bp-match-this-week):not(.bp-match-future) .bp-read-more-link {
    color: #6b7280 !important;
    box-shadow: 0 1px 0 0 #6b7280;
}

.bp-grid-layout .post-card.bp-football-post:not(.bp-match-today):not(.bp-match-tomorrow):not(.bp-match-weekend):not(.bp-match-past):not(.bp-match-this-week):not(.bp-match-future) .bp-read-more-link:hover,
.bp-grid-layout article.bp-football-post:not(.bp-match-today):not(.bp-match-tomorrow):not(.bp-match-weekend):not(.bp-match-past):not(.bp-match-this-week):not(.bp-match-future) .bp-read-more-link:hover {
    color: #9ca3af !important;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 1px 0 0 #9ca3af, 0 4px 8px rgba(107, 114, 128, 0.2);
}

.bp-grid-layout .post-card.bp-football-post:not(.bp-match-today):not(.bp-match-tomorrow):not(.bp-match-weekend):not(.bp-match-past):not(.bp-match-this-week):not(.bp-match-future) .entry-content,
.bp-grid-layout .post-card.bp-football-post:not(.bp-match-today):not(.bp-match-tomorrow):not(.bp-match-weekend):not(.bp-match-past):not(.bp-match-this-week):not(.bp-match-future) .entry-summary,
.bp-grid-layout .post-card.bp-football-post:not(.bp-match-today):not(.bp-match-tomorrow):not(.bp-match-weekend):not(.bp-match-past):not(.bp-match-this-week):not(.bp-match-future) .bp-excerpt,
.bp-grid-layout article.bp-football-post:not(.bp-match-today):not(.bp-match-tomorrow):not(.bp-match-weekend):not(.bp-match-past):not(.bp-match-this-week):not(.bp-match-future) .entry-content,
.bp-grid-layout article.bp-football-post:not(.bp-match-today):not(.bp-match-tomorrow):not(.bp-match-weekend):not(.bp-match-past):not(.bp-match-this-week):not(.bp-match-future) .entry-summary,
.bp-grid-layout article.bp-football-post:not(.bp-match-today):not(.bp-match-tomorrow):not(.bp-match-weekend):not(.bp-match-past):not(.bp-match-this-week):not(.bp-match-future) .bp-excerpt {
    color: #6b7280 !important;
}

.bp-grid-layout .post-card.bp-football-post:not(.bp-match-today):not(.bp-match-tomorrow):not(.bp-match-weekend):not(.bp-match-past):not(.bp-match-this-week):not(.bp-match-future) .entry-content a,
.bp-grid-layout .post-card.bp-football-post:not(.bp-match-today):not(.bp-match-tomorrow):not(.bp-match-weekend):not(.bp-match-past):not(.bp-match-this-week):not(.bp-match-future) .entry-summary a,
.bp-grid-layout .post-card.bp-football-post:not(.bp-match-today):not(.bp-match-tomorrow):not(.bp-match-weekend):not(.bp-match-past):not(.bp-match-this-week):not(.bp-match-future) .bp-excerpt a,
.bp-grid-layout article.bp-football-post:not(.bp-match-today):not(.bp-match-tomorrow):not(.bp-match-weekend):not(.bp-match-past):not(.bp-match-this-week):not(.bp-match-future) .entry-content a,
.bp-grid-layout article.bp-football-post:not(.bp-match-today):not(.bp-match-tomorrow):not(.bp-match-weekend):not(.bp-match-past):not(.bp-match-this-week):not(.bp-match-future) .entry-summary a,
.bp-grid-layout article.bp-football-post:not(.bp-match-today):not(.bp-match-tomorrow):not(.bp-match-weekend):not(.bp-match-past):not(.bp-match-this-week):not(.bp-match-future) .bp-excerpt a {
    color: #6b7280 !important;
    box-shadow: 0 1px 0 0 #6b7280;
}

.bp-grid-layout .post-card.bp-football-post:not(.bp-match-today):not(.bp-match-tomorrow):not(.bp-match-weekend):not(.bp-match-past):not(.bp-match-this-week):not(.bp-match-future) .entry-content a:hover,
.bp-grid-layout .post-card.bp-football-post:not(.bp-match-today):not(.bp-match-tomorrow):not(.bp-match-weekend):not(.bp-match-past):not(.bp-match-this-week):not(.bp-match-future) .entry-summary a:hover,
.bp-grid-layout .post-card.bp-football-post:not(.bp-match-today):not(.bp-match-tomorrow):not(.bp-match-weekend):not(.bp-match-past):not(.bp-match-this-week):not(.bp-match-future) .bp-excerpt a:hover,
.bp-grid-layout article.bp-football-post:not(.bp-match-today):not(.bp-match-tomorrow):not(.bp-match-weekend):not(.bp-match-past):not(.bp-match-this-week):not(.bp-match-future) .entry-content a:hover,
.bp-grid-layout article.bp-football-post:not(.bp-match-today):not(.bp-match-tomorrow):not(.bp-match-weekend):not(.bp-match-past):not(.bp-match-this-week):not(.bp-match-future) .entry-summary a:hover,
.bp-grid-layout article.bp-football-post:not(.bp-match-today):not(.bp-match-tomorrow):not(.bp-match-weekend):not(.bp-match-past):not(.bp-match-this-week):not(.bp-match-future) .bp-excerpt a:hover {
    color: #9ca3af !important;
}

.site-main .post-card,
.site-main article {
    margin-bottom: 30px;
}

.bp-grid-layout .site-main {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.bp-grid-layout .page-header {
    grid-column: 1 / -1;
    width: 100%;
    margin-bottom: 20px;
    text-align: left;
}

.bp-grid-layout .page-header .page-title {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0;
}

.bp-grid-layout .site-main .post-card,
.bp-grid-layout .site-main article {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
}

.bp-grid-layout .post-card-caption,
.bp-grid-layout article .entry-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.bp-grid-layout .bp-match {
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.bp-grid-layout .bp-excerpt {
    flex-grow: 0;
    flex-shrink: 0;
    min-height: 40px;
}

.bp-grid-layout .entry-summary {
    flex-grow: 0;
    flex-shrink: 0;
    min-height: 196px;
    margin-bottom: 0 !important;
}

.bp-grid-layout .post-card,
.bp-grid-layout article {
    display: flex;
    flex-direction: column;
}

.bp-grid-layout .post-card .post-card-caption,
.bp-grid-layout article .entry-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

@media (max-width: 768px) {
    .bp-grid-layout .site-main {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Header Text Section */
.bp-section-header {
    text-align: center;
    padding: 0;
    background: transparent;
    width: 100%;
    grid-column: 1 / -1;
    /* Span full width in grid */
}

.bp-header-title {
    font-family: sans-serif;
    /* Use theme font */
    font-size: 25px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1e293b;
    letter-spacing: 1.5px;
}

.bp-header-subtitle {
    font-family: sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #000;
    margin: 0;
}

@media (max-width: 768px) {
    .bp-section-header {
        padding: 20px 0 20px;
    }

    .bp-header-title {
        font-size: 20px;
    }

    .bp-header-subtitle {
        font-size: 14px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .bp-grid-layout .site-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1025px) {
    .bp-grid-layout .site-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

.main-navigation a,
.primary-menu a,
.accessory-navigation a,
.secondary-menu a {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 6px;
    vertical-align: middle;
}

@media screen and (min-width: 992px) {

    .main-navigation a,
    .primary-menu a {
        padding: 25px 10px;
    }
}

@media screen and (max-width: 991px) {

    .main-navigation a,
    .primary-menu a {
        padding: 13px 10px;
    }
}

.main-navigation a::before,
.primary-menu a::before,
.accessory-navigation a::before,
.secondary-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
    z-index: 0;
}

.main-navigation a:hover,
.primary-menu a:hover,
.accessory-navigation a:hover,
.secondary-menu a:hover {
    background: #000000;
    color: #ffffff !important;
}

.main-navigation a:hover::before,
.primary-menu a:hover::before,
.accessory-navigation a:hover::before,
.secondary-menu a:hover::before {
    left: 100%;
    background: rgba(255, 255, 255, 0.1);
}

.main-navigation a span,
.primary-menu a span,
.accessory-navigation a span,
.secondary-menu a span {
    position: relative;
    z-index: 1;
}

.main-navigation a[href*="about"],
.primary-menu a[href*="about"] {
    background: transparent;
    color: #000 !important;
    padding: 8px 16px;
    border-radius: 6px;
    margin: 0 5px;
    display: inline-block;
}

@media screen and (min-width: 992px) {

    .main-navigation a[href*="about"],
    .primary-menu a[href*="about"] {
        padding: 8px 16px;
        vertical-align: middle;
    }
}

.navbar-wrapper {
    align-items: center !important;
}

.main-navigation,
.accessory-navigation {
    display: inline-block;
    vertical-align: middle;
}

.main-navigation a[href*="about"]:hover,
.primary-menu a[href*="about"]:hover {
    background: transparent;
    color: #000 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.main-navigation a[href*="about"]::before,
.primary-menu a[href*="about"]::before {
    background: rgba(255, 255, 255, 0.3);
}

.main-navigation a[href*="about"]:hover::before,
.primary-menu a[href*="about"]:hover::before {
    left: 100%;
}

.main-navigation a[href*="category/football"],
.primary-menu a[href*="category/football"],
.main-navigation a[href*="category/casino"],
.primary-menu a[href*="category/casino"],
.main-navigation a[href*="/football"],
.primary-menu a[href*="/football"],
.main-navigation a[href*="/casino"],
.primary-menu a[href*="/casino"] {
    background: transparent;
    color: #000 !important;
    padding: 8px 16px;
    border-radius: 6px;
    margin: 0 5px;
    display: inline-block;
}

@media screen and (min-width: 992px) {

    .main-navigation a[href*="category/football"],
    .primary-menu a[href*="category/football"],
    .main-navigation a[href*="category/casino"],
    .primary-menu a[href*="category/casino"],
    .main-navigation a[href*="/football"],
    .primary-menu a[href*="/football"],
    .main-navigation a[href*="/casino"],
    .primary-menu a[href*="/casino"] {
        padding: 8px 16px;
        vertical-align: middle;
    }
}

.main-navigation a[href*="category/football"]:hover,
.primary-menu a[href*="category/football"]:hover,
.main-navigation a[href*="category/casino"]:hover,
.primary-menu a[href*="category/casino"]:hover,
.main-navigation a[href*="/football"]:hover,
.primary-menu a[href*="/football"]:hover,
.main-navigation a[href*="/casino"]:hover,
.primary-menu a[href*="/casino"]:hover {
    background: transparent;
    color: #000 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.main-navigation a[href*="category/football"]::before,
.primary-menu a[href*="category/football"]::before,
.main-navigation a[href*="category/casino"]::before,
.primary-menu a[href*="category/casino"]::before,
.main-navigation a[href*="/football"]::before,
.primary-menu a[href*="/football"]::before,
.main-navigation a[href*="/casino"]::before,
.primary-menu a[href*="/casino"]::before {
    background: rgba(255, 255, 255, 0.3);
}

.main-navigation a[href*="category/football"]:hover::before,
.primary-menu a[href*="category/football"]:hover::before,
.main-navigation a[href*="category/casino"]:hover::before,
.primary-menu a[href*="category/casino"]:hover::before,
.main-navigation a[href*="/football"]:hover::before,
.primary-menu a[href*="/football"]:hover::before,
.main-navigation a[href*="/casino"]:hover::before,
.primary-menu a[href*="/casino"]:hover::before {
    left: 100%;
}

.bp-timeline-filter-widget {
    margin-bottom: 20px;
    width: 100%;
    grid-column: 1 / -1;
}

.bp-timeline-filter-widget .widget-title {
    display: none;
    /* Hide the title */
}

.bp-timeline-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.bp-timeline-filter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    border-radius: 6px;
    background: transparent;
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.bp-timeline-filter-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #1e293b;
}

.bp-timeline-filter-btn svg {
    margin-right: 6px;
    vertical-align: middle;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

/* Hide emojis/icons for cleaner look */
.bp-timeline-emoji {
    display: none;
}

/* Active state - golden/yellow highlight like reference */
.bp-timeline-filter-btn.active {
    background: #ffee58;
    color: #000000;
    font-weight: 600;
}

.bp-timeline-filter-btn.active:hover {
    background: #e5c100;
    color: #000000;
}

.bp-timeline-filter-btn span,
.bp-timeline-filter-btn svg {
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 768px) {
    .bp-timeline-filter-buttons {
        gap: 6px;
    }

    .bp-timeline-filter-btn {
        padding: 6px 14px;
        font-size: 14px;
    }

    .bp-timeline-filter-btn svg {
        width: 14px;
        height: 14px;
        margin-right: 4px;
    }

    #secondary.sidebar.widget-area {
        padding-left: 15px;
        padding-right: 15px;
        margin-left: 0;
        margin-right: 0;
    }

    .widget {
        margin-left: 0;
        margin-right: 0;
    }
}

@media screen and (max-width: 480px) {
    #secondary.sidebar.widget-area {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.single article,
.page article {
    /* background: rgba(255, 255, 255, 0.6); */
    border-radius: 12px;
    /* padding: 40px; */
    margin-bottom: 30px;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08); */
    position: relative;
    overflow: hidden;
    /* backdrop-filter: blur(8px); */
}

.single article::before,
.page article::before {
    display: none;
}

.single article>*,
.page article>* {
    position: relative;
    z-index: 1;
}

.single .entry-content,
.page .entry-content {
    font-size: inherit !important;
    line-height: 1.7 !important;
    color: #1e293b;
}

.single .entry-content p,
.page .entry-content p {
    margin-bottom: 1.5em;
    text-align: left;
}

.single .entry-content ul,
.single .entry-content ol,
.page .entry-content ul,
.page .entry-content ol {
    margin-left: 2em;
    margin-bottom: 1.5em;
    text-align: left;
}

.single .entry-content li,
.page .entry-content li {
    margin-bottom: 0.5em;
}

.single .entry-content h1,
.single .entry-content h2,
.single .entry-content h3,
.single .entry-content h4,
.single .entry-content h5,
.single .entry-content h6,
.page .entry-content h1,
.page .entry-content h2,
.page .entry-content h3,
.page .entry-content h4,
.page .entry-content h5,
.page .entry-content h6 {
    margin-top: 1.5em;
    margin-bottom: 1em;
    font-weight: 700;
    text-align: left;
    color: #0f172a;
}

.single .entry-title,
.page .entry-title {
    text-align: left !important;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 20px;
    font-size: 32px !important;
    color: #0f172a;
}

.single .entry-content strong,
.page .entry-content strong {
    font-weight: 700;
    color: #0f172a;
}

.single .entry-content a,
.page .entry-content a {
    color: #3b82f6;
    text-decoration: underline;
}

.single .entry-content a:hover,
.page .entry-content a:hover {
    color: #2563eb;
}

/* Timeline Filter Responsive Visibility */
/* Timeline Filter Responsive Visibility */
#bp-timeline-filter-mobile {
    display: block;
    margin-bottom: 25px;
    padding: 10px;
    /* User requested 10px padding */
}

#bp-timeline-filter-desktop {
    display: none;
}

@media (min-width: 992px) {
    #bp-timeline-filter-mobile {
        display: none;
    }

    #bp-timeline-filter-desktop {
        display: block;
    }
}

/* Mobile Scroll Styling */
#bp-timeline-filter-mobile .bp-scroll-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

#bp-timeline-filter-mobile .bp-timeline-filter-buttons {
    display: flex;
    flex-wrap: nowrap;
    /* Force single line */
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE 10+ */
    scroll-behavior: smooth;
    gap: 0;
    /* Remove gap for dividers */
    padding: 0 5px;
    width: 100%;
    align-items: center;
    /* Center items vertically */
}

#bp-timeline-filter-mobile .bp-timeline-filter-buttons::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

#bp-timeline-filter-mobile .bp-timeline-filter-btn {
    flex: 0 0 auto;
    white-space: nowrap;
    margin-right: 0;
    margin-bottom: 0;
    display: inline-block;
    padding: 0 15px;
    border-right: 1px solid #bbc3cf;
    border-radius: 0;
    line-height: 1.2;
    padding: 8px 12px;
    font-size: 16px;
}

#bp-timeline-filter-mobile .bp-timeline-filter-btn:last-child {
    border-right: none;
}

.bp-scroll-arrow {
    background: transparent;
    border: none;
    width: auto;
    height: auto;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: none;
    color: #64748b;
    flex-shrink: 0;
}

.bp-scroll-arrow svg {
    width: 28px;
    height: 28px;
    stroke-width: 2.5;
}

.bp-scroll-arrow:hover {
    background: transparent;
    color: #0f172a;
}

.bp-scroll-left {
    margin-right: 0;
}

.bp-scroll-right {
    margin-left: 0;
}

/* Mobile Styling Adjustments */

@media (max-width: 600px) {
    .site-header {
        margin-bottom: 0px !important;
    }

    .home .site-content .container {
        padding: 20px;
    }
}

/* BP Latest Previews Sidebar Widget */
.bp-sidebar-previews {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.bp-sidebar-preview-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0 !important;
    margin: 0 !important;
    transition: background 0.3s ease;
}

.bp-sidebar-preview-item:last-child {
    border-bottom: none;
}

.bp-sidebar-preview-link {
    display: flex !important;
    align-items: center;
    padding: 12px 0 !important;
    text-decoration: none !important;
    color: #1e293b !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    width: 100%;
}

.bp-sidebar-preview-item:hover {
    background: rgba(0, 0, 0, 0.02);
}

.bp-sidebar-preview-logo {
    flex-shrink: 0;
    width: 22px !important;
    height: 22px !important;
    margin-right: 5px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border-radius: 6px;
    overflow: hidden;
    padding: 4px;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.bp-sidebar-preview-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.bp-sidebar-preview-teams {
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 4px;
    color: #334155;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 15px;
}

.bp-sidebar-preview-teams .bp-team {
    overflow: hidden;
    text-overflow: ellipsis;
}

.bp-sidebar-preview-teams .bp-vs {
    color: #94a3b8;
    font-size: 12px;
    margin: 0 2px;
    flex-shrink: 0;
}

.bp-sidebar-preview-time {
    flex-shrink: 0;
    font-size: 11px !important;
    color: #64748b !important;
    font-weight: 400 !important;
    margin-left: 10px;
    text-align: right;
}

.bp-sidebar-view-all {
    margin-top: 15px;
    text-align: right;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.bp-sidebar-view-all a {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #475569 !important;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.bp-sidebar-view-all a:hover {
    color: #0f172a !important;
}

/* Specific widget title adjustment */
.widget_bp_latest_previews .widget-title {
    font-size: 16px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 10px;
    color: #0f172a;
    letter-spacing: 0.4px;
    font-family: sans-serif;
    font-weight: 900;
}