.wallet-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.back-link {
    color: var(--muted);
    text-decoration: none;
    font-weight: 600;
}

.hero {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    min-width: 280px;
}

.hero-image {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 14px;
    border: 1px solid var(--border);
}

.score-box {
    text-align: center;
    padding: 30px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.02);
}

.score-big {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--success);
}

.score-desc {
    color: var(--muted);
}

.details-section h2 {
    margin-bottom: 14px;
}

.details-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pros li::before {
    content: "✔ ";
    color: var(--success);
}

.cons li::before {
    content: "– ";
    color: #ef4444;
}

.cta {
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    padding: 12px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: opacity 0.2s;
}

.btn-primary:hover {
    opacity: 0.85;
}

.badges {
    margin-bottom: 25px;
}

p {
    margin-bottom: 25px;
}

@media (max-width: 720px) {
    .hero {
        flex-direction: column;
    }
}
