/* styles.css */
/* Prevent text selection */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #fafafa;
    position: relative;
    overflow-x: hidden;
}

/* Minecraft break particle */
.break-particle {
    position: fixed;
    width: 4px;
    height: 4px;
    background-color: #553B2F;
    pointer-events: none;
    z-index: 999;
}

@keyframes particleFly {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translate(var(--dx), var(--dy)) rotate(var(--rot));
        opacity: 0;
    }
}

@keyframes poof {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    25% {
        opacity: 1;
        transform: scale(1.05);
    }
    50% {
        opacity: 0.8;
        transform: scale(0.95);
    }
    75% {
        opacity: 0.4;
        transform: scale(1.02);
    }
    100% {
        opacity: 0;
        transform: scale(0.9);
    }
}

.bitter-normal {
    font-family: "Bitter", serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
}

.raleway-normal {
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    font-size: 14px;
  }

/* Colors */
.danielu-co {
    color: #c3ceb5;
}

.headline {
    font-size: 36px;
    font-weight: bold;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 120px auto;
    max-width: 650px;
    padding: 20px;
}

.footnote {
    font-size: 12px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    margin-top: 40px;
}

/* Minecraft Tooltip Styles */
.minecraft-tooltip {
    position: fixed;
    background-color: rgba(16, 16, 16, 0.94);
    border: 1px solid #2d2d2d;
    padding: 6px 10px;
    border-radius: 2px;
    font-family: 'Minecraft', monospace;
    color: #ffffff;
    pointer-events: none;
    z-index: 1000;
    font-size: 12px;
    line-height: 16px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    transform-origin: top left;
    white-space: nowrap;
    opacity: 1;
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
    transform: scale(1);
}

.minecraft-tooltip .title {
    margin-bottom: 3px;
}

.minecraft-tooltip .text {
    font-size: 12px;
}

.minecraft-tooltip .text[class*="&7"] {
    color: #AAAAAA;
}

.minecraft-tooltip .text[class*="&8"] {
    color: #555555;
}

.minecraft-tooltip .text[class*="&6"] {
    color: #FFAA00;
}

.minecraft-tooltip.hiding {
    opacity: 0;
    transform: scale(0.95);
}

.minecraft-tooltip.fading {
    opacity: 0;
}

.minecraft-floating-text {
    position: fixed;
    font-family: 'Minecraft', monospace;
    font-size: 12px;
    pointer-events: none;
    z-index: 1000;
    white-space: nowrap;
    text-align: center;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

.minecraft-floating-text.visible {
    opacity: 1;
}