body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #1f2937;

    background: linear-gradient(-45deg, #ef8641 0%, #c94791 32%, #387de0 100%);
    background-size: cover;
    background-attachment: fixed;
}

#toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);

    padding: 12px 18px;
    border-radius: 10px;

    color: white;
    background: #1f2937;

    opacity: 0;
    transition: all 0.25s ease;
    pointer-events: none;

    z-index: 9999;
}

#toast.show {
    opacity: 1;
    top: 30px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

img {
    max-width: 100%;
}

/* LOGO */
.logo {
    margin-bottom: 20px;
}

/* TITLE */
h1 {
    font-weight: 600;
    margin-bottom: 30px;
}

/* FORM */
form {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

input[type="email"] {
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    width: 260px;
    outline: none;
}

input[type="email"]:focus {
    border-color: #2563eb;
}

button {
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    background: #2563eb;
    color: white;
    cursor: pointer;
}

button:hover {
    background: #1d4ed8;
}

/* LINK */
a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}

/* STORE SECTION */
.store-section {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.store-card {
    background: white;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 280px;
    transition: transform 0.2s ease;
}

.store-card:hover {
    transform: translateY(-4px);
}

.store-btn {
    width: 180px;
    cursor: pointer;
}

.qr {
    width: 140px;
}

.imprint-btn {
    display: inline-block;
    margin-top: 50px;

    padding: 12px 20px;
    border-radius: 10px;

    background: #2563eb;
    color: white !important;

    font-size: 16px;
    font-weight: 600;
    text-decoration: none;

    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transition: all 0.2s ease;
}

.contact-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.contact-btn:active {
    transform: translateY(0px);
}

@media (max-width: 768px) {

    .container {
        padding: 20px 15px;
    }

    h1 {
        font-size: 20px;
        line-height: 1.3;
    }

    form {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    input[type="email"] {
        width: 100%;
        max-width: 320px;
    }

    button {
        width: 100%;
        max-width: 320px;
    }

    .store-section {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .store-card a {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .store-btn,
    .qr {
        display: block;
    }

    .contact-btn {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }
}
