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

/* BASE */
html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background:
    linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.85)),
    url("wallpaper.jpg") center/cover no-repeat fixed;
    color: #e0e0e0;
    line-height: 1.7;
    overflow-x: hidden;
}

/* HEADINGS */
h1, h2, h3 {
    color: #ffcc00;
    margin-bottom: 14px;
    text-shadow: 0 0 10px rgba(255,204,0,0.5);
}

/* HERO */
.hero {
    text-align: center;
    margin: 40px 0 20px;
}

.hero h1 {
    font-size: 36px;
    text-shadow: 0 0 12px rgba(255,204,0,0.6);
}

.hero p {
    font-size: 18px;
    color: #ccc;
}

/* BUTTONS */
.button {
    display: inline-block;
    padding: 14px 26px;
    background-color: #ffcc00;
    color: #000;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.25s ease;
}

.button:hover {
    transform: scale(1.1);
    background-color: #ffe066;
    box-shadow: 0 0 16px rgba(255,204,0,0.7);
}

.button.disabled,
.button.disabled:hover {
    background-color: #555;
    color: #222;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* GRID LAYOUT FOR TOOLS */
.store {
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* CARDS */
.card {
    background: linear-gradient(145deg, #1a1a1a, #111);
    border-left: 4px solid #ffcc00;
    padding: 24px;
    border-radius: 8px;
    transition: 0.25s ease;
    box-shadow: 0 0 12px rgba(0,0,0,0.4);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.7);
}

.card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

/* META */
.meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #bbb;
}

/* DESCRIPTION */
.desc {
    margin-bottom: 14px;
    font-size: 16px;
    color: #ddd;
}

/* FEATURES */
.features {
    margin-bottom: 18px;
    padding-left: 20px;
    color: #ccc;
}

.features li {
    margin-bottom: 6px;
}

/* COMING SOON FULL WIDTH */
.coming {
    grid-column: span 2;
}

/* CENTERED YOUTUBE + KO-FI BUTTONS */
.mid-buttons {
    text-align: center;
    margin: 20px 0 40px;
}

.mid-buttons .button {
    margin: 0 10px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    margin-top: 230px;
    background-color: #000;
    border-top: 2px solid #ffcc00;
    color: #888;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 700px) {
    .store {
        grid-template-columns: 1fr;
    }

    .coming {
        grid-column: span 1;
    }

    .card { padding: 18px; }
    .button { padding: 12px 20px; }
    .hero h1 { font-size: 28px; }
    .hero p { font-size: 16px; }
}
