:root {
    --bg: #f8e3c8;
    --bg-soft: #f4d9b8;
    --card-bg: #fdf2dd;
    --card-stroke: #f0cfa2;
    --accent: #d78246;
    --accent-soft: rgba(215, 130, 70, 0.12);
    --accent-strong: #b66432;

    --text-main: #5a3a24;
    --text-soft: #8c6a49;
    --text-muted: #b58c63;

    --radius-lg: 26px;
    --radius-pill: 999px;

    --shadow-soft: 0 14px 30px rgba(203, 152, 92, 0.25);
}

/* базовый каркас */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
        sans-serif;
    background: radial-gradient(circle at top, var(--bg), var(--bg-soft));
    color: var(--text-main);
}

.app {
    min-height: 100vh;
    max-width: 420px;
    margin: 0 auto;
    padding: 16px 14px 80px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.app-beige {
    background: transparent;
}

.ideas-page {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* общий стиль карточек */

.card {
    background-color: var(--card-bg);
    background-image: var(--snow-cap);
    background-repeat: no-repeat;
    background-size: 100% var(--snow-cap-height);
    background-position: 0 0;
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--card-stroke);
    box-shadow: var(--shadow-soft);
    padding: 14px 16px;
}

/* шапка */

.ideas-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ideas-header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ideas-header-main h1 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

.ideas-fav-btn {
    border: none;
    background: transparent;
    font-size: 13px;
    color: var(--text-soft);
    cursor: pointer;
}

.ideas-subtitle {
    margin: 2px 0 0;
    font-size: 13px;
    color: var(--text-soft);
}

/* фильтры */

.ideas-filters {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    margin-bottom: 4px;
    overflow-x: auto;
    padding-bottom: 2px;
}

.pill-filter {
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid var(--card-stroke);
    background: var(--card-bg);
    font-size: 12px;
    color: var(--text-soft);
    cursor: pointer;
    white-space: nowrap;
}

.pill-filter-active {
    background: linear-gradient(
        180deg,
        var(--card-bg) 0%,
        var(--card-stroke) 100%
    );
    color: var(--text-main);
    border-color: var(--card-stroke);
}

.pill-filter-locked {
    opacity: 0.6;
    padding-right: 24px;
    position: relative;
}

.pill-filter-locked::after {
    content: "🔒";
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
}

body[data-focus="cozy-home"] .pill-filter-cozy {
    background: rgba(255, 239, 220, 0.95);
    border-color: rgba(200, 116, 59, 0.7);
    color: var(--text-main);
    box-shadow: 0 0 0 1px rgba(200, 116, 59, 0.35),
        0 8px 16px rgba(200, 116, 59, 0.18);
    position: relative;
    overflow: hidden;
    padding-right: 28px;
}

body[data-focus="cozy-home"] .pill-filter-cozy::after {
    content: "";
    position: absolute;
    right: 8px;
    top: 50%;
    width: 14px;
    height: 14px;
    transform: translateY(-50%);
    background: url("/static/img/cozy-chip-home.svg") center / contain no-repeat;
    opacity: 0.9;
}

body[data-focus="cozy-home"] .pill-filter-locked.pill-filter-cozy::after {
    content: "🔒";
    width: auto;
    height: auto;
    background: none;
    opacity: 0.9;
}

body[data-focus="sunset"] .pill-filter-sunset {
    background: linear-gradient(135deg, #ffd4a3 0%, #ff9a9a 100%);
    border-color: rgba(216, 106, 62, 0.7);
    color: #6a3a28;
    box-shadow: 0 0 0 1px rgba(216, 106, 62, 0.25),
        0 8px 16px rgba(216, 106, 62, 0.18);
    position: relative;
    padding-left: 28px;
}

body[data-focus="ocean"] .pill-filter-ocean {
    background: linear-gradient(180deg, #e7f7f6 0%, #d0efe7 100%);
    border-color: rgba(47, 126, 156, 0.55);
    color: #3b5a57;
    box-shadow: 0 0 0 1px rgba(47, 126, 156, 0.22),
        0 8px 16px rgba(47, 126, 156, 0.16);
    position: relative;
    padding-left: 28px;
    overflow: hidden;
}

body[data-focus="minimal"] .pill-filter-minimal {
    background: #fffdf9;
    border-color: var(--card-stroke);
    color: var(--text-main);
    box-shadow: none;
}

body[data-focus="minimal"] .pill-filter-minimal.pill-filter-active {
    border-color: var(--accent);
}

body[data-focus="sunset"] .pill-filter-sunset.pill-filter-active {
    transform: translateY(-1px);
    box-shadow: 0 0 0 1px rgba(216, 106, 62, 0.3),
        0 10px 18px rgba(150, 90, 120, 0.22);
}

body[data-focus="ocean"] .pill-filter-ocean.pill-filter-active {
    transform: translateY(-1px);
    box-shadow: 0 0 0 1px rgba(47, 126, 156, 0.28),
        0 10px 18px rgba(70, 140, 160, 0.2);
}

body[data-focus="sunset"] .pill-filter-sunset::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 50%;
    width: 14px;
    height: 14px;
    transform: translateY(-50%);
    background: url("/static/img/sunset-chip-icon.svg") center / contain no-repeat;
    opacity: 0.9;
}

body[data-focus="ocean"] .pill-filter-ocean::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 50%;
    width: 14px;
    height: 14px;
    transform: translateY(-50%);
    background: url("/static/img/ocean-chip-icon.svg") center / contain no-repeat;
    opacity: 0.9;
}

body[data-focus="ocean"] .pill-filter-ocean::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.75) 45%,
        transparent 70%
    );
    transform: translateX(-120%);
    opacity: 0;
}

