:root {
    --donate-green: #02ff77;
    --donate-border: #265424;
}

html,
body {
    min-height: 100%;
    background-color: #09280f !important;
}

body,
body.layout_widget {
    margin: 0;
    background-color: #09280f !important;
    background-image: url(https://img.itch.zone/aW1nLzI1ODUwMjE5LnBuZw==/original/Gbn3z7.png);
    background-repeat: repeat-x;
    background-position: 50% 0;
    background-attachment: fixed;
}

.layout_widget #wrapper,
.layout_widget .wrapper,
.layout_widget #inner_column,
.wrapper {
    min-height: 100vh;
    background-color: transparent !important;
}

.donate-wrap {
    width: calc(100% - 40px);
    max-width: 920px;
    margin: 16px auto 24px;
    padding: 18px;
    border: 1px solid var(--donate-border);
    border-radius: 12px;
    background:
        radial-gradient(circle at top right, rgba(2, 255, 119, 0.14), transparent 38%),
        linear-gradient(180deg, rgba(35, 56, 34, 0.95), rgba(12, 33, 11, 0.95));
    box-shadow: inset 0 0 0 1px rgba(2, 255, 119, 0.09), 0 10px 24px rgba(0, 0, 0, 0.24);
}

.donate-head {
    text-align: center;
    margin-bottom: 14px;
}

.donate-head h1 {
    margin: 0 0 8px;
    color: var(--donate-green);
}

.donate-head p {
    margin: 0;
    color: rgba(2, 255, 119, 0.9);
}

.donate-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 14px 0 18px;
}

.donate-actions .button {
    border-radius: 8px;
}

.donation-panel {
    border: 1px solid rgba(2, 255, 119, 0.2);
    border-radius: 10px;
    padding: 14px;
    background: rgba(5, 18, 7, 0.7);
}

.donation-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.donation-meta p {
    margin: 0;
}

.donation-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.donation-list li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(2, 255, 119, 0.16);
}

.donation-list li:last-child {
    border-bottom: 0;
}

.donation-name {
    font-weight: bold;
}

.donation-note {
    opacity: 0.9;
    font-size: 0.9rem;
}

.donation-right {
    text-align: right;
    min-width: 170px;
}

.donation-amount {
    font-weight: bold;
    color: rgba(2, 255, 119, 1);
}

.donation-time {
    font-size: 0.85rem;
    opacity: 0.82;
}

.donation-empty {
    opacity: 0.9;
    margin: 8px 0 0;
}

@media (max-width: 700px) {
    .donate-wrap {
        width: calc(100% - 24px);
        padding: 12px;
    }

    .donation-list li {
        flex-direction: column;
        align-items: flex-start;
    }

    .donation-right {
        min-width: 0;
        text-align: left;
    }

    .donate-actions .button {
        width: 100%;
        text-align: center;
    }
}
