@font-face {
    font-family: "DIN Regular";
    src: url("../fonts/DIN-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* GLOBAL */
body {
    margin: 0;
    font-family: "DIN Regular", "Inter", "Segoe UI", sans-serif;
    background: linear-gradient(145deg, #0f0f0f, #2d2d2d);
    color: #dedede;
}

.paypal-wrapper {
    display: flex;
    justify-content: center !important;   /* ⬅️ CENTAR */
    align-items: center;
}


/* PayPal iframe wrapper */
#paypal-button-container {
    display: inline-block !important;     /* ⬅️ VAŽNO */
    width: 300px;
}

/* HEADER */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(10deg, rgba(187,128,0,0.95), rgba(187,128,0,0.65));
    padding: 5px 40px;
    margin-top: 35px;
    width: calc(100% - 80px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    position: relative; /* omogućava apsolutno pozicioniranje child elemenata */
}

.logo {
    height: 100px;
}

.header-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);

    text-align: center;
    width: max-content;
    pointer-events: none; /* da se ne klikne slučajno */
}

.header-spacer {
    flex: 1;
    min-width: 50px; /* da se sve ne zbijaju ako je prozor uzak */
}

header h1 {
    font-size: 28px;
    color: white;
    font-weight: 700;
    letter-spacing: 0.5px;
}

header h2 {
    font-size: 20px;
    color: #e3e3e3;
    font-weight: 100;
    margin-top: 6px;
    opacity: 0.9;
}

.header-step {
    color: #fff;
    font-weight: 700;
    font-size: 28px;
}

/* Home button bliže logu */
.home-btn {
    margin-left: 75px; /* smanjuje razmak od loga */
}

/* Login button bliže Schritt */
.login-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: inherit;
    margin-right: 75px;
    max-width: 300px;          /* sprječava širenje headera */
    overflow: hidden;          /* sakrij višak teksta */
    white-space: nowrap;       /* jedan red */
    text-overflow: ellipsis;   /* ... */
}

