/* psn-tools.css - Stili specifici per PSN TOOLS */

.tools-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tool-card {
    background: #111112;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
}

.tool-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    background: #141415;
}

.tool-img-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    background: #080808;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.tool-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.tool-card:hover .tool-img-wrapper img {
    transform: scale(1.05);
}

.tool-content {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tool-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: inherit;
}

.tool-desc {
    font-size: 0.9rem;
    color: #a1a1aa;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-family: inherit;
}

.tool-stats {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.65rem;
    color: #52525b;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    font-family: inherit;
}

.stat-item span {
    color: #0072ce;
    font-weight: 800;
}

.btn-psn {
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-family: inherit; /* Assicura che il font sia quello globale */
}

.btn-psn.primary {
    background: #0072ce;
    color: white;
}

.btn-psn.primary:hover {
    background: #0082e6;
    box-shadow: 0 4px 12px rgba(0, 114, 206, 0.2);
}

.btn-psn.secondary {
    background: rgba(0, 114, 206, 0.05);
    color: #0072ce;
    border: 1px solid rgba(0, 114, 206, 0.15);
}

.btn-psn.secondary:hover {
    background: rgba(0, 114, 206, 0.1);
    color: #00a2ff;
    border-color: rgba(0, 114, 206, 0.3);
}

/* Tip & Disclaimer */
.disclaimer-pill {
    padding: 0.6rem 1.5rem;
    background: rgba(234, 179, 8, 0.08);
    border: 1px solid rgba(234, 179, 8, 0.2);
    border-radius: 0.5rem;
    color: #eab308;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: inherit;
}

.tip-box {
    background: #0d0d0e;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2.5rem;
    margin-top: 3rem;
}

.tip-box h2 {
    color: #0072ce;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
