/* register-check.css - 신청 내역 조회 페이지 스타일 */

/* 조회 페이지 전용 스타일 */
.ctf-subtitle-text {
    color: #aaa;
    font-size: 16px;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* 에러 메시지 */
.ctf-error-notice {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    color: #ff6b6b;
    padding: 15px 20px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: center;
    font-size: 14px;
}

/* 결과 카드 */
.ctf-result-card {
    max-width: 700px;
    margin: 0 auto;
    background: #2a2a2a;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.ctf-result-title {
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
}

.ctf-result-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

.ctf-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ctf-info-row:last-child {
    border-bottom: none;
}

.ctf-info-label {
    color: #aaa;
    font-size: 15px;
}

.ctf-info-value {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

/* 결제 상태 */
.status-completed {
    color: #00ff88 !important;
    font-weight: bold;
}

.status-pending {
    color: #ff6b6b !important;
    font-weight: bold;
}

/* 버튼 그룹 */
.ctf-result-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.ctf-btn-secondary {
    background: transparent;
    color: #aaa;
    border: 1px solid #666;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.ctf-btn-secondary:hover {
    background: #333;
    color: #fff;
    border-color: #999;
}

.ctf-btn-primary {
    background: #ff6b6b;
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 1px solid #ff6b6b;
}

.ctf-btn-primary:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

/* 반응형 */
@media (max-width: 768px) {
    .ctf-subtitle-text {
        font-size: 14px;
        padding: 0 20px;
    }
    
    .ctf-result-card {
        padding: 40px 30px;
    }
    
    .ctf-result-buttons {
        flex-direction: column;
    }
    
    .ctf-btn-secondary,
    .ctf-btn-primary {
        width: 100%;
        text-align: center;
    }
}gba(255, 255, 255, 0.1);
}

.ctf-info-row:last-child {
    border-bottom: none;
}

.ctf-info-label {
    color: #aaa;
    font-size: 15px;
}

.ctf-info-value {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

/* 결제 상태 */
.status-completed {
    color: #00ff88 !important;
    font-weight: bold;
}

.status-pending {
    color: #ff6b6b !important;
    font-weight: bold;
}

/* 버튼 그룹 */
.ctf-result-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.ctf-btn-secondary {
    background: transparent;
    color: #aaa;
    border: 1px solid #666;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.ctf-btn-secondary:hover {
    background: #333;
    color: #fff;
    border-color: #999;
}

.ctf-btn-primary {
    background: #ff6b6b;
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 1px solid #ff6b6b;
}

.ctf-btn-primary:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

/* 반응형 */
@media (max-width: 768px) {
    .ctf-check-title {
        font-size: 28px;
    }
    
    .ctf-check-subtitle {
        font-size: 14px;
        padding: 0 20px;
    }
    
    .ctf-check-card,
    .ctf-result-card {
        padding: 40px 30px;
    }
    
    .ctf-result-buttons {
        flex-direction: column;
    }
    
    .ctf-btn-secondary,
    .ctf-btn-primary {
        width: 100%;
        text-align: center;
    }
}

/* 애니메이션 */
@keyframes fadeInCheck {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ctf-check-header {
    animation: fadeInCheck 0.6s ease;
}

.ctf-check-card,
.ctf-result-card {
    animation: fadeInCheck 0.6s ease 0.2s both;
}