* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f7f1e8;
    color: #111;
}

.page {
    max-width: 420px;
    margin: 0 auto;
    min-height: 100vh;
    background: #f7f1e8;
}

.lang-bar {
    background: #0f5a4f;
    padding: 6px 10px;
}

.lang-select {
    font-size: 14px;
    padding: 2px 6px;
}

.hero {
    background: #0f5a4f;
    color: #fff;
    text-align: center;
    padding: 22px 16px 26px;
}

.museum-name {
    margin: 0 0 10px;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.3;
}

.guide-title {
    margin: 0;
    font-size: 34px;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.content {
    padding: 14px 10px 24px;
}

.lead {
    font-size: 14px;
    margin: 0 0 14px;
    color: #111;
}

.buttons {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}

.audio-btn {
    background: #edc08b;
    border: none;
    border-radius: 6px;
    min-height: 52px;
    font-size: 20px;
    font-weight: 700;
    color: #111;
    cursor: pointer;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
    transition: opacity 0.2s ease, transform 0.08s ease;
}

.audio-btn:hover {
    opacity: 0.92;
}

.audio-btn:active {
    transform: scale(0.98);
}

.player-wrap {
    margin-top: 18px;
}

#player {
    width: 100%;
}

@media (max-width: 360px) {
    .museum-name {
        font-size: 22px;
    }

    .guide-title {
        font-size: 30px;
    }

    .audio-btn {
        min-height: 48px;
        font-size: 18px;
    }
}
