/* ============================================
   TLD Index 页面样式（tldpg）
   ============================================ */
.tldpg-main {
    max-width: 1350px;
    margin: 18px auto 0;
}

.tldpg-banner {
    background: linear-gradient(135deg, var(--primary-green-dark) 0%, var(--primary-green) 55%, var(--primary-green-light) 100%);
    border-radius: 16px;
    padding: 44px 32px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

    .tldpg-banner::before {
        content: '';
        position: absolute;
        top: -35%;
        right: -25%;
        width: 55%;
        height: 110%;
        background: radial-gradient(circle, rgba(255,255,255,0.09) 0%, transparent 70%);
        pointer-events: none;
    }

    .tldpg-banner::after {
        content: '';
        position: absolute;
        bottom: -25%;
        left: -8%;
        width: 35%;
        height: 75%;
        background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 60%);
        pointer-events: none;
    }

.tldpg-banner-content {
    position: relative;
    z-index: 1;
}

.tldpg-banner-text {
    text-align: center;
    margin-bottom: 28px;
}

    .tldpg-banner-text h1 {
        font-size: 44px;
        font-weight: 900;
        color: #fff;
        margin-bottom: 10px;
    }

    .tldpg-banner-text p {
        font-size: 17px;
        color: rgba(255,255,255,0.88);
        margin-bottom: 24px;
    }

.tldpg-banner-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 20px;
}

.stat-item {
    text-align: center;
}

    .stat-item .stat-number {
        display: block;
        font-size: 32px;
        font-weight: 800;
        color: #fff;
        margin-bottom: 6px;
    }

    .stat-item .stat-label {
        display: block;
        font-size: 13px;
        color: rgba(255,255,255,0.8);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

.tldpg-banner-search {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    padding: 10px;
    display: flex;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

    .tldpg-banner-search input {
        flex: 1;
        border: none;
        outline: none;
        font-size: 15px;
        padding: 10px 14px;
        background: transparent;
        color: #333;
    }

        .tldpg-banner-search input::placeholder {
            color: #aaa;
        }

    .tldpg-banner-search button {
        border: none;
        border-radius: 8px;
        background: var(--primary-green);
        color: #fff;
        padding: 10px 24px;
        font-size: 14px;
        font-weight: 700;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: all 0.2s ease;
    }

        .tldpg-banner-search button:hover {
            background: var(--primary-green-hover);
            transform: translateY(-1px);
        }

        .tldpg-banner-search button i {
            font-size: 14px;
        }

.tldpg-section {
    margin-bottom: 24px;
}

.tldpg-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.tldpg-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 14px;
    padding: 20px 22px;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

    .tldpg-card:hover {
        border-color: var(--primary-green-light);
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }

    .tldpg-card .ext {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
    }

        .tldpg-card .ext > span:first-child {
            font-size: 24px;
            font-weight: 700;
            color: #2d2d2d;
        }

    .tldpg-card .desc {
        font-size: 13px;
        color: #666;
        margin-bottom: 14px;
        min-height: 38px;
        line-height: 1.5;
    }

    .tldpg-card .price {
        font-size: 20px;
        font-weight: 700;
        color: var(--primary-green);
        margin-bottom: 14px;
    }

        .tldpg-card .price span {
            font-size: 12px;
            color: #888;
            font-weight: 400;
        }

    .tldpg-card button {
        width: 100%;
        border: none;
        border-radius: 8px;
        background: var(--primary-green);
        color: #fff;
        padding: 10px 20px;
        font-size: 14px;
        font-weight: 700;
        cursor: pointer;
        transition: background 0.2s ease;
    }

        .tldpg-card button:hover {
            background: var(--primary-green-hover);
        }

@media (max-width: 1024px) {
    .tldpg-banner-text h1 {
        font-size: 36px;
    }

    .tldpg-banner-text p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .tldpg-banner {
        padding: 32px 18px;
    }

    .tldpg-banner-text h1 {
        font-size: 28px;
    }

    .tldpg-banner-text p {
        font-size: 14px;
    }

    .tldpg-banner-stats {
        gap: 30px;
    }

    .stat-item .stat-number {
        font-size: 26px;
    }

    .tldpg-banner-search {
        flex-direction: column;
    }

        .tldpg-banner-search button {
            width: 100%;
            justify-content: center;
        }

    .tldpg-cards {
        grid-template-columns: 1fr;
    }
}
