.vps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

/* Base Light Mode Styles (matching other topics cards on the site) */
.vps-card {
    background: var(--bg-white);
    border-radius: var(--border-radius, 8px);
    padding: 35px 30px;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.vps-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.vps-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.vps-card .vps-price-container {
    margin: 15px 0;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.vps-card .vps-starting {
    color: #4a6fa5;
    /* Darker blue for light mode */
    font-size: 0.95em;
    margin-bottom: 8px;
}

.vps-card .vps-price {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: var(--font-heading, 'Outfit', sans-serif);
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.vps-card .vps-period {
    color: #4a6fa5;
    font-size: 1rem;
    font-weight: normal;
}

.vps-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

.vps-card ul li {
    margin-bottom: 18px;
    position: relative;
    padding-left: 20px;
    line-height: 1.45;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.vps-card ul li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
    line-height: 1;
}

.vps-card ul li strong {
    color: var(--text-dark);
    font-weight: 600;
}

.vps-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #ffffff;
    padding: 15px 20px;
    text-align: center;
    border-radius: var(--border-radius, 8px);
    text-decoration: none;
    font-weight: 600;
    display: block;
    width: 100%;
    transition: all 0.3s ease;
    font-family: var(--font-main, 'Inter', sans-serif);
    font-size: 1rem;
    border: none;
    box-shadow: 0 4px 15px rgba(223, 133, 49, 0.3);
}

.vps-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(223, 133, 49, 0.4);
    color: #ffffff;
}

/* Dark Mode Overrides */
@media (prefers-color-scheme: dark) {
    .vps-card {
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        /* Using the exact color from your screenshot directly since we overwrite them on Dark mode */
        background-color: #262626;
    }

    .vps-card:hover {
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }

    .vps-card h3 {
        color: #ffffff;
    }

    .vps-card .vps-price-container {
        border-bottom: 1px solid #3d3d3d;
    }

    .vps-card .vps-starting {
        color: #5a7baf;
        /* The blueish text color */
    }

    .vps-card .vps-price {
        color: #ffffff;
    }

    .vps-card .vps-period {
        color: #5a7baf;
    }

    .vps-card ul li {
        color: #bbbbbb;
    }

    .vps-card ul li::before {
        color: #666666;
    }

    .vps-card ul li strong {
        color: #ffffff;
    }

    .vps-btn {
        background: #df8831;
        /* Flat orange matches the screenshots */
        box-shadow: none;
    }

    .vps-btn:hover {
        background: #c47629;
        transform: none;
        box-shadow: none;
    }
}