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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: "Montserrat", Arial, sans-serif;
    color: #ffffff;
    background:
        radial-gradient(circle at 20% 10%, rgba(0, 119, 255, 0.18), transparent 30%),
        radial-gradient(circle at 80% 40%, rgba(0, 180, 255, 0.12), transparent 30%),
        linear-gradient(135deg, #07111f, #0d1b2e 50%, #08101c);
    overflow-x: hidden;
}


/* ================================
   SCHWEBENDE JOB-BEGRIFFE
================================ */

.floating-jobs {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
    opacity: 0.18;
}

.floating-jobs span {
    position: absolute;
    font-size: clamp(14px, 2vw, 24px);
    font-weight: 700;
    white-space: nowrap;
    animation: floating 18s linear infinite;
}

.floating-jobs span:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-jobs span:nth-child(2) {
    top: 20%;
    left: 75%;
    animation-delay: 2s;
}

.floating-jobs span:nth-child(3) {
    top: 35%;
    left: 10%;
    animation-delay: 4s;
}

.floating-jobs span:nth-child(4) {
    top: 50%;
    left: 80%;
    animation-delay: 6s;
}

.floating-jobs span:nth-child(5) {
    top: 65%;
    left: 15%;
    animation-delay: 8s;
}

.floating-jobs span:nth-child(6) {
    top: 80%;
    left: 70%;
    animation-delay: 10s;
}

.floating-jobs span:nth-child(7) {
    top: 90%;
    left: 25%;
    animation-delay: 12s;
}

.floating-jobs span:nth-child(8) {
    top: 15%;
    left: 45%;
    animation-delay: 14s;
}

.floating-jobs span:nth-child(9) {
    top: 45%;
    left: 50%;
    animation-delay: 16s;
}

.floating-jobs span:nth-child(10) {
    top: 75%;
    left: 45%;
    animation-delay: 3s;
}

.floating-jobs span:nth-child(11) {
    top: 30%;
    left: 90%;
    animation-delay: 7s;
}

.floating-jobs span:nth-child(12) {
    top: 60%;
    left: 85%;
    animation-delay: 11s;
}

@keyframes floating {

    0% {
        transform: translateY(20px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(20px);
    }

}


/* ================================
   ALLGEMEINER INHALT
================================ */

header,
section,
footer {
    position: relative;
    z-index: 1;
}

header {
    text-align: center;
    padding: 55px 20px 30px;
}

header h1 {
    font-size: clamp(48px, 9vw, 88px);
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 1;
}

.start {
    color: #ffffff;
}

.wende {
    color: #1683ff;
}

.subtitle {
    margin-top: 18px;
    font-size: clamp(16px, 3vw, 22px);
    color: #b9c7d8;
    font-weight: 600;
}


/* ================================
   LOGIN / REGISTRIERUNG
================================ */

.auth-box {
    width: calc(100% - 30px);
    max-width: 600px;
    margin: 30px auto 50px;
    padding: 35px;
    background: rgba(10, 24, 42, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
    text-align: center;
}

.auth-box h2 {
    font-size: clamp(24px, 5vw, 34px);
    margin-bottom: 12px;
}

.auth-box > p {
    color: #b9c7d8;
    line-height: 1.6;
    margin-bottom: 25px;
}

.auth-box input {
    display: block;
    width: 100%;
    height: 54px;
    margin: 12px 0;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.96);
    color: #111827;
    font-family: inherit;
    font-size: 16px;
    outline: none;
    transition: 0.2s ease;
}

.auth-box input:focus {
    border-color: #1683ff;
    box-shadow: 0 0 0 3px rgba(22, 131, 255, 0.2);
}

.auth-box input::placeholder {
    color: #6b7280;
}

.auth-box button {
    display: block;
    width: 100%;
    min-height: 52px;
    margin-top: 14px;
    padding: 13px 20px;
    border: none;
    border-radius: 12px;
    background: #1683ff;
    color: #ffffff;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease;
}

.auth-box button:hover {
    background: #006fe6;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(22, 131, 255, 0.25);
}

.auth-box button:active {
    transform: translateY(0);
}

#logoutButton {
    background: #334155;
}

#logoutButton:hover {
    background: #475569;
}

