/* Base Reset & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

body {
    background-color: #0B0F19; /* Deep EpicHostly-style dark mode */
    color: #FFFFFF;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header & Search */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

header h1 {
    font-size: 2.5rem;
    background: linear-gradient(90deg, #3B82F6, #8B5CF6); /* Blue to Purple gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#searchInput {
    padding: 12px 20px;
    width: 300px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    outline: none;
    transition: all 0.3s ease;
}

#searchInput:focus {
    border-color: #3B82F6;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

/* Modern Grid Layout */
.plugin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

/* Glassmorphism Card Design */
.plugin-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.plugin-card:hover {
    transform: translateY(-5px);
    border-color: #3B82F6;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.15); /* Sleek hover glow */
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.version {
    display: inline-block;
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 15px;
    color: #A1A1AA;
}

.card-content p {
    color: #9CA3AF;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* Footer & Buttons */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 15px;
}

.price {
    font-weight: bold;
    font-size: 1.2rem;
    color: #10B981; /* Success Green */
}

.buy-btn {
    background: #3B82F6;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.buy-btn:hover {
    background: #2563EB;
}