/* 포인트 전환 페이지 스타일 */
.point-exchange-wrap {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* 내용 섹션 */
.content-section {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    color: #fff;
}

.content-section h1, .content-section h2, .content-section h3 {
    color: #ff6b35;
    margin-bottom: 15px;
}

.content-section p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 15px;
}

.content-section ul, .content-section ol {
    color: #ccc;
    margin-left: 20px;
    margin-bottom: 15px;
}

.content-section li {
    margin-bottom: 8px;
}

/* 포인트 정보 섹션 */
.point-info {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
}

.point-info h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 20px;
}

.my-point {
    margin-bottom: 15px;
}

.my-point .label,
.min-point .label {
    display: inline-block;
    color: #999;
    font-size: 14px;
    margin-right: 10px;
}

.my-point .value {
    font-size: 32px;
    font-weight: bold;
    color: #ff6b35;
}

.min-point .value {
    font-size: 18px;
    color: #ccc;
}

/* 전환 신청 폼 */
.exchange-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

.exchange-form h3 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #ccc;
    font-size: 14px;
    margin-bottom: 8px;
}

.form-group input[type="number"],
.form-group input[type="text"],
.form-group select {
    width: 100%;
    padding: 8px 15px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 6px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group input[type="number"]:focus,
.form-group input[type="text"]:focus,
.form-group select:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
    outline: none;
}

/* Select box custom arrow */
.form-group select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff6b35' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
    padding-right: 45px;
}

.btn-wrap {
    text-align: center;
    margin-top: 30px;
}

.btn-exchange {
    display: inline-block;
    padding: 12px 40px;
    background: linear-gradient(135deg, #ff6b35, #ff5722);
    border: none;
    border-radius: 6px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-exchange:hover {
    background: linear-gradient(135deg, #ff5722, #ff4500);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

/* 전환 신청 내역 */
.exchange-history {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 30px;
}

.exchange-history h3 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #333;
}

.exchange-history table {
    width: 100%;
    border-collapse: collapse;
}

.exchange-history th {
    padding: 12px;
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    font-size: 14px;
    font-weight: normal;
    text-align: left;
    border-bottom: 1px solid #333;
}

.exchange-history td {
    padding: 12px;
    color: #ccc;
    font-size: 14px;
    border-bottom: 1px solid #222;
}

.exchange-history tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.exchange-history .empty {
    text-align: center;
    color: #666;
    padding: 40px;
}

/* 상태 뱃지 */
.status-wait {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border-radius: 4px;
    font-size: 12px;
}

.status-done {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border-radius: 4px;
    font-size: 12px;
}

.status-cancel {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border-radius: 4px;
    font-size: 12px;
}

/* 반응형 */
@media (max-width: 768px) {
    .point-exchange-wrap {
        padding: 15px;
    }
    
    .point-info,
    .exchange-form,
    .exchange-history {
        padding: 20px;
    }
    
    .my-point .value {
        font-size: 24px;
    }
    
    .exchange-history {
        overflow-x: auto;
    }
    
    .exchange-history table {
        min-width: 500px;
    }
}