* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    background: #08090a;
    font-family: "League Spartan", sans-serif;
    color: #fff;
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}

a:hover {
    color: #b7e023;
}

::selection {
    background: rgba(183, 224, 35, 0.3);
}

.bg-image {
    position: absolute;
    inset: 0;
    background-image: url("assets/naive-venue.jpg");
    background-color: #101113;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    filter: grayscale(1) contrast(1.05) brightness(0.9);
    z-index: 0;
    width: 100%;
    height: 60%;
}

.bg-image-rel {
    position: relative;
    width: 100%;
    height: 100%;
}

.bg-image-rel::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 34%;
    background: linear-gradient(to top, #08090a 0%, rgba(8, 9, 10, 0) 100%);
}

.bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(6, 7, 8, 0.8) 0%,
        rgba(6, 7, 8, 0.22) 38%,
        rgba(6, 7, 8, 0.54) 60%,
        rgba(6, 7, 8, 0.88) 100%
    );
    z-index: 1;
}

.bg-glow {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 15%;
    background: radial-gradient(
        120% 100% at 50% 100%,
        rgba(183, 224, 35, 0.16) 0%,
        rgba(183, 224, 35, 0.06) 40%,
        transparent 72%
    );
    z-index: 1;
    pointer-events: none;
}

.page {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 52px 22px 60px;
}

.card-wrap {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-shadow:
        0 1px 16px rgba(0, 0, 0, 0.65),
        0 1px 3px rgba(0, 0, 0, 0.5);
}

.wp-main {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wp-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.wp-right {
    width: 100%;
}

@media (min-width: 900px) {
    .wp-wrap {
        max-width: 1120px !important;
    }
    .wp-main {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 64px;
    }
    .wp-left {
        flex: 1;
        max-width: 600px;
        align-items: flex-start;
        text-align: left;
        padding-top: 8px;
    }
    .wp-right {
        width: 430px;
        flex: none;
        position: sticky;
        top: 44px;
    }
}

.eyebrow {
    font-family: "League Spartan", sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: #b7e023;
    padding-left: 0.34em;
    text-shadow: 0 0 22px rgba(183, 224, 35, 0.35);
}

.logo-wrap {
    position: relative;
    width: 100%;
    max-width: 330px;
    margin: 20px 0 6px;
}

.logo-glow {
    position: absolute;
    inset: 0;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 34px rgba(255, 255, 255, 0.55))
        drop-shadow(0 0 12px rgba(255, 255, 255, 0.35));
    opacity: 0.9;
}

.logo-crisp {
    position: relative;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 22px rgba(0, 0, 0, 0.5));
}

.subtitle {
    font-family: "League Spartan", sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.5;
    padding-left: 0.14em;
}

.event-line {
    font-family: "League Spartan", sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #b7e023;
    margin-top: 12px;
    padding-left: 0.14em;
    text-shadow: 0 0 20px rgba(183, 224, 35, 0.3);
}

.divider-short {
    width: 44px;
    height: 1px;
    background: rgba(255, 255, 255, 0.35);
    margin: 26px 0;
}

.headline {
    font-family: "League Spartan", sans-serif;
    font-weight: 600;
    font-size: 19px;
    line-height: 1.45;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin: 0 0 34px;
    color: #fff;
}

.accent {
    color: #b7e023;
}

.accent-text {
    font-weight: 600;
    color: #b7e023;
}

.paragraph {
    font-family: "League Spartan", sans-serif;
    font-size: 15.5px;
    line-height: 1.75;
    font-weight: 300;
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.01em;
}

.paragraph-last {
    margin: 0 0 26px;
}

.min-donation {
    display: flex;
    flex-direction: column;
    align-items: inherit;
    gap: 6px;
    margin-bottom: 40px;
}

.min-donation-label {
    font-family: "League Spartan", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: #b7e023;
    padding-left: 0.32em;
}

.min-donation-amount {
    font-family: "League Spartan", sans-serif;
    font-size: 44px;
    font-weight: 300;
    letter-spacing: 0.01em;
    color: #fff;
    line-height: 1;
}

.min-donation-currency {
    font-weight: 600;
    font-size: 22px;
    letter-spacing: 0.06em;
    vertical-align: 0.28em;
}

.panel {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 20px;
    padding: 30px 26px 32px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.6);
}

.panel-label {
    font-family: "League Spartan", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #b7e023;
    margin-bottom: 6px;
    padding-left: 0.3em;
}

.panel-sublabel {
    font-family: "League Spartan", sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 24px;
}

.iban-rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.iban-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    padding: 14px 16px;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.11);
    transition:
        background 0.35s ease,
        border-color 0.35s ease;
    -webkit-tap-highlight-color: transparent;
}

.iban-row.copied {
    background: rgba(183, 224, 35, 0.13);
    border-color: rgba(183, 224, 35, 0.55);
}

.row-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    min-width: 0;
    flex: 1;
    text-align: left;
}

.row-label {
    font-family: "League Spartan", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: #b7e023;
    padding-left: 0.26em;
}

.row-value {
    font-family: "League Spartan", sans-serif;
    font-size: 16px;
    line-height: 1.3;
    color: #fff;
    font-weight: 500;
    word-break: break-word;
    letter-spacing: 0.02em;
}

.row-badge {
    flex: none;
    font-family: "League Spartan", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding-left: 0.16em;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.35s ease;
}

.iban-row.copied .row-badge {
    color: #b7e023;
}

.footer-text {
    font-family: "League Spartan", sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.85);
    margin: 30px 0 0;
    line-height: 1.6;
}

.footer-bottom {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 56px;
}

.marquee-mask {
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(
        90deg,
        transparent,
        #000 18%,
        #000 82%,
        transparent
    );
    mask-image: linear-gradient(
        90deg,
        transparent,
        #000 18%,
        #000 82%,
        transparent
    );
}

.marquee-text {
    font-family: "League Spartan", sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    white-space: nowrap;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.28);
    text-align: center;
}

.organized-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 34px 0 20px;
    width: 100%;
    max-width: 300px;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28));
}

.divider-line:last-child {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.28), transparent);
}

.organized-label {
    font-family: "League Spartan", sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    padding-left: 0.3em;
    white-space: nowrap;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 22px;
}

.social-link {
    font-family: "League Spartan", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #fff;
}

.beneficiary-note {
    font-family: "League Spartan", sans-serif;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.5);
    margin: 26px 0 0;
    line-height: 1.6;
}
