/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Dark Mode Theme */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    line-height: 1.6;
}

.container {
    max-width: 960px;
    margin: 20px auto;
    padding: 0 20px;
}

header {
    text-align: center;
    padding: 40px 0;
}

header h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2rem;
    color: #aaaaaa;
}

main h2 {
    font-size: 2rem;
    color: #ffffff;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.product-card {
    background-color: #1e1e1e;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 25px;
    transition: transform 0.2s ease-in-out;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: #555;
}

.product-card h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.product-card p {
    font-size: 1rem;
    color: #aaaaaa;
    margin-bottom: 20px;
    min-height: 50px; /* Gives a uniform look */
}

/* This is the Lemon Squeezy Button */
.lemonsqueezy-button {
    display: inline-block;
    background-color: #0084ff; /* A bright, clickable color */
    color: #ffffff;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.2s;
}

.lemonsqueezy-button:hover {
    background-color: #3aa0ff;
}

footer {
    text-align: center;
    padding: 40px 0;
    margin-top: 30px;
    border-top: 1px solid #333;
    color: #777;
}
