.payment-result-page {
    padding: 40px 0;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
}

.payment-result-page__title {
    font-size: 32px;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.payment-result-section {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 40px;
    text-align: center;
}

.payment-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 20px;
}

.payment-icon--success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 2px solid #2e7d32;
}

.payment-icon--failed {
    background: #ffebee;
    color: #c62828;
    border: 2px solid #c62828;
}

.payment-result__subtitle {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.payment-result__text {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.payment-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.payment-btn {
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-block;
}

.payment-btn--primary {
    background: #64a5bd;
    color: white;
}

.payment-btn--primary:hover {
    background: #2C3E50;
}

.payment-btn--secondary {
    background: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
}

.payment-btn--secondary:hover {
    background: #e8e8e8;
}

@media (max-width: 768px) {
    .payment-result-section {
        padding: 20px;
        margin: 0 15px;
    }

    .payment-actions {
        flex-direction: column;
    }
}