:root {
    --eva-orange: #ff7a00;
    --eva-cyan: #38ffd4;
    --eva-red: #ff2b00;
}

.eva-hex-container {
    display: inline-grid;
    grid-template-columns: repeat(4, 70px);
    gap: 6px;
    padding: 15px;
    padding-bottom: 40px;
}

.eva-hex {
    text-decoration: none;
    position: relative;
    width: 85px;
    height: 80px;
    margin: 2px;

    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    clip-path: polygon(
        25% 0,
        75% 0,
        100% 50%,
        75% 100%,
        25% 100%,
        0 50%
    );

    background: linear-gradient(
        180deg,
        rgba(255,122,0,.18),
        rgba(255,122,0,.05)
    );

    cursor: pointer;
    transition: 0.15s;

    box-shadow:
        inset 0 0 4px rgba(255,122,0,.5),
        0 0 2px rgba(255,122,0,.4);
}

.eva-hex {
    background:
        linear-gradient(
            180deg,
            rgba(255,122,0,.18),
            rgba(255,122,0,.05)
        );

}

.eva-hex:hover {
    color: inherit;
    text-decoration: none;
    background: #ff7a00;
    border-color: #38ffd4;
}

.eva-hex.active {
    text-decoration: none;
    background: var(--eva-orange);
    color: black;
}

.eva-hex:not([href]) {
  opacity: 0.3;
  filter: grayscale(1);
  pointer-events: none;
}

.eva-hex:nth-child(4n + 2),
.eva-hex:nth-child(4n + 4) {
    transform: translateY(40px);
}