@charset "utf-8";
* { margin: 0; box-sizing: border-box; }

body {
    background: #0d0d0d !important;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.header {
    padding: 22px 0;
    background: #0d0d0d;
    border-bottom: 1px solid #1f1f1f;
}
.header img,
.header svg {
    display: block;
    width: 200px;
    margin: 0 auto;
}

/* 결제 컨테이너 */
.paypop_con {
    background: #161616;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    margin: 40px auto;
    max-width: 480px;
}

/* 폼 제목 */
.square_tit {
    color: #fff;
    font-size: 20px;
    margin-bottom: 8px;
}
.mt0 { margin-top: 0; }

/* 안내 텍스트 */
.paypop_con > p {
    color: #aaa;
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* 테이블 폼 */
table.col-12 { width: 100%; border-collapse: collapse; }
table.col-12 tr + tr td { padding-top: 10px; }

table.tbl_sty02 { width: 100%; border-collapse: collapse; }
table.tbl_sty02 tr td { padding: 8px 0; color: #aaa; font-size: 13px; }
table.tbl_sty02 tr td:first-child { width: 110px; color: #666; }

/* 인풋 */
.form-control {
    width: 100%;
    padding: 12px 14px;
    background: #222;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: border-color .2s;
}
.form-control:focus { border-color: #06ed06; }
.form-control[readonly] {
    background: #1a1a1a;
    border-color: #2a2a2a;
    color: #ccc;
    cursor: default;
}
.form-control::placeholder { color: #555; }

/* 버튼 */
#payBtn, .btn_sty01 {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: opacity .2s;
}
#payBtn, .btn_sty01.bg01 {
    background: #06ed06;
    color: #0d0d0d;
}
a#payBtn[href="/"] {
    background: transparent;
    border: 1px solid #444;
    color: #aaa;
}
#payBtn:hover { opacity: .85; }

form { margin-bottom: 0; }

/* 푸터 */
.site-footer {
    margin-top: 40px;
    border-top: 1px solid #1f1f1f;
    padding: 18px 12px;
    font-size: 13px;
    color: #444;
    background: #0d0d0d;
    text-align: center;
}
.site-footer .footer-inner {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}
.site-footer .footer-inner a {
    color: #06ed06;
    font-weight: 600;
    text-decoration: none;
}
@media (max-width: 640px) {
    .site-footer .footer-inner { flex-direction: column; gap: 6px; }
    .paypop_con { margin: 20px 16px; }
}
