* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f4f4f4;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

header {
    position: absolute;
    top: 10px;
    font-size: 20px;
    color: #008080;
}

#mention-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

#mention-button {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: none;
    background-color: #00a896;
    color: white;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.1s ease;
}


#mention-button:active {
    transform: scale(0.9);
}

#mention-button, 
#reset-button {
    outline: none !important; /* Tüm tarayıcılarda outline kaldırılır */
    -webkit-tap-highlight-color: rgba(0,0,0,0); /* Mobil tarayıcılarda mavi efekti kaldırır */
    user-select: none; /* Kullanıcının öğeyi seçmesini engeller */
    touch-action: manipulation; /* Mobil cihazlarda doğal tıklama davranışı */
    -webkit-user-select: none; /* iOS cihazlar için ekstra koruma */
    -moz-user-select: none;
    -ms-user-select: none;
    border: 0px solid transparent; /* Tarayıcının varsayılan çerçevesini tamamen sıfırlar */
    background-clip: padding-box; /* İç gölgelerin kenarlara taşmasını önler */
}



#reset-button {
    padding: 10px 20px;
    border: none;
    background-color: #ff6b6b;
    color: white;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.2s;
}

#reset-button:hover {
    background-color: #e63946;
}
