.scrum-visualization {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem;
    background: rgba(0, 255, 102, 0.05);
    border-radius: 12px;
    margin-top: 1rem;
}

.sprint-cycle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    position: relative;
    border-radius: 60px;
}

.ceremony {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 50%;
    color: var(--background-color);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.ceremony:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px var(--primary-glow);
}

.scrum-roles, .scrum-artifacts {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 1rem;
}

.role, .artifact {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 102, 0.2);
    border-radius: 8px;
    color: var(--primary-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.role:hover, .artifact:hover {
    background: var(--primary-color);
    color: var(--background-color);
    transform: translateY(-2px);
}

.sprint-cycle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transform: translateY(-50%);
    z-index: -1;
}

.ceremony i, .role i, .artifact i {
    font-size: 1.2rem;
}