:root {
    --bg: #140c1a;
    --panel: #1d1426;
    --panel2: #241a30;
    --text: #fff6ff;
    --muted: #c7a8d9;
    --line: #3a2747;
    --pink: #ff3d9a;
    --pink2: #ff8ec9;
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: fixed;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans JP", sans-serif;
    background:
        radial-gradient(1000px 700px at 15% 0%, rgba(255, 61, 154, .25), transparent 60%),
        radial-gradient(900px 700px at 85% 10%, rgba(255, 142, 201, .18), transparent 60%),
        var(--bg);
    color: var(--text);
}

.page {
    display: flex;
    justify-content: center;
    width: 100%;
    width: 100%;
    height: 100vh;
    /* Fallback */
    height: 100dvh;
    /* Modern browsers */
    height: var(--app-height, 100dvh);
    /* Visual Viewport API */
    overflow: hidden;
}

@media (min-width:1200px) {
    .page {
        padding-left: 340px;
        padding-right: 340px;
    }
}

@media (max-width:1199px) and (orientation:landscape) {
    .page {
        padding-left: 180px;
        padding-right: 180px;
    }
}

.wrap {
    max-width: 880px;
    width: 100%;
    padding: 18px 14px 18px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow: hidden;
}

/* ===== サイド広告 ===== */
.side-ad {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    display: none;
}

.left-ad {
    left: 10px;
}

.right-ad {
    right: 10px;
}

@media (min-width:1200px) {
    .side-ad {
        display: block;
    }
}

@media (max-width:1199px) and (orientation:landscape) {
    .side-ad {
        display: block;
        transform: translateY(-50%) scale(.9);
        transform-origin: center;
    }
}

.side-ad img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(255, 61, 154, .25);
}

/* ===== ヘッダー（共通で2段） ===== */
.topbar {
    padding: 12px;
    border-radius: 18px;
    background: rgba(29, 20, 38, .7);
    border: 1px solid var(--line);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(255, 61, 154, .15);
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.header-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    width: 100%;
}

.toprow {
    display: none;
    /* Deprecated class, just hiding or removing properties */
}

