@font-face {
    font-family: 'PBCC-Font';
    src: url('Mayak-Extended.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    padding: 40px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('website.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; 
    
    font-family: 'PBCC-Font', sans-serif;
    color: white;
}

.top-header {
    margin-bottom: 20px;
    text-align: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.main-logo {
    height: 100px;
}

h1 {
    font-size: 1.5rem;
    line-height: 1;
    margin: 0;
}

h1 span {
    font-size: 2rem;
}

.glass-container {
    background: rgba(28, 28, 28, 0.75); 
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    width: 90%;
    max-width: 1000px;
    text-align: center;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.sound-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.sound-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid #444;
    padding: 15px;
    width: 160px;
    border-radius: 4px;
}

.thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 2px;
}

.sound-title {
    font-size: 0.9rem;
    margin: 10px 0;
    height: 40px; 
}

.button-group {
    display: flex;
    gap: 2px; 
}

.btn {
    background: #333;
    border: none;
    color: #bbb;
    padding: 8px 5px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.75rem;
    text-transform: uppercase;
    transition: background 0.2s;
}

.play-btn {
    flex: 1; 
    border-radius: 4px 0 0 4px;
}

.download-btn {
    flex: 3; 
    border-radius: 0 4px 4px 0;
}

.btn:hover {
    background: #444;
    color: white;
}