.pg-hero {
    padding: 140px 40px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pg-hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.pg-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
}

.pg-hero p {
    font-size: 16px;
    color: #555;
    position: relative;
}

.pg-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 100px;
}

.pg-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.pg-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 24px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.pg-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.pg-card.pg-free {
    border-color: rgba(34, 197, 94, 0.2);
    background: rgba(34, 197, 94, 0.03);
}

.pg-card.pg-free:hover {
    border-color: rgba(34, 197, 94, 0.4);
    box-shadow: 0 16px 48px rgba(34, 197, 94, 0.08);
}

.pg-free-tag {
    position: absolute;
    top: 0;
    right: 20px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 0 0 6px 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pg-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background: rgba(255, 255, 255, 0.06);
    color: #aaa;
    margin-bottom: 16px;
    overflow: hidden;
}

.pg-card-icon svg {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.pg-card-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.pg-card-sub {
    font-size: 13px;
    color: #555;
    margin-bottom: 12px;
}

.pg-card-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 16px;
    flex: 1;
}

.pg-card-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
    width: fit-content;
    margin-bottom: 16px;
}

.pg-status-online {
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
}

.pg-status-online i {
    font-size: 7px;
}

.pg-status-updating {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}

.pg-status-updating i {
    font-size: 10px;
    animation: pg-spin 2s linear infinite;
}

.pg-status-offline {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.pg-status-offline i {
    font-size: 7px;
}

@keyframes pg-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.pg-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.pg-card-price {
    font-size: 14px;
    font-weight: 700;
    color: #888;
}

.pg-card-price.pg-price-free {
    color: #22c55e;
}

.pg-card-btn {
    font-size: 13px;
    font-weight: 600;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.pg-card:hover .pg-card-btn {
    color: #fff;
}

.pg-card-features {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
    flex: 1;
}

.pg-card-features span {
    font-size: 12px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pg-card-features span i {
    color: #dc2626;
    font-size: 9px;
    width: 12px;
    text-align: center;
    flex-shrink: 0;
}

.pg-card.pg-free .pg-card-features span i {
    color: #22c55e;
}

@media (max-width: 1024px) {
    .pg-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pg-hero {
        padding: 120px 24px 40px;
    }

    .pg-hero h1 {
        font-size: 36px;
    }

    .pg-content {
        padding: 0 24px 60px;
    }

    .pg-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}
