/* Tux Container */
#tux-container {
    position: relative;
    text-align: center;
}

/* Floating Platform */
.tux-platform {
    width: 15rem;
    height: 0.5rem;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.6), transparent);
    border-radius: 50%;
    margin: 0 auto;
    position: absolute;
    bottom: 0px; /* Keeps platform directly below Tux */
    animation: tux-pulse 3s infinite;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
}

/* Tux Image */
#obsidian-tux {
    position: relative;
    max-width: 15rem;
    display: block;
    margin: 0 auto;
    animation: tux-float 4s infinite ease-in-out;
}

/* Speech Bubble */
.speech-bubble {
    position: absolute;
    bottom: 120%; /* Positions the bubble above Tux */
    left: 40%;
    width: 150%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: var(--font-color-primary);
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    display: none; /* Hidden by default */
    z-index: 100;
    font-size: 1em;
    line-height: 1.4;
    box-shadow: 0 0 10px rgba(255, 0, 0, 1);
}

.speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.8) transparent transparent transparent;
}