.login-text {
    font-size: 18px;
    max-width: 300px;          /* ograniči prostor za email tekst */
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* Flash poruke u tvom stilu */
.flash-messages {
    position: fixed;
    top: 85px;
    right: 20px;
    z-index: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.flash {
    margin-right: 220px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    color: #2d2d2d;
    text-align: right;
}


/* Ako treba header centar da se ne širi previše */
.header-center {
    flex: 1; /* zauzima preostali prostor između home i login */
    text-align: center;
}


/* MODEL FLOW */
.model-flow {
    width: 100%;
    background: linear-gradient(90deg, #3e3e3e, #6a6a6a);
    padding: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.flow-img {
    height: 300px;
    border-radius: 8px;
    filter: drop-shadow(0 0 8px rgba(0,0,0,0.7));
    transition: transform 0.5s ease, filter 0.5s ease;
}

.flow-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flow-label {
    font-size: 20px;
    color: #e3e3e3;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 600;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.flow-icon {
    width: 50px;
    height: 50px;
    opacity: 0.9;
}

.hover-wrapper {
    position: relative;
    display: inline-block;
}

/* Hover box - glassmorphism stil */
.hover-box {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 430px;
    height: 350px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 2px dashed #777;
    border-radius: 12px;
    text-align: left;
    font-size: 18px;
    color: #000000;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hover-wrapper:hover .hover-box {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(-5px);
}

/* Modal stil */
.modal {
    display: none; /* sakriven dok se ne otvori */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    width: 300px;
    height: 250px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(6px);
    border-radius: 15px;
    padding: 20px;
    position: relative;
    text-align: center;
    color: white;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

/* UPLOAD */
.upload-section {
    text-align: center;
    margin: 40px 0;
}

.upload-box.drag-over {
    border: 2px dashed rgba(187,128,0,0.95);
    background-color: #c6c6c6;
}

/* CENTRALNI WRAPPER ZA UPLOAD + WEITER */
.upload-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    width: 400px; /* isto kao info-box */
}

/* Upload box */
.upload-box {
    width: 100%; /* sada zauzima cijeli wrapper */
    height: 500px;
    padding: 20px;
    border: 2px dashed #777;
    border-radius: 50px;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    transition: transform 0.5s ease, background 0.5s ease, border-color 0.5s ease;
}

.upload-box:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.12);
    transform: scale(1.01);
}

.upload-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.upload-text {
    font-size: 16px;
    text-align: center;
}

.upload-info-centered {
    display: none;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    max-width: 80%;
    padding: 14px 18px;

    text-align: center;          /* ⬅️ višeredni tekst centriran */
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;

    color: #f2b1b1;              /* ⬅️ svijetli bordo tekst */
    background: rgba(90, 20, 20, 0.65);  /* ⬅️ bordo background */
    border: 1px solid rgba(160, 60, 60, 0.9);

    border-radius: 18px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.45);

    pointer-events: none;        /* klik ide kroz tekst */
}

/* Weiter dugme */
.weiter-btn {
    width: 110%; /* potpuno isto kao upload-box */
    padding: 20px;
    background-color: rgba(187,128,0,0.65);
    color: #e3e3e3;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.5s ease, background-color 0.5s ease;
    font-family: "DIN Regular", "Inter", "Segoe UI", sans-serif;
    border: 1px solid rgba(255,255,255,0.35);
}

.weiter-btn:hover {
    background-color: rgba(187,128,0,0.95);
    transform: scale(1.01);
}

/* ============================
   WEITER – LOADING STATE
============================ */
.weiter-btn.loading {
    pointer-events: none;
    opacity: 0.85;
    background: linear-gradient(
        90deg,
        rgba(187,128,0,0.35),
        rgba(187,128,0,0.95),
        rgba(187,128,0,0.35)
    );
    background-size: 200% 100%;
    animation: weiterPulse 1.4s infinite;
}

@keyframes weiterPulse {
    0%   { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}


/* INFO BOXES */
.info-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    padding: 40px 20px;
    flex-wrap: wrap;
}

.info-box {
    text-align: justify;
    text-justify: inter-word; /* poboljšava raspored riječi */
    margin-bottom: 1em; /* razmak između pasusa */
    flex: 0 0 600px; /* fiksna širina */
    padding: 0px;
    border-radius: 16px;
    line-height: 1.50;
    font-size: 18px;
    font-weight: 100;
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.5s ease, box-shadow 0.5s ease, background 0.5s ease;
}

.big {
    font-size: 20px;
    font-weight: 100;
    color: #fff;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 25px;
    font-size: 14px;
    color: #999;
}

.ebenen-section {
    padding: 40px;
    text-align: center;
    color: #fff;
}

.ebenen-section h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #ffcc5c;
}

.ebenen-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.ebene-row {
    display: grid;
    grid-template-columns: repeat(6, auto);
    gap: 10px 25px;
    align-items: center;
}

.ebene-row label {
    font-size: 16px;
    font-weight: 600;
}

.ebene-row input {
    width: 80px;
    padding: 6px 10px;
    border: 1px solid #777;
    border-radius: 6px;
    background: rgba(255,255,255,0.05);
    color: #fff;
    text-align: right;
    transition: border-color 0.5s ease, background 0.5s ease;
}

.ebene-row input:focus {
    border-color: #ffcc5c;
    background: rgba(255,255,255,0.1);
    outline: none;
}

/* -----------------------------
   LOGIN / REGISTRACIJA MODAL
--------------------------------*/
.modal-login {
    display: none; 
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.5);
    justify-content: center;
    align-items: center;
    pointer-events: none;        /* blokira klikove na overlay */
}

/* Glavni modal box */
.modal-content-login {
    background-color: #323232;
    padding: 20px;
    border-radius: 50px;
    width: 400px;
    color: white;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 22px rgba(0,0,0,0.25);
    pointer-events: auto;        /* omogućava klik samo na modal */
}

.login-wrapper {
    position: relative;
    top: 10px;   /* pomakne se dole */
    display: flex;
    flex-direction: column;
}

.logout-placeholder {
    height: 22px;   /* isto kao visina logout dugmeta */
    visibility: hidden;
}

.logout-btn {
    background: none;
    border: none;
    color: #3d3d3d;
    cursor: pointer;
    font-size: 14px;
    padding: 0px;
}

.logout-btn:hover {
    text-decoration: underline;
}

/* Inputs */
.modal-content-login input {
    width: 85%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 25px;
    border: none;
}

