body {
    margin: 0;
    font-family: system-ui, sans-serif;
    background: linear-gradient(135deg, #0f1629, #161f2b, #000);
    color: white;
    overflow-x: hidden;

}

/* Animated blurred lights */
.blob {
    position: fixed;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.35;
    animation: pulse 6s infinite ease-in-out;
    z-index: -1;
}
.blob.red { background: rgba(255, 70, 70, 0.25); top: 10%; left: 25%; }
.blob.orange { background: rgba(255, 140, 50, 0.2); bottom: 10%; right: 20%; animation-delay: 1s; }

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.25); }
}

/* PAGE STRUCTURE */
header {
    text-align: center;
    padding: 70px 20px 40px;
}

header h1 {
    font-size: 3.2rem;
    margin: 0;
    font-weight: 800;
}
header h1 span {
    color: #d31a1a;
}
header p.subtitle {
    font-size: 1.2rem;
    margin: 6px 0;
    opacity: .8;
}

header p.small {
    font-size: .9rem;
    color: #d31a1a;
    margin-top: 4px;
}

/* STATS SECTION */
.stats-wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
    text-align: center;
}

.stats-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    max-width: 1100px;
    margin: auto;
}


.stat-card {
    display: flex;
    align-items: center;
    gap: 18px;

    /* 🔥 zmiana wysokości i szerokości */

    min-height: 90px;

    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 18px 26px;

    backdrop-filter: blur(12px);
    transition: .25s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 25px rgba(255,255,255,0.08);
}

/* ikona mniejsza i bliżej */
.icon-box {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.07);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* tekst wyrównany do środka karty */
.stat-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-title {
    font-size: .95rem;
    font-weight: 500;
    opacity: .9;
    margin-bottom: 4px;
}

.stat-number {
    font-size: 1.9rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.1;
}

.stat-sub {
    font-size: .8rem;
    opacity: .55;
    margin-top: 3px;
}

.icon-box {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.07);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* DONATION SECTION */
.donation {
    text-align: center;
    padding: 70px 20px;
}

.donation-sub {
    opacity: .7;
    margin-top: -4px;
}

.donation-card {
    margin: 40px auto;
    max-width: 800px;
    background: linear-gradient(135deg, #0d1526, #0b172f, #0a1223);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: inset 0 0 30px rgba(255,255,255,0.03);
}

.donation-amount {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.dollar {
    font-size: 3rem;

    margin-right: 8px;
    color: #2563eb;
}

.raised {
    opacity: 0.55;
    margin-bottom: 25px;
}

.donate-btn {
    background: #2563eb;
    border: none;
    padding: 14px 28px;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.25s;
    font-weight: 500;
}

.donate-btn:hover {
    background: #1e50c7;
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(37,99,235,0.35);
}

.donation-count {
    margin-top: 18px;
    opacity: .55;
    font-size: .9rem;
}

button {
    background: #3DA5F4;
    border: none;
    padding: 14px 30px;
    color: white;
    border-radius: 10px;
    cursor: pointer;
    transition: .25s;
    font-size: 1rem;
}
button:hover {
    background: #1d7fd0;
}

/* CONTACT SECTION */
.contact-section {
    text-align: center;
    padding: 80px 20px;
}

.contact-sub {
    opacity: .6;
    margin-top: -4px;
}

.contact-card {
    margin: 40px auto;
    max-width: 850px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 40px;
    text-align: left;
    backdrop-filter: blur(14px);
}

.contact-card label {
    display: block;
    margin: 20px 0 6px;
    font-weight: 500;
}

.contact-card input,
.contact-card textarea {
    width: calc(100% - 30px);

    padding: 14px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
    color: white;
    font-size: 1rem;
    outline: none;
    transition: .25s;
}

.contact-card input:focus,
.contact-card textarea:focus {
    border-color: rgba(55, 55, 55, 0.5);
}

.contact-btn {
    width: 100%;
    margin-top: 28px;
    padding: 14px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: .25s;
    background: #0b5bb6;
    color: white;
    letter-spacing: .3px;
}

.contact-btn:hover {
    transform: translateY(-1px);

}

footer {
    text-align: center;
    padding: 40px 20px;
    margin-top: 60px;
    opacity: .65;
    font-size: .9rem;
}