#authMessage {
    min-height: 24px;
    color: #8ec5ff;
    font-size: 14px;
}


/* ================================
   HERO-BEREICH
================================ */

.hero {
    width: calc(100% - 30px);
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 70px 25px;
    text-align: center;
}

.hero h2 {
    font-size: clamp(30px, 6vw, 52px);
    line-height: 1.15;
    margin-bottom: 25px;
}

.hero p {
    color: #c7d3e0;
    font-size: clamp(17px, 3vw, 21px);
    line-height: 1.8;
    margin-bottom: 35px;
}

.hero button {
    display: inline-block;
    min-width: 260px;
    padding: 16px 30px;
    border: none;
    border-radius: 14px;
    background: #1683ff;
    color: #ffffff;
    font-family: inherit;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease;
}

.hero button:hover {
    background: #006fe6;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(22, 131, 255, 0.3);
}


/* ================================
   KOSTENLOSE FUNKTIONEN
================================ */

section:not(.hero):not(.price):not(.auth-box) {
    width: calc(100% - 30px);
    max-width: 900px;
    margin: 0 auto 70px;
    text-align: center;
}

section:not(.hero):not(.price):not(.auth-box) h2 {
    font-size: clamp(26px, 5vw, 40px);
    margin-bottom: 30px;
}

.box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.box p {
    padding: 24px 18px;
    background: rgba(16, 32, 52, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    color: #dce7f3;
    font-weight: 600;
    line-height: 1.5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: 0.2s ease;
}

.box p:hover {
    transform: translateY(-4px);
    border-color: rgba(22, 131, 255, 0.4);
}


/* ================================
   PREMIUM
================================ */

.price {
    width: calc(100% - 30px);
    max-width: 700px;
    margin: 0 auto 80px;
    padding: 45px 35px;
    text-align: center;
    background:
        linear-gradient(
            145deg,
            rgba(20, 53, 88, 0.95),
            rgba(9, 25, 44, 0.95)
        );
    border: 1px solid rgba(22, 131, 255, 0.25);
    border-radius: 26px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

.price h2 {
    font-size: clamp(28px, 5vw, 42px);
    margin-bottom: 15px;
}

.price h3 {
    margin: 25px 0 15px;
    font-size: clamp(30px, 6vw, 48px);
    color: #4da3ff;
}

.price p {
    color: #c4d2e0;
    line-height: 1.7;
}

.price button {
    width: 100%;
    max-width: 400px;
    margin-top: 30px;
    padding: 16px 25px;
    border: none;
    border-radius: 14px;
    background: #1683ff;
    color: #ffffff;
    font-family: inherit;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease;
}

.price button:hover {
    background: #006fe6;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(22, 131, 255, 0.3);
}

.price button:disabled {
    opacity: 0.6;
    cursor: wait;
    transform: none;
}

#zahlungStatus {
    margin-top: 18px;
    color: #8ec5ff;
}


/* ================================
   FOOTER
================================ */

footer {
    padding: 35px 20px;
    text-align: center;
    color: #7f91a5;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}


/* ================================
   HANDY-ANSICHT
================================ */

@media (max-width: 600px) {

    header {
        padding-top: 35px;
    }

    header h1 {
        letter-spacing: -2px;
    }

    .auth-box {
        width: calc(100% - 20px);
        margin-top: 20px;
        padding: 25px 20px;
        border-radius: 20px;
    }

    .auth-box input {
        height: 52px;
    }

    .hero {
        width: calc(100% - 20px);
        padding: 45px 10px;
    }

    .hero button {
        width: 100%;
        min-width: 0;
    }

    section:not(.hero):not(.price):not(.auth-box) {
        width: calc(100% - 20px);
    }

    .box {
        grid-template-columns: 1fr;
    }

    .price {
        width: calc(100% - 20px);
        padding: 35px 20px;
        border-radius: 20px;
    }

}
/* ================================
   BUTTONS UNTEREINANDER
================================ */

/* Konto Buttons */
.auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.auth-buttons button {
    width: 100%;
}


/* Hero Buttons */
.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}


.hero-buttons a {
    width: 100%;
    max-width: 300px;
}


.hero-buttons button {
    width: 100%;
}