/* Buttons */
.modal-content-login button {
    width: 90%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 25px !important;
    border: none;
    background-color: #bb8000;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: 0.2s;
}

.modal-content-login button:hover {
    background-color: #a0a0a0;
}

/* Close button (X) */
.close-login {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: white;
}

/* Small link */
.small-link-login {
    color: #ccc;
    text-decoration: none;
    font-size: 16px !important;
}

.small-link-login:hover {
    color: #ffcc5c;
    text-decoration: underline;
}


/* -----------------------------
   PAYMENT MODAL
--------------------------------*/
.modal-payment {
    display: none; /* sakriven dok se ne otvori */
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6); /* tamnija pozadina za fokus */
    justify-content: center;
    align-items: center;
}

.modal-content-payment {
    background-color: #323232; /* isti kao login modal */
    padding: 20px 25px;
    border-radius: 14px;
    width: 400px; /* manja širina */
    max-width: 90%; /* responsivno */
    color: #dedede;
    text-align: left; /* labela i inputi jedan ispod drugog */
    box-shadow: 0 8px 22px rgba(0,0,0,0.25);
    font-family: "DIN Regular", sans-serif;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.modal-content-payment h3 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 15px;
    color: #ffcc5c;
}

/* Close button */
.close-payment {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: white;
}

/* Labels i inputi */
.modal-content-payment label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px !important;
    margin-left: 5px !important;
}

.modal-content-payment input {
    width: 100%;
    padding: 15px 10px !important;
    margin-bottom: 5px !important;
    border-radius: 6px;
    border: 1px solid #666;
    background-color: #1a1a1a;
    color: #fff;
    font-size: 14px;
    font-family: "DIN Regular", sans-serif;
}

/* Dugmad */
.modal-content-payment .btn-pay,
.modal-content-payment .btn-paypal {
    width: 100%;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.5s ease, background-color 0.5s ease;
    font-family: "DIN Regular", sans-serif;
}

.modal-content-payment .btn-pay {
    background-color: rgba(187,128,0,0.65);
    color: #e3e3e3;
    margin-top: 5px;
}

.modal-content-payment .btn-pay:hover {
    background-color: rgba(187,128,0,0.95);
    transform: scale(1.03);
}

.modal-content-payment .btn-paypal {
    background-color: #003087;
    color: #fff;
}

.modal-content-payment .btn-paypal:hover {
    background-color: #0044b8;
    transform: scale(1.03);
}

/* Opcionalno: full-width za poruke */
.modal-content-payment .form-row.full-width {
    width: 100%;
}

/* ===========================
   PAYMENT MODAL SPECIFIC STYLE
=========================== */
/* PAYMENT MODAL SPECIFIC STYLE */
.payment-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(188, 188, 188, 0.75);
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.payment-modal::before {
    content: "";
    position: absolute;
    inset: 0;
}

.payment-modal-content {
    background-color: #323232;
    padding: 30px 40px;
    border-radius: 50px;
    width: 600px;
    max-width: 95%;
    color: white;
    text-align: left;
    position: relative;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: auto;
}

/* Close X u gornjem desnom kutu */
.payment-modal-content .close-payment {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: white;
}

