/*
Theme Name: Tin tức FootBall
Description: Theme chuyên về tin tức bóng đá với Live Score và giao diện tối giản
Version: 1.0
Author: Your Name
Text Domain: tin-tuc-football
*/

/* Reset và Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f0f0f0;
}
a {text-decoration: none; font-weight:600}
a:hover { text-decoration: none;}
b, strong {font-weight:bold}
iframe {
    margin: 10px auto;
}
/* Container chính */
main {
    max-width: 1200px;
    margin: 10px auto;
    padding: 0 10px;
}
.header-chinh .container {margin:0 auto;max-width: 1200px;}
/* Header Styles */
.header-chinh {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo-container {
    flex: 1;
}

.logo-site {
    display: inline-flex;
    align-items: center;
    font-size: 2rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
    transition: transform 0.3s ease;
}

.logo-site:hover {
    transform: scale(1.05);
    color: #ffd700;
}

.site-logo-img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-auth {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 6px 10px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-auth::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-auth:hover::before {
    left: 100%;
}

.btn-login {
    background: rgba(255,255,255,0.1);
    color: white;
    border-color: rgba(255,255,255,0.3);
}

.btn-login:hover {
    background: rgba(255,255,255,0.2);
    color: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-register {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    border-color: #ff6b6b;
}

.btn-register:hover {
    background: linear-gradient(45deg, #ee5a24, #ff6b6b);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(238, 90, 36, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: 1rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Navigation Menu */
.menu-chinh {
    padding: 10px 0;
}

.main-nav {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.main-nav > li {
    position: relative;
}

.main-nav > li > a {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0 0.25rem;
    position: relative;
    overflow: hidden;
}

.main-nav > li > a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #ffd700;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.main-nav > li > a:hover::before,
.main-nav > li.current-menu-item > a::before {
    width: 80%;
}

.main-nav > li > a:hover {
    color: #ffd700;
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.dropdown-icon {
    margin-left: 0.5rem;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: #2a5298;
    border-left-color: #2a5298;
    padding-left: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-top {
        flex-wrap: wrap;
    }
    
    .auth-buttons {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .btn-auth {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .menu-chinh {
        display: none;
        padding: 0;
    }
    
    .menu-chinh.active {
        display: block;
    }
    
    .main-nav {
        flex-direction: column;
        gap: 0;
    }
    
    .main-nav > li > a {
        padding: 1rem;
        margin: 0;
        border-radius: 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255,255,255,0.1);
        margin-left: 1rem;
    }
    
    .dropdown-menu a {
        color: rgba(255,255,255,0.8);
        padding-left: 2rem;
    }
    
    .dropdown-menu a:hover {
        background: rgba(255,255,255,0.1);
        color: #ffd700;
    }
}

@media (max-width: 480px) {
    .logo-site {
        font-size: 1.5rem;
    }
    
    .site-logo-img {
        max-height: 40px;
    }
    
    .auth-buttons {
        gap: 0.5rem;
    }
    
    .btn-auth {
        width: 100%;
        justify-content: center;
    }
}

/* Animation cho header khi scroll */
.header-chinh.scrolled {
    background: rgba(30, 60, 114, 0.95);
    backdrop-filter: blur(10px);
}

.header-chinh.scrolled .header-top {
    padding: 0.5rem 0;
}

.header-chinh.scrolled .logo-site {
    font-size: 1.5rem;
}

.header-chinh.scrolled .site-logo-img {
    max-height: 40px;
}

/* Live Score Section */
.live-score-container {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.live-score-header {
    background: #28a745;
    color: white;
    padding: 10px;
    text-align: center;
    font-weight: bold;
}

.tran-dau-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eee;
    transition: background 0.3s;
}

.tran-dau-item:hover {
    background: #f8f9fa;
}

.doi-bong {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-doi {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.ty-so {
    font-size: 1.2rem;
    font-weight: bold;
    color: #dc3545;
}
p {
    margin: 5px 0;
}
ol, ul {
    box-sizing: border-box;
    list-style-position: inside;
    margin-left: 10px;
}
img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.aligncenter {
    clear: both;
    margin: 5px auto;
}
figure {
    line-height: normal;
    background: #f0f0f0;
    border-radius: 10px;
    width:100% !important;
}
figcaption {
    font-style: italic;
    padding: 5px;
    text-align: center;
}
/* Tin tức Section */
.tin-tuc-container {
    display:flex;
    gap: 20px;
    margin: 20px 0;
}

.tin-chinh {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    padding:10px;
    width:70%;
}
.sidebar {width:30%}

/* Meta Information Styling */
.meta-bai-chi-tiet {
    margin: 5px 0;
    display:flex;
    gap: 10px;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.meta-bai-chi-tiet span {
    background: #264a8b;
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 5px 10px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.meta-bai-chi-tiet span:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* Icons for meta information */
.meta-bai-chi-tiet span:nth-child(1)::before {
    content: "📅";
    font-size: 15px;
}

.meta-bai-chi-tiet span:nth-child(2)::before {
    content: "✍️";
    font-size: 15px;
}

.meta-bai-chi-tiet span:nth-child(3)::before {
    content: "📂";
    font-size: 15px;
}

/* Category links styling */
.meta-bai-chi-tiet span:nth-child(3) a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.meta-bai-chi-tiet span:nth-child(3) a:hover {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

/* Alternative gradient styles */
.meta-bai-chi-tiet.style-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 4px 20px rgba(240, 147, 251, 0.15);
}

.meta-bai-chi-tiet.style-2:hover {
    box-shadow: 0 8px 30px rgba(240, 147, 251, 0.25);
}

.meta-bai-chi-tiet.style-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 4px 20px rgba(79, 172, 254, 0.15);
}

.meta-bai-chi-tiet.style-3:hover {
    box-shadow: 0 8px 30px rgba(79, 172, 254, 0.25);
}

/* Responsive Design */
@media (max-width: 768px) {
    .tin-chinh, .sidebar {width:100%}
    .meta-bai-chi-tiet {
        gap: 5px;
        text-align: center;
    }
    
    .meta-bai-chi-tiet span {
        font-size: 13px;
        padding: 3px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .meta-bai-chi-tiet span {
        justify-content: center;
    }
}

/* Animation for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.meta-bai-chi-tiet {
    animation: fadeInUp 0.6s ease-out;
}

.meta-bai-chi-tiet span {
    animation: fadeInUp 0.6s ease-out;
    animation-delay: 0.1s;
    animation-fill-mode: both;
}

.meta-bai-chi-tiet span:nth-child(2) {
    animation-delay: 0.2s;
}

.meta-bai-chi-tiet span:nth-child(3) {
    animation-delay: 0.3s;
}
/* Tags Section Styling */
.tags-bai {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 15px;
    margin: 1rem 0;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.tags-bai:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.post-tags-heading {
    margin-bottom: 10px;
    font-weight: 600;
    color: #2c3e50;
    position: relative;
    padding-left: 2rem;
}

.post-tags-heading::before {
    content: "🏷️";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
}

.post-tags-heading span {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.post-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.post-tags-list a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.post-tags-list a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.post-tags-list a:hover::before {
    left: 100%;
}

.post-tags-list a:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.post-tags-list a:active {
    transform: translateY(0) scale(0.98);
}

/* Alternative tag styles */
.post-tags-list a:nth-child(2n) {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 2px 8px rgba(240, 147, 251, 0.3);
}

.post-tags-list a:nth-child(2n):hover {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
    box-shadow: 0 6px 20px rgba(240, 147, 251, 0.4);
}

.post-tags-list a:nth-child(3n) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 2px 8px rgba(79, 172, 254, 0.3);
}

.post-tags-list a:nth-child(3n):hover {
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    box-shadow: 0 6px 20px rgba(79, 172, 254, 0.4);
}

.post-tags-list a:nth-child(4n) {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    box-shadow: 0 2px 8px rgba(67, 233, 123, 0.3);
}

.post-tags-list a:nth-child(4n):hover {
    background: linear-gradient(135deg, #38f9d7 0%, #43e97b 100%);
    box-shadow: 0 6px 20px rgba(67, 233, 123, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .tags-bai {
        padding: 10px;
        margin: 1.5rem 0;
    }
    
    .post-tags-heading {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .post-tags-list {
        gap: 0.5rem;
    }
    
    .post-tags-list a {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .tags-bai {
        padding: 0.75rem;
    }
    
    .post-tags-list {
        justify-content: center;
    }
    
    .post-tags-list a {
        padding: 0.35rem 0.7rem;
        font-size: 0.8rem;
    }
}

.chuyenmuc-header, .tags-header, .tinmoi-header {
    background: #274c8d;
    color: white;
    padding: 10px;
    font-weight: bold;
}

.chuyenmuc-list, .tags-list, .tinmoi-list {
    padding: 10px 0;
}

/* Footer */
.footer-chinh {
    background: #284578;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}
.widget-container {
    max-width: 1200px;
    margin: 0 auto;
}
.footer-widgets {
    border-bottom: 1px solid #e1e1e1;
    margin-bottom: 20px;
}
.footer-chinh a {
    color: gold;
}
/* Responsive */
@media (max-width: 768px) {
    .tin-tuc-container {
            flex-direction: column;
    }
    
    .tran-dau-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/* Hiệu ứng loading */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Enhanced Article Item Styling */
.bai-viet-item {
    background: white;
    padding:10px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2rem;
    position: relative;
    border: 1px solid #f0f0f0;
}

.bai-viet-item:hover {
    border: 2px solid #295094;
}

.bai-viet-wrapper {
    display: flex;
    min-height: 200px;
    position: relative;
    gap:10px;
}

/* Thumbnail Section */
.bai-viet-thumbnail {
    flex: 0 0 300px;
    position: relative;
    overflow: hidden;
}

.thumbnail-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.bai-viet-image {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform 0.6s ease;
}

.thumbnail-link:hover .bai-viet-image {
    transform: scale(1.1);
}

/* Default thumbnail for posts without images */
.default-thumbnail {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.default-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.default-text {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Category Badge */
.category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
}

.category-name {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(255, 107, 107, 0.3);
}

/* Content Section */
.bai-viet-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tieu-de-bai {
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.tieu-de-bai a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tieu-de-bai a:hover {
    color: #667eea;
}

.tom-tat-bai {
    color: #666;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Meta Information */
.meta-bai {
    display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid #eee;
}

.meta-bai span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
}

.meta-icon {
    font-size: 1rem;
}

/* Action Buttons */
.bai-viet-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.read-more-btn {
    background: #274d90;
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.read-more-btn:hover .arrow-icon {
    transform: translateX(3px);
}

.reading-time {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: #999;
    font-weight: 500;
}

.time-icon {
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .bai-viet-wrapper {
        flex-direction: column;
        min-height: auto;
    }
    
    .bai-viet-thumbnail {
        flex: none;
        height: 200px;
    }
    
    .bai-viet-content {
    }
    
    .tieu-de-bai {
        font-size: 1.2rem;
    }
    
    .meta-bai {
        gap: 0.5rem;
    }
    
    .bai-viet-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .read-more-btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .bai-viet-item {
        margin-bottom: 1.5rem;
    }
    
    .bai-viet-thumbnail {
        height: 180px;
    }
    
    .category-badge {
        top: 0.5rem;
        left: 0.5rem;
    }
    
    .category-name {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
}

/* Pagination Styles */
.pagination-wrapper {
    margin: 20px 0;
    padding: 0;
}

.pagination-container {
    background: white;
    border-radius: 10px;
    padding: 15px;
    border: 1px solid #e9ecef;
}

.pagination-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.pagination-btn,
.pagination-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 12px;
    border: 2px solid #dee2e6;
    border-radius: 10px;
    background: white;
    color: #495057;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pagination-btn::before,
.pagination-number::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.pagination-btn:hover::before,
.pagination-number:hover::before {
    left: 100%;
}

.pagination-btn:hover,
.pagination-number:hover {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border-color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.pagination-number.current {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border-color: #005fc4;
    box-shadow: 0 4px 12px rgb(40 44 167 / 30%);
    transform: scale(1.1);
}

.pagination-btn.disabled {
    background: #f8f9fa;
    color: #adb5bd;
    border-color: #e9ecef;
    cursor: not-allowed;
    opacity: 0.6;
}

.pagination-btn.disabled:hover {
    background: #f8f9fa;
    color: #adb5bd;
    transform: none;
    box-shadow: none;
}

.pagination-btn .btn-text {
    margin: 0 5px;
}

.arrow-icon {
    font-size: 16px;
    font-weight: bold;
}

.pagination-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    color: #6c757d;
    font-weight: bold;
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 768px) {
    
    .pagination-info {
        gap: 10px;
    }
    
    .pagination-links {
        gap: 5px;
    }
    
    .pagination-btn,
    .pagination-number {
        min-width: 40px;
        height: 40px;
        font-size: 13px;
    }
    
    .pagination-btn .btn-text {
        display: none;
    }

}

@media (max-width: 480px) {
    .pagination-links {
        gap: 3px;
    }
    
    .pagination-btn,
    .pagination-number {
        min-width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .pagination-dots {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

/* Animation cho loading */
.pagination-container {
    animation: fadeInUp 0.6s ease-out;
}

/* Widget Styles */
.widget {
    background: white;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.widget:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.widget:last-child {
    margin-bottom: 0;
}

.widget-title {
    color: #2c3e50;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 3px solid #3498db;
    position: relative;
}
.sidebar-widgets li {
    list-style: none;
    margin: 10px 0;
}
.widget-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 30px;
    height: 3px;
    background: #e74c3c;
}
.league-list a {
    color: #333;
    margin: 10px 0;
}
.league-list {
    display: grid;
}
.league-item {
    display: flex;
    align-items: center;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.league-item img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    object-fit: contain;
}
.league-item span {
    color: #2c3e50;
    font-weight: 500;
}
/* Tag cloud */
.tagcloud {
    line-height: 1.8;
}

.tagcloud .tag-cloud-link {
    display: inline-block;
    background: #e9ecef;
    color: #495057;
    padding: 4px 8px;
    margin: 2px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 12px !important;
    transition: all 0.3s ease;
}

.tagcloud a:hover {
    background: #007bff;
    color: white;
    transform: translateY(-1px);
}
.widget_categories > ul > li a:before {
    content: "\f07c";
}
.widget > ul li:before, .widget > ul li a:before, .widget > div > ul li a:before, .widget_calendar caption:before {
    background: #e2e7ef00;
    color: #284578;
    padding: 0 6px;
    border-radius: 20px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 14px;
    margin-right: 6px;
    display: inline-block !important;
    width: 1em;
    text-align: center;
}
/* Footer widgets */
.footer-widget {
    margin-bottom: 30px;
}

.footer-widget-title {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(255,255,255,0.2);
}

/* Responsive */
@media (max-width: 768px) {
    
    .widget {
        padding: 15px;
        margin-bottom: 20px;
    }
    
}
/* Breadcrumb Navigation Styles */
.rank-math-breadcrumb {
    background: white;
    border-radius: 12px;
    padding: 5px 10px;
    max-width: 1200px;
    margin: 10px auto;
}

.rank-math-breadcrumb:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.rank-math-breadcrumb p {
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 14px;
    line-height: 1.5;
}

.rank-math-breadcrumb a {
    color: #244886;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 4px 8px;
    border-radius: 6px;
    position: relative;
}

.rank-math-breadcrumb a:hover {
    background: linear-gradient(135deg, #007cba, #005a87);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,124,186,0.3);
}

.rank-math-breadcrumb .separator {
    color: #6c757d;
    margin: 0 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.rank-math-breadcrumb .last {
    color: #2c3e50;
    font-weight: 600;
    background: #f8f9fa;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid #e9ecef;
}

/* Responsive Design for Breadcrumb */
@media (max-width: 768px) {
    .rank-math-breadcrumb {
        padding: 10px;
        margin: 10px;
    }
    
    .rank-math-breadcrumb p {
        font-size: 13px;
    }
    
    .rank-math-breadcrumb .separator {
        margin: 0 6px;
    }
    
    .rank-math-breadcrumb .last {
        padding: 3px 10px;
        font-size: 13px;
    }
}
.chuyenmuc-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

.chuyenmuc-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #e3f2fd;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #007cba;
    transition: all 0.3s ease;
}

.chuyenmuc-meta span:hover {
    background: #007cba;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,124,186,0.3);
}

.chuyenmuc-meta i {
    font-size: 12px;
}

.no-posts {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
}

.no-posts i {
    font-size: 3em;
    color: #dee2e6;
    margin-bottom: 20px;
    display: block;
}

.no-posts p {
    font-size: 18px;
    margin: 0;
}
.chuyenmuc-description {
    color: #ddd;
    font-weight:500;
}
/* Responsive Design */
@media (max-width: 768px) {
    
    .chuyenmuc-title h1 {
        font-size: 24px;
    }
    .chuyenmuc-description {
        font-size: 14px;
    }
    .chuyenmuc-meta {
        align-items: stretch;
        gap: 10px;
    }
    
    .chuyenmuc-meta span {
        justify-content: center;
    }
    
}

@media (max-width: 480px) {
    .chuyenmuc-title h1 {
        font-size: 20px;
    }
        
    .chuyenmuc-meta span {
        font-size: 13px;
        padding: 6px 12px;
    }
}

/* Animation for category items */
@keyframes categoryFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chuyenmuc-header {
    animation: categoryFadeIn 0.6s ease;
}

.chuyenmuc-list {
    animation: categoryFadeIn 0.8s ease;
}
/* Layout List Style cho bài viết */
.bai-viet-item.list-style {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    overflow: hidden;
}

.bai-viet-item.list-style:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-color: #007bff;
}

.list-item-wrapper {
    gap: 10px;
    align-items: center;
}
.thumbnailcontent {
    display: flex;
    gap: 10px;
    align-items: stretch;
}
/* Thumbnail nhỏ */
.list-thumbnail {
    position: relative;
}

.list-image {
    width: 120px;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.thumb-link:hover .list-image {
    transform: scale(1.05);
}

.default-thumb {
    width: 80px;
    height: 60px;
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Nội dung chính */
.list-content {
    flex: 1;
    min-width: 0; /* Để text truncation hoạt động */
}

.list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.category-tag {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: #f8f9fa;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #495057;
}

.post-time {
    font-size: 0.75rem;
    color: #6c757d;
    font-weight: 500;
}

.list-title {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.list-title a {
    color: #2c3e50;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.list-title a:hover {
    color: #007bff;
}

.list-excerpt {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.list-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: #6c757d;
}

.list-meta span {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.list-meta i {
    font-size: 0.8rem;
}

/* Nút đọc tiếp */
.list-action {
    display: flex;
    align-items: center;
}

.read-more-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 50px;
}

.read-more-link:hover {
    background: #0056b3;
    transform: scale(1.05);
}

.arrow-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.read-more-link:hover .arrow-icon {
    transform: translateX(2px);
}

/* Màu sắc theo chuyên mục */
.category-tin-nong-24h .category-tag {
    background: linear-gradient(135deg, #ff4757 0%, #ff3838 100%);
    color: white;
}

.category-tin-nong-24h .read-more-link {
    background: #ff4757;
}

.category-tin-nong-24h .read-more-link:hover {
    background: #ff3838;
}

.category-chuyen-nhuong .category-tag {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.category-chuyen-nhuong .read-more-link {
    background: #28a745;
}

.category-chuyen-nhuong .read-more-link:hover {
    background: #218838;
}

.category-hau-truong .category-tag {
    background: linear-gradient(135deg, #6f42c1 0%, #5a2d91 100%);
    color: white;
}

.category-hau-truong .read-more-link {
    background: #6f42c1;
}

.category-hau-truong .read-more-link:hover {
    background: #5a2d91;
}

.category-nhan-dinh-bong-da .category-tag {
    background: linear-gradient(135deg, #fd7e14 0%, #e55a00 100%);
    color: white;
}

.category-nhan-dinh-bong-da .read-more-link {
    background: #fd7e14;
}

.category-nhan-dinh-bong-da .read-more-link:hover {
    background: #e55a00;
}

.category-video-highlights .category-tag {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
}

.category-video-highlights .read-more-link {
    background: #dc3545;
}

.category-video-highlights .read-more-link:hover {
    background: #c82333;
}

/* Responsive Design */
@media (max-width: 768px) {
    
    .list-image,
    .default-thumb {
        width: 80px;
    }
    
    .list-title {
        font-size: 0.9rem;
    }
    
    .list-excerpt {
        font-size: 0.8rem;
        -webkit-line-clamp: 1;
    }
    
    .list-meta {
        gap: 0.5rem;
        font-size: 0.7rem;
    }
    
    .category-tag {
        font-size: 0.7rem;
        padding: 0.15rem 0.4rem;
    }
    
    .post-time {
        font-size: 0.7rem;
    }
    
    .read-more-link {
        min-width: 40px;
        padding: 0.4rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .list-item-wrapper {
    }
    
    .list-header {
        gap: 0.25rem;
    }
    
    .list-meta {
        display: none; /* Ẩn meta trên mobile nhỏ */
    }
    
    .read-more-link {
        min-width: 30px;
        padding: 0.3rem;
    }
    
    .read-text {
        display: none; /* Chỉ hiển thị icon trên mobile nhỏ */
    }
}

/* Animation cho list items */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bai-viet-item.list-style {
    animation: slideInUp 0.4s ease-out;
}

/* Hover effect cho toàn bộ item */
.bai-viet-item.list-style:hover .list-title a {
    color: #007bff;
}

.bai-viet-item.list-style:hover .category-tag {
    transform: scale(1.05);
}

/* Loading skeleton effect */
.list-item-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}
/* CSS cho widget tìm kiếm */
.search-form {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    padding: 5px;
    transition: all 0.3s ease;
    max-width: 400px;
    margin: 0 auto;
}

.search-form:hover {
    border-color: #007cba;
    box-shadow: 0 4px 15px rgba(0, 124, 186, 0.2);
}

.search-form:focus-within {
    border-color: #007cba;
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}

.search-form label {
    flex: 1;
    margin: 0;
    position: relative;
}

.screen-reader-text {
    position: absolute !important;
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0 !important;
    border: 0 !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden;
}

.search-field {
    width: 100%;
    border: none;
    outline: none;
    padding: 12px 16px;
    font-size: 16px;
    background: transparent;
    color: #333;
    border-radius: 20px;
}

.search-field::placeholder {
    color: #999;
    font-style: italic;
}

.search-field:focus {
    outline: none;
}

.search-submit {
    background: linear-gradient(135deg, #007cba, #005a87);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 80px;
}

.search-submit:hover {
    background: linear-gradient(135deg, #005a87, #004066);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 124, 186, 0.3);
}

.search-submit:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 124, 186, 0.2);
}

/* Phiên bản với icon tìm kiếm */
.search-form.with-icon {
    position: relative;
}

.search-form.with-icon .search-field {
    padding-left: 45px;
}

.search-form.with-icon::before {
    content: "🔍";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #999;
    z-index: 1;
}

/* Responsive design */
@media (max-width: 768px) {
    .search-form {
        max-width: 100%;
        margin: 10px 0;
    }
    
    .search-field {
        font-size: 16px; /* Ngăn zoom trên iOS */
        padding: 10px 14px;
    }
    
    .search-submit {
        padding: 10px 16px;
        font-size: 13px;
        min-width: 70px;
    }
}

@media (max-width: 480px) {
    .search-form {
        flex-direction: column;
        border-radius: 15px;
        padding: 10px;
    }
    
    .search-form label {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .search-field {
        border: 1px solid #e0e0e0;
        border-radius: 10px;
        padding: 12px;
    }
    
    .search-submit {
        width: 100%;
        border-radius: 10px;
        padding: 12px;
    }
}

/* Hiệu ứng loading khi submit */
.search-form.loading .search-submit {
    position: relative;
    color: transparent;
}

.search-form.loading .search-submit::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Variant màu sắc khác */
.search-form.dark {
    background: #2c3e50;
    border-color: #34495e;
}

.search-form.dark .search-field {
    color: #ecf0f1;
}

.search-form.dark .search-field::placeholder {
    color: #95a5a6;
}

.search-form.dark:hover {
    border-color: #3498db;
}

.search-form.minimal {
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: none;
}

.search-form.minimal:hover {
    border-color: #007cba;
}
/* Search Results Styling */

.search-results-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.search-result-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.search-result-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.search-result-item h2 {
    margin-bottom: 15px;
}

.search-result-item h2 a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.search-result-item h2 a:hover {
    color: #3498db;
}

.search-result-item .excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.search-result-item .meta {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: #888;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 10px;
}

.no-results h2 {
    color: #e74c3c;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .search-result-item .meta {
        flex-direction: column;
        gap: 10px;
    }
}
/* Professional Blockquote Styling for WordPress */
blockquote {
    position: relative;
    margin: 2rem 0;
    padding: 2rem 2.5rem 2rem 4.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    border: none;
    border-left: 6px solid #667eea;
    border-radius: 15px;
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #2c3e50;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(102, 126, 234, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* Quote Icon */
blockquote::before {
    content: "\201C";
    position: absolute;
    top: 1rem;
    left: 1.2rem;
    font-size: 4.5rem;
    color: #667eea;
    opacity: 0.15;
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1;
    font-weight: bold;
}

/* Decorative gradient overlay */
blockquote::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(102, 126, 234, 0.03) 50%, 
        rgba(102, 126, 234, 0.08) 100%);
    pointer-events: none;
}

/* Hover Effects */
blockquote:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.12),
        0 4px 16px rgba(102, 126, 234, 0.15);
    border-left-color: #764ba2;
}

blockquote:hover::before {
    opacity: 0.25;
    transform: scale(1.05);
}

/* Paragraph styling inside blockquote */
blockquote p {
    margin: 0 0 1rem 0;
    position: relative;
    z-index: 2;
    font-weight: 500;
    text-align: justify;
}

blockquote p:last-child {
    margin-bottom: 0;
}

/* Citation/Footer styling */
blockquote cite,
blockquote footer {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-size: 0.95rem;
    color: #6c757d;
    text-align: right;
    position: relative;
    font-weight: 600;
}

blockquote cite::before,
blockquote footer::before {
    content: "— ";
    color: #667eea;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Alternative Styles */

/* Modern Glass Effect */
blockquote.glass-effect {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
}

/* Elegant Dark Theme */
blockquote.dark-theme {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ecf0f1;
    border-left-color: #3498db;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

blockquote.dark-theme::before {
    color: #3498db;
    opacity: 0.2;
}

blockquote.dark-theme cite,
blockquote.dark-theme footer {
    color: #bdc3c7;
}

/* Colorful Accent */
blockquote.colorful {
    border-left: 6px solid #e74c3c;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 50%, #fef5e7 100%);
}

blockquote.colorful::before {
    color: #e74c3c;
}

blockquote.colorful:hover {
    border-left-color: #c0392b;
}

/* Minimal Clean Style */
blockquote.minimal {
    background: transparent;
    border: 2px solid #e9ecef;
    border-left: 6px solid #667eea;
    box-shadow: none;
    padding: 1.5rem 2rem;
}

blockquote.minimal:hover {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.02);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    blockquote {
        margin: 1.5rem 0;
        padding: 1.5rem 1.5rem 1.5rem 3.5rem;
        font-size: 1.05rem;
        border-radius: 12px;
    }
    
    blockquote::before {
        font-size: 3.5rem;
        left: 0.8rem;
        top: 0.8rem;
    }
}

@media (max-width: 480px) {
    blockquote {
        padding: 1.2rem 1rem 1.2rem 3rem;
        margin: 1rem 0;
        font-size: 1rem;
    }
    
    blockquote::before {
        font-size: 3rem;
        left: 0.5rem;
        top: 0.5rem;
    }
    
    blockquote::after {
        width: 80px;
    }
}

/* Animation */
@keyframes fadeInQuote {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

blockquote {
    animation: fadeInQuote 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Special styling for WordPress editor */
.wp-block-quote {
    border-left: 6px solid #667eea !important;
    padding-left: 2rem !important;
}

.wp-block-quote.is-style-large {
    font-size: 1.3rem;
    padding: 2.5rem 3rem 2.5rem 5rem;
}
/* Professional Table Styling for Match Events */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

/* Table Body Styling */
table tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid #e9ecef;
}

table tbody tr:not(:first-child):hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transform: scale(1.01);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

table tbody tr:not(:first-child):nth-child(even) {
    background: #f8f9fa;
}

table tbody tr:not(:first-child):nth-child(even):hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}

/* Table Cell Styling */
table td {
    padding: 8px;
    border: 1px solid #f0f0f0;
    vertical-align: top;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #2c3e50;
}

/* Strong and Bold Text in Table */
table strong,
table b {
    font-weight: 700;
    color: #2c3e50;
}

table tbody tr:first-child strong,
table tbody tr:first-child b {
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    table {
        font-size: 0.85rem;
        margin: 1.5rem 0;
    }
    
    table th,
    table td {
        padding: 0.8rem 1rem;
    }
    
    table td:first-child {
        text-align: left;
        padding-left: 2.5rem;
    }
    
    table td:first-child::before {
        left: 8px;
    }
}

@media (max-width: 480px) {
    table {
        font-size: 0.8rem;
        border-radius: 8px;
    }

    
    table td:first-child {
        padding-left: 2rem;
    }
    
    /* Stack table on very small screens */
    table, 
    table tbody, 
    table tr, 
    table td {
        display: block;
        width: 100%;
    }
    
    table tr {
        border: 1px solid #dee2e6;
        border-radius: 8px;
        margin-bottom: 1rem;
        padding: 1rem;
        background: white;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    table td {
        border: none;
        padding: 0.5rem 0;
        text-align: left;
        position: relative;
        padding-left: 40%;
    }
    
    table td::before {
        content: attr(data-label) ': ';
        position: absolute;
        left: 0;
        width: 35%;
        font-weight: 700;
        color: #667eea;
        text-transform: uppercase;
        font-size: 0.75rem;
    }
    
}