body {
    background-color: #121212;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    padding: 20px;
}

/* --- FİLTRE DAİRELERİ --- */
#filter-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    padding: 10px;
}

.filter-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.2s ease;
    opacity: 0.3; /* Başlangıçta sönük dururlar */
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

/* Daireye tıklandığında (Aktif filtre) */
.filter-circle.active {
    opacity: 1;
    transform: scale(1.2);
    border-color: #ffffff; /* Seçili olduğunu belli eden beyaz çerçeve */
}

/* --- SES BUTONLARI --- */
#soundpad-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.sound-btn {
    width: 120px;
    height: 120px;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    word-wrap: break-word;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.4);
}

.sound-btn:hover {
    filter: brightness(1.2); /* Üzerine gelince rengi hafif parlar */
    transform: translateY(-5px);
}

.sound-btn:active {
    transform: translateY(0);
}

/* Butonları filtrelerken gizlemek için kullanılacak sınıf */
.hidden {
    display: none !important;
}