@charset "UTF-8";

/* 레이아웃 컨테이너 */
.donation-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.donation-container {
    text-align: center;
}

.donation-content-row {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* 왼쪽 설명 섹션 */
.donation-info-side {
    flex: 1;
}

.gateway-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
}

.gateway-subtitle {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-top: 10px;
}

.service-name {
    color: var(--text-main);
    font-size: 1.1rem;
    margin-bottom: 15px;
    margin-top: 30px;
}

.service-desc {
    color: var(--text-dim);
    font-size: 0.85rem;
    line-height: 1.8;
}

.bank-info-box {
    margin-top: 30px;
    padding: 15px;
    background: rgba(48, 54, 61, 0.2);
    border-radius: 6px;
    border-left: 2px solid var(--text-dim);
}

.bank-info-box small {
    color: var(--primary-color);
    font-size: 0.7rem;
}

.bank-info-box p {
    color: var(--text-main);
    font-size: 0.85rem;
    margin: 5px 0 0 0;
}

/* 오른쪽 터미널 입력 박스 */
.donation-terminal {
    flex: 1.2;
    background: var(--card-bg);
    border: 1px solid var(--text-dim);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

#donation-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    width: fit-content;
    margin: 30px auto;
}

.terminal-header {
    color: var(--primary-color);
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.input-amount-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 2px solid var(--text-dim);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.currency-symbol {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: bold;
}

.amount-input {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2.2rem;
    width: 100%;
    outline: none;
    font-family: 'dungGeunMo';
    transition: text-shadow 0.3s ease;
}

.amount-input:focus {
    text-shadow: 0 0 10px rgba(88, 166, 255, 0.5);
}

/* 하단 액션 버튼 */
.donate-submit-btn {
    width: 100%;
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 15px;
    font-family: 'dungGeunMo';
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.donate-submit-btn:hover {
    background: var(--primary-color);
    color: #0d1117;
    box-shadow: 0 0 20px rgba(88, 166, 255, 0.6);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .donation-content-row {
        flex-direction: column;
    }

    .donation-terminal {
        width: 100%;
    }
}