/*
Theme Name: Game Download Theme
Author: xiao_xin
Description: A modern enterprise-style game download theme.
Version: 2.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: game, download, enterprise, modern
*/

/* ===== CSS RESET & BASE STYLES ===== */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8fafc;
    color: #334155;
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* ===== UTILITY CLASSES ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== TOP INFO BAR ===== */
.top-info-bar {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #e2e8f0;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid #475569;
}

.top-info-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info-left span {
    margin-right: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.top-info-left i {
    color: #60a5fa;
    font-size: 12px;
}

.top-info-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-switcher span {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.language-switcher:hover span {
    color: #60a5fa;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    color: #e2e8f0;
    text-decoration: none;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    transform: translateY(-2px);
}

.top-info-bar .social-links a[href*="facebook"]:hover {
    background: #1877f2;
    color: white;
}

.top-info-bar .social-links a[href*="youtube"]:hover {
    background: #ff0000;
    color: white;
}

.top-info-bar .social-links a[href*="tiktok"]:hover {
    background: #000000;
    color: white;
}

/* ===== MAIN HEADER ===== */
.site-header {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e2e8f0;
}

.header-container {
    padding: 16px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* ===== LOGO & BRANDING ===== */
.site-branding {
    flex-shrink: 0;
}

.custom-logo-link {
    text-decoration: none;
    color: inherit;
}

.logo-text .site-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    color: #1e293b;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text .site-tagline {
    font-size: 12px;
    margin: 0;
    color: #64748b;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ===== DESKTOP NAVIGATION ===== */
.desktop-nav {
    display: flex;
}

.desktop-nav .nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 8px;
}

.desktop-nav .nav-menu li {
    position: relative;
}

.desktop-nav .nav-menu li a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: #475569;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.desktop-nav .nav-menu li a:hover,
.desktop-nav .nav-menu li.current-menu-item a {
    color: #3b82f6;
    background: #eff6ff;
}

.desktop-nav .nav-menu li.current-menu-item a::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 3px;
    background: #3b82f6;
    border-radius: 2px;
}

/* ===== HEADER ACTIONS ===== */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-toggle,
.mobile-menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: #475569;
}

.search-toggle:hover {
    background: #f1f5f9;
    color: #3b82f6;
}

.user-account .user-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.user-account .user-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

/* ===== MOBILE MENU BUTTON ===== */
.mobile-menu-toggle {
    display: none;
    background: #f1f5f9;
    border: 2px solid #e2e8f0;
    padding: 8px;
    border-radius: 8px;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 3px;
    width: 20px;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background: #475569;
    border-radius: 1px;
    transition: all 0.3s ease;
}

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

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

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

/* ===== SEARCH OVERLAY ===== */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.search-overlay.active {
    display: flex;
}

.search-overlay-content {
    width: 100%;
    max-width: 600px;
    padding: 40px 20px;
}

