.language-button, .login-button { display: inline-flex; align-items: center; padding: 1rem 1.5rem; color: var(--text-color); text-decoration: none; font-weight: 500; transition: all 0.3s ease; border-radius: 50px; background: rgba(30, 136, 229, 0.1); border: 1px solid rgba(30, 136, 229, 0.2); position: relative; overflow: hidden; cursor: pointer; font-size: 0.9rem; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); }

/* Geliyor yakında efekti */
.coming-soon {
    position: relative;
    filter: grayscale(100%);
    opacity: 0.6;
    pointer-events: none;
    transition: all 0.3s ease;
}

.coming-soon::before {
    content: 'Yakında';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tool-item.coming-soon:hover::before {
    opacity: 1;
}

.tool-item.coming-soon:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.blue-button {
    font-family: 'Press Start 2P', sans-serif;
    background-color: #6a0dad; /* Mor zemin */
    color: #ffffff; /* Beyaz yazı */
    border: 1px solid #c37efd; /* Açık mor kenarlık */
    border-radius: 4px;
    padding: 12px 20px;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 3px 0 #4a0976; /* Hafif 3D efekti için koyu mor gölge */
    position: relative;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.blue-button:hover {
    background-color: #7b21c2;
    box-shadow: 0 4px 5px rgba(106, 13, 173, 0.5); /* Parlama efekti */
    transform: translateY(-2px); /* Butonu yukarı kaldır */
}

.blue-button:active {
    transform: translateY(1px); /* Tıklanma efekti */
    box-shadow: 0 1px 0 #4a0976; /* Gölgeyi küçült */
}

.green-button {
    background-color: #28a745;
}
