body,
html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(3, 4, 10, 0.196);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 25px 80px;
    box-sizing: border-box;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: #d9d9d9;
    margin: 0;
}


.header-center {
    display: flex;
    gap: 35px;
}

.nav-link {
    font-size: 18px;
    font-weight: 500;
    color: #d9d9d9;
    text-decoration: none;
    position: relative;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #ffebba;
}

.header-right {
    display: flex;
    gap: 16px;
}

.icon-btn img {
    display: block;
    width: 30px;
    height: 30px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.icon-btn:hover img {
    transform: scale(1.1);
    opacity: 0.85;
}











.main-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden
}

.main-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hotspots {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%
}


.idle-glow {
    animation: twinkle 3s ease-in-out infinite;
    mix-blend-mode: screen;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: .08;
        filter: brightness(1.00) saturate(1.02)
    }

    50% {
        opacity: .18;
        filter: brightness(1.05) saturate(1.06)
    }
}


.soft-glow {
    fill: none;
    stroke: #ffeeacf8;
    stroke-width: 5;
    stroke-linejoin: round;
    stroke-linecap: round;
    opacity: 0;
    filter: url(#outerGlow);
    transition: opacity .25s ease;
}

.hit {
    fill: none;
    stroke: transparent;
    stroke-width: 40;
    pointer-events: stroke;
}


.hotspots a:hover .idle-glow,
.hotspots a:focus .idle-glow {
    opacity: .35;
    filter: brightness(1.5) saturate(1.08);
}

.hotspots a:hover .soft-glow,
.hotspots a:focus .soft-glow {
    opacity: 0.75;
}
















:root {
    --header-h: 95px;
    --gold: #f6de76;
    --glow: rgba(255, 253, 144, 0.845);
}

.hero,
.hero-section,
.hero-wrap {
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.hero-heading {
    position: absolute;
    left: 50%;
    top: calc(var(--header-h) + 16px);
    transform: translateX(-50%);
    text-align: center;
}

.hero-heading p {
    margin: 10px 0 0;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: clamp(14px, 1.8vw, 22px);
    color: rgb(255, 234, 152);
    text-shadow: 0 3px 12px rgba(37, 34, 34, 0.73);
}

.hero-heading .shine {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(40px, 7vw, 96px);
    line-height: 1;
    letter-spacing: .02em;
    background: linear-gradient(90deg,
            #9aa11a 0%, var(--gold) 22%, #fff8cf 50%, var(--gold) 78%, #8f9515 100%);
    background-size: 140% 100%;
    background-position: 50% 0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: 0 0 22px rgba(0, 0, 0, .55);
    animation: shimmer 7s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        background-position: 48% 0;
    }

    50% {
        background-position: 52% 0;
    }

}

.hb {
    position: absolute;
    bottom: clamp(22px, 9vh, 120px);
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: clamp(18px, 2.6vw, 28px);
    color: #c8bd94;
    text-shadow:
        0 2px 10px rgba(0, 0, 0, .65),
        0 0 18px var(--glow),
        0 0 28px rgba(239, 242, 164, 0.579);
}

.pub-switch {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.pub-tab {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 3.2vw, 32px);
    font-weight: 600;
    letter-spacing: .02em;
    cursor: pointer;
    transition: opacity .25s ease, transform .25s ease;
    color: #fbda64c4;
    text-shadow:
        0 0 8px rgba(254, 250, 171, 0.4),
        0 0 25px rgba(254, 250, 171, 0.7);
}

.pub-tab:hover {
    opacity: .85;
    transform: translateY(-1px);
}


.rune {
    position: relative;
    white-space: nowrap;
    display: inline-block;
}

.rune::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffe8a3, transparent);
    filter: blur(.3px);
    animation: runePulse 2.8s ease-in-out infinite;
}

@keyframes runePulse {

    0%,
    100% {
        opacity: .3;
        transform: scaleX(.6);
    }

    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}



.about-place {
    background:
        linear-gradient(rgba(0, 0, 0, .15), rgba(0, 0, 0, .15)),
        url('/static/image/kkk.png') no-repeat;
    background-size: cover;
    background-position: 20% top;
    /* было 20% center */
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-container {
    max-width: 900px;
    padding: 30px 80px;
    border-radius: 5px;
    text-align: center;
    color: #fff;
    font-family: 'Playfair Display', serif;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);

    box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}

/* .about-container {
  max-width: 900px;
  padding: 40px 60px;
  border-radius: 12px;
  text-align: center;
  color: #fff;
  font-family: 'Georgia', serif;
  box-shadow: 0 0 25px rgba(0,0,0,0.5);


  background: 
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), 
    url('/static/image/paper.jpg') center/cover no-repeat;
} */