/* Price info centrirano */
.payment-modal-content .price-info {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Form polja */
.payment-modal-content .form-row {
    display: flex;
    flex-direction: column;
}

.payment-modal-content .form-row label {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
    padding: 0px 15px;
    margin-top: 10px;
    text-align: left;
    font-family: "DIN Regular", sans-serif;
}

.payment-modal-content .form-row input {
    width: 100%;
    padding: 10px 15px;
    border-radius: 20px;
    border: 1px solid #666;
    background-color: #1a1a1a;
    color: #fff;
    font-size: 14px;
    box-sizing: border-box;
    font-family: "DIN Regular", sans-serif;
}

/* Dugme za plaćanje */
.payment-modal-content .btn-pay,
.payment-modal-content .btn-paypal {
    width: 100%;
    padding: 15px 15px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.5s ease, background-color 0.5s ease;
    border: none;
    box-sizing: border-box;
}

/* Stil dugmadi */
.payment-modal-content .btn-pay {
    background-color: rgba(187,128,0,0.65);
    color: #e3e3e3;
    margin-top: 20px;
}

.payment-modal-content .btn-pay:hover {
    background-color: rgba(187,128,0,0.95);
    transform: scale(1.01);
}

.payment-modal-content .btn-paypal {
    background-color: #003087;
    color: #fff;
    margin-top: 10px;
}

.payment-modal-content .btn-paypal:hover {
    background-color: #0044b8;
    transform: scale(1.01);
}

/* Hr linija */
.payment-modal-content hr {
    margin: 20px 0;
    border: 0;
    border-top: 1px solid #444;
    margin-bottom: 10px;
    margin-top: 10px;
}

.payment-modal-content .form-row input {
    background-color: #1a1a1a;
    color: #fff;
    border: 1px solid #666;
}

/* ======================================
   FORCE DARK INPUTS – PAYMENT MODAL
====================================== */

.payment-modal-content .form-row input {
    background-color: #1a1a1a !important;
    color: #dedede !important;
    border: 1px solid #666 !important;
    box-shadow: none !important;
    font-family: "DIN Regular", sans-serif !important;
}

/* READONLY (email, iznos) – ISTI IZGLED */
.payment-modal-content .form-row input[readonly] {
    background-color: #1a1a1a !important;
    color: #dedede !important;
    cursor: default;
}

/* FOCUS – bez bijelog flasha */
.payment-modal-content .form-row input:focus {
    background-color: #1a1a1a !important;
    color: #dedede !important;
    outline: none;
    border-color: #bb8000;
}

/* ===========================
   PAYPAL SECTION – PAYMENT MODAL
=========================== */

.payment-modal-content .paypal-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

.payment-modal-content .paypal-section p {
    font-size: 14px;
    font-weight: 600;
    color: #ccc;
    margin: 0;
    text-align: center;
}

/* Centriraj PayPal iframe */
.payment-modal-content #paypal-button-container {
    display: flex !important;
    justify-content: center !important;
    width: 100%;
}

/* Ograniči širinu dugmeta */
.payment-modal-content #paypal-button-container > div {
    width: 300px !important;
}

.login-error {
    margin-bottom: 12px;
    padding: 10px 14px;
    background: rgba(180, 40, 40, 0.15);
    border: 1px solid rgba(180, 40, 40, 0.45);
    color: #ffb3b3;
    border-radius: 25px;
    font-size: 14px;
    text-align: center;
}


/* =========================================================
   MOBILE / LANDING REDESIGN
   za index.html
   zalijepi na kraj style.css
   ========================================================= */

/* desktop mala dorada */
.landing-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header-top-row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 0;
}

.home-icon {
    width: 34px;
    height: 34px;
    display: block;
}

