       /* Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Segoe UI", sans-serif;
        }

        body {
            min-height: 100vh;
            background: linear-gradient(
                135deg,
                #CC95C0 0%,
                #DBD4B4 35%,
                #7AA1D2 100%
            );
            display: flex;
            flex-direction: column;
            align-items: stretch;
            padding-top: 40px;
        }

        /* Glassmorphism Base */
        .glass {
            background: rgba(255, 255, 255, 0.18);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.25);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        }

        header {
            width: calc(100% - 80px);
            margin: 0 40px;
            padding: 25px 50px;
            font-size: 28px;
            font-weight: 700;
            letter-spacing: 2px;
            color: #fff;
            text-align: center;
        }

        nav {
            width: calc(100% - 80px);
            margin: 20px 40px 0 40px;
            padding: 15px 40px;
            display: flex;
            justify-content: center;
        }


        nav ul {
            list-style: none;
            display: flex;
            gap: 30px;
        }

        nav a {
            text-decoration: none;
            color: #ffffff;
            font-size: 16px;
            font-weight: 500;
            position: relative;
            padding: 5px 0;
        }

        nav a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -4px;
            width: 0;
            height: 2px;
            background: #ffffff;
            transition: width 0.3s ease;
        }

        nav a:hover::after {
            width: 100%;
        }

        /* Responsive */
        @media (max-width: 700px) {
            header {
                font-size: 22px;
                padding: 20px 25px;
            }

            nav ul {
                flex-wrap: wrap;
                justify-content: center;
                gap: 15px;
            }
        }

        .fee {
            color: rgb(124, 124, 124);
        }

        .setimg {
                width: 55% !important;
                height: 120px !important;      
                object-fit: contain;
                display: block;
                margin: 0 auto 10px auto;
        }

/* Modal Backdrop */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

/* Modal Box */
.modal {
    width: 380px;
    max-width: calc(100% - 40px);
    padding: 25px;
    color: #fff;
    text-align: center;
}

/* Text */
.modal h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

.modal-desc {
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 20px;
}

.modal-price {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Buttons */
.modal-actions {
    display: flex;
    gap: 12px;
    width: 100%;
    margin-top: 20px;
}

.modal-actions .buy-btn {
    width: 100%;
    padding: 13px 0;
    font-size: 1.1rem;
    border-radius: 30px;
    text-align: center;
}

.close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 22px;
    color: white;
    cursor: pointer;
    opacity: 0.7;
}

.close-btn:hover {
    opacity: 1;
}

/* Modal Animation */
.modal-backdrop {
    opacity: 0;
    transition: opacity 0.25s ease;
}

.modal-backdrop.active {
    opacity: 1;
}

.modal {
    transform: scale(0.96);
    opacity: 0;
    transition: 
        transform 0.25s ease,
        opacity 0.25s ease;
}

.modal-backdrop.active .modal {
    transform: scale(1);
    opacity: 1;
}

.securepaymentinfo {
    scale: 0.8;
}

.hold-btn {
    position: relative;
    overflow: hidden;
    transform-origin: center;
}

/* Füllung */
.hold-btn .fill {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.25);
    width: 0%;
    z-index: 0;
}

/* Text über der Füllung */
.hold-btn .label {
    position: relative;
    z-index: 1;
}

/* Während gedrückt */
.hold-btn.holding {
    transform: scale(1.03);
}

.hold-btn.holding .fill {
    animation: fillHold 1s linear forwards;
}

/* Rückwärts wenn losgelassen */
.hold-btn.reset .fill {
    width: 0%;
    transition: width 0.3s ease;
}

@keyframes fillHold {
    from { width: 0%; }
    to { width: 100%; }
}

/* Processing Overlay */
.processing-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.processing-box {
    padding: 30px 35px;
    text-align: center;
    color: #fff;
}

/* Loader */
.loader-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 15px;
}

.loader {
    width: 100%;
    height: 100%;
    animation: spin 1.2s linear infinite;
}

.lock-icon {
    position: absolute;
    width: 32px;
    height: 32px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.9;
}

/* Text */
.processing-text {
    font-size: 15px;
    opacity: 0.85;
}

/* Rotation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
