:root {
        /* Primary Colors (Play Games) */
        --primary-color: #4CAF50;
        --primary-color-light: #66BB6A;
        --primary-color-dark: #45a049;
        --primary-color-darker: #388E3C;
        --primary-shadow: rgba(76, 175, 80, 0.3);
        --primary-shadow-hover: rgba(76, 175, 80, 0.4);
        
        /* Secondary Colors (Claim Bonus) */
        --secondary-color: #FFD700;
        --secondary-color-light: #FFEB3B;
        --secondary-color-dark: #FFC107;
        --secondary-color-darker: #FFB300;
        --secondary-shadow: rgba(255, 215, 0, 0.3);
        --secondary-shadow-hover: rgba(255, 215, 0, 0.4);
        
        /* Tertiary Colors (Download App) */
        --tertiary-color: #2196F3;
        --tertiary-color-light: #42A5F5;
        --tertiary-color-dark: #1976D2;
        --tertiary-color-darker: #1565C0;
        --tertiary-shadow: rgba(33, 150, 243, 0.3);
        --tertiary-shadow-hover: rgba(33, 150, 243, 0.4);
        
        /* Quaternary Colors (Comment Section Button) */
        --quaternary-color: #F44336;
        --quaternary-color-light: #FF5252;
        --quaternary-color-dark: #D32F2F;
        --quaternary-color-darker: #B71C1C;
        --quaternary-shadow: rgba(244, 67, 54, 0.3);
        --quaternary-shadow-hover: rgba(244, 67, 54, 0.4);
        
        /* Additional colors */
        --background-color: #f4f4f4;
        --text-color: #333;
        --text-color-secondary: #666;
        --light-background: #f9f9f9;
        --border-color: #e0e0e0;
        --border-color-light: #f0f0f0;
        --white: #fff;
        --comment-text: #2c3e50;
        --comment-meta: #7f8c8d;
        --rating-color: #f39c12;

        /* Transparent background colors for comments (dynamically generated) */
        --primary-bg-light: #4CAF5025;
        --secondary-bg-light: #FFD70025;
        --tertiary-bg-light: #2196F325;
        --primary-bg-medium: #4CAF5020;
        --tertiary-bg-medium: #2196F318;
        --tertiary-bg-lighter: #2196F315;
    }

    body {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
        padding-top: 70px;
        background-color: var(--background-color);
        color: var(--text-color);
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }

    /* Enable smooth scrolling globally for cross-page navigation */
    html {
        scroll-behavior: smooth;
    }

    /* Scroll offset for fixed header - ensures sections scroll to correct position */
    section[id], .content-section[id] {
        scroll-margin-top: 80px;
    }

    /* Target pseudo-class for hash navigation highlighting */
    section[id]:target, .content-section[id]:target {
        animation: highlight-section 2s ease-in-out;
    }

    @keyframes highlight-section {
        0% {
            background-color: rgba(255, 215, 0, 0.1);
        }
        100% {
            background-color: transparent;
        }
    }

    /* ========== UNIVERSAL HEADER NAVIGATION STYLES ========== */
    header {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-dark) 50%, var(--primary-color-light) 100%);
        color: white;
        padding: 10px 15px;
        text-align: center;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        min-height: 50px;
        box-shadow: 0 4px 12px var(--primary-shadow);
        display: flex;
        align-items: center;
        justify-content: space-between;
        z-index: 1000;
    }

    /* Logo container - outside nav */
    .logo-container {
        flex-shrink: 0;
        display: flex;
        align-items: center;
    }

    .logo-container a {
        display: flex;
        align-items: center;
        text-decoration: none;
        padding: 0;
    }

    .logo {
        max-height: 45px;
        width: auto;
        transition: all 0.3s ease;
    }

    .logo:hover {
        transform: scale(1.05);
    }

    nav {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 1;
    }

    nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        height: 100%;
    }

    nav ul li {
        display: inline-block;
        margin: 0 8px;
        position: relative;
    }

    nav a {
        color: white;
        text-decoration: none;
        padding: 12px 20px;
        border-radius: 25px;
        font-weight: 500;
        font-size: 1rem;
        transition: all 0.3s ease;
        position: relative;
        display: inline-block;
        letter-spacing: 0.5px;
    }

    nav a:hover {
        background: var(--secondary-color);
        color: var(--primary-color-darker);
        transform: translateY(-2px);
    }

    nav a:active {
        transform: translateY(0);
    }

    /* Active/selected state styling - PERMANENT until selection changes */
    nav a.active {
        background: var(--secondary-color) !important;
        color: var(--primary-color-darker) !important;
        transform: translateY(-1px);
        box-shadow: 0 2px 8px var(--secondary-shadow);
    }
    
    /* Animation for when button becomes active - triggered by JavaScript */
    nav a.activating {
        animation: pulse-active 0.6s ease-out;
    }
    
    @keyframes pulse-active {
        0% {
            transform: translateY(-1px) scale(1);
            box-shadow: 0 2px 8px var(--secondary-shadow);
        }
        50% {
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 4px 12px var(--secondary-shadow-hover);
        }
        100% {
            transform: translateY(-1px) scale(1);
            box-shadow: 0 2px 8px var(--secondary-shadow);
        }
    }

    /* Simple Burger Menu */
    .burger-menu {
        display: none;
        flex-direction: column;
        cursor: pointer;
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
        z-index: 1000;
        padding: 5px;
        transition: all 0.3s ease;
    }

    .burger-menu:hover {
        transform: translateY(-50%) scale(1.05);
    }

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

    .burger-menu:hover span {
        background: var(--secondary-color);
    }

    /* Active state - transform to X */
    .burger-menu.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-6px, 6px);
        background: var(--secondary-color);
    }

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

    .burger-menu.active span:nth-child(3) {
        transform: rotate(45deg) translate(-6px, -6px);
        background: var(--secondary-color);
    }

    /* Desktop Auth Buttons */
    .auth-buttons {
        display: flex;
        gap: 10px;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1000;
        flex-shrink: 0;
    }

    .auth-btn {
        padding: 8px 16px;
        text-decoration: none;
        border-radius: 20px;
        font-size: 0.9em;
        font-weight: 500;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

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

    .signin-btn:hover {
        background: rgba(255, 255, 255, 0.25);
        border-color: rgba(255, 255, 255, 0.5);
        transform: scale(1.05);
    }

    .signup-btn {
        color: var(--text-color);
        background: var(--secondary-color);
        border-color: var(--secondary-color);
    }

    .signup-btn:hover {
        background: var(--secondary-color-dark);
        border-color: var(--secondary-color-dark);
        transform: scale(1.05);
    }

    /* Hide mobile auth buttons on desktop */
    .mobile-signin,
    .mobile-signup {
        display: none !important;
    }

    /* Footer Styling */
    footer {
        text-align: center;
        padding: 10px 0;
        background: var(--text-color);
        color: white;
        margin-top: auto;
        font-size: 0.9em;
    }

    footer a {
        color: var(--primary-color);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    footer a:hover {
        color: var(--primary-color-light);
        text-decoration: underline;
    }

    .footer-links {
        display: inline;
    }

    .footer-separator {
        margin: 0 5px;
    }

    /* Mobile Responsive Navigation */
    @media (max-width: 768px) {
        body {
            padding-top: 60px;
        }
        
        header {
            padding: 8px 15px;
            min-height: 45px;
        }
        
        .burger-menu {
            display: flex;
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
        }
        
        /* Mobile navigation adjustments */
        nav {
            position: relative;
            justify-content: center;
        }
        
        .logo-container {
            position: relative;
            left: 0;
            top: 0;
            transform: none;
            z-index: 1001;
        }
        
        /* Mobile logo adjustments */
        .logo {
            max-height: 40px;
        }
        
        nav ul {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-dark) 50%, var(--primary-color-light) 100%);
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 999;
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        nav ul.active {
            display: flex;
            opacity: 1;
            animation: slideIn 0.3s ease forwards;
        }
        
        nav ul li {
            display: block;
            margin: 10px 0;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        nav ul.active li {
            transform: translateY(0);
            opacity: 1;
            animation: fadeInUp 0.5s ease forwards;
        }
        
        nav ul.active li:nth-child(1) { animation-delay: 0.1s; }
        nav ul.active li:nth-child(2) { animation-delay: 0.2s; }
        nav ul.active li:nth-child(3) { animation-delay: 0.3s; }
        nav ul.active li:nth-child(4) { animation-delay: 0.4s; }
        nav ul.active li:nth-child(5) { animation-delay: 0.5s; }
        nav ul.active li:nth-child(6) { animation-delay: 0.6s; }
        nav ul.active li:nth-child(7) { animation-delay: 0.7s; }
        nav ul.active li:nth-child(8) { animation-delay: 0.8s; }
        nav ul.active li:nth-child(9) { animation-delay: 0.9s; }
        nav ul.active li:nth-child(10) { animation-delay: 1.0s; }
        nav ul.active li:nth-child(11) { animation-delay: 1.1s; }
        nav ul.active li:nth-child(12) { animation-delay: 1.2s; }
        
        /* Show mobile auth buttons on mobile */
        .mobile-signin,
        .mobile-signup {
            display: block !important;
        }
        
        /* Special styling for mobile auth buttons */
        .mobile-signin {
            background: rgba(255, 255, 255, 0.15) !important;
            border-color: rgba(255, 255, 255, 0.3) !important;
        }
        
        .mobile-signin:hover {
            background: rgba(255, 255, 255, 0.25) !important;
            border-color: rgba(255, 255, 255, 0.5) !important;
            color: white !important;
        }
         .mobile-signup {
            background: var(--secondary-color) !important;
            color: var(--text-color) !important;
            border-color: var(--secondary-color) !important;
        }

        .mobile-signup:hover {
            background: var(--secondary-color-dark) !important;
            color: var(--text-color) !important;
            border-color: var(--secondary-color-dark) !important;
            transform: scale(1.05) !important;
        }
        
        nav ul li a {
            color: white;
            font-size: 1.1em;
            text-decoration: none;
            padding: 10px 25px;
            border-radius: 20px;
            background: rgba(255,255,255,0.1);
            border: 2px solid transparent;
            transition: all 0.3s ease;
            display: block;
            text-align: center;
            font-weight: 500;
            letter-spacing: 0.5px;
            min-width: 180px;
        }
        
        nav ul li a:hover {
            background: var(--secondary-color);
            color: var(--text-color);
            border-color: transparent;
            transform: scale(1.05);
        }

        nav ul li a.active {
            background: var(--secondary-color);
            color: var(--text-color);
            border-color: transparent;
        }
        
        .auth-buttons {
            display: none;
        }
    }

    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Desktop navigation - simple centering */
    @media (min-width: 769px) {
        nav ul {
            justify-content: center;
            align-items: center;
        }
        
        nav ul li {
            margin: 0 8px;
        }
        
        /* Ensure mobile auth items are hidden on desktop */
        .mobile-signin,
        .mobile-signup {
            display: none !important;
        }
    }

    /* Hide desktop auth buttons on mobile */
    @media (max-width: 768px) {
        .auth-buttons {
            display: none;
        }

        /* Mobile footer styling - keep links together in second row */
        footer {
            padding: 15px 0;
            font-size: 0.85em;
        }
        
        footer p {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }
        
        .footer-links {
            display: inline;
        }
        
        .footer-separator {
            margin: 0 5px;
        }
    }

    /* Article Count Display Styles */
    .articles-count-container {
        max-width: 1200px;
        margin: 30px auto;
        padding: 20px;
        text-align: center;
        background: linear-gradient(135deg, #f8f9fa, #e9ecef);
        border-radius: 10px;
        border: 1px solid #dee2e6;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    #articlesCount {
        color: #495057;
        font-size: 16px;
        font-weight: 500;
        letter-spacing: 0.5px;
    }

    @media (max-width: 768px) {
        .articles-count-container {
            margin: 20px 10px;
            padding: 15px;
        }
        
        #articlesCount {
            font-size: 14px;
        }
    }

    /* Blog-specific styles */
    .blog-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }

    /* Blog Hero Section */
    .blog-hero-display {
        width: 100%;
        height: 0;
        padding-bottom: 38.76%; /* 1000/2580 = 0.3876 for 2.58:1 aspect ratio */
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        margin-bottom: 30px;
        background: white;
        position: relative;
    }

    .blog-hero-img {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        object-fit: cover;
        object-position: center;
        display: block;
    }

    .blog-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-bottom: 40px;
        justify-items: start;
        align-items: start;
        place-items: start;
    }

    .blog-article {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
        cursor: pointer;
        width: 100%;
        max-width: 380px;
        display: flex;
        flex-direction: column;
        min-height: 450px;
        border-left: none !important;
        border: none !important;
        position: relative;
    }

    .blog-article:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        border-left: none !important;
    }

    /* Article block images with gradient fallbacks */
    .blog-article-image {
        width: 100%;
        height: 200px;
        background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.1em;
        font-weight: bold;
        text-align: center;
        padding: 20px;
        box-sizing: border-box;
        position: relative;
    }

    /* New image container for proper img tags */
    .blog-article-image-container {
        width: 100%;
        height: 0;
        padding-bottom: 50%; /* 2:1 aspect ratio to match generated images (1600x800) */
        position: relative;
        overflow: hidden;
        border-radius: 8px 8px 0 0; /* Top corners rounded, bottom corners square */
    }

    .blog-card-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    /* Text spans for gradient fallback only */
    .blog-article-image span {
        background: rgba(0, 0, 0, 0.6);
        padding: 8px 16px;
        border-radius: 8px;
        backdrop-filter: blur(5px);
    }

    /* Hide text when background image is present */
    .blog-article-image[style*="url("] span {
        display: none;
    }

    .blog-article-content {
        padding: 15px 25px 100px 25px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .blog-content-wrapper {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding-bottom: 20px;
    }

    .blog-article h2 {
        font-size: 1.4em;
        margin-bottom: 20px;
        color: var(--text-color);
        line-height: 1.3;
        align-self: flex-start;
        margin-top: 0;
        text-align: left;
        height: 60px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .blog-article p {
        color: var(--text-color-secondary);
        font-size: 17px;
        line-height: 1.6;
        margin-bottom: 8px;
        margin-top: 0;
        min-height: 150px;
        max-height: 150px;
        display: block;
        word-wrap: break-word;
        overflow: visible;
        align-self: flex-start;
        text-align: left;
    }

    .blog-meta {
        position: absolute;
        bottom: 25px;
        left: 25px;
        right: 25px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 12px;
        color: #888;
        border-top: 1px solid #e0e0e0;
        padding-top: 12px;
        background: white;
    }

    .blog-meta .blog-date {
        font-weight: 500;
    }

    .blog-meta .blog-read-time {
        color: var(--primary-color);
        font-weight: 500;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .blog-meta .blog-read-time:hover {
        color: var(--primary-color-dark);
        text-decoration: underline;
    }

    .article-link {
        text-decoration: none;
        color: inherit;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .article-link h2 {
        color: #333 !important;
    }

    .article-link p {
        color: var(--text-color-secondary) !important;
    }

    .article-link .blog-date {
        color: var(--text-color-secondary) !important;
    }

    .read-more {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
    }

    .read-more:hover {
        color: var(--primary-color-dark);
    }

    .blog-categories {
        background: white;
        padding: 15px 30px 30px 30px;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        margin-bottom: 30px;
    }

    .blog-categories h3 {
        margin-top: 0;
        margin-bottom: 15px;
    }

    .categories-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        position: relative;
    }

    .category-tag.hidden-category {
        display: none;
    }

    .more-categories-btn {
        background: var(--secondary-color);
        color: #333;
        padding: 8px 16px;
        border-radius: 20px;
        text-decoration: none;
        font-size: 0.9em;
        white-space: nowrap;
        cursor: pointer;
        border: none;
        transition: background 0.3s ease;
    }

    .more-categories-btn:hover {
        background: var(--secondary-color-dark);
    }

    .more-categories-btn.expanded {
        background: var(--secondary-color-dark);
    }

    .more-categories-btn.expanded:hover {
        background: var(--secondary-color-darker);
    }

    .category-tag {
        background: #f0f0f0;
        padding: 8px 16px;
        border-radius: 20px;
        text-decoration: none;
        color: #333;
        font-size: 0.9em;
        transition: background 0.3s ease;
        white-space: nowrap;
    }

    .category-tag:hover {
        background: var(--primary-color);
        color: white;
    }

    .category-tag.active {
        background: var(--primary-color);
        color: white;
    }

    .blog-article.hidden {
        display: none;
    }

    .loading-spinner {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
        margin: 15px 0;
    }

    .loading-spinner.hidden {
        display: none !important;
    }

    .spinner {
        width: 24px;
        height: 24px;
        border: 3px solid var(--primary-shadow);
        border-top: 3px solid var(--primary-color);
        border-radius: 50%;
        animation: spin 0.8s linear infinite;
    }

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

    .load-more-btn {
        display: none !important;
        margin: 30px auto;
        padding: 12px 30px;
        background: var(--primary-color);
        color: white;
        border: none;
        border-radius: 25px;
        font-size: 1em;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .load-more-btn:hover {
        background: var(--primary-color-dark);
    }

    .load-more-btn.hidden {
        display: none;
    }

    .articles-count {
        text-align: center;
        color: #666;
        margin-bottom: 20px;
        font-size: 0.9em;
    }

    /* Blog Hero Link Styles */
    .blog-hero-display a {
        display: block;
    }

    .blog-hero-display a img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .blog-hero-display a:hover img {
        transform: scale(1.02);
        transition: transform 0.3s ease;
    }

    /* Hero styles moved to inline styles in index.html to avoid conflicts */

    /* Blog Grid Mobile Responsive Styles */
    @media (max-width: 768px) {
        .blog-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        
        .blog-article {
            max-width: 100%;
        }
        
        .blog-categories {
            padding: 15px 20px 25px 20px;
        }
        
        .categories-list {
            gap: 8px;
        }
        
        .category-tag {
            padding: 6px 12px;
            font-size: 0.85em;
        }
        
        .more-categories-btn {
            padding: 6px 12px;
            font-size: 0.85em;
        }
    }

    /* Main Content Container - Matching Blog Structure */
    .main-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }

    .content-section {
        background: white;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        margin-bottom: 30px;
    }

    /* Action Buttons Section */
    .action-buttons-container {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        padding: 30px 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .action-button {
        display: inline-block;
        padding: 15px 30px;
        background: linear-gradient(45deg, var(--primary-color), var(--primary-color-light));
        color: white;
        text-decoration: none;
        border-radius: 25px;
        font-weight: bold;
        font-size: 16px;
        transition: all 0.3s ease;
        text-align: center;
        min-width: 160px;
    }

    .action-button:hover {
        transform: translateY(-3px);
        background: linear-gradient(45deg, var(--primary-color-dark), var(--primary-color));
    }

    .action-button.play {
        background: linear-gradient(45deg, var(--primary-color), var(--primary-color-light));
    }

    .action-button.play:hover {
        background: linear-gradient(45deg, var(--primary-color-dark), var(--primary-color));
    }

    .action-button.bonus {
        background: linear-gradient(45deg, var(--secondary-color), var(--secondary-color-light));
    }

    .action-button.bonus:hover {
        background: linear-gradient(45deg, var(--secondary-color-dark), var(--secondary-color));
    }

    .action-button.download {
        background: linear-gradient(45deg, var(--tertiary-color), var(--tertiary-color-light));
    }

    .action-button.download:hover {
        background: linear-gradient(45deg, var(--tertiary-color-dark), var(--tertiary-color));
    }

    @media (max-width: 768px) {
        .main-container {
            padding: 15px;
        }
        
        .content-section {
            padding: 20px;
            margin-bottom: 20px;
        }
        
        .content-section h2 {
            font-size: 1.5em;
        }
        
        .action-buttons-container {
            flex-direction: column;
            padding: 20px 15px;
            gap: 15px;
        }
        
        .action-button {
            padding: 12px 25px;
            font-size: 14px;
            min-width: 200px;
        }
    }

    @media (max-width: 480px) {
        .action-buttons-container {
            padding: 20px 15px;
            gap: 12px;
        }
        
        .action-button {
            padding: 10px 20px;
            font-size: 14px;
            min-width: 140px;
        }
        
        /* Small mobile footer styles */
        footer {
            padding: 20px 10px;
            font-size: 0.8em;
        }
        
        .footer-links {
            gap: 10px;
        }
    }

    /* ========== HOMEPAGE SPECIFIC STYLES ========== */
    /* Homepage Hero Styles */
    .hero-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        position: relative;
    }
    
    /* Hero Images Section */
    .hero-images-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        position: relative;
    }
    
    .hero-image-display {
        width: 100%;
        height: 600px;
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        margin-bottom: 30px;
        position: relative;
    }
    
    .hero-images-wrapper {
        display: flex;
        width: 700%;
        height: 100%;
        transition: transform 0.8s ease-in-out;
        transform: translateX(0%);
    }
    
    .hero-img {
        width: 14.285714%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        flex-shrink: 0;
        display: block;
    }
    
    /* Image Link Styles */
    .hero-images-wrapper a {
        display: block;
        width: 14.285714%;
        height: 100%;
        flex-shrink: 0;
    }
    
    .hero-images-wrapper a img {
        width: 100%;
        height: 100%;
    }
    
    /* Hero Carousel Controls */
    .hero-carousel-controls {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin-top: 5px;
        padding: 10px 0;
    }
    
    .carousel-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.6);
        border: 2px solid var(--quaternary-color);
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .carousel-dot:hover {
        background: var(--quaternary-shadow);
        transform: scale(1.2);
    }
    
    .carousel-dot.active {
        background: var(--quaternary-color);
        border-color: var(--quaternary-color);
    }
    
    /* Action Buttons Section */
    .action-buttons-container {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        padding: 30px 20px;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .action-button {
        display: inline-block;
        padding: 15px 30px;
        background: linear-gradient(45deg, var(--primary-color), var(--primary-color-light));
        color: white;
        text-decoration: none;
        border-radius: 25px;
        font-weight: bold;
        font-size: 16px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px var(--primary-shadow);
        text-align: center;
        min-width: 160px;
    }
    
    .action-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px var(--primary-shadow-hover);
        background: linear-gradient(45deg, var(--primary-color-dark), var(--primary-color));
    }
    
    .action-button.play {
        background: linear-gradient(45deg, var(--primary-color), var(--primary-color-light));
        box-shadow: 0 4px 15px var(--primary-shadow);
    }
    
    .action-button.play:hover {
        background: linear-gradient(45deg, var(--primary-color-dark), var(--primary-color));
        box-shadow: 0 8px 25px var(--primary-shadow-hover);
    }
    
    .action-button.bonus {
        background: linear-gradient(45deg, var(--secondary-color), var(--secondary-color-light));
        box-shadow: 0 4px 15px var(--secondary-shadow);
    }
    
    .action-button.bonus:hover {
        background: linear-gradient(45deg, var(--secondary-color-dark), var(--secondary-color));
        box-shadow: 0 8px 25px var(--secondary-shadow-hover);
    }
    
    .action-button.download {
        background: linear-gradient(45deg, var(--tertiary-color), var(--tertiary-color-light));
        box-shadow: 0 4px 15px var(--tertiary-shadow);
    }
    
    .action-button.download:hover {
        background: linear-gradient(45deg, var(--tertiary-color-dark), var(--tertiary-color));
        box-shadow: 0 8px 25px var(--tertiary-shadow-hover);
    }
    
    /* Main Content Container */
    .main-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }
    
    .hero-content-section {
        text-align: center;
        padding: 40px 20px;
    }
    
    .hero-content-section h1 {
        font-size: 2.5em;
        color: var(--text-color);
        margin-bottom: 20px;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1.2em;
        color: var(--text-color-secondary);
        line-height: 1.6;
        max-width: 800px;
        margin: 0 auto;
    }
    
    /* Content Section */
    .content-section {
        background: white;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        margin-bottom: 30px;
    }
    
    .content-section h2 {
        color: var(--text-color);
        margin-bottom: 20px;
        font-size: 1.8em;
        border-bottom: 2px solid var(--primary-color);
        padding-bottom: 10px;
    }
    
    .content-section p {
        color: var(--text-color-secondary);
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    /* Game Images Gallery Styles */
    .game-images-gallery {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
        margin-top: 20px;
    }
    
    .game-image-card {
        border-radius: 12px;
        height: 0;
        padding-bottom: 75%; /* Fallback: 75% creates 4:3 aspect ratio (3/4 = 0.75) */
        aspect-ratio: 4/3; /* Modern browsers: matches game images 1200x900 aspect ratio */
        position: relative;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
    }
    
    .game-image-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        position: absolute;
        top: 0;
        left: 0;
        border-radius: 12px;
    }
    
    /* For browsers that support aspect-ratio, remove padding-bottom */
    @supports (aspect-ratio: 4/3) {
        .game-image-card {
            height: auto;
            padding-bottom: 0;
        }
    }
    
    .game-image-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    }
    
    .game-image-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, rgba(0,0,0,0.8));
        color: white;
        padding: 15px 20px;
        text-align: center;
    }
    
    .game-image-card h3 {
        margin: 0;
        font-size: 1.1em;
        font-weight: bold;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }
    
    .game-image-card p {
        display: none; /* Hide descriptive text */
    }
    
    /* Game Images Gallery Link Styles */
    .game-images-gallery a {
        display: block;
        text-decoration: none;
        color: inherit;
    }
    
    .game-images-gallery a:hover {
        transform: translateY(-2px);
        transition: transform 0.3s ease;
    }
    
    /* FAQ Styles within Content Section */
    .faq-item {
        margin: 20px 0;
        padding: 15px;
        background: var(--light-background);
        border-radius: 8px;
        border-left: 4px solid var(--primary-color);
    }
    
    /* FAQ-specific styles within content section */
    .faq-categories {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 30px;
        margin-top: 30px;
    }

    .faq-category {
        border: 1px solid var(--border-color);
        border-radius: 10px;
        overflow: hidden;
    }

    .faq-category-header {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-dark) 100%);
        color: white;
        padding: 20px;
        font-size: 1.3em;
        font-weight: 600;
    }

    .faq-list {
        padding: 20px;
    }

    .content-section .faq-item {
        margin-bottom: 20px;
        border-bottom: 1px solid var(--border-color-light);
        padding-bottom: 15px;
        background: none;
        box-shadow: none;
        border-radius: 0;
    }

    .content-section .faq-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }

    .faq-question {
        font-weight: 600;
        color: var(--text-color);
        margin-bottom: 8px;
        cursor: pointer;
        transition: color 0.3s ease;
    }

    .faq-question:hover {
        color: var(--primary-color);
    }

    .faq-question.active {
        color: var(--primary-color);
    }

    .faq-answer {
        color: var(--text-color-secondary);
        line-height: 1.6;
        display: none;
    }
    
    /* Comment Form Styles */
    .comment-form-container {
        background: linear-gradient(135deg, 
            var(--primary-color) 0%, 
            var(--secondary-color) 50%, 
            var(--tertiary-color) 100%);
        padding: 40px;
        border-radius: 20px;
        margin: 40px 0;
        box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        position: relative;
        overflow: hidden;
    }
    
    .comment-form-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, 
            rgba(255,255,255,0.1) 0%, 
            transparent 50%, 
            rgba(255,255,255,0.1) 100%);
        pointer-events: none;
    }
    
    .comment-form-title {
        color: var(--white);
        text-align: center;
        margin-bottom: 30px;
        font-size: 1.8em;
        font-weight: bold;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        position: relative;
        z-index: 1;
    }
    
    .comment-form {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .comment-form .form-group {
        margin-bottom: 25px;
        position: relative;
        z-index: 1;
    }
    
    .comment-form .form-group label {
        display: block;
        color: var(--white);
        font-weight: bold;
        margin-bottom: 10px;
        font-size: 1.1em;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    }
    
    .comment-form .form-group input,
    .comment-form .form-group textarea {
        width: 100%;
        padding: 15px 20px;
        border: 2px solid rgba(255,255,255,0.3);
        border-radius: 12px;
        font-size: 16px;
        background: rgba(255,255,255,0.95);
        color: var(--text-color);
        box-sizing: border-box;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(10px);
    }
    
    .comment-form .form-group input:focus,
    .comment-form .form-group textarea:focus {
        outline: none;
        background: rgba(255,255,255,0.98);
        border-color: rgba(255,255,255,0.8);
        box-shadow: 0 0 20px rgba(255,255,255,0.4);
        transform: translateY(-2px);
    }
    
    .comment-form .form-group textarea {
        min-height: 100px;
        resize: vertical;
        font-family: inherit;
    }
    
    .comment-submit-btn {
        background: linear-gradient(135deg, 
            var(--secondary-color) 0%, 
            var(--tertiary-color) 100%);
        color: var(--white);
        border: none;
        padding: 18px 50px;
        border-radius: 30px;
        font-size: 1.2em;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        display: block;
        margin: 30px auto 0;
        text-transform: uppercase;
        letter-spacing: 2px;
        position: relative;
        z-index: 1;
        overflow: hidden;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    }
    
    .comment-submit-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, 
            transparent, 
            rgba(255,255,255,0.3), 
            transparent);
        transition: left 0.6s ease;
        z-index: -1;
    }
    
    .comment-submit-btn:hover {
        transform: translateY(-4px) scale(1.05);
        background: linear-gradient(135deg, 
            var(--secondary-color-light) 0%, 
            var(--tertiary-color-light) 100%);
    }
    
    .comment-submit-btn:hover::before {
        left: 100%;
    }
    
    .comment-submit-btn:active {
        transform: translateY(-2px) scale(1.02);
        transition: all 0.1s ease;
    }
    
    /* Comments Container Styles */
    .comments-container {
        margin-top: 40px;
    }
    
    .comment {
        background: rgba(255, 255, 255, 0.9);
        padding: 20px;
        margin: 15px 0;
        border-radius: 12px;
        border: none;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    
    .comment:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    }
    
    .comment-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 12px;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .comment-left {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .comment-right {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .reviewer-name {
        color: var(--comment-text);
        font-weight: 600;
        font-size: 1.1em;
    }
    
    .comment-date {
        color: var(--comment-meta);
        font-size: 0.9em;
        font-weight: normal;
    }
    
    .rating {
        color: var(--rating-color);
        font-size: 1.1em;
        letter-spacing: 1px;
    }
    
    .comment p {
        color: var(--comment-text);
        line-height: 1.7;
        margin: 0;
        font-size: 0.95em;
    }
    
    .comment[data-rating="5"] {
        border-left: 4px solid var(--primary-color);
        background: var(--primary-bg-light);
    }
    
    .comment[data-rating="4"] {
        border-left: 4px solid var(--secondary-color);
        background: var(--secondary-bg-light);
    }
    
    .comment[data-rating="3"] {
        border-left: 4px solid var(--tertiary-color);
        background: var(--tertiary-bg-light);
    }
    
    .comment[data-rating="2"] {
        border-left: 4px solid var(--tertiary-color);
        background: var(--tertiary-bg-medium);
    }
    
    .comment[data-rating="1"] {
        border-left: 4px solid var(--tertiary-color);
        background: var(--tertiary-bg-lighter);
    }
    
    /* Comment Section Action Button */
    .comments-action-btn {
        display: block;
        width: fit-content;
        margin: 30px auto 0;
        padding: 15px 30px;
        background: linear-gradient(45deg, var(--quaternary-color), var(--quaternary-color-light));
        color: white;
        text-decoration: none;
        border-radius: 25px;
        font-weight: bold;
        font-size: 16px;
        text-align: center;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        position: relative;
        overflow: hidden;
    }
    
    .comments-action-btn::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;
    }
    
    .comments-action-btn:hover {
        transform: translateY(-3px);
        background: linear-gradient(45deg, var(--quaternary-color-dark), var(--quaternary-color));
    }
    
    .comments-action-btn:hover::before {
        left: 100%;
    }
    
    .comments-action-btn:active {
        transform: translateY(-1px);
        transition: all 0.1s ease;
    }
    
    /* Section Buttons Styling */
    .section-btn {
        display: inline-block;
        padding: 12px 25px;
        color: white;
        text-decoration: none;
        border-radius: 25px;
        font-weight: bold;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .section-btn::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;
    }
    
    .section-btn:hover::before {
        left: 100%;
    }
    
    .section-btn:active {
        transform: translateY(-1px);
        transition: all 0.1s ease;
    }
    
    .section-btn.about {
        background: linear-gradient(45deg, var(--primary-color), var(--primary-color-light));
        box-shadow: 0 4px 12px var(--primary-shadow);
    }
    
    .section-btn.about:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px var(--primary-shadow-hover);
        background: linear-gradient(45deg, var(--primary-color-dark), var(--primary-color));
    }
    
    .section-btn.service {
        background: linear-gradient(45deg, var(--secondary-color), var(--secondary-color-light));
        box-shadow: 0 4px 12px var(--secondary-shadow);
    }
    
    .section-btn.service:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px var(--secondary-shadow-hover);
        background: linear-gradient(45deg, var(--secondary-color-dark), var(--secondary-color));
    }
    
    .section-btn.faq {
        background: linear-gradient(45deg, var(--tertiary-color), var(--tertiary-color-light));
        box-shadow: 0 4px 12px var(--tertiary-shadow);
    }
    
    .section-btn.faq:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px var(--tertiary-shadow-hover);
        background: linear-gradient(45deg, var(--tertiary-color-dark), var(--tertiary-color));
    }
    
    /* Homepage Responsive Design */
    @media (max-width: 768px) {
        .hero-images-container {
            padding: 15px;
            margin-top: 10px;
        }
        
        .hero-image-display {
            height: 280px;
        }
        
        .hero-carousel-controls {
            margin-top: 3px;
            padding: 8px 0;
            gap: 8px;
        }
        
        .carousel-dot {
            width: 10px;
            height: 10px;
        }
        
        .action-buttons-container {
            flex-direction: column;
            gap: 15px;
            padding: 25px 15px;
        }
        
        .action-button {
            width: 100%;
            max-width: 280px;
            padding: 12px 25px;
            font-size: 15px;
        }
        
        .main-container {
            padding: 15px;
        }
        
        .content-section {
            padding: 20px;
            margin-bottom: 20px;
        }
        
        .content-section h2 {
            font-size: 1.5em;
        }
        
        .content-section p {
            font-size: 1em;
        }
        
        .hero-content-section h1 {
            font-size: 2em;
        }
        
        .hero-description {
            font-size: 1.1em;
        }
        
        .section-btn {
            font-size: 15px;
            padding: 11px 22px;
        }
        
        .game-image-overlay h3 {
            font-size: 1em;
        }
        
        .faq-categories {
            grid-template-columns: 1fr;
        }

        .faq-category {
            min-width: auto;
        }
        
        .faq-question {
            font-size: 1em;
            padding: 12px 15px;
        }
        
        .faq-answer {
            font-size: 0.95em;
            padding: 12px 15px;
        }
        
        .comment-form-container {
            padding: 25px 20px;
            margin: 25px 0;
            border-radius: 15px;
        }
        
        .comment-form-title {
            font-size: 1.5em;
            margin-bottom: 20px;
        }
        
        .comment-submit-btn {
            padding: 15px 35px;
            font-size: 1.1em;
            letter-spacing: 1px;
        }
        
        /* Mobile Comment Styling */
        .comment-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 4px;
        }
        
        .comment-left,
        .comment-right {
            width: 100%;
            justify-content: space-between;
        }
        
        .reviewer-name {
            font-size: 1.05em;
            font-weight: 600;
        }
        
        .comment-right {
            margin-top: 2px;
        }
        
        .rating {
            font-size: 1em;
        }
        
        .comment-date {
            font-size: 0.85em;
        }
        
        .comments-action-btn {
            margin: 20px auto 0;
            padding: 12px 24px;
            font-size: 1em;
        }
        
        /* Mobile game images responsiveness */
        .game-images-gallery {
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }
        
        .game-image-card {
            aspect-ratio: 4/3; /* Maintain 4:3 aspect ratio on tablets */
        }
    }
    
    @media (max-width: 480px) {
        .hero-image-display {
            height: 220px;
        }
        
        .hero-carousel-controls {
            margin-top: 2px;
            padding: 5px 0;
            gap: 6px;
        }
        
        .carousel-dot {
            width: 8px;
            height: 8px;
        }
        
        .action-buttons-container {
            padding: 20px 15px;
            gap: 12px;
        }
        
        .action-button {
            padding: 10px 20px;
            font-size: 14px;
            min-width: 140px;
        }
        
        .content-section h2 {
            font-size: 1.3em;
        }
        
        .content-section p {
            font-size: 0.95em;
        }
        
        .hero-content-section h1 {
            font-size: 1.8em;
        }
        
        .hero-description {
            font-size: 1em;
        }
        
        .section-btn {
            font-size: 14px;
            padding: 10px 20px;
        }
        
        .comment-form-title {
            font-size: 1.3em;
        }
        
        .comment-submit-btn {
            font-size: 1em;
            padding: 12px 20px;
        }
        
        .game-image-overlay h3 {
            font-size: 0.9em;
        }
        
        .faq-question {
            font-size: 0.95em;
            padding: 10px 12px;
        }
        
        .faq-answer {
            font-size: 0.9em;
            padding: 10px 12px;
        }
        
        .game-images-gallery {
            grid-template-columns: 1fr;
            gap: 15px;
        }
        
        .game-image-card {
            aspect-ratio: 4/3; /* Maintain 4:3 aspect ratio on mobile */
        }
    }
    
    /* ========== ARTICLE PAGE STYLES ========== */
    /* Common Article Styles */
    .article-container {
        max-width: 800px;
        margin: 20px auto;
        padding: 20px;
        background: white;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .article-header {
        text-align: center;
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 2px solid #f0f0f0;
    }

    .article-image-container {
        margin-bottom: 20px;
        border-radius: 10px;
        overflow: hidden;
    }

    .article-image {
        width: 100%;
        height: 400px;
        object-fit: cover;
        display: block;
        border-radius: 10px;
    }

    .article-meta {
        display: flex;
        justify-content: center;
        gap: 20px;
        color: #666;
        font-size: 0.9em;
        margin-bottom: 20px;
        flex-wrap: wrap;
    }

    .article-content {
        line-height: 1.8;
        color: #333;
    }

    .article-content h1 {
        color: var(--primary-color);
        margin-top: 0;
        margin-bottom: 20px;
        font-size: 2em;
        text-align: center;
    }

    .article-content h2 {
        color: var(--primary-color);
        margin-top: 30px;
        margin-bottom: 15px;
        font-size: 1.5em;
    }

    .article-content h3 {
        color: #333;
        margin-top: 25px;
        margin-bottom: 12px;
        font-size: 1.2em;
    }

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

    .article-content ul, .article-content ol {
        margin: 15px 0;
        padding-left: 30px;
    }

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

    .breadcrumb {
        margin-bottom: 20px;
        font-size: 0.9em;
        color: #666;
    }

    .breadcrumb a {
        color: var(--primary-color);
        text-decoration: none;
    }

    .breadcrumb a:hover {
        text-decoration: underline;
    }

    .article-navigation {
        display: flex;
        justify-content: space-between;
        margin-top: 30px;
        padding-top: 20px;
        border-top: 2px solid #f0f0f0;
    }

    .nav-link {
        color: var(--primary-color);
        text-decoration: none;
        padding: 10px 20px;
        border: 2px solid var(--primary-color);
        border-radius: 25px;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background: var(--primary-color);
        color: white;
    }

    /* Table responsive styling */
    .table-wrapper {
        overflow-x: auto;
        margin: 20px 0;
        border-radius: 10px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .article-content table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
        background: white;
    }

    .article-content th,
    .article-content td {
        padding: 12px;
        text-align: left;
        border-bottom: 1px solid #ddd;
    }

    .article-content th {
        background-color: var(--primary-color);
        color: white;
        font-weight: bold;
    }

    .article-content tr:hover {
        background-color: #f5f5f5;
    }

    /* Article CTA Section Styles */
    .article-cta-section {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        padding: 30px;
        margin: 40px 0;
        border-radius: 15px;
        text-align: center;
        border: 2px solid var(--primary-color);
    }

    .cta-header h3 {
        color: var(--primary-color);
        margin: 0 0 10px 0;
        font-size: 1.5em;
    }

    .cta-header p {
        color: #666;
        margin: 0 0 25px 0;
        font-size: 1.1em;
    }

    .article-cta-buttons {
        display: flex;
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .article-cta-btn {
        display: inline-block;
        padding: 12px 20px;
        text-decoration: none;
        border-radius: 25px;
        font-weight: bold;
        font-size: 0.95em;
        transition: all 0.3s ease;
        min-width: 160px;
        text-align: center;
    }

    .article-cta-btn.primary {
        background: linear-gradient(45deg, var(--primary-color), var(--primary-color-light));
        color: white;
    }

    .article-cta-btn.secondary {
        background: linear-gradient(45deg, var(--secondary-color), var(--secondary-color-dark));
        color: white;
    }

    .article-cta-btn.tertiary {
        background: linear-gradient(45deg, var(--tertiary-color), var(--tertiary-color-light));
        color: white;
    }

    .article-cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    }

    /* Mobile responsiveness for articles */
    @media (max-width: 768px) {
        .article-container {
            margin: 10px;
            padding: 15px;
        }
        
        .article-image {
            height: 250px;
        }
        
        .article-meta {
            flex-direction: column;
            gap: 10px;
            align-items: center;
        }
        
        .article-cta-section {
            padding: 20px;
            margin: 30px 0;
        }
        
        .article-cta-buttons {
            flex-direction: column;
            align-items: center;
        }
        
        .article-cta-btn {
            width: 100%;
            max-width: 250px;
        }
        
        .article-navigation {
            flex-direction: column;
            gap: 15px;
        }
        
        .nav-link {
            text-align: center;
        }
        
        .table-wrapper {
            margin: 10px -15px;
        }
    }
    