.search-input-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.search-field-overlay {
    width: 100%;
    padding: 20px 60px 20px 24px;
    font-size: 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.search-field-overlay:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.search-submit-overlay {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: #3b82f6;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
}

.search-overlay-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ===== MOBILE NAVIGATION ===== */
.mobile-navigation {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    background: white;
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    will-change: transform;
}

.mobile-navigation.active {
    transform: translateX(0);
}

.mobile-nav-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-nav-header {
    padding: 20px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-logo h2 {
    margin: 0;
    font-size: 20px;
    color: #1e293b;
}

.mobile-nav-close {
    background: #f1f5f9;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-menu {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.mobile-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu li {
    margin-bottom: 8px;
}

.mobile-menu li a {
    display: block;
    padding: 16px 20px;
    text-decoration: none;
    color: #475569;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mobile-menu li a:hover,
.mobile-menu li.current-menu-item a {
    background: #eff6ff;
    color: #3b82f6;
}

.mobile-nav-footer {
    padding: 20px;
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
}

.mobile-contact p {
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #64748b;
}

/* ===== MAIN CONTENT STYLES ===== */
.site-content {
    padding: 40px 0;
    min-height: 60vh;
}

.announcement-bar {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border: 1px solid #93c5fd;
    padding: 16px 24px;
    margin-bottom: 32px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.announcement-title {
    font-weight: 600;
    color: #1e40af;
    display: flex;
    align-items: center;
    gap: 8px;
}

.announcement-title::before {
    content: "📢";
    font-size: 16px;
}

.announcement-bar a {
    color: #1e40af;
    text-decoration: none;
    margin-right: 20px;
    transition: color 0.3s ease;
}

.announcement-bar a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.announcement-bar .view-all {
    margin-left: auto;
    background: #3b82f6;
    color: white !important;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
}

/* ===== GAME SECTIONS ===== */
.game-sections-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.game-section {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.game-section:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 20px;
    color: #1e293b;
    padding-bottom: 12px;
    border-bottom: 3px solid #3b82f6;
    display: inline-block;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #60a5fa;
    border-radius: 2px;
}

.game-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

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

.game-item:hover {
    background: #f8fafc;
    margin: 0 -16px;
    padding: 16px;
    border-radius: 8px;
}

.game-item img {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.game-info .game-title {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 500;
}

.game-info .game-title a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.game-info .game-title a:hover {
    color: #3b82f6;
}

.game-meta,
.game-description {
    font-size: 13px;
    color: #64748b;
    margin: 4px 0;
    line-height: 1.4;
}

/* ===== FEATURED SECTION ===== */
.featured-section {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    margin-bottom: 40px;
}

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

.game-card {
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #e2e8f0;
}

.game-card img {
    width: 100px;
    height: 100px;
    border-radius: 16px;
    margin-bottom: 16px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.game-card .game-title {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 8px;
}

.game-card .game-title a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.game-card .game-title a:hover {
    color: #3b82f6;
}

/* ===== LATEST ARTICLES ===== */
.latest-articles-section {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.article-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

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

.article-item:hover {
    background: #f8fafc;
    margin: 0 -20px;
    padding: 20px;
    border-radius: 8px;
}

.article-thumbnail img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.article-info .article-title {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 500;
}

.article-info .article-title a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-info .article-title a:hover {
    color: #3b82f6;
}

.article-meta {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 8px;
}

.article-excerpt {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .header-content {
        gap: 20px;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
}

/* Prevent horizontal overflow on mobile */
@media (max-width: 768px) {
    * {
        max-width: 100%;
    }
    
    .container {
        padding: 0 16px;
        overflow-x: hidden;
    }
    
    img, video, iframe {
        max-width: 100% !important;
        height: auto !important;
    }
    
    table {
        width: 100% !important;
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .top-info-bar {
        display: none;
    }
    
    .header-container {
        padding: 12px 0;
    }
    
    .logo-text .site-title {
        font-size: 24px;
    }
    
    .game-sections-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .game-section,
    .featured-section,
    .latest-articles-section {
        padding: 20px;
    }
    
    .featured-game-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .user-account .user-btn span {
        display: none;
    }
}

@media (max-width: 480px) {
    .featured-game-grid {
        grid-template-columns: 1fr;
    }
    
    .announcement-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .announcement-bar .view-all {
        margin-left: 0;
        align-self: flex-end;
    }
    
    .article-item,
    .game-item {
        flex-direction: column;
        gap: 12px;
    }
    
    .article-item img,
    .game-item img {
        align-self: flex-start;
    }
}

/* ===== LOADING & ANIMATION UTILITIES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Mobile navigation overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Focus styles for accessibility */
button:focus,
a:focus,
input:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* ===== SIDEBAR & WIDGETS (for other pages) ===== */
.single-page-wrapper,
.archive-page-wrapper {
    display: flex;
    gap: 40px;
    margin-top: 20px;
}

.content-area-single,
.content-area-archive {
    flex: 1;
    min-width: 0;
}

.widget-area {
    flex: 0 0 280px;
}

.widget {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    margin-bottom: 24px;
}

.widget-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 16px;
    color: #1e293b;
    padding-bottom: 8px;
    border-bottom: 2px solid #3b82f6;
}

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

.widget ul li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

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

.widget ul li a {
    color: #475569;
    text-decoration: none;
    transition: color 0.3s ease;
}

.widget ul li a:hover {
    color: #3b82f6;
}

/* Sidebar Game Meta */
.widget-game-meta,
.widget-post-meta {
    margin-top: 4px;
    font-size: 12px;
    color: #94a3b8;
}

.widget-game-meta .game-size,
.widget-post-meta .post-date {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.widget-game-meta i,
.widget-post-meta i {
    color: #60a5fa;
    font-size: 10px;
}

.widget-game-rating {
    margin-top: 4px;
}

.rating-stars {
    display: inline-flex;
    gap: 2px;
}

.rating-stars i {
    color: #fbbf24;
    font-size: 12px;
}

.rating-stars .far {
    color: #d1d5db;
}

/* Sidebar responsive improvements */
@media (max-width: 768px) {
    .widget {
        margin-bottom: 20px;
    }
    
    .widget-game-meta,
    .widget-post-meta {
        font-size: 11px;
    }
}

/* Mobile responsive for sidebar */
@media (max-width: 768px) {
    .single-page-wrapper,
    .archive-page-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .widget-area {
        flex-basis: auto;
    }
}

/* ===== SINGLE GAME PAGE STYLES ===== */
.game-single-article {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    margin-bottom: 32px;
}

.game-single-article .entry-title {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 32px;
    padding-bottom: 16px;
    border-bottom: 3px solid #3b82f6;
    position: relative;
}

.game-single-article .entry-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #60a5fa;
    border-radius: 2px;
}

.game-single-content {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
}

.game-single-thumbnail {
    flex: 0 0 280px;
}

.game-single-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.game-single-details {
    flex: 1;
}

.game-single-details p {
    margin: 0 0 16px;
    line-height: 1.6;
    font-size: 16px;
    color: #475569;
}

.game-single-details strong {
    color: #1e293b;
    font-weight: 600;
}

.download-button-container {
    margin-top: 24px;
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.3);
}

.download-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.4);
    color: white;
}

.download-button::before {
    content: '⬇';
    font-size: 20px;
}

.download-button.disabled {
    background: #94a3b8;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.download-button.disabled:hover {
    background: #94a3b8;
    transform: none;
    box-shadow: none;
    color: white;
}

.download-button.disabled::before {
    content: '⚠';
}

.download-info {
    margin-top: 16px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
}

.download-notice {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 8px;
    font-size: 14px;
    color: #475569;
}

.download-notice.error {
    color: #dc2626;
    border-left-color: #dc2626;
}

.download-notice i {
    color: #3b82f6;
    font-size: 14px;
}

.download-notice.error i {
    color: #dc2626;
}

.download-security {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 13px;
    color: #059669;
}

.download-security i {
    color: #059669;
    font-size: 13px;
}

.contact-admin {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0 0;
    font-size: 13px;
    color: #64748b;
}

.contact-admin i {
    color: #3b82f6;
    font-size: 12px;
}

.contact-admin a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.contact-admin a:hover {
    text-decoration: underline;
}

.download-unavailable .download-info {
    border-left-color: #dc2626;
    background: #fef2f2;
}

.no-content-notice {
    padding: 24px;
    background: #f1f5f9;
    border-radius: 8px;
    text-align: center;
    color: #64748b;
    font-style: italic;
}

.no-content-notice i {
    color: #3b82f6;
    margin-right: 8px;
}

.no-related-games {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    color: #64748b;
    font-style: italic;
}

.no-related-games i {
    color: #94a3b8;
    margin-right: 8px;
    font-size: 16px;
}

.entry-content-full {
    border-top: 1px solid #e2e8f0;
    padding-top: 32px;
}

.section-title-full {
    font-size: 24px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #3b82f6;
    display: inline-block;
    position: relative;
}

.section-title-full::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #60a5fa;
    border-radius: 1px;
}

/* Recommended Games */
.recommended-games {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    margin: 32px 0;
}

.recommended-games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.game-card-recommended {
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.game-card-recommended:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #e2e8f0;
}

.game-card-recommended a {
    text-decoration: none;
    color: #1e293b;
}

.game-card-recommended img {
    width: 100%;
    max-width: 120px;
    height: auto;
    border-radius: 12px;
    margin: 0 auto 12px;
    display: block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.game-card-recommended .game-title {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    transition: color 0.3s ease;
}

.game-card-recommended:hover .game-title {
    color: #3b82f6;
}

/* Single Game Responsive */
@media (max-width: 768px) {
    .game-single-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .game-single-thumbnail {
        flex: none;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .recommended-games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .game-single-article {
        padding: 20px;
    }
    
    .game-single-article .entry-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .recommended-games-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== CATEGORY PAGE STYLES ===== */
.page-header {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    margin-bottom: 32px;
    text-align: center;
}

.page-title {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 16px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.archive-description {
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.category-games-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.category-game-item {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
}

.category-game-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.category-game-thumbnail {
    flex: 0 0 200px;
    height: 150px;
    overflow: hidden;
}

.category-game-thumbnail a {
    display: block;
    height: 100%;
}

.category-game-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-game-item:hover .category-game-thumbnail img {
    transform: scale(1.05);
}

.category-game-content {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.category-game-title {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.category-game-title a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.category-game-title a:hover {
    color: #3b82f6;
}

.category-game-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.category-game-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #64748b;
}

.category-game-meta i {
    color: #3b82f6;
    font-size: 12px;
}

.category-game-excerpt {
    color: #475569;
    line-height: 1.6;
    font-size: 15px;
    flex: 1;
}

.category-game-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 12px;
}

.view-game-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.view-game-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
    color: white;
}

.game-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
}

.game-rating i {
    color: #fbbf24;
    font-size: 12px;
}

.rating-text {
    margin-left: 4px;
    color: #64748b;
    font-weight: 500;
}

/* No Games Found */
.no-games-found {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    padding: 60px 40px;
    text-align: center;
}

.no-games-content i {
    font-size: 64px;
    color: #94a3b8;
    margin-bottom: 24px;
}

.no-games-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 16px;
}

.no-games-content p {
    color: #64748b;
    font-size: 16px;
    margin: 0 0 32px;
    line-height: 1.6;
}

.back-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.back-home-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
    color: white;
}

/* Pagination */
.pagination {
    margin: 40px 0;
    text-align: center;
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-decoration: none;
    color: #475569;
    font-weight: 500;
    transition: all 0.3s ease;
}

.page-numbers:hover,
.page-numbers.current {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
    transform: translateY(-2px);
}

.page-numbers.dots {
    border: none;
    color: #94a3b8;
}

.page-numbers.dots:hover {
    background: none;
    transform: none;
}

/* Category Page Responsive */
@media (max-width: 768px) {
    .category-game-item {
        flex-direction: column;
    }
    
    .category-game-thumbnail {
        flex: none;
        height: 200px;
        width: 100%;
    }
    
    .category-game-actions {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .view-game-btn {
        justify-content: center;
    }
    
    .game-rating {
        justify-content: center;
    }
    
    .page-header {
        padding: 20px;
    }
    
    .page-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .category-game-content {
        padding: 16px;
    }
    
    .category-game-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .no-games-found {
        padding: 40px 20px;
    }
    
    .no-games-content i {
        font-size: 48px;
    }
}

/* ===== FOOTER STYLES ===== */
.site-footer {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #e2e8f0;
    margin-top: 60px;
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-widgets-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

/* Company Info Section */
.footer-company {
    max-width: 100%;
}

.footer-logo-text {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #ffffff;
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    font-size: 14px;
    color: #94a3b8;
    margin: 0 0 20px;
}

.footer-description {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #cbd5e1;
    font-size: 14px;
}

.contact-item i {
    color: #60a5fa;
    width: 16px;
    text-align: center;
}

/* Footer Links */
.footer-widget-area .widget-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 20px;
    border-bottom: 2px solid #60a5fa;
    padding-bottom: 8px;
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.footer-menu a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: block;
    padding: 4px 0;
}

.footer-menu a:hover {
    color: #60a5fa;
    padding-left: 8px;
}

/* Footer Social */
.footer-social {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #e2e8f0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.social-link:hover {
    transform: translateY(-2px);
}

.social-link.facebook:hover {
    background: #1877f2;
    color: white;
}

.social-link.youtube:hover {
    background: #ff0000;
    color: white;
}

.social-link.tiktok:hover {
    background: #000000;
    color: white;
}

.social-link.zalo:hover {
    background: #0068ff;
    color: white;
}

.social-link i {
    font-size: 16px;
}

/* Newsletter */
.footer-newsletter p {
    color: #cbd5e1;
    margin: 0 0 12px;
    font-size: 14px;
}

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

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #475569;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: #94a3b8;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #60a5fa;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    padding: 12px 16px;
    background: #60a5fa;
    border: none;
    border-radius: 8px;
    color: #1e293b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #3b82f6;
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    background: #0f172a;
    padding: 20px 0;
    border-top: 1px solid #475569;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright p {
    margin: 0;
    color: #94a3b8;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #60a5fa;
}

.footer-divider {
    color: #475569;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

.back-to-top i {
    font-size: 18px;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-widgets-container {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 32px;
    }
    
    .footer-support {
        grid-column: 1 / -1;
        margin-top: 20px;
    }
    
    .footer-social {
        grid-template-columns: repeat(4, 1fr);
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .footer-widgets-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-company {
        text-align: center;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    .footer-social {
        grid-template-columns: 1fr 1fr;
        max-width: none;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .footer-legal {
        justify-content: center;
        font-size: 13px;
    }
    
    .back-to-top {
        bottom: 16px;
        right: 16px;
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 480px) {
    .footer-social {
        grid-template-columns: 1fr;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 8px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

/* ===== ARTICLE CATEGORY PAGE STYLES ===== */
.category-posts-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.category-post-item {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
}

.category-post-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.category-post-thumbnail {
    flex: 0 0 250px;
    height: 180px;
    overflow: hidden;
}

.category-post-thumbnail a {
    display: block;
    height: 100%;
}

.category-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-post-item:hover .category-post-thumbnail img {
    transform: scale(1.05);
}

.category-post-content {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.category-post-title {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
}

.category-post-title a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.category-post-title a:hover {
    color: #3b82f6;
}

.category-post-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.category-post-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #64748b;
}

.category-post-meta i {
    color: #3b82f6;
    font-size: 12px;
}

.category-post-meta a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.category-post-meta a:hover {
    color: #3b82f6;
}

.category-post-excerpt {
    color: #475569;
    line-height: 1.6;
    font-size: 15px;
    flex: 1;
}

.category-post-actions {
    margin-top: auto;
    padding-top: 12px;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
    color: white;
}

/* No Posts Found */
.no-posts-found {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    padding: 60px 40px;
    text-align: center;
}

.no-posts-content i {
    font-size: 64px;
    color: #94a3b8;
    margin-bottom: 24px;
}

.no-posts-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 16px;
}

.no-posts-content p {
    color: #64748b;
    font-size: 16px;
    margin: 0 0 32px;
    line-height: 1.6;
}

/* Category Post Responsive */
@media (max-width: 768px) {
    .category-post-item {
        flex-direction: column;
    }
    
    .category-post-thumbnail {
        flex: none;
        height: 200px;
        width: 100%;
    }
    
    .category-post-meta {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .category-post-meta span {
        font-size: 12px;
    }
    
    .read-more-btn {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .category-post-content {
        padding: 16px;
    }
    
    .category-post-title {
        font-size: 18px;
    }
    
    .no-posts-found {
        padding: 40px 20px;
    }
    
    .no-posts-content i {
        font-size: 48px;
    }
}

/* ===== SINGLE PAGE STYLES ===== */
.single-page-article {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    margin-bottom: 32px;
}

.single-page-article .entry-title {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 32px;
    padding-bottom: 20px;
    border-bottom: 3px solid #3b82f6;
    position: relative;
    text-align: center;
}

.single-page-article .entry-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #60a5fa;
    border-radius: 2px;
}

.page-featured-image {
    margin-bottom: 32px;
    text-align: center;
}

.page-thumbnail {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.single-page-article .entry-content {
    line-height: 1.8;
    font-size: 16px;
    color: #374151;
}

.single-page-article .entry-content h2 {
    font-size: 28px;
    font-weight: 600;
    color: #1e293b;
    margin: 40px 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e2e8f0;
}

.single-page-article .entry-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1e293b;
    margin: 32px 0 16px;
}

.single-page-article .entry-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #374151;
    margin: 24px 0 12px;
}

.single-page-article .entry-content p {
    margin: 0 0 20px;
    line-height: 1.8;
}

.single-page-article .entry-content ul,
.single-page-article .entry-content ol {
    margin: 0 0 20px 20px;
    line-height: 1.8;
}

.single-page-article .entry-content li {
    margin-bottom: 8px;
}

.single-page-article .entry-content blockquote {
    background: #f8fafc;
    border-left: 4px solid #3b82f6;
    margin: 24px 0;
    padding: 20px 24px;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #64748b;
}

.single-page-article .entry-content a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.single-page-article .entry-content a:hover {
    color: #1e40af;
    text-decoration: underline;
}

.single-page-article .entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.single-page-article .entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.single-page-article .entry-content table th,
.single-page-article .entry-content table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.single-page-article .entry-content table th {
    background: #f8fafc;
    font-weight: 600;
    color: #1e293b;
}

.page-links {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.page-links a {
    display: inline-block;
    padding: 8px 16px;
    margin: 0 4px;
    background: #3b82f6;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.page-links a:hover {
    background: #1e40af;
    transform: translateY(-2px);
}

.entry-footer {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

.edit-link a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #f1f5f9;
    color: #64748b;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.edit-link a:hover {
    background: #e2e8f0;
    color: #374151;
}

.page-comments {
    margin-top: 32px;
}

/* Full-width pages (no sidebar) */
.single-page-wrapper:has(.content-area-single:only-child) .content-area-single {
    max-width: 800px;
    margin: 0 auto;
}

/* Contact/About specific styles */
.page-contact-info,
.page-about-info {
    background: #f8fafc;
    padding: 24px;
    border-radius: 12px;
    margin: 32px 0;
    border-left: 4px solid #3b82f6;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 32px 0;
}



.contact-item:hover {
    transform: translateY(-4px);
}


.contact-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px;
    color: #1e293b;
}

.contact-item p {
    margin: 0;
    color: #64748b;
    line-height: 1.6;
}

/* Single Page Responsive */
@media (max-width: 768px) {
    .single-page-article {
        padding: 24px;
    }
    
    .single-page-article .entry-title {
        font-size: 28px;
        margin-bottom: 24px;
    }
    
    .single-page-article .entry-content {
        font-size: 15px;
    }
    
    .single-page-article .entry-content h2 {
        font-size: 24px;
    }
    
    .single-page-article .entry-content h3 {
        font-size: 20px;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .single-page-article {
        padding: 16px;
    }
    
    .single-page-article .entry-title {
        font-size: 24px;
    }
    
    .single-page-article .entry-content {
        font-size: 14px;
    }
    
    .contact-item {
        padding: 16px;
    }
    
    .contact-item i {
        font-size: 24px;
    }
}
