﻿body {
    background: radial-gradient(circle at center, rgba(60,120,180,.08) 0%, transparent 45%), linear-gradient(180deg, #050b12 0%, #07111c 100%);
}

html, body{overflow-x: hidden;}

html,
body {
    min-height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

/* ---------- Layout ---------- */

#donate-page {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 32px 0 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.donate-layout {
    width: min(1520px, 94vw);
    margin: 56px auto 90px;
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 32px;
    justify-content: center;
    align-items: start;
}

hr.major {
    width: 100%;
    max-width: 1400px;
    margin: 5px auto;
    border: 0;
    border-top: 1px solid rgba(159,230,255,.18);
}

/* ---------- Header ---------- */

.donate-header {
    text-align: center;
    margin-bottom: 56px;
}

    .donate-header h1 {
        margin: 0;
        font-size: 2.2rem;
        font-weight: 300;
        letter-spacing: .35rem;
        text-transform: uppercase;
        color: #9fe6ff;
        text-shadow: 0 0 8px rgba(160,235,255,.45), 0 0 18px rgba(90,210,255,.25);
    }

    /* Text */

.donate-contact {
    margin-top: 18px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    font-size: 1rem;
    color: #d9f6ff;
    text-shadow: 0 0 6px rgba(160,235,255,.45);
    animation: downloadHintPulse 2.8s ease-in-out infinite;
}

    .download-subtitle .chevron,
    .download-subtitle .hero-arrow {
        display: inline-block;
        position: relative;
        top: -10px;

        font-size: 1.45rem;
        line-height: 1;
        color: #9fe6ff;
        text-shadow: 0 0 8px rgba(160,235,255,.9), 0 0 18px rgba(90,210,255,.7);
    }

@keyframes downloadHintPulse {
    0%, 100% {
        transform: translateY(0);
        opacity: .75;
        filter: brightness(1);
    }

    45% {
        transform: translateY(4px);
        opacity: 1;
        filter: brightness(1.15);
    }
}

/* ---------- CTAs ---------- */

/* ---------- Donate Content ---------- */

.donate-content {
    width: min(1500px, 92%);
    margin: 56px auto 90px;
    display: grid;
    grid-template-columns: 560px 1fr;
    gap: 32px;
    align-items: start;
}

/* ---------- Credits ---------- */

.donate-credits {
    width: 100%;
    min-height: 462px;
    margin: 0;
    padding: 38px 60px;
}

    .donate-credits h2 {
        margin: 0 0 24px;
        color: #9fe6ff;
        font-size: 2rem;
        font-weight: 300;
        letter-spacing: .12em;
        text-transform: uppercase;
        text-align: center;
    }

.credit-list {
    display: grid;
    gap: 14px;
}

    .credit-list p {
        margin: 0;
        color: rgba(230,245,255,.9);
        text-align: center;
    }

/* ---------- Cosmetics ---------- */

.donate-customs {
    width: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 480px);
    gap: 26px;
}

    .donate-customs .vs-cta {
        width: 480px;
        min-height: 120px;
        padding: 22px 26px;
    }

        .donate-customs .vs-cta h2 {
            margin: 0;
            color: #9fe6ff;
            font-size: 1.45rem;
            font-weight: 300;
            letter-spacing: .12em;
            text-transform: uppercase;
            text-align: center;
        }

        .donate-customs .vs-cta p {
            margin: .7rem 0 0;
            color: rgba(230,245,255,.82);
            text-align: center;
        }

/* ---------- Responsive ---------- */

@media screen and (max-width: 1100px) {
    .donate-content {
        grid-template-columns: 1fr;
    }

    .donate-credits {
        width: 100%;
        margin: 0;
        padding: 38px 40px;
    }
}

@media screen and (max-width: 700px) {
    .donate-customs {
        grid-template-columns: 1fr;
    }
}

/* Footer */

#footer {
    padding: 2rem 0 1rem 0;
    background: #000;
    text-align: center;
    margin-top: auto;
}

    #footer a {
        color: rgba(255, 255, 255, 0.5);
    }

        #footer a:hover {
            color: #FFF;
        }

    #footer .copyright {
        color: #bbb;
        font-size: 0.9rem;
        margin: 0 0 2rem 0;
        padding: 0;
        text-align: center;
    }

@media screen and (max-width: 736px) {

    #footer {
        padding: 1rem 0 1rem 0;
    }
}