@media (max-width: 768px) {

    html, body {
        overflow-x: hidden;
    }

    body {
        margin: 0;
        background: linear-gradient(180deg, #111111 0%, #181818 45%, #101010 100%);
        color: #dedede;
        font-size: 15px;
        line-height: 1.55;
    }

    /* =========================
       HEADER
       ========================= */
    header,
    .landing-header {
        margin-top: 0 !important;
        width: 100% !important;
        padding: 14px 16px 20px 16px !important;
        box-sizing: border-box;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        background: linear-gradient(180deg, rgba(184,126,25,0.97), rgba(153,104,22,0.97)) !important;
        box-shadow: 0 8px 24px rgba(0,0,0,0.35);
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .header-top-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        width: 100%;
        margin-bottom: 10px;
    }

    .logo {
        height: 56px !important;
        width: auto;
        display: block;
    }

    .home-btn {
        margin: 0 !important;
        width: 42px;
        height: 42px;
        flex-shrink: 0;
        border-radius: 12px;
        background: rgba(255,255,255,0.08);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
    }

    .home-icon {
        width: 24px !important;
        height: 24px !important;
        display: block;
    }

    .header-spacer,
    .login-btn,
    .login-text,
    .header-step {
        display: none !important;
    }

    .header-center {
        position: static !important;
        left: auto !important;
        transform: none !important;
        width: 100% !important;
        pointer-events: auto !important;
        text-align: center;
        margin-top: 2px;
    }

    header h1,
    .landing-header h1 {
        margin: 6px auto 8px auto !important;
        max-width: 320px;
        font-size: 27px !important;
        line-height: 1.16 !important;
        font-weight: 700;
        color: #ffffff;
        letter-spacing: 0;
    }

    header h2,
    .landing-header h2 {
        margin: 0 auto !important;
        max-width: 320px;
        font-size: 14px !important;
        line-height: 1.35 !important;
        font-weight: 400 !important;
        color: #f0d08c !important;
        opacity: 1 !important;
    }

    /* =========================
       MODEL FLOW
       ========================= */
    .model-flow {
        width: 100% !important;
        padding: 22px 14px 10px 14px !important;
        box-sizing: border-box;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: center !important;
        gap: 10px !important;
        background: transparent !important;
    }

    .flow-item {
        width: 100% !important;
        max-width: 100% !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        background: linear-gradient(145deg, rgba(42,42,42,0.97), rgba(24,24,24,0.98));
        border-radius: 22px;
        padding: 14px 14px 16px 14px;
        box-sizing: border-box;
        box-shadow: 0 8px 22px rgba(0,0,0,0.35);
    }

    .flow-label {
        width: 100%;
        text-align: center;
        font-size: 18px !important;
        font-weight: 700;
        color: #f3f3f3;
        margin-bottom: 10px !important;
        text-shadow: none !important;
    }

    .hover-wrapper {
        width: 100%;
        display: block;
    }

    .flow-img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: none !important;
        display: block;
        margin: 0 auto;
        border-radius: 12px;
        filter: drop-shadow(0 8px 18px rgba(0,0,0,0.35));
    }

    .flow-icon {
        width: 34px !important;
        height: 34px !important;
        opacity: 0.95;
        margin: -2px 0 -2px 0;
    }

    .hover-box {
        display: none !important;
    }

    /* =========================
       INFO SECTION
       ========================= */
    .info-section {
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start;
        align-items: stretch !important;
        gap: 26px !important;
        padding: 18px 16px 26px 16px !important;
        box-sizing: border-box;
    }

    .info-box {
        flex: none !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        font-size: 15px !important;
        line-height: 1.68 !important;
        text-align: left !important;
        box-sizing: border-box;
    }

    .info-box h3 {
        margin-top: 0;
        margin-bottom: 14px;
    }

    .big {
        display: inline;
        font-size: 17px !important;
        line-height: 1.55 !important;
        color: #ffffff !important;
    }

    .info-box p {
        margin-bottom: 14px;
    }

    .info-box a {
        word-break: break-word;
    }

    /* =========================
       TRIAL BOX
       ========================= */
    .upload-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        gap: 16px !important;
        align-items: stretch !important;
    }

    .upload-box {
        width: 100% !important;
        height: 300px !important;
        padding: 22px 16px !important;
        border-radius: 24px !important;
        border: 1px dashed rgba(170,170,170,0.45) !important;
        background: linear-gradient(145deg, rgba(37,37,37,0.98), rgba(23,23,23,0.98)) !important;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        box-shadow: none;
    }

    .upload-icon {
        font-size: 28px !important;
        margin-bottom: 10px;
    }

    .upload-text {
        font-size: 14px !important;
        line-height: 1.45 !important;
        text-align: center;
    }

    .weiter-btn {
        width: 100% !important;
        padding: 16px 20px !important;
        border-radius: 999px !important;
        font-size: 18px !important;
        font-weight: 700;
        background: linear-gradient(180deg, #b37a1d 0%, #9d6917 100%) !important;
        color: #ffffff !important;
        border: none !important;
        box-sizing: border-box;
        box-shadow: 0 8px 18px rgba(0,0,0,0.28);
    }

    .weiter-btn:hover {
        transform: none !important;
        background: linear-gradient(180deg, #ba8224 0%, #a36f1d 100%) !important;
    }

    /* =========================
       FOOTER
       ========================= */
    footer {
        position: static !important;
        height: auto !important;
        margin-top: 8px !important;
        padding: 24px 16px 28px 16px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
        text-align: center !important;
        font-size: 13px !important;
        line-height: 1.7 !important;
    }

    footer > div,
    footer > a,
    footer > span {
        position: static !important;
        top: auto !important;
        left: auto !important;
        bottom: auto !important;
        transform: none !important;
        white-space: normal !important;
        display: block !important;
    }

    #emailLink {
        cursor: pointer;
    }
}

