h2 {
    font-family: var(--title-page-font);
    font-weight: 400;
    font-size: 2.5rem;
    line-height: 1;
    text-align: center;
    padding-bottom: 1rem;
}

h3 {
    font-family: var(--title-page-font);
    font-weight: 400;
    font-size: 1.8rem;
}

.font {
    font-family: var(--title-page-font);
    font-weight: 400;
}

#how-play-section h2, #present-section h2 {
    letter-spacing: 0.3125rem;
}


.game-highlight {
    color: var(--game-name-color) !important;
    letter-spacing: 0.125rem;
}

#game-baseline {
    color: var(--game-baseline-color);
}

#game-quote {
    border-color: var(--game-border-color) !important;
}

.frise-separator {
    height: 0.125rem; /* 2px */
    background: linear-gradient(90deg, transparent 0%, var(--frise-separator-color) 50%, transparent 100%);
    box-shadow: 0 0 10px var(--frise-separator-color);
}

/* VIDEO */
.pulse-dot {
    animation: blink 1s infinite;
    margin-right: 0.3125rem; /* 5px */
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

.video-container {
    position: relative;
    background: var(--video-container-bg-color);
    line-height: 0;
    width: 100%;
}

.video-container video {
    filter: brightness(1.1) contrast(1.1);
    object-fit: contain;
    width: 100%;
    height: auto;
    /*min-height: 15.625rem;*/
    max-height: 80vh;
}

/* HOW TO PLAY */
.steps {
    transition: all 0.3s ease-in-out;
    border-left: 0.25rem solid var(--step-border-color) !important; /* 4px */
    background: linear-gradient(90deg, var(--step-bg-color1) 0%, var(--step-bg-color2) 100%);
}

.steps h3 {
    letter-spacing: 0.125rem;
}

.steps .display-4 {
    font-family: var(--title-page-font);
    font-weight: 400;
    color: var(--step-number-color);
    transition: color 0.3s ease;
}

.steps:hover {
    transform: translateX(0.625rem); /* 10px */
    border-left-color: var(--step-border-color-hover) !important;
    box-shadow:
        0 0 8px var(--step-shadow1-color-hover),
        0 0 20px var(--step-shadow2-color-hover) !important;
}

.steps:hover .display-4 {
    color: var(--step-number-color-hover) !important;
    transition: color 0.3s ease;
}

/* CLIENTS */
#client-section h2 {
    color: var(--section-client-title-color);
}

.char-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 3rem;
    padding-bottom: 0;
    margin-top: 4.375rem; /* 70px */
    margin-inline: 1.2rem;
}

.char-box {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    flex: 0 1 auto;
}

.speech-bubble {
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%) translateY(0.625rem) scale(0.8); /* 10px */
    background: var(--speech-bubble-bg-color);
    color: var(--speech-bubble-color);
    padding: 0.9375rem; /* 15px */
    border-radius: 0.9375rem; /* 15px */
    font-size: 0.85rem;
    font-weight: bold;
    width: 50vw;
    max-width: 15.625rem;
    min-width: 5rem;
    line-height: 1.4;
    z-index: 110;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    box-shadow: 0 10px 25px var(--speech-bubble-shadow-color);
    word-wrap: break-word;
    hyphens: auto;
    text-align: center;
}

.char-box:hover .speech-bubble {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
}

.speech-bubble::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -0.625rem; /* -10px */
    border-width: 0.625rem; /* 10px */
    border-style: solid;
    border-color: var(--speech-bubble-after-border-color) transparent transparent transparent;
}

.char-box:hover .game-char {
    transform: translateY(-0.9375rem); /* -15px */
    filter: brightness(1.2) drop-shadow(0 0 5px white);
}

.game-char {
    height: 6.25rem; /* 100px */
    width: auto;
    image-rendering: pixelated;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 5px white);
}

.audio-btn-inline {
    width: fit-content;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.audio-btn-inline:hover {
    transform: scale(1.1);
}

.audio-btn-inline small {
    margin-top: 0.1875rem; /* 3px */
}

#speaker-icon {
    font-size: 3rem !important;
}

.fade-out-arcade {
    animation: arcadeExit 0.5s ease-out forwards;
    pointer-events: none;
}

@keyframes arcadeExit {
    0% {
        transform: scale(1.1);
        opacity: 1;
        margin-top: 0;
    }
    100% {
        transform: scale(0.5);
        opacity: 0;
        margin-top: -5rem; /* -80px */
    }
}

@media (max-width: 992px) { /* Cible Tablettes et Mobiles */
    .char-box {
        flex: 0 1 20%;
    }
}

@media (max-width: 576px) {
    .speech-bubble {
        font-size: 0.75rem;
        padding: 0.625rem;
    }
}
