.widget-container {
    display: flex;
    gap: 16px;
    z-index: 3;
    opacity: 0;
    animation: fadeIn 1.4s 0.8s forwards;
    margin-top: 32px;
}

.widget {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 14px;
    padding: 16px;
    width: 160px;
    height: 88px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 6px 24px 0 rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.widget:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 32px 0 rgba(0, 0, 0, 0.2);
}

.widget-content {
    font-size: 2rem;
    font-weight: 300;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.widget-subtitle {
    font-size: 0.7rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 4px;
}