/* Custom Fonts */
@font-face {
    font-family: 'Valisca';
    src: url('./fonts/Valisca.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Annabelle';
    src: url('./fonts/Annabelle.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'VesperLibre';
    src: url('./fonts/VesperLibre-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #113d32;
    color: white;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Container */
.container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 25px 60px;
    min-height: 100vh;
    z-index: 10;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 100;
    margin-bottom: 20px;
}

.header-left {
    display: flex;
    gap: 12px;
}

.icon-button {
    width: 50px;
    height: 50px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.icon-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.icon-button img {
    width: 24px;
    height: 24px;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo img {
    width: 98px;
    height: 68px;
}

.header-right {
    display: flex;
    gap: 12px;
}

.lang-button {
    width: 70px;
    height: 50px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

/* Language Popover */
.lang-popover-wrapper {
    position: relative;
}

.lang-popover {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    width: 200px;
    background: rgba(17, 61, 50, 0.95);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.lang-popover::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 20px;
    width: 16px;
    height: 16px;
    background: rgba(17, 61, 50, 0.95);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
}

.lang-popover.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-popover-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 16px;
    background: transparent;
    border: none;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-popover-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lang-popover-btn.active {
    background: rgba(255, 255, 255, 0.15);
}

.lang-popover-btn .lang-code {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.lang-popover-btn .lang-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 400;
    opacity: 0.7;
}

/* Share Popover */
.share-popover-wrapper {
    position: relative;
}

.share-popover {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    width: 300px;
    background: rgba(17, 61, 50, 0.95);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.share-popover::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 20px;
    width: 16px;
    height: 16px;
    background: rgba(17, 61, 50, 0.95);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
}

.share-popover.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.share-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.share-input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    outline: none;
    transition: all 0.2s ease;
}

.share-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.share-input:focus {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.share-generate-btn {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 10px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.share-generate-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.share-result {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.share-result.hidden {
    display: none;
}

.share-link-input {
    width: 100%;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    outline: none;
}

.share-copy-btn {
    padding: 10px 16px;
    background: linear-gradient(135deg, #FFD274, #FFF1D3);
    border: none;
    border-radius: 8px;
    color: #113d32;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.share-copy-btn:hover {
    transform: scale(1.02);
}

.share-copy-btn.copied {
    background: linear-gradient(135deg, #FFB347, #FFCC70);
    color: #113d32;
}

/* Play Button Container (Welcome Overlay) */
.play-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    animation: fadeIn 0.5s ease;
}

.play-container.hidden {
    display: none;
}

.play-button {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.play-button svg {
    width: 50px;
    height: 50px;
}

.play-button:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.play-button:active {
    transform: scale(0.95);
}

.play-hint-wrapper {
    position: relative;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-hint {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    letter-spacing: 0.3px;
    position: absolute;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    white-space: nowrap;
}

.play-hint.active {
    opacity: 1;
    transform: translateY(0);
}

/* Music Popover */
.music-popover-wrapper {
    position: relative;
}

.music-popover {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    width: 280px;
    background: rgba(17, 61, 50, 0.95);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.music-popover::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 16px;
    height: 16px;
    background: rgba(17, 61, 50, 0.95);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
}

.music-popover.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.popover-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.popover-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: white;
    letter-spacing: 0.3px;
}

.popover-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.2s ease;
}

.popover-close:hover {
    color: white;
}

.popover-audio {
    width: 100%;
    height: 40px;
    border-radius: 8px;
    outline: none;
}

.popover-audio::-webkit-media-controls-panel {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

/* Christmas Tree Decoration - Absolute positioned with parallax */
.christmas-tree {
    position: absolute;
    top: 0;
    right: -40px;
    width: 520px;
    height: auto;
    z-index: 5;
    pointer-events: none;
    will-change: transform;
}

.christmas-tree img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Ornament Ball Decoration - Absolute positioned with parallax */
.ornament-left {
    position: absolute;
    left: -80px;
    top: 22%;
    width: 350px;
    z-index: 4;
    pointer-events: none;
    will-change: transform;
    transform: rotate(-8deg);
}

.ornament-left img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Candy Stick Decoration - Absolute positioned with parallax */
.candy-stick-left {
    position: absolute;
    left: -60px;
    top: 38%;
    width: 380px;
    z-index: 5;
    pointer-events: none;
    will-change: transform;
    transform: rotate(12deg);
}

.candy-stick-left img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Gift Box Decoration - Absolute positioned with parallax */
.gift-box {
    position: absolute;
    right: -30px;
    top: 90%;
    width: 320px;
    z-index: 5;
    pointer-events: none;
    will-change: transform;
    transform: rotate(5deg);
}

.gift-box img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Main Content */
.main-content {
    position: relative;
    z-index: 10;
}

/* Main Title */
.title-container {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 0;
    z-index: 30;
}

.main-title {
    background: linear-gradient(231.24deg, #FFD274 7.6%, #FFF1D3 49.32%, #FFD274 94.36%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Valisca', Georgia, serif;
    font-size: 58px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    letter-spacing: 1px;
    padding: 50px 140px;
    max-width: 1000px;
    position: relative;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

/* English title uses VesperLibre font */
.main-title.lang-eng {
    font-family: 'VesperLibre', Georgia, serif;
    font-size: 52px;
}

.title-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1000px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-radius: 80px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: -1;
}

/* Santa Band */
.santa-band {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: -110px auto -100px;
    z-index: 50;
    will-change: transform;
    transform: translateY(-70px);
}

.santa-band .santa-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.santa-band .santa-frame:first-child {
    position: relative;
}

.santa-band .santa-frame.active {
    opacity: 1;
}

/* Content Section */
.content-section {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    z-index: 30;
    padding: 10px 0;
    padding-top: 50px;
}

.greeting-text {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 40px;
    color: white;
    letter-spacing: 0.4px;
    position: relative;
}

.greeting-text strong {
    font-weight: 600;
}

.first-word {
    position: relative;
    display: inline-block;
    margin-left: 40px;
}

.decorative-letter {
    font-family: 'Annabelle', cursive;
    font-size: 60px;
    background: linear-gradient(241.71deg, #FFD274 7.6%, #FFF1D3 49.32%, #FFD274 94.36%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    vertical-align: baseline;
    overflow: visible;
    position: absolute;
    left: -77px;
    top: -30px;
    width: 90px;
}

/* Music Buttons */
.music-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 500px;
    margin: 35px auto 0;
    position: relative;
}

/* Decorative elements near buttons */
.buttons-decor-top-left {
    position: absolute;
    left: -50px;
    top: -50px;
    width: 120px;
    transform: rotate(20deg);
    pointer-events: none;
    z-index: 10;
}

.buttons-decor-top-left img {
    width: 100%;
    height: auto;
}

.buttons-decor-right {
    position: absolute;
    right: -20px;
    bottom: 40px;
    width: 120px;
    pointer-events: none;
    z-index: 10;
}

.buttons-decor-right img {
    width: 100%;
    height: auto;
}

.buttons-decor-bottom-left {
    position: absolute;
    left: -20px;
    bottom: -40px;
    width: 80px;
    pointer-events: none;
    z-index: 10;
}

.buttons-decor-bottom-left img {
    width: 100%;
    height: auto;
}

.music-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 62px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-size: 22px;
    padding: 10px 30px;
    transition: all 0.3s ease;
    position: relative;
}

.music-button:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.02);
}

.music-button span {
    letter-spacing: 0.32px;
}

.service-logo {
    height: 32px;
    width: auto;
}

.yandex-logo {
    height: 26px;
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 50px;
    padding: 25px 0;
    position: relative;
    z-index: 100;
}

.footer p {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 0.42px;
}

/* Welcome Overlay */
.welcome-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 61, 50, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.welcome-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.welcome-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
}

.welcome-play-button {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white;
}

.welcome-play-button:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.08);
    border-color: rgba(255, 255, 255, 0.5);
}

.welcome-play-button svg {
    width: 48px;
    height: 48px;
    margin-left: 4px;
}

.welcome-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: white;
    text-align: center;
    letter-spacing: 0.5px;
    max-width: 300px;
}

/* Loader Styles */
.loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.loader-container.hidden {
    display: none;
}

.loader-circle {
    position: relative;
    width: 120px;
    height: 120px;
}

.loader-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.loader-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 6;
}

.loader-progress {
    fill: none;
    stroke: rgba(255, 255, 255, 0.8);
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 0.1s ease;
}

.loader-percent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: white;
}

.loader-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: white;
    letter-spacing: 0.5px;
}

.play-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    animation: fadeIn 0.5s ease;
}

