/* 메인 모달 스타일 (두 번째 HTML 기반) */
.modal-container {
    background-color: rgba(0, 0, 0, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 15px 40px 40px 40px;
    max-width: 600px;
    width: 90%;
    position: relative;
    text-align: center;
}

.close-button {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-button:hover {
    color: #ff0000;
}

.modal-header {
    margin-bottom: 10px;
    margin-top: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-icon {
    font-size: 60px;
    margin-bottom: 5px;
    display: block;
}

.modal-title {
    color: white;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
    margin-top: 0px;
    text-align: center;
    width: 100%;
}

.modal-subtitle {
    color: #ccc;
    font-size: 14px;
    margin: 0;
    text-align: center;
    width: 100%;
}

.form-container {
    text-align: left;
    margin-bottom: 20px;
}

.nickname-section {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.nickname-label {
    color: white;
    font-size: 16px;
    font-weight: bold;
    white-space: nowrap;
    min-width: 120px;
}

.nickname-input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #ffd700;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    font-size: 16px;
    box-sizing: border-box;
}

.nickname-input:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.nickname-input::placeholder {
    color: #777;
}

.pin-main-section {
    margin-bottom: 20px;
}

.pin-container {
    border: 2px solid #ff0000;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    min-height: 180px;
}

.pin-inputs {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.pin-input {
    flex: 1;
    padding: 12px;
    border: 2px solid #ff0000;
    border-radius: 6px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    font-size: 14px;
}

.pin-input:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
}

.pin-input::placeholder {
    color: #777;
}

.add-pin-button {
    background-color: #666;
    color: white;
    border: 2px solid #ff0000;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    width: 60%;
    margin: 0 auto;
    margin-top: 20px;
    display: block;
    transition: all 0.3s ease;
}

.add-pin-button:hover {
    background-color: #888;
}

.agreement-section {
    text-align: center;
    margin-bottom: 20px;
}

.agreement-checkbox {
    margin-right: 10px;
    transform: scale(1.2);
}

.agreement-label {
    color: white;
    font-size: 16px;
}

.submit-button {
    background-color: #666;
    color: white;
    border: 2px solid #ff0000;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    width: 200px;
    margin: 0 auto;
    display: block;
    transition: all 0.3s ease;
}

.submit-button:not(:disabled) {
    background-color: #ff0000;
    color: white;
}

.submit-button:hover:not(:disabled) {
    background-color: #cc0000;
    transform: translateY(-2px);
}

.submit-button:disabled {
    background-color: #666;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 768px) {
    .modal-container {
        padding: 30px 20px;
        max-width: 95%;
    }

    .pin-inputs {
        flex-direction: column;
    }

    .modal-title {
        font-size: 20px;
    }
}

.close-button {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-button:hover {
    color: #ff0000;
}

.modal-header {
    margin-bottom: 70px;
    margin-top: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-icon {
    font-size: 60px;
    margin-bottom: 0px;
    margin-top: 0px;
    display: block;
    color: white;
}

.modal-title {
    color: white;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
    margin-top: 0px;
    text-align: center;
    width: 100%;
}

.modal-subtitle {
    color: #ccc;
    font-size: 14px;
    margin: 0;
    text-align: center;
    width: 100%;
}

.payment-options-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 40px;
}

.payment-option-card {
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    padding: 30px 25px;
    width: 200px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.payment-option-card.bank-transfer {
    border: 3px solid #ffd700;
}

.payment-option-card.cultureland {
    border: 3px solid #ff0000;
}

.payment-option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.payment-option-card.bank-transfer:hover {
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.payment-option-card.cultureland:hover {
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.option-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 25px;
    color: white;
}

.option-details {
    text-align: center;
}

.option-detail {
    color: white;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.option-detail:before {
    content: "* ";
    margin-right: 5px;
    color: #ffd700;
    font-weight: bold;
}

.highlight-left {
    margin-left: 3px;
}
.highlight-right {
    margin-right: 3px;
}

.highlight {
    color: #ffd700;
    font-weight: bold;
}

.highlight.red {
    color: #ff0000;
}

.modal-footer {
    color: #888;
    font-size: 12px;
    line-height: 1.4;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* 서브 모달 스타일 (첫 번째 HTML 기반) */
.modal {
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    overflow-y: auto;
    position: relative;
}

.bank-modal {
    background-color: rgba(0, 0, 0, 0.95);
    border: 2px solid #ffd700;
}

.culture-modal {
    background-color: rgba(0, 0, 0, 0.95);
    border: 2px solid #ff0000;
}

.close-btn {
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    color: #ccc;
}

.charge-title {
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin: 0;
}

/* 공통 폼 스타일 */
.form-section {
    margin-bottom: 25px;
    text-align: left;
}

.input-group {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.input-label {
    width: 120px;
    font-size: 16px;
    font-weight: 600;
    text-align: right;
    margin-right: 20px;
}

.bank-modal .input-label {
    color: #ffd700;
}

.culture-modal .input-label {
    color: #ff0000;
}

.input-field {
    flex: 1;
    padding: 12px 15px;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 16px;
}

.bank-modal .input-field {
    border: 2px solid #ffd700;
}

.culture-modal .input-field {
    border: 2px solid #ff0000;
}

.input-field:focus {
    outline: none;
}

.bank-modal .input-field:focus {
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.culture-modal .input-field:focus {
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.nickname-section {
    margin-bottom: 20px;
}

.section-title {
    color: #ff0000;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.nickname-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ff0000;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 16px;
}

.pin-main-section {
    margin-bottom: 20px;
}

.pin-input-container {
    margin-bottom: 10px;
}

.pin-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

.pin-field {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #ff0000;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 16px;
}

.add-cultureland-btn {
    background-color: #ff0000;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.add-cultureland-btn:hover {
    background-color: #ff4444;
}

.remove-pin-btn {
    background-color: #666;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-pin-btn:hover {
    background-color: #888;
}

.checkbox-group, .agreement-section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
}

.checkbox-group input[type="checkbox"], .agreement-section input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
}

.checkbox-group label, .agreement-section label {
    color: white;
    font-size: 16px;
}

.terms-link {
    color: #ffd700;
    text-decoration: underline;
    cursor: pointer;
}

.terms-link:hover {
    color: #ffed4e;
}

.submit-button, .donation-button {
    width: 100%;
    max-width: 300px;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: block;
    margin: 0 auto;
}

.bank-modal .submit-button {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: black;
}

.bank-modal .submit-button:hover {
    background: linear-gradient(45deg, #ffed4e, #ffd700);
    transform: translateY(-2px);
}

.culture-modal .donation-button {
    background: linear-gradient(45deg, #ff0000, #ff4444);
    color: white;
}

.culture-modal .donation-button:hover {
    background: linear-gradient(45deg, #ff4444, #ff0000);
    transform: translateY(-2px);
}

.submit-button:disabled, .donation-button:disabled {
    background: #666 !important;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 768px) {
    .payment-options-grid {
        flex-direction: column;
        align-items: center;
    }

    .payment-option-card {
        width: 100%;
        max-width: 300px;
    }

    .modal-container {
        padding: 30px 20px;
    }

    .option-title {
        font-size: 24px;
    }

    .modal-content {
        width: 95%;
        padding: 20px;
    }

    .input-group {
        flex-direction: column;
        align-items: stretch;
    }

    .input-label {
        width: 100%;
        text-align: left;
        margin-right: 0;
        margin-bottom: 8px;
    }

    .pin-row {
        flex-direction: column;
        gap: 10px;
    }

    .charge-title {
        font-size: 22px;
    }
}

/* PIN 다중 입력을 위한 새로운 CSS */
/* 마인크래프트 닉네임 섹션 */
/* 마인크래프트 닉네임 섹션 */
.nickname-section {
    margin-bottom: 30px;
    margin-top: 40px; /* 상단 간격 추가 */
    display: flex;
    align-items: center;
    gap: 20px;
}

.section-title {
    color: white;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap; /* 텍스트 줄바꿈 방지 */
    flex-shrink: 0; /* 크기 고정 */
}

.nickname-input {
    flex: 1; /* 남은 공간을 모두 차지 */
    padding: 12px 15px;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    font-size: 16px;
    border: 2px solid #ffd700;
    box-sizing: border-box;
}

.nickname-input:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* PIN 섹션 */
.pin-main-section {
    margin-bottom: 30px;
}

.pin-row {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 15px;
}

.pin-field {
    flex: 1;
    padding: 12px 15px;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    font-size: 16px;
    border: 2px solid #ff0000;
    box-sizing: border-box;
}

.pin-field:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.add-cultureland-btn {
    width: 100%;
    background-color: #ff0000;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.add-cultureland-btn:hover {
    background-color: #ff4444;
}

/* 동의 섹션 */
.agreement-section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
}

.agreement-section input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.3);
}

.agreement-section label {
    color: white;
    font-size: 16px;
    cursor: pointer;
}

/* 후원하기 버튼 */
.donation-button {
    width: 100%;
    max-width: 200px;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: block;
    margin: 0 auto;
    background-color: #ff0000;
    color: white;
}

.donation-button:hover:not(:disabled) {
    background-color: #ff4444;
    transform: translateY(-2px);
}

.donation-button:disabled {
    background-color: #666 !important;
    cursor: not-allowed;
    transform: none;
}

.pin-note {
    color: #ff0000;
    font-size: 12px;
    margin-right: 10px; /* 기존에서 변경됨 */
}

.pin-section {
    margin-bottom: 20px;
}

.pin-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.add-pin-btn {
    background-color: #ff0000;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    margin-left: 20px;
    transition: background-color 0.3s;
}

.add-pin-btn:hover {
    background-color: #ff4444;
}

.pin-input-container {
    margin-bottom: 10px;
}

.remove-pin-btn {
    background-color: #666;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    margin-left: 10px;
    transition: background-color 0.3s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-pin-btn:hover {
    background-color: #888;
}

/* 모바일용 추가 스타일 */
@media (max-width: 768px) {
    .pin-input-group {
        flex-direction: row;
        align-items: center;
    }

    .pin-input {
        margin-right: 10px;
        margin-bottom: 0;
    }

    .pin-note {
        margin-left: 0;
        margin-right: 10px;
    }

    .pin-header {
        flex-direction: column;
        align-items: stretch;
    }

    .add-pin-btn {
        margin-left: 0;
        margin-top: 8px;
        align-self: flex-start;
    }
}


/* 모달 스타일 */
.modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    overflow-y: auto;
    position: relative;
}

.bank-modal {
    background-color: rgba(0, 0, 0, 0.95);
    border: 2px solid #ffd700;
}

.culture-modal {
    background-color: rgba(0, 0, 0, 0.95);
    border: 2px solid #ff0000;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    position: relative;
}

.close-btn {
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    color: #ccc;
}

/* 무통장입금 스타일 */
.bank-info {
    background-color: rgba(255, 215, 0, 0.1);
    border: 2px solid #ffd700;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.bank-number {
    font-size: 28px;
    font-weight: 700;
    color: #ffd700;
    margin: 15px 0;
    letter-spacing: 1px;
    display: inline-block;
}

.bank-name {
    font-size: 18px;
    color: #ffd700;
    margin-bottom: 5px;
    font-weight: 600;
}

.copy-button {
    background-color: #ffd700;
    color: black;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    margin-left: 15px;
    font-size: 14px;
    vertical-align: middle;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    line-height: 1;
}

.copy-button:hover {
    background-color: #ffed4e;
}

/* 컬쳐랜드 스타일 */
.cultureland-info {
    background-color: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff0000;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
    display: flex; /* 추가 */
    flex-direction: column; /* 추가 */
    align-items: center; /* 추가 */
    justify-content: center; /* 추가 */
}

.cultureland-info h3 {
    color: #ff0000;
    margin-bottom: 15px;
    font-size: 18px;
    text-align: center; /* 추가 */
}

.cultureland-info p {
    color: white;
    margin: 5px 0;
    font-size: 14px;
    text-align: center; /* 추가 */
}

/* 공통 폼 스타일 */
.form-section {
    margin-top: 40px;
    margin-bottom: 25px;
    text-align: left;
}

.input-group {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.input-label {
    width: 120px;
    font-size: 16px;
    font-weight: 600;
    text-align: right;
    margin-right: 20px;
}

.bank-modal .input-label {
    color: #ffd700;
}

.culture-modal .input-label {
    color: #ff0000;
}

.input-field {
    flex: 1;
    padding: 12px 15px;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 16px;
}

.bank-modal .input-field {
    border: 2px solid #ffd700;
}

.culture-modal .input-field {
    border: 2px solid #ff0000;
}

.input-field:focus {
    outline: none;
}

.bank-modal .input-field:focus {
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.culture-modal .input-field:focus {
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.pin-input-group {
    display: flex;
    align-items: center;
    flex: 1;
}

.pin-input {
    flex: 1;
    margin-right: 10px;
}

.pin-note {
    color: #ff0000;
    font-size: 12px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
}

.checkbox-group label {
    color: white;
    font-size: 16px;
}

.terms-link {
    color: #ffd700;
    text-decoration: underline;
    cursor: pointer;
}

.terms-link:hover {
    color: #ffed4e;
}

.submit-button {
    width: 100%;
    max-width: 300px;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: block;
    margin: 0 auto;
}

.bank-modal .submit-button {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: black;
}

.bank-modal .submit-button:hover {
    background: linear-gradient(45deg, #ffed4e, #ffd700);
    transform: translateY(-2px);
}

.culture-modal .submit-button {
    background: linear-gradient(45deg, #ff0000, #ff4444);
    color: white;
}

.culture-modal .submit-button:hover {
    background: linear-gradient(45deg, #ff4444, #ff0000);
    transform: translateY(-2px);
}

.submit-button:disabled {
    background: #666 !important;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        padding: 20px;
    }

    .input-group {
        flex-direction: column;
        align-items: stretch;
    }

    .input-label {
        width: 100%;
        text-align: left;
        margin-right: 0;
        margin-bottom: 8px;
    }

    .pin-input-group {
        flex-direction: column;
        align-items: stretch;
    }

    .pin-input {
        margin-right: 0;
        margin-bottom: 5px;
    }

    .pin-note {
        margin-left: 0;
    }

    .charge-title {
        font-size: 22px;
    }

    .bank-number {
        font-size: 24px;
    }
}

.cache-a {
    text-decoration: none;
    flex: 1;
    display: block;
}

.content-container {
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('/img/cache_main.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.charge-container {
    width: 100%;
    max-width: 800px;
    padding: 30px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    margin: 20px;
}

.charge-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.crystal-icon {
    width: 30px;
    height: 30px;
    position: relative;
    background-image: url('/img/cache_diamond.png');
}

.crystal-icon.left:before {
    left: 0;
}

.crystal-icon.right:before {
    right: 0;
}

.charge-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 15px;
    color: white;
}

.charge-subtitle {
    font-size: 14px;
    font-weight: 300;
    color: #aaa;
    margin-top: 0;
    margin-bottom: 50px;
}

.payment-options {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 50px;
}

.payment-option {
    flex: 1;
    padding: 30px 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bank-transfer {
    border: 2px solid #ffd700;
    background-color: rgba(0, 0, 0, 0.7);
}

.credit-card {
    border: 2px solid #ff0000;
    background-color: rgba(0, 0, 0, 0.7);
}

.option-title {
    font-size: 32px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 30px;
    color: white;
}

.bank-transfer .option-title {
    text-shadow: 0 0 4px #ffd700,
    0 0 8px #ffd700,
    0 0 12px #ffd700;
}

.cultureland .option-title {
    text-shadow: 0 0 4px #ff0000,
    0 0 8px #ff0000,
    0 0 12px #ff0000;
}



.option-details {
    text-align: center;
}

.bonus, .time {
    font-size: 16px;
    margin: 8px 0;
    color: white;
}

.highlight {
    font-weight: 700;
}

.charge-notes {
    margin-top: 30px;
    text-align: center;
}

.note {
    font-size: 12px;
    color: #888;
    margin: 5px 0;
}

@media (max-width: 768px) {
    .payment-options {
        flex-direction: column;
    }

    .charge-title {
        font-size: 22px;
    }

    .option-title {
        font-size: 26px;
    }
}
