/* Grundlayout und Farben */
body {
    background: #15192d url('/assets/pixel-bg.png') repeat;
    color: #fff;
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
}

a {
    color: #00ffe1;
    text-decoration: none;
    transition: .13s;
}
a:hover {
    color: #fd3bff;
    text-shadow: 0 2px 10px #0ff6;
}

/* Buttons */
.btn-pay, .btn-main {
    background: linear-gradient(90deg, #00ffe1 0%, #fd3bff 100%);
    color: #1e1639;
    padding: .8em 2em;
    border: none;
    border-radius: 10px;
    font-size: 1.13em;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 1px 6px #0ffb;
    transition: .22s;
}
.btn-pay:hover, .btn-main:hover {
    background: #fd3bff;
    color: #fff;
    box-shadow: 0 0 16px #00ffe199;
}

/* Formulareingaben */
input, select, textarea {
    background: #181a3d;
    color: #fff;
    border: 1.5px solid #00ffcc66;
    border-radius: 8px;
    font-size: 1em;
    padding: .5em;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 1em;
}
input:focus, select:focus, textarea:focus {
    border-color: #fd3bff;
    outline: none;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 9px;
    background: #222;
}
::-webkit-scrollbar-thumb {
    background: #fd3bff99;
    border-radius: 5px;
}

/* Grid für Pixelwall */
.grid {
    display: grid;
    grid-template-columns: repeat(50, 16px);
    grid-template-rows: repeat(30, 16px);
    gap: 1px;
    margin: 3em auto;
    max-width: 850px;
    background-color: #0d0f1a;
    box-shadow: 0 0 12px #00ffe066;
    padding: 10px;
}

.pixel-block {
    position: relative;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.pixel-block img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3px;
}

/* FAQ-Bereich */
.faq {
    max-width: 700px;
    margin: 3em auto;
    padding: 2em;
    background: #181a3d;
    border-radius: 12px;
    box-shadow: 0 2px 22px #00ffe133;
}
.faq h2 {
    color: #fd3bff;
}
.faq p {
    color: #aaa;
    line-height: 1.6;
}

/* Footer */
footer {
    text-align: center;
    margin: 3em 0;
    color: #888;
    font-size: .9em;
}
footer a {
    color: #0ff;
    margin-right: 1.5em;
}
footer a:last-child {
    margin-right: 0;
}