/* TrueFocus Styles */
.focus-container {
    position: relative;
    display: flex;
    gap: 1em;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    outline: none;
    user-select: none;
}

.focus-word {
    position: relative;
    font-size: 3rem;
    font-weight: 900;
    cursor: pointer;
    transition: filter 0.3s ease, color 0.3s ease;
    outline: none;
    user-select: none;
}

.focus-word.active {
    filter: blur(0);
}

.focus-frame {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    box-sizing: content-box;
    border: none;
    transition: transform 0.5s ease, width 0.5s ease, height 0.5s ease, opacity 0.5s ease;
}

.corner {
    position: absolute;
    width: 1rem;
    height: 1rem;
    border: 3px solid var(--border-color, #fff);
    filter: drop-shadow(0px 0px 4px var(--border-color, #fff));
    border-radius: 3px;
    transition: none;
}

.top-left {
    top: -10px;
    left: -10px;
    border-right: none;
    border-bottom: none;
}

.top-right {
    top: -10px;
    right: -10px;
    border-left: none;
    border-bottom: none;
}

.bottom-left {
    bottom: -10px;
    left: -10px;
    border-right: none;
    border-top: none;
}

.bottom-right {
    bottom: -10px;
    right: -10px;
    border-left: none;
    border-top: none;
}

/* Footer için özel stiller */
.footer-truefocus {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    z-index: 1000 !important;
    padding: 8px 16px !important;
    background: transparent !important;
    border-top: none !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 !important;
    transform: none !important;
    box-sizing: border-box !important;
    top: auto !important;
}

.footer-truefocus .focus-word {
    font-size: 0.7rem;
    font-weight: 400;
    color: #0a0a0a;
    transition: filter 0.3s ease, color 0.3s ease;
}

.footer-truefocus .focus-word:hover {
    color: #0a0a0a;
    filter: blur(0px) !important;
}

.footer-truefocus .focus-frame {
    --border-color: rgba(10, 10, 10, 0.6);
}

.footer-truefocus .corner {
    width: 0.6rem;
    height: 0.6rem;
    border-width: 2px;
}

@media (max-width: 768px) {
    .footer-truefocus .focus-word {
        font-size: 0.6rem;
    }
    
    .footer-truefocus {
        padding: 6px 12px;
    }
}

