/* Graph Styles */
.graphs-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.graph-item {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: white;
    font-size: 28px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0.5;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.graph-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.graph-year {
    font-size: 42px;
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-weight: 800;
    color: #fff;
    width: 110px;
    text-align: right;
}

.graph-bar-bg {
    width: 600px;
    height: 30px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.graph-bar-fill {
    height: 100%;
    width: 0%;
    background: white;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.graph-count {
    font-size: 32px;
    font-weight: 700;
}