/**
* @file css/info/rewards.css
* @description Styles for the daily rewards infographic, aligned with the calculator page design.
*/

.infographic-section {
    background-color: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    text-align: center;
}

.infographic-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(59, 130, 246, 0.1);
    border: 2px solid rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
    margin: 0 auto 1.5rem;
}

.infographic-icon svg {
    width: 32px;
    height: 32px;
    color: #3b82f6;
}

.infographic-title {
    font-size: 2rem;
    font-weight: 800;
    color: #bfdbfe;
    margin-bottom: 0.5rem;
}

.infographic-subtitle {
    font-size: 1.125rem;
    color: #94a3b8;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.infographic-card {
    background-color: #020617;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
    height: 100%;
}