﻿
html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.container {
    width: 100%;
    max-width: none;
    padding-left: 1rem;
    padding-right: 1rem;
}

#metronomeContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    padding: 20px;
    gap: 16px;
    margin-top: 70px;
}

.metronome-icon {
    animation: blink 1s infinite ease-in-out;
    transition: opacity 0.3s ease;
}

    .metronome-icon.move-right {
        transform: translateX(50px);
    }

    .metronome-icon.move-down {
        transform: translateY(50px);
    }

    .metronome-icon.move-left {
        transform: translateX(-50px);
    }

    .metronome-icon.move-up {
        transform: translateY(-50px);
    }

#eyelashContainer, 
#quickViewContainer,
#movingContainer,
#heceContainer,
#tekSeferContainer,
#purDikkatContainer,
#gizlenenMetinContainer,
#karartiliMetinContainer,
#gorunmezMetinContainer,
#kirpilmisMetinContainer {
    width: 100%;
    max-width: none;
    padding: 0 2rem;
    margin: 120px auto;
}

#eyelashContainer {
    position: relative;
    height: 450px;
    overflow: hidden;
}
 
#quickViewContainer {
    position: relative;
    height: calc(100vh - 200px);
    overflow: hidden;
}

#movingContainer {
    position: relative;
    height: calc(80vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#movingWord {
    position: absolute;
    transition: all 0.3s ease;
    white-space: nowrap;
}

#heceContainer,
#tekSeferContainer,
#purDikkatContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    overflow: hidden;
    text-align: center;
    overflow-wrap: break-word;
    word-break: break-word;
}

#heceContainer {
    height: 300px;
    line-height: 100px;
}

#tekSeferContainer,
#purDikkatContainer {
    min-height: 250px;
    padding: 20px 10px;
    line-height: 1.2;
    max-width: 90vw;
}

#purDikkatContainer {
    font-weight: bold;
    font-size: 36px;
}

#gizlenenMetinContainer,
#karartiliMetinContainer,
#gorunmezMetinContainer,
#kirpilmisMetinContainer {
    line-height: 1.8;
    font-weight: bold;
    text-align: center;
}



#cornerContainer {
    position: relative;
    height: 400px;
    width: 100%;
    max-width: 400px;
    margin: 120px auto;
    overflow: hidden;
}

.corner-number {
    position: absolute;
    font-weight: bold;
    color: #333;
}

.hidden-word {
    /*background-color: #ccc;*/
    color: transparent;
    border-radius: 4px;
    padding: 0 4px;
    /*transition: all 0.3s;*/
}

.dimmed {
    opacity: 0.2;
    transition: opacity 0.3s;
}

.highlighted {
    opacity: 1;
    transition: opacity 0.3s;
}
.highlight { color: #dc2626; }
.word-span {
    margin: 0 4px;
    transition: all 0.3s;
    display: inline-block;
}

.current-word {
    color: red;
    font-weight: bold;
}

.hidden {
    display: none;
}

.fixed {
    position: fixed;
}

.top-4 {
    top: 1rem;
}

.top-6 {
    top: 4rem;
}

.right-4 {
    right: 0rem;
}

.top-16 {
    top: 12rem;
}

.top-8 {
    top: 26rem;
}

.w-80 {
    width: 20rem;
}

.z-50 {
    z-index: 50;
}

.z-40 {
    z-index: 40;
}

.transition-all {
    transition: all 0.3s ease;
}
@keyframes blink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.metronome-icon {
    animation: blink 0.4s ease-in-out;
}

#centerDot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: black;
    z-index: 10;
}