.about-container h3 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fbda64c4;
    text-shadow:
        0 0 8px rgba(254, 250, 171, 0.4),
        0 0 25px rgba(254, 250, 171, 0.7);
}

.about-container p {
    font-size: 20px;
    line-height: 1.7;
    color: #e5e4c9;
    font-weight: 300;
}

.carousel-container {
    position: relative;
}

.carousel-track-wrapper {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0;
}

.carousel-track-wrapper::-webkit-scrollbar {
    display: none;
}

.carousel-container {
    --c-gap: 24px;
}

.carousel-track {
    display: flex;
    gap: var(--c-gap);
    justify-content: flex-start;
}

.carousel-item {
    flex: 0 0 calc((100% - 2 * var(--c-gap)) / 3);
    box-sizing: border-box;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.carousel-item img {
    width: 100%;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

.carousel-btn.prev {
    left: 8px;
}

.carousel-btn.next {
    right: 8px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(101, 101, 101, 0.441);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease, opacity 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(144, 144, 144, 0.608);
}

.carousel-btn:disabled {
    opacity: 0.8;
    cursor: default;
    pointer-events: none;
}

.contacts-block {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    padding: 30px 40px;
    flex-wrap: wrap;
}

.contacts-info {
    font-family: 'Playfair Display', serif;
    flex: 1 1 300px;
    max-width: 400px;
    margin: 0;
    text-align: left;
}

.contacts-info h2 {
    font-size: 26px;
    margin-bottom: 15px;
    text-align: left;
}

.contacts-info p {
    margin: 8px 0;
    font-size: 18px;
}

.phone-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #fefaabe0;
}

.social-icons {
    margin-top: 20px;
    display: flex;
    gap: 16px;
    justify-content: flex-start;
}

.social-icons img {
    width: 40px;
    height: 40px;
    transition: transform 0.2s ease;
}

.social-icons img:hover {
    transform: scale(1.1);
}

.contacts-map {
    flex: 1 1 400px;
    max-width: 600px;
}

.contacts-map iframe {
    width: 100%;
    height: 300px;
    border-radius: 12px;
}

.contacts-button {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 24px;
    background-color: #1a1816;
    color: #fff;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    border: 1px solid #555;
    transition: background-color 0.3s ease;
}

.contacts-button:hover {
    background-color: #e0de9ee0;
    color: #010101;
}

.contacts-button-wrapper {
    text-align: center;
    margin-top: 10px;
}













.about {
    background:
        linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.45)),
        url('/static/image/hhh.png') no-repeat;
    background-size: cover;
    background-position: center 5%;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.about_sect {
    position: relative;
    max-width: 900px;
    background: url('/static/image/7516ccee9b4ad88fac0d81999fe1068b.jpg') center/cover no-repeat;
    padding: 60px;
    text-align: center;
    color: #252309;
    font-family: 'Playfair Display', serif;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    border-radius: 5px;
    padding: 50px 100px;
}

.about_sect::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;

}

.about_sect h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    position: relative;
    z-index: 1;
    margin-top: 5px;
    margin-bottom: 30px;
}

.about_sect p {
    font-size: 20px;
    line-height: 1.6;
    font-family: 'Playfair Display', serif;
    position: relative;
    z-index: 1;
}


.about-list {
    margin: 30px 0;
}

.about-list h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 15px;
    text-align: center;
    color: #222002d6;
}

.about-list ul {
    font-family: 'Playfair Display', serif;
    list-style: none;
    padding: 0;
    margin: 0;
    font-weight: 500;
}

.about-list li {
    position: relative;
    font-family: 'Playfair Display', serif;
    padding-left: 18px;
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 500;
}

.about-list li::before {
    content: "✦";
    color: #e6d06a;
    font-size: 20px;
}











.custom-footer {
    position: relative;
    color: #fff;
    padding: 40px 20px;
    font-family: 'Playfair Display', serif;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.custom-footer::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('/static/image/ppp_2.png') center 60%/cover no-repeat;
    filter: blur(6px);
    z-index: 0;
}

.custom-footer>* {
    position: relative;
    z-index: 1;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 30px;
    text-align: center;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 600;
}

.footer-link {
    display: inline-block;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 20px;
    font-family: 'Playfair Display', serif;
}

.footer-link:hover {
    color: #e8d5ad;
}

.footer-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 10px;
}

.footer-icons img {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
    filter: brightness(0) invert(1);
}

.footer-icons a:hover img {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    font-size: 14px;
    opacity: 0.8;
    margin-top: -10px;
    line-height: 1.6;
}