/* ロゴのスタイルはそのまま維持 */
.duga-logo {
    width: 180px;
    height: 50px;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 0 22px rgba(255, 61, 154, .18);
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.duga-logo a {
    display: block;
    width: 100%;
    height: 100%;
}

.duga-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fanza-logo {
    width: 180px;
    height: 50px;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 0 22px rgba(255, 61, 154, .18);
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fanza-logo a {
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fanza-logo img {
    max-width: 96%;
    max-height: 96%;
    object-fit: contain;
    display: block;
}

.top-title {
    margin: 10px 0 5px 0;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(90deg, #fff 0%, #ff80bf 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 61, 154, .4);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.top-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 0;
    /* Previously auto */
}

.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    border: 1px solid rgba(255, 61, 154, .35);
    background: linear-gradient(135deg, rgba(255, 61, 154, .18), rgba(255, 142, 201, .14));
    color: var(--text);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .06s ease, filter .12s ease;
    user-select: none;
}

.icon-btn:hover {
    filter: brightness(1.08);
}

.icon-btn:active {
    transform: translateY(1px);
}

.icon {
    width: 18px;
    height: 18px;
    display: block;
}

.top-desc {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.45;
    white-space: normal;
    overflow: visible;
    word-break: break-word;
}

@media (max-width: 520px) {
    .header-logos {
        flex-wrap: nowrap;
        /* 強制的に横並び */
        gap: 6px;
        /* ギャップをさらに狭める */
        justify-content: center;
        width: 100%;
        padding: 0 4px;
        /* 少し余白 */
    }

    .duga-logo,
    .fanza-logo {
        flex: 1 1 auto;
        /* 画面幅に合わせて伸縮 */
        width: auto;
        height: auto;
        aspect-ratio: 180 / 50;
        /* 比率を維持 */
        max-width: 140px;
        /* PCサイズ以上にはならないように */
        min-width: 0;
        /* flex縮小用 */
    }

    .top-actions {
        flex: 0 0 auto;
        margin-left: 2px;
    }

    .icon-btn {
        width: 36px;
        /* 少し小さく */
        height: 36px;
    }

    .top-title {
        font-size: 18px;
        /* タイトルも少し調整 */
        margin-top: 8px;
    }
}

/* ===== 共有シート ===== */
.share-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    z-index: 50;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.share-overlay.open {
    display: flex;
}

.share-sheet {
    width: min(520px, 100%);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(29, 20, 38, .92);
    backdrop-filter: blur(12px);
    box-shadow: 0 0 40px rgba(255, 61, 154, .18);
    overflow: hidden;
}

.share-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.share-head .ttl {
    font-size: 13px;
    font-weight: 900;
    color: var(--text);
}

.share-close {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06);
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-body {
    padding: 12px;
    display: grid;
    gap: 10px;
}

.share-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 61, 154, .25);
    background: rgba(255, 255, 255, .05);
    color: var(--text);
    cursor: pointer;
    font-weight: 900;
}

.share-btn .left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.share-btn .label {
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.share-btn .hint {
    font-size: 11px;
    color: var(--muted);
    font-weight: 700;
}

.share-btn:hover {
    filter: brightness(1.06);
}

.toast {
    position: fixed;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    background: rgba(29, 20, 38, .92);
    border: 1px solid rgba(255, 255, 255, .10);
    color: var(--text);
    padding: 10px 12px;
    border-radius: 14px;
    font-size: 12px;
    z-index: 60;
    box-shadow: 0 0 24px rgba(255, 61, 154, .18);
    display: none;
}

.toast.show {
    display: block;
}

/* ===== チャット ===== */
.chat {
    border-radius: 22px;
    background: rgba(29, 20, 38, .65);
    border: 1px solid var(--line);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    box-shadow: 0 0 40px rgba(255, 61, 154, .12);
    overflow: hidden;
}

.msgs {
    flex: 1 1 auto;
    min-height: 0;
    padding: 16px;
    overflow: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overscroll-behavior: contain;
}

.msg {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 16px;
    background: var(--panel2);
    border: 1px solid var(--line);
    font-size: 14px;
    line-height: 1.5;
}

.msg.user {
    align-self: flex-end;
    background: linear-gradient(135deg, rgba(255, 61, 154, .35), rgba(255, 142, 201, .25));
    border-color: rgba(255, 61, 154, .6);
}

.msg.sys {
    align-self: flex-start;
    color: var(--muted);
    font-size: 12px;
    background: rgba(36, 26, 48, .5);
}

/* ✅ 広告をチャットっぽく (sysメッセージ風) */
.msg.ad {
    align-self: flex-start;
    color: var(--muted);
    font-size: 12px;
    background: rgba(36, 26, 48, .5);
    border: 1px solid var(--line);
    padding: 10px;
    text-align: left;
    display: inline-block;
    max-width: 85%;
}

.msg.ad iframe {
    display: block;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    margin-top: 5px;
}

.ad-tag {
    display: inline-block;
    font-size: 10px;
    color: rgba(255, 255, 255, .75);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .10);
    padding: 2px 8px;
    border-radius: 999px;
    margin-bottom: 8px;
}

.ad-box {
    display: flex;
    justify-content: center;
}

.ad-box a {
    display: block;
    text-decoration: none;
}

.ad-box iframe,
.ad-box img {
    display: block;
    width: min(700px, 100%);
    height: auto;
    border-radius: 14px;
    box-shadow: 0 0 25px rgba(255, 61, 154, .25);
}

.ad-box iframe {
    height: 200px;
    border: 0;
}

/* ===== 検索結果 ===== */
.results {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px
}

.item {
    display: flex;
    gap: 12px;
    background: var(--panel);
    border-radius: 16px;
    border: 1px solid rgba(255, 61, 154, .2);
    padding: 12px;
}

.thumb {
    width: 92px;
    height: 92px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .06);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex: 0 0 auto;
    font-size: 11px;
    color: #aaa;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.meta {
    flex: 1;
    min-width: 0
}

