/* === LANDING PAGE === */
.landing-container {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.circle-container {
    position: relative;
    width: 70vmin;
    height: 70vmin;
}

.word {
    position: absolute;
    font-family: 'Courier New', Courier, monospace;
    font-size: clamp(0.75rem, 1.8vmin, 1.1rem);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
}

.word.visible {
    opacity: 1;
}

.word.hovered {
    z-index: 200;
}

/* === CLICKABLE WORDS === */
.word-link {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease, font-weight 0.2s ease;
}

.word-link:hover {
    font-weight: bold;
}

/* === POPUP CARD === */
.word-popup {
    position: absolute;
    width: 280px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(5px);
    z-index: 200;
    padding-top: 12px;
}

.word-popup.popup-above {
    padding-top: 0;
    padding-bottom: 12px;
}

.word-popup.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.word-popup-image {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.word-popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.word-popup-image-placeholder {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.6rem;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.word-popup-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 0;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.75rem;
    color: #000000;
    text-decoration: none;
    transition: opacity 0.2s ease;
    letter-spacing: 0.05em;
}

.word-popup-arrow:hover {
    opacity: 0.5;
}