body {
    font-family: 'Gilroy Regular';
}

.lp-container {
    margin: 0 auto;
    max-width: 680px;
    padding: 0 16px;
    min-height: 100vh;
}

.gilroy-regular {
    font-family: 'Gilroy Regular';
}
.gilroy-bold {
    font-family: 'Gilroy Bold';
}

@media (max-width: 425px) {
    .mobile-hide {
        display: none;
    }
}
@media (min-width: 426px) {
    .pc-hide {
        display: none;
    }
}

.donate-header {
    grid-template-columns: auto 1fr;
}

.primary-button {
    background-color: #dc2626;
    color: white;
    padding: 12px 24px;
    border-radius: 9999px;
    text-align: center;
    width: 100%;
    max-width: 375px;
    border: none;
    max-height: 48px;
    font-family: 'Gilroy Regular';
    font-size: 1rem;
    cursor: pointer;
}

h2 {
    font-family: 'Gilroy Bold';
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 100;
}
p {
    font-family: 'Gilroy Regular';
    font-size: 1rem;
    line-height: 1.5;
}

hr {
    margin: 3rem auto;
    height: 1px;
    background-color: #e5e7eb;
    border: none;
    width: 90%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 8px;
}
.stat-box {
    text-align: left;
    border: 1px solid #d9d9d9;
    border-radius: 16px;
    padding: 16px;
}
.component-badge,
.stat-label {
    font-size: 0.75rem;
    background-color: #efefef;
    padding: 2px 8px;
    border-radius: 8px;
    display: block;
    max-width: fit-content;
}
.total-box {
    background-color: #1f88c9;
    text-align: center;
    padding: 16px;
    border-radius: 16px;
    margin-bottom: 24px;
}
.total-label {
    font-size: 0.75rem;
    background-color: white;
    padding: 2px 8px;
    border-radius: 8px;
    display: inline-block;
}