body[data-focus="ocean"] .pill-filter-wave::after {
    opacity: 0.9;
    animation: oceanWave 0.28s ease;
}

body[data-focus="cozy-home"] .pill-filter-cozy::before {
    content: "";
    position: absolute;
    inset: -6px;
    background: radial-gradient(
        12px 12px at 18% 40%,
        rgba(255, 255, 255, 0.6),
        transparent 60%
    );
    opacity: 0.35;
    pointer-events: none;
}

body[data-focus="cozy-home"] .pill-filter-pulse {
    animation: cozyPulse 0.32s ease;
}

body[data-focus="sunset"] .pill-filter-pulse {
    animation: sunsetPulse 0.32s ease;
}

body[data-focus="ocean"] .pill-filter-pulse {
    animation: oceanPulse 0.32s ease;
}

@keyframes cozyPulse {
    0% {
        transform: scale(1);
    }
    40% {
        transform: scale(1.03);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes oceanPulse {
    0% {
        transform: scale(1);
    }
    40% {
        transform: scale(1.03);
        box-shadow: 0 0 12px rgba(120, 180, 190, 0.35);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes oceanWave {
    0% {
        transform: translateX(-120%);
    }
    100% {
        transform: translateX(120%);
    }
}

@keyframes sunsetPulse {
    0% {
        transform: scale(1);
    }
    40% {
        transform: scale(1.03);
        box-shadow: 0 0 12px rgba(238, 124, 134, 0.35);
    }
    100% {
        transform: scale(1);
    }
}

/* верхняя карточка перетасовки */

.ideas-random-card {
    padding: 14px 14px 16px;
}

body[data-focus="cozy-home"] .ideas-random-card {
    border-radius: 26px;
    background: linear-gradient(180deg, #fff7ea 0%, #f2dcc4 100%);
    box-shadow: 0 18px 30px rgba(150, 100, 65, 0.2);
}

body[data-focus="sunset"] .ideas-random-card {
    border-radius: 26px;
    background: linear-gradient(180deg, #ffe9d3 0%, #ffbfa6 55%, #d6a0e6 100%);
    box-shadow: 0 18px 30px rgba(150, 90, 120, 0.22);
}

body[data-focus="ocean"] .ideas-random-card {
    position: relative;
    border-radius: 26px;
    background: linear-gradient(180deg, #ecf9ff 0%, #d8f0ef 60%, #fbe3c3 100%);
    box-shadow: 0 18px 30px rgba(90, 140, 160, 0.2);
    overflow: hidden;
}

body[data-focus="ocean"] .ideas-random-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: repeating-linear-gradient(
        -8deg,
        rgba(255, 255, 255, 0.3) 0,
        rgba(255, 255, 255, 0.3) 12px,
        rgba(0, 0, 0, 0) 12px,
        rgba(0, 0, 0, 0) 26px
    );
    opacity: 0.25;
    pointer-events: none;
}

body[data-focus="sunset"] .ideas-random-illustration {
    background: linear-gradient(180deg, #ffd4a3 0%, #ffb58d 60%, #c98ad8 100%);
}

body[data-focus="ocean"] .ideas-random-illustration {
    background: linear-gradient(180deg, #e5f5ff 0%, #daf3f0 65%, #fbe3c3 100%);
    border: 1px solid rgba(47, 126, 156, 0.2);
}

body[data-focus="sunset"] .ideas-random-text h2::before {
    content: "🌇";
    margin-right: 6px;
}

body[data-focus="ocean"] .ideas-random-text h2::before {
    content: "🌊";
    margin-right: 6px;
}

body[data-focus="minimal"] .ideas-random-card {
    border-radius: 20px;
    background: #fffdf9;
    border: 1px solid var(--card-stroke);
    box-shadow: 0 2px 4px rgba(90, 60, 40, 0.06);
}

body[data-focus="minimal"] .ideas-random-inner {
    grid-template-columns: 1fr;
}

body[data-focus="minimal"] .ideas-random-illustration {
    display: none;
}

body[data-focus="minimal"] .ideas-random-text h2::before {
    content: "•";
    margin-right: 6px;
}

.ideas-random-inner {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 10px;
    align-items: center;
}

.ideas-random-illustration {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    background: var(--card-bg);
    border: 1px solid var(--card-stroke);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ideas-random-icon {
    width: 64px;
    height: 64px;
    display: block;
    object-fit: contain;
}

.ideas-random-text h2 {
    margin: 0 0 4px;
    font-size: 16px;
}

.ideas-random-text p {
    margin: 0;
    font-size: 13px;
    color: var(--text-soft);
}

/* список идей */

.ideas-list-card {
    padding-top: 10px;
    padding-bottom: 10px;
}

.ideas-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ideas-list-toggle {
    align-self: center;
    margin: 6px auto 0;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1.5px dashed var(--card-stroke);
    background: var(--card-bg);
    color: var(--text-main);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: none;
}

body[data-focus="minimal"] .ideas-list-toggle {
    border: 1px solid var(--card-stroke);
    background: #fffdf9;
    color: var(--text-main);
}

.ideas-list-toggle:hover {
    transform: translateY(-1px);
}

.ideas-placeholder {
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    padding: 10px 0;
}

.idea-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid var(--card-stroke);
}

.idea-item:last-child {
    border-bottom: none;
}

.idea-item-icon {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: var(--card-bg);
    border: 1px solid var(--card-stroke);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

body[data-focus="minimal"] .idea-item {
    grid-template-columns: 1fr auto;
    border-bottom: 1px solid rgba(224, 199, 172, 0.6);
}

body[data-focus="minimal"] .idea-item-icon {
    display: none;
}

body[data-focus="minimal"] .idea-tags {
    display: none;
}

body[data-focus="minimal"] .idea-item-main h3 {
    font-size: 16px;
    color: var(--text-main);
}

body[data-focus="minimal"] .idea-item-main p {
    color: var(--text-soft);
}

.idea-item-main h3 {
    margin: 0 0 2px;
    font-size: 15px;
}

.idea-item-main p {
    margin: 0 0 4px;
    font-size: 13px;
    color: var(--text-soft);
}

.idea-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.tag {
    padding: 2px 8px;
    border-radius: 999px;
    background: var(--card-bg);
    border: 1px solid var(--card-stroke);
    font-size: 11px;
    color: var(--text-soft);
}

.tag-free {
    font-weight: 600;
}

/* модалка перетасовки */

.ideas-shuffle-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(60, 42, 26, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 65;
}

.ideas-shuffle-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}

.ideas-shuffle-modal {
    width: min(360px, 94vw);
    background: var(--card-bg);
    border-radius: 26px;
    border: 1.5px solid var(--card-stroke);
    box-shadow: var(--shadow-soft);
    padding: 18px 16px 16px;
    position: relative;
    text-align: center;
}

.ideas-shuffle-close {
    position: absolute;
    top: 12px;
    right: 12px;
    border: none;
    background: transparent;
    font-size: 18px;
    color: var(--text-soft);
    cursor: pointer;
}

.ideas-shuffle-title {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
}

.ideas-shuffle-subtitle {
    margin: 0 auto;
    font-size: 12px;
    color: var(--text-soft);
    max-width: 280px;
}

.ideas-shuffle-cards {
    position: relative;
    height: 220px;
    width: min(340px, 100%);
    margin: 18px auto 6px;
    perspective: 900px;
}

.ideas-shuffle-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 122px;
    height: 172px;
    border: none;
    background: var(--bg-soft);
    border-radius: 18px;
    border: 2px solid var(--card-stroke);
    padding: 0;
    cursor: pointer;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.94);
    transition: transform 0.45s ease, opacity 0.35s ease,
        box-shadow 0.35s ease, filter 0.35s ease;
    transform-style: preserve-3d;
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.18);
}

.ideas-shuffle-card.card-left {
    --card-shift: -86px;
    --card-rotate: -6deg;
    transition-delay: 0s;
}

.ideas-shuffle-card.card-center {
    --card-shift: 0px;
    --card-rotate: 0deg;
    transition-delay: 0.08s;
}

.ideas-shuffle-card.card-right {
    --card-shift: 86px;
    --card-rotate: 6deg;
    transition-delay: 0.16s;
}

.ideas-shuffle-cards.is-dealt .ideas-shuffle-card {
    opacity: 1;
    transform: translate(calc(-50% + var(--card-shift)), -50%)
        rotate(var(--card-rotate));
}

.ideas-shuffle-card:disabled {
    cursor: default;
}

.ideas-shuffle-card.is-disabled {
    opacity: 0.65;
}

.ideas-shuffle-card:focus-visible {
    outline: 3px solid var(--accent-soft);
    outline-offset: 4px;
}

.ideas-shuffle-cards.is-ready .ideas-shuffle-card:not(.is-disabled) {
    animation: shuffle-card-glow 2.2s ease-in-out infinite;
}

.ideas-shuffle-cards.is-ready .ideas-shuffle-card:not(.is-disabled):hover {
    filter: brightness(1.03);
}

.ideas-shuffle-cards.has-selection .ideas-shuffle-card {
    transition-delay: 0s;
}

.ideas-shuffle-cards.has-selection .ideas-shuffle-card.is-selected {
    transform: translate(-50%, -50%) scale(1.08);
    z-index: 4;
}

.ideas-shuffle-cards.has-selection .ideas-shuffle-card:not(.is-selected) {
    opacity: 0.25;
    transform: translate(calc(-50% + var(--card-shift)), -50%) scale(0.82)
        rotate(var(--card-rotate));
    filter: blur(0.3px) grayscale(0.15);
    z-index: 1;
}

.ideas-shuffle-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
}

.ideas-shuffle-card.is-revealed .ideas-shuffle-card-inner {
    transform: rotateY(180deg);
}

.ideas-shuffle-card-face {
    position: absolute;
    inset: 0;
    border-radius: 18px;
    border: 2.5px solid var(--card-stroke);
    backface-visibility: hidden;
    background: linear-gradient(180deg, var(--card-bg) 0%, var(--bg-soft) 100%);
    box-shadow: 0 16px 26px rgba(0, 0, 0, 0.18),
        inset 0 2px 8px rgba(255, 255, 255, 0.65);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
}

.ideas-shuffle-card-back {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    box-shadow: none;
}

.ideas-shuffle-card-back::before {
    content: none;
}

.ideas-shuffle-card-back::after {
    content: none;
}

.ideas-shuffle-card-question {
    position: static;
    display: block;
    z-index: 2;
    pointer-events: none;
    color: #7a3a18;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
    border: none;
    background: transparent;
    text-shadow: 0 2px 6px rgba(115, 68, 34, 0.18);
}

.ideas-shuffle-card-front {
    transform: rotateY(180deg);
    background: var(--card-bg);
    text-align: center;
    gap: 6px;
    padding: 10px;
}

.ideas-shuffle-card-tag {
    font-size: 10px;
    color: var(--text-soft);
    background: var(--accent-soft);
    border: 1px solid var(--card-stroke);
    padding: 3px 8px;
    border-radius: 999px;
}

.ideas-shuffle-card-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ideas-shuffle-card-desc {
    font-size: 11px;
    color: var(--text-soft);
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ideas-shuffle-result {
    margin: 8px 0 2px;
    padding: 10px 12px;
    border-radius: 16px;
    border: 1px solid var(--card-stroke);
    background: var(--card-bg);
    text-align: left;
}

.ideas-shuffle-result-label {
    margin: 0 0 4px;
    font-size: 11px;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.ideas-shuffle-result-title {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
}

.ideas-shuffle-result-desc {
    margin: 4px 0 0;
    font-size: 12px;
    color: var(--text-soft);
}

.ideas-shuffle-hint {
    margin: 8px 0 10px;
    font-size: 12px;
    color: var(--text-soft);
}

.ideas-shuffle-attempts {
    margin-top: 6px;
    font-size: 12px;
    color: var(--text-muted);
}

.shuffle-upsell {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    font-size: 12px;
    color: var(--text-soft);
}

@media (max-width: 360px) {
    .ideas-shuffle-cards {
        height: 200px;
    }

    .ideas-shuffle-card {
        width: 112px;
        height: 156px;
    }

    .ideas-shuffle-card.card-left {
        --card-shift: -78px;
    }

    .ideas-shuffle-card.card-right {
        --card-shift: 78px;
    }
}

/* избранное */

.icon-star {
    border: none;
    background: transparent;
    font-size: 20px;
    cursor: pointer;
    color: var(--text-muted);
}

.icon-star.is-active {
    color: #d89a3d;
}

/* кнопки */

.primary-btn {
    border-radius: var(--radius-pill);
    border: none;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #fffdf6;
    cursor: pointer;
    box-shadow: 0 8px 16px rgba(170, 105, 60, 0.55);
    transition: transform 0.12s ease, box-shadow 0.12s ease,
        filter 0.12s ease;
    white-space: nowrap;
}

.primary-btn:active {
    filter: brightness(0.96);
}

.primary-btn-full {
    margin-top: 10px;
    width: 100%;
}

/* bounce-анимация */

.primary-btn.btn-bounce {
    animation: btn-bounce 0.18s ease-out;
}

@keyframes btn-bounce {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(1px) scale(0.97);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

@keyframes shuffle-card-glow {
    0%,
    100% {
        box-shadow: 0 16px 28px rgba(115, 68, 34, 0.35),
            0 0 0 0 rgba(215, 130, 70, 0);
    }
    50% {
        box-shadow: 0 18px 30px rgba(115, 68, 34, 0.4),
            0 0 18px 6px rgba(215, 130, 70, 0.35);
    }
}

/* навигация */

.bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 10px;
    max-width: 420px;
    margin: 0 auto;
    padding: 6px 14px;
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.beige-nav {
    background: transparent;
    backdrop-filter: none;
}

.nav-btn {
    flex: 1;
    border-radius: 999px;
    border: 1px solid var(--card-stroke);
    background: var(--card-bg);
    color: var(--text-soft);
    padding: 6px 0 7px;
    font-size: 11px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(200, 150, 100, 0.15);
    transition: transform 0.1s ease, box-shadow 0.1s ease,
        background 0.1s ease;
}

.nav-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(200, 150, 100, 0.28);
}

.nav-btn:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(200, 150, 100, 0.22);
}

.nav-btn-active {
    background: linear-gradient(
        180deg,
        var(--card-bg) 0%,
        var(--card-stroke) 100%
    );
    color: var(--text-main);
}

.nav-icon {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.nav-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.nav-label {
    font-size: 11px;
}

/* адаптив */

@media (max-width: 360px) {
    .app {
        padding-inline: 10px;
    }

    .ideas-random-inner {
        grid-template-columns: 1fr;
    }
}
