/* বাংলা ফন্ট সেটআপ */
@font-face {
    font-family: 'AdorshoLipi';
    src: url('https://fonts.maateen.me/adorsho-lipi/font.css') format('truetype');
}

.bnr-container {
    margin: 15px auto;
    padding: 12px;
    background: #f0f2f5;
    border-radius: 6px;
    font-family: 'AdorshoLipi', 'Helvetica', sans-serif;
    text-align: center;
    max-width: 100%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.bnr-controls {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.bnr-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s;
    font-size: 14px;
    font-family: 'AdorshoLipi', sans-serif;
    min-width: 110px;
}

.bnr-play { background: #2e7d32; color: white; }
.bnr-pause { background: #ff8f00; color: white; }
.bnr-stop { background: #c62828; color: white; }

.bnr-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* মোবাইল রেস্পন্সিভ */
@media (max-width: 480px) {
    .bnr-controls {
        gap: 6px;
    }
    .bnr-btn {
        padding: 7px 12px;
        font-size: 13px;
        min-width: 90px;
    }
}