.footer-bottom .privacy-link {
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom p:first-child {
    margin-bottom: 10px;
    margin-top: -10px;
}

.footer-bottom .privacy-link:hover {
    color: #e8d5ad;
}




.highlight-bubble {
    display: inline-block;
    padding: 3px 15px;
    margin-top: 15px;
    background: rgba(58, 84, 65, 0.437);
    border-radius: 40px;
    font-weight: 500;
    font-size: 20px;
    color: #ffffff;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}


.sparkle {
    background: linear-gradient(90deg,
            #e6de3b,
            #efefef,
            rgb(255, 230, 89));
    background-size: 200% auto;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    animation: shine 2s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}



















.burger-btn {
    display: none;
}

@media (max-width: 767px) {

    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        padding: 10px 20px;
    }

    body {
        padding-top: 0px;
    }

    .main-section {
        padding-top: 80px;
    }

    .header-center {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0e1c2ae4;
        flex-direction: column;
        display: none;
        text-align: center;
        gap: 20px;
        padding: 20px 0;
        z-index: 999;
    }

    .header-center.active {
        display: flex;
    }

    .burger-btn {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1001;
    }

    .burger-btn span {
        display: block;
        width: 28px;
        height: 3px;
        background: white;
        border-radius: 2px;
    }

    .header-right {
        display: none;
    }

    .mobile-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.75);
        z-index: 999;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .burger-modal.active {
        display: flex;
    }

    .nav-link {
        color: #fffdc0;
    }

    #mobile-overlay {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 9999;
        background: rgba(0, 0, 0, 0.8);
        align-items: center;
        justify-content: center;
    }

    #mobile-overlay.active {
        display: flex !important;
    }

    .mobile-menu-box {
        background: #1c261dfb;
        border-radius: 8px;
        padding: 40px 20px;
        width: 80%;
        max-width: 300px;
        text-align: center;
        position: relative;
    }

    .close-btn {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 28px;
        background: none;
        border: none;
        cursor: pointer;
        color: #c9c9c9;
    }

    .mobile-nav a {
        display: block;
        font-family: 'Playfair Display', serif;
        margin: 20px 0;
        font-size: 22px;
        color: #c9c9c9;
        text-decoration: none;
        font-weight: bold;
    }

    .mobile-nav a:hover {
        text-decoration: underline;
    }

    .main-hero {
        position: relative;
        height: auto;
        aspect-ratio: 1152 / 768;
        background: url('/static/image/ppp_2.png') center/cover no-repeat;
        overflow: hidden;
    }


    .hero-heading {
        top: calc(var(--header-h) + 6px);
        transform: translateX(-50%);
        text-align: center;
    }

    .hero-heading {
        top: auto;
        bottom: 5%;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
    }

    .hero-heading .shine {
        font-size: 30px;
    }

    .hero-heading p {
        font-size: 12px;
        margin-top: 4px;
    }

    .main-bg {
        display: none !important;
    }

    .hotspots {
        display: block;
        width: 100%;
        height: 100%;
    }








    .pub-switch {
        gap: 16px;
        align-items: center;
    }

    .pub-tab {
        font-size: 18px;
        line-height: 1.3;
        text-align: center;
    }





    .about-place {
        padding: 8px 20px;
        background-position: center;
    }

    .about-container {
        padding: 10px;
        max-width: 100%;

    }

    .about-container h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .about-container p {
        font-size: 14px;
        line-height: 1.4;
    }

    .carousel-container {
        --c-gap: 8px;
    }

    .carousel-item {
        flex: 0 0 100%;
    }

    .carousel-item img {
        height: clamp(180px, 42vw, 240px);
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }



    .contacts-block {
        flex-direction: column;
        gap: 20px;
        padding: 5px;
        align-items: center;
        text-align: center;
    }

    .contacts-info {
        max-width: 100%;
        text-align: center;
    }

    .contacts-info h2 {
        font-size: 20px;
        text-align: center;
    }

    .contacts-info p {
        font-size: 14px;
    }

    .social-icons {
        justify-content: center;
    }

    .contacts-map {
        max-width: 100%;
    }

    .contacts-map iframe {
        height: 220px;
    }

    .contacts-button {
        font-size: 16px;
        padding: 10px 18px;
    }

    .contacts-info {
        flex: unset;
    }

    .contacts-map {
        flex: unset;
    }

    .carousel-container {
        margin: 5px auto;
    }







    /* Блок "о нас" */

    .about {
        padding: 40px 20px;
    }

    .about_sect {
        padding: 30px 20px;
    }

    .about_sect h2 {
        font-size: 24px;
    }

    .about_sect p,
    .about-list li {
        font-size: 16px;
        line-height: 1.4;
    }


    /* Футер */
    .footer-columns {
        flex-direction: column;
        gap: 20px;
    }

    .footer-col h4 {
        font-size: 16px;
    }

    .footer-link {
        font-size: 16px;
    }

    :root {
        --header-h: 70px;
    }

    #place-info,
    #about,
    #contacts {
        scroll-margin-top: calc(var(--header-h) + 10px);
    }
}

















@media (min-width: 768px) and (max-width: 1194px) {


    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        padding: 25px 50px;
    }

    body {
        padding-top: 0px;
    }

    .main-section {
        padding-top: 80px;
    }

    .header-center {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #141c24d7;
        flex-direction: column;
        display: none;
        text-align: center;
        gap: 20px;
        padding: 20px 0;
        z-index: 999;
    }

    .header-center.active {
        display: flex;
    }

    .burger-btn {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1001;
    }

    .burger-btn span {
        display: block;
        width: 28px;
        height: 3px;
        background: white;
        border-radius: 2px;
    }

    .header-right {
        display: none;
    }

    .mobile-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.75);
        z-index: 999;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .burger-modal.active {
        display: flex;
    }

    .nav-link {
        color: #fffdc0;
        font-size: 22px;
    }

    #mobile-overlay {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 9999;
        background: rgba(0, 0, 0, 0.8);
        align-items: center;
        justify-content: center;
    }

    #mobile-overlay.active {
        display: flex !important;
    }

    .mobile-menu-box {
        background: #1c261dfb;
        border-radius: 8px;
        padding: 40px 20px;
        width: 80%;
        max-width: 300px;
        text-align: center;
        position: relative;
    }

    .close-btn {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 28px;
        background: none;
        border: none;
        cursor: pointer;
        color: #c9c9c9;
    }

    .mobile-nav a {
        display: block;
        font-family: 'Playfair Display', serif;
        margin: 20px 0;
        font-size: 22px;
        color: #c9c9c9;
        text-decoration: none;
        font-weight: bold;
    }

    .mobile-nav a:hover {
        text-decoration: underline;
    }

    .main-hero {
        position: relative;
        height: auto;
        aspect-ratio: 1152 / 768;
        background: url('/static/image/ppp_2.png') center/cover no-repeat;
        overflow: hidden;
    }


    .hero-heading {
        top: calc(var(--header-h) + 6px);
        transform: translateX(-50%);
        text-align: center;
    }


    .main-bg {
        display: none !important;
    }

    .hotspots {
        display: block;
        width: 100%;
        height: 100%;
    }



    .hero-heading {
        top: auto;
        bottom: 65%;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
    }

    .hero-heading .shine {
        font-size: 55px;
    }

    .hero-heading p {
        font-size: 12px;
        margin-top: 4px;
    }


    .about-container {
        padding: 0px 70px;
    }


    .carousel-container {
        --c-gap: 16px;
    }

    .carousel-item {
        flex: 0 0 calc(50% - (var(--c-gap) / 2));
    }

    .carousel-item img {
        height: clamp(220px, 32vw, 300px);
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }















    /* Контакты — в колонку */
    .contacts-block {
        justify-content: center;
        gap: 30px;
        padding: 20px 30px;
    }

    .contacts-info {
        max-width: 100%;
        text-align: center;
    }

    .contacts-info h2 {
        font-size: 20px;
        text-align: center;
    }

    .contacts-info p {
        font-size: 16px;
    }

    .social-icons {
        justify-content: center;
    }

    .contacts-button {
        font-size: 16px;
        padding: 10px 18px;
    }

    .contacts-info {
        flex: unset;

    }

    .carousel-container {
        margin: 5px auto;
    }

    .about {
        padding: 50px 50px;
    }

}






.download-pill {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.149);
    color: #000000;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .25);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: background .2s ease, color .2s ease, box-shadow .2s ease, transform .05s ease;
    line-height: 1;
}

.download-pill:hover {
    background: rgba(255, 226, 121, 0.18);
    color: #fff8e6;
    box-shadow: inset 0 0 0 2px rgba(251, 218, 100, .35), 0 4px 14px rgba(0, 0, 0, .25);
}

.download-pill:active {
    background: rgba(251, 218, 100, .28);
    transform: translateY(1px);
}


.dashed {
  text-decoration: underline;
  text-decoration-style: dashed;
  text-underline-offset: 3px; /* отступ линии от текста */
  text-decoration-thickness: 1.5px;
}