
    /* Main Container */
    .main-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 15px;
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }

    .content-column {
        flex: 1;
        min-width: 0;
    }

    /* Section Headers */
    .section-header {
        font-size: 1.8rem;
        color: #333;
        margin-bottom: 15px;
        text-align: center;
    }

    .category-header {
        font-size: 1.4rem;
        color: #007bff;
        margin: 20px 0 10px;
        text-align: center;
    }

    /* Card Grid */
    .card-grid-three {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 15px;
        margin-bottom: 20px;
    }

    .card {
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }

    .card-header {
        background: #007bff;
        color: #fff;
        padding: 10px;
        font-size: 1.2rem;
        text-align: center;
    }

    .card-content {
        padding: 15px;
    }

    .card-content ul {
        list-style: none;
        padding: 0;
    }

    .card-content li {
        margin-bottom: 10px;
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
    }

    .card-content a {
        text-decoration: none;
        color: #333;
        display: block;
    }

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

    .card-title {
        font-size: 1rem;
        font-weight: 500;
        display: block;
    }

    .card-meta {
        font-size: 0.85rem;
        color: #666;
        display: flex;
        justify-content: space-between;
        margin-top: 5px;
    }

    /* Ad Styles */
    .adsbygoogle,
    amp-ad {
        width: 100% !important;
        max-width: 100%;
        margin: 15px auto;
        display: block;
        text-align: center;
    }

    /* Debug Info */
    .debug-info {
        background: #ffe6e6;
        padding: 10px;
        margin-bottom: 20px;
        border: 1px solid #ff0000;
    }

    /* Mobile View */
    @media (max-width: 768px) {
        .main-container {
            padding: 10px;
            flex-direction: column;
        }

        .content-column {
            width: 100%;
        }

        .section-header {
            font-size: 1.5rem;
        }

        .category-header {
            font-size: 1.2rem;
        }

        .card-grid-three {
            grid-template-columns: 1fr;
            gap: 10px;
        }

        .card-header {
            font-size: 1.1rem;
        }

        .card-title {
            font-size: 0.95rem;
        }

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

        .adsbygoogle,
        amp-ad {
            width: 100% !important;
            height: auto;
        }
    }

    /* Tablet View */
    @media (min-width: 769px) and (max-width: 1024px) {
        .main-container {
            padding: 12px;
        }

        .card-grid-three {
            grid-template-columns: repeat(2, 1fr);
        }

        .section-header {
            font-size: 1.6rem;
        }

        .category-header {
            font-size: 1.3rem;
        }
    }
