.home .magick-pentagram {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0 3rem;
    transform: translateY(-40px);
}



.home .magick-pentagram svg {
    max-width: 720px;
    width: 100%;
    height: auto;
}

.home .magick-pentagram .star-path {
    fill: none;
    stroke: #f6d365;
    stroke-width: 6;
    stroke-linejoin: round;
    stroke-linecap: round;
}

.home .magick-pentagram .dot {
    fill: #ffd27f;
    stroke: #f6d365;
    stroke-width: 2;
    transition: transform 0.25s ease;
    transform-origin: center;
}

.home .magick-pentagram .star-link:hover .dot {
    transform: translateY(-6px) scale(1.1);
}


.home .magick-pentagram .labels {
    fill: #ffd27f;
    font-weight: 600;
}

.home .magick-pentagram .hit {
    fill: rgba(140, 160, 180, 0.25);
    transition: fill 0.25s ease;
}

.home .magick-pentagram .star-link:hover .hit {
    fill: rgba(140, 160, 180, 0.35);
}

