@font-face {
    font-family: kamerik;
    src: url('/styles/fonts/SegoePro-Bold.ttf');
}

/* =========================
   MODES TITLE
========================= */

.modes-title-main {
    color: white;
    margin: 30px 0 10px;
    font-family: kamerik;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-align: center;
}

/* =========================
   SWITCHER (arrows + title)
========================= */

.modes-switcher {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;

    user-select: none;
    margin-bottom: 12px;
}

.mode-arrow {
    all: unset;
    cursor: pointer;

    font-size: 28px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);

    transition: 
        color 0.2s ease,
        transform 0.2s ease;
}

.mode-arrow:hover {
    color: white;
    transform: scale(1.15);
}

.mode-title {
    min-width: 160px;
    text-align: center;

    font-family: kamerik;
    font-size: 18px;
    letter-spacing: 1px;
    color: white;
}

/* =========================
   DOTS
========================= */

.modes-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.mode-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);

    cursor: pointer;
    transition:
        background 0.25s ease,
        transform 0.25s ease,
        opacity 0.25s ease;

    opacity: 0.5;
}

.mode-dot:hover {
    transform: scale(1.3);
    opacity: 0.8;
}

.mode-dot.active {
    background: white;
    opacity: 1;
}

/* =========================
   VISUAL MODES AREA
========================= */

.vis-modes-area {
    position: relative;
    width: 100%;
    max-width: 900px;
    min-height: 360px;

    margin: 0 auto 40px;
    padding: 20px;

    color: white;
}

/* =========================
   MODE BLOCKS
========================= */

.vis-mode {
    position: absolute;
    inset: 0;

    opacity: 0;
    transform: translateX(40px);
    pointer-events: none;

    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}

.vis-mode.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

#current-mode-name {
    display: inline-block;
    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}