.title {
    font-size: 14px;
    font-weight: 800
}

.sub {
    font-size: 12px;
    color: var(--muted);
    margin-top: 4px
}

.desc {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.desc.full {
    -webkit-line-clamp: unset;
    line-clamp: unset;
    overflow: visible
}

.actions {
    margin-top: 10px;
    display: flex;
    gap: 8px
}

.btn {
    border: 1px solid rgba(255, 61, 154, .4);
    background: linear-gradient(135deg, rgba(255, 61, 154, .25), rgba(255, 142, 201, .25));
    color: white;
    padding: 8px 14px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 800;
    font-size: 12px;
}

.btn.ghost {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .1)
}

.composer {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px;
    border-top: 1px solid var(--line);
    background: rgba(29, 20, 38, .85);
}

.mode-switch {
    display: flex;
    gap: 8px;
    margin-bottom: 4px;
}

.mode-btn {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--muted);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

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

.mode-btn.active {
    background: var(--pink);
    color: white;
    border-color: var(--pink);
    box-shadow: 0 0 10px rgba(255, 61, 154, 0.3);
}

/* 検索結果セクション */
#results {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.result-title {
    font-size: 16px;
    font-weight: bold;
    color: var(--text);
    margin: 0 0 12px 0;
    padding-left: 8px;
    border-left: 4px solid var(--pink);
}

.results-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Adjust textarea container to row when needed */
.composer-input-row {
    display: flex;
    gap: 10px;
    width: 100%;
}

textarea {
    flex: 1;
    resize: none;
    background: transparent;
    border: 0;
    color: var(--text);
    font-size: 14px;
    line-height: 1.5;
    max-height: 120px;
    outline: none;
}

/* iPhone X+ Safe Area */
.composer {
    padding-bottom: env(safe-area-inset-bottom, 12px);
    flex-shrink: 0;
}

/* ===== 年齢確認モーダル ===== */
.age-modal {
    display: none;
    /* 初期状態は非表示(JSで制御)もしくは display: flex */
    position: fixed;
    inset: 0;
    /* top:0, left:0, right:0, bottom:0 */
    background: rgba(0, 0, 0, 0.85);
    /* Slightly more transparency for glass feel */
    z-index: 9999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
    /* Increased blur */
    -webkit-backdrop-filter: blur(8px);
    padding: 20px;
}

.age-box {
    background: rgba(29, 20, 38, 0.95);
    /* Deeper glass background */
    border: none;
    /* Removed border as requested */
    border-radius: 20px;
    /* Slightly rounder */
    padding: 32px 24px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 61, 154, 0.1);
    animation: fadeIn 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    /* Smoother animation */
}

.age-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.age-desc {
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 32px;
    line-height: 1.7;
}

.age-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.age-actions button {
    flex: 1;
    padding: 16px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1), filter 0.2s;
    border: none;
    outline: none;
    appearance: none;
    /* Prevent iOS default borders */
    -webkit-appearance: none;
    touch-action: manipulation;
}

.age-actions button:active {
    transform: scale(0.96);
}

.btn-yes {
    background: linear-gradient(135deg, var(--pink), var(--pink2));
    /* Gradient for modern feel */
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 61, 154, 0.4);
}

.btn-no {
    background: transparent;
    /* Ghost button style */
    color: var(--text);
    /* No border, just text for cleaner look */
}

.btn-yes:hover {
    filter: brightness(1.1);
}

.btn-no:hover {
    background: rgba(255, 255, 255, 0.05);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== フッター ===== */
.app-footer {
    margin-top: 30px;
    padding: 0 10px 30px;
    text-align: center;
}

.footer-note,
.footer-copyright {
    font-size: 10px;
    color: rgba(255, 246, 255, 0.2);
    line-height: 1.5;
}

.footer-note {
    margin-bottom: 8px;
}

.footer-copyright {
    display: inline-block;
}

.footer-copyright a {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: rgba(255, 246, 255, 0.15);
}

.footer-copyright a:hover {
    color: rgba(255, 246, 255, 0.5);
}

/* ===== ポリシーモーダル ===== */
.policy-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.policy-modal.open {
    display: flex;
}

.policy-container {
    width: min(800px, 100%);
    max-height: 85vh;
    background: rgba(29, 20, 38, 0.95);
    border: 1px solid rgba(255, 61, 154, 0.2);
    border-radius: 18px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.policy-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

.policy-title {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    color: var(--text);
}

.policy-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: var(--text);
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.policy-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.policy-body {
    padding: 24px;
    overflow-y: auto;
    font-size: 14px;
    line-height: 1.7;
    color: #e0d0e6;
}

.policy-body h3 {
    margin: 0 0 16px;
    font-size: 18px;
    color: var(--pink);
    border-left: 4px solid var(--pink);
    padding-left: 10px;
}

.policy-body h4 {
    margin: 24px 0 8px;
    font-size: 15px;
    color: var(--text);
}

.policy-body p {
    margin: 0 0 16px;
}

.policy-body ul {
    margin: 0 0 16px;
    padding-left: 20px;
}

.policy-body li {
    margin-bottom: 6px;
}

.policy-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 32px 0;
}

/* Unified Result Card Styles (Added for Refactor) */
/* Unified Result Card Styles (Added for Refactor) */
.result-card {
    background: var(--panel);
    border-radius: 16px;
    border: 1px solid rgba(255, 61, 154, .2);
    padding: 12px;
    display: flex;
    flex-direction: row;
    /* Horizontal layout */
    gap: 16px;
    width: 100%;
    margin-bottom: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
    align-items: flex-start;
}

.result-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 61, 154, 0.15);
}

.result-inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    /* Take remaining space */
    min-width: 0;
    /* Prevent overflow */
}

/* Thumbnail Styles */
.thumb-container {
    width: 120px;
    /* Fixed width for desktop/default */
    min-width: 120px;
    aspect-ratio: 16/9;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    margin-bottom: 0;
    /* Removing bottom margin since it's on the side */
    flex-shrink: 0;
}

.thumb-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.result-card:hover .thumb-img {
    transform: scale(1.05);
}

/* Mobile Adjustment */
@media (max-width: 480px) {
    .thumb-container {
        width: 100px;
        min-width: 100px;
    }

    .result-card {
        padding: 10px;
        gap: 12px;
    }

    .result-card .title {
        font-size: 14px;
    }
}

.result-card .title {
    font-size: 15px;
    font-weight: 800;
    margin: 0;
    color: var(--text);
    line-height: 1.4;
}

.result-card .desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    margin: 4px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.result-card .meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}



.result-card .meta span {
    background: rgba(255, 255, 255, 0.06);
    padding: 3px 8px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.result-card .details-link {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 61, 154, .25), rgba(255, 142, 201, .25));
    border: 1px solid rgba(255, 61, 154, .4);
    color: white;
    padding: 10px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
    margin-top: 8px;
    transition: all 0.2s;
}

.result-card .details-link:hover {
    background: linear-gradient(135deg, rgba(255, 61, 154, .4), rgba(255, 142, 201, .4));
    transform: scale(1.02);
}

/* Brand Section Styles */
.results-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.brand-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.brand-title {
    font-size: 16px;
    font-weight: 900;
    margin: 0 0 10px 0;
    padding-left: 10px;
    border-left: 4px solid var(--pink);
    color: var(--text);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* ===== 背景アニメーション ===== */
.bg-jackets {
    position: fixed;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    z-index: -2;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    opacity: 0.15;
    transform: rotate(-15deg);
    pointer-events: none;
}

.bg-row {
    display: flex;
    gap: 10px;
    width: 200vw;
}

.bg-row img {
    height: 180px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .bg-row img {
        height: 120px;
    }
}

.marquee-left {
    animation: marquee-left 60s linear infinite;
}

.marquee-right {
    animation: marquee-right 60s linear infinite;
}

@keyframes marquee-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes marquee-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}