.play-container.hidden {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ========================= */
/* Responsive Design - Mobile */
/* ========================= */

@media (max-width: 768px) {
    /* Prevent horizontal scroll */
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    .container {
        padding: 15px 15px;
        overflow-x: hidden;
    }

    .header {
        margin-bottom: 12px;
    }

    .header-left {
        gap: 6px;
    }

    .header-right {
        gap: 6px;
    }

    .icon-button {
        width: 36px;
        height: 36px;
    }

    .icon-button img {
        width: 16px;
        height: 16px;
    }

    .icon-button svg {
        width: 16px;
        height: 16px;
    }

    .logo img {
        width: 55px;
        height: 38px;
    }

    .lang-button {
        width: 48px;
        height: 36px;
        font-size: 10px;
    }

    /* Decorative elements - smaller and clipped */
    .christmas-tree {
        width: 100px;
        right: -20px;
    }

    .ornament-left {
        width: 80px;
        left: -30px;
        top: 15%;
    }

    .candy-stick-left {
        width: 70px;
        left: -20px;
        top: 28%;
    }

    .gift-box {
        width: 80px;
        right: -15px;
        top: 85%;
    }

    .title-container {
        margin-top: 30px;
    }

    .main-title {
        font-size: 22px;
        padding: 18px 20px;
        line-height: 1.3;
    }

    .main-title.lang-eng {
        font-size: 20px;
    }

    .title-container::before {
        border-radius: 30px;
    }

    .santa-band {
        max-width: 100%;
        margin: -20px auto -40px;
        transform: translateY(-15px);
    }

    .content-section {
        max-width: 100%;
        padding-top: 20px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .greeting-text {
        font-size: 14px;
        margin-bottom: 18px;
        line-height: 1.5;
    }

    .first-word {
        margin-left: 25px;
    }

    .decorative-letter {
        font-size: 32px;
        width: 48px;
        left: -42px;
        top: -20px;
    }

    .music-buttons {
        max-width: 100%;
        padding: 0 10px;
        gap: 8px;
        margin-top: 25px;
    }

    /* Smaller decorations near buttons on mobile */
    .buttons-decor-top-left {
        width: 60px;
        left: -20px;
        top: -25px;
    }

    .buttons-decor-right {
        width: 60px;
        right: -10px;
        bottom: 20px;
    }

    .buttons-decor-bottom-left {
        width: 40px;
        left: -10px;
        bottom: -20px;
    }

    .music-button {
        height: 50px;
        font-size: 16px;
        border-radius: 50px;
        gap: 8px;
        padding: 8px 20px;
    }

    .service-logo {
        height: 24px;
    }

    .yandex-logo {
        height: 20px;
    }

    .footer {
        margin-top: 25px;
        padding: 15px 0;
    }

    .footer p {
        font-size: 16px;
    }

    /* Popovers - full width on mobile, appear below header */
    .music-popover {
        position: fixed;
        top: 70px;
        bottom: auto;
        left: 15px;
        right: 15px;
        width: auto;
    }

    .music-popover::before {
        display: none;
    }

    .lang-popover {
        position: fixed;
        top: 70px;
        bottom: auto;
        left: 15px;
        right: 15px;
        width: auto;
    }

    .lang-popover::before {
        display: none;
    }

    .share-popover {
        position: fixed;
        top: 70px;
        bottom: auto;
        left: 15px;
        right: 15px;
        width: auto;
    }

    .share-popover::before {
        display: none;
    }

    .share-input {
        font-size: 16px;
        padding: 14px 16px;
    }

    .share-generate-btn {
        font-size: 14px;
        padding: 14px 16px;
    }

    .share-link-input {
        font-size: 11px;
    }

    /* Welcome overlay */
    .welcome-content {
        gap: 25px;
        padding: 0 20px;
    }

    .welcome-play-button {
        width: 90px;
        height: 90px;
    }

    .welcome-play-button svg {
        width: 36px;
        height: 36px;
    }

    .welcome-text {
        font-size: 18px;
    }

    /* Loader */
    .loader-circle {
        width: 100px;
        height: 100px;
    }

    .loader-percent {
        font-size: 20px;
    }

    /* Play button responsive */
    .play-container {
        gap: 25px;
    }

    .play-button {
        width: 100px;
        height: 100px;
    }

    .play-button svg {
        width: 40px;
        height: 40px;
    }

    .play-hint {
        font-size: 14px;
    }
}

/* Extra small screens */
@media (max-width: 380px) {
    .container {
        padding: 12px 10px;
    }

    .main-title {
        font-size: 18px;
        padding: 15px 15px;
    }

    .main-title.lang-eng {
        font-size: 16px;
    }

    .greeting-text {
        font-size: 13px;
    }

    .first-word {
        margin-left: 20px;
    }

    .music-button {
        height: 46px;
        font-size: 14px;
        padding: 8px 15px;
    }

    .service-logo {
        height: 20px;
    }

    .yandex-logo {
        height: 18px;
    }

    .footer p {
        font-size: 14px;
    }

    .play-button {
        width: 90px;
        height: 90px;
    }

    .play-button svg {
        width: 35px;
        height: 35px;
    }
}
