:root {
    --navy-950: #051520;
    --navy-900: #071b2b;
    --navy-800: #0c293d;
    --green-700: #0c6b4d;
    --green-500: #17a673;
    --green-100: #dcf4e8;
    --cream: #f7f3e8;
    --paper: #fffdf8;
    --ink: #102334;
    --muted: #5c6973;
    --red: #c53a3a;
    --gold: #e8c270;
    --line: #dce2df;
    --shadow: 0 24px 70px rgba(4, 19, 29, 0.14);
    --game-accent: #1b8759;
    --game-accent-dark: #0b5a3a;
    --game-accent-soft: #dff3e8;
}

.theme-spades {
    --game-accent: #16734c;
    --game-accent-dark: #08442e;
    --game-accent-soft: #dff3e8;
}

.theme-pitch {
    --game-accent: #277a45;
    --game-accent-dark: #103f28;
    --game-accent-soft: #e2f1e7;
}

.theme-euchre {
    --game-accent: #23764d;
    --game-accent-dark: #0e472f;
    --game-accent-soft: #e0f2e8;
}

.theme-whist {
    --game-accent: #337559;
    --game-accent-dark: #173f32;
    --game-accent-soft: #e3f0ea;
}

.theme-hearts {
    --game-accent: #1b8759;
    --game-accent-dark: #0b5a3a;
    --game-accent-soft: #dff3e8;
}

.theme-bid-euchre {
    --game-accent: #277a45;
    --game-accent-dark: #103f28;
    --game-accent-soft: #e2f1e7;
}

.theme-five-hundred {
    --game-accent: #277a45;
    --game-accent-dark: #103f28;
    --game-accent-soft: #e2f1e7;
}

.theme-twenty-nine {
    --game-accent: #277a45;
    --game-accent-dark: #103f28;
    --game-accent-soft: #e2f1e7;
}

.theme-minnesota-whist {
    --game-accent: #337559;
    --game-accent-dark: #173f32;
    --game-accent-soft: #e3f0ea;
}

.theme-oh-hell {
    --game-accent: #277a45;
    --game-accent-dark: #103f28;
    --game-accent-soft: #e2f1e7;
}

.theme-pinochle {
    --game-accent: #277a45;
    --game-accent-dark: #103f28;
    --game-accent-soft: #e2f1e7;
}

.theme-bid-whist {
    --game-accent: #337559;
    --game-accent-dark: #173f32;
    --game-accent-soft: #e3f0ea;
}

.theme-bridge {
    --game-accent: #277a45;
    --game-accent-dark: #103f28;
    --game-accent-soft: #e2f1e7;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

h1,
h2,
h3,
p,
figure {
    margin-top: 0;
}

h1,
h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 1.04;
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(2.25rem, 4vw, 3.75rem);
}

h3 {
    margin-bottom: 10px;
    font-size: 1.16rem;
    line-height: 1.3;
}

.shell {
    width: min(1160px, calc(100% - 40px));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 100;
    padding: 10px 16px;
    color: var(--navy-950);
    background: white;
    border-radius: 8px;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: relative;
    z-index: 10;
    color: white;
    background: var(--navy-950);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: inherit;
    font-size: 1.3rem;
    font-weight: 750;
    letter-spacing: -0.03em;
    text-decoration: none;
}

.brand-mark {
    width: 40px;
    height: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    place-items: center;
    overflow: hidden;
    color: var(--navy-950);
    background: var(--cream);
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
    font-family: Georgia, serif;
    font-size: 0.92rem;
    transform: rotate(-3deg);
}

.brand-mark span:last-child {
    color: var(--red);
}

.site-header nav,
footer nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.site-header nav a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    font-weight: 650;
    text-decoration: none;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
    color: white;
}

.game-hero {
    position: relative;
    overflow: hidden;
    color: white;
    background:
        radial-gradient(circle at 75% 43%, color-mix(in srgb, var(--game-accent) 46%, transparent), transparent 31%),
        linear-gradient(138deg, var(--navy-950) 0%, var(--navy-900) 56%, var(--game-accent-dark) 100%);
}

.game-hero-grid {
    position: relative;
    z-index: 1;
    min-height: 690px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.86fr);
    align-items: center;
    gap: 76px;
    padding-block: 70px 82px;
}

.game-hero-copy {
    position: relative;
    z-index: 2;
}

.game-identity {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    font-weight: 750;
}

.game-identity img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
}

.eyebrow {
    margin: 0 0 16px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow.dark {
    color: var(--game-accent-dark);
}

h1 {
    max-width: 650px;
    margin-bottom: 22px;
    font-size: clamp(3.5rem, 6.2vw, 5.8rem);
}

h1 span {
    color: #a8e1c7;
}

.hero-summary {
    max-width: 620px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.14rem;
    line-height: 1.65;
}

.hero-proof,
.check-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin-bottom: 26px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    font-weight: 680;
}

.hero-proof span {
    margin-right: 6px;
    color: #8ae0b8;
}

.store-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.store-link {
    display: inline-flex;
    align-items: center;
    border-radius: 8px;
    transition: transform 160ms ease, filter 160ms ease;
}

.store-link:hover,
.store-link:focus-visible {
    filter: brightness(1.08);
    transform: translateY(-2px);
}

.store-link img {
    width: auto;
    height: 45px;
}

.store-link .google-badge {
    max-width: none;
    height: 67px;
    margin-inline: -10px;
}

.store-note {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.78rem;
}

.hero-visual {
    position: relative;
    min-height: 560px;
}

.visual-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 470px;
    height: 470px;
    background: color-mix(in srgb, var(--game-accent) 25%, transparent);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.phone-frame {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    width: 286px;
    overflow: hidden;
    background: #06131c;
    border: 8px solid #172d39;
    border-radius: 34px;
    box-shadow: 0 32px 68px rgba(0, 0, 0, 0.44);
    transform: translate(-50%, -50%) rotate(1.5deg);
}

.phone-frame img {
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 16;
    object-fit: cover;
}

.visual-callout {
    position: absolute;
    z-index: 3;
    width: 205px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 14px;
    color: var(--navy-950);
    background: rgba(255, 253, 248, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.visual-callout > span:last-child {
    min-width: 0;
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.visual-callout strong {
    font-size: 0.9rem;
}

.visual-callout small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.7rem;
}

.callout-symbol {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    color: white;
    background: var(--game-accent-dark);
    border-radius: 12px;
    font-family: Georgia, serif;
    font-size: 1.45rem;
}

.callout-ai {
    top: 74px;
    left: -22px;
    transform: rotate(-3deg);
}

.callout-rules {
    right: -22px;
    bottom: 80px;
    transform: rotate(3deg);
}

.hero-suit {
    position: absolute;
    color: rgba(255, 255, 255, 0.025);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.hero-suit-one {
    bottom: -100px;
    left: -60px;
    font-size: 28rem;
    transform: rotate(8deg);
}

.hero-suit-two {
    top: -105px;
    right: -40px;
    font-size: 22rem;
    transform: rotate(-12deg);
}

.variations-band {
    color: white;
    background: var(--game-accent-dark);
}

.variations-inner {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    padding-block: 20px;
}

.variations-inner > strong {
    flex: 0 0 auto;
    color: #f1cf83;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.variations-inner ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.variations-inner li {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 650;
}

.variations-inner li a {
    display: block;
    padding: 6px 12px;
    border-radius: inherit;
    color: inherit;
    text-decoration: none;
    transition: background-color 160ms ease;
}

.variations-inner li a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.variations-inner li a:focus-visible {
    outline: 2px solid #f1cf83;
    outline-offset: 3px;
}

.benefits-section,
.rules-section,
.faq-section {
    padding-block: 96px;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 46px;
}

.section-heading.centered {
    margin-inline: auto;
    text-align: center;
}

.section-heading > p:last-child {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 1.08rem;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.benefit-card {
    padding: 30px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: 0 14px 40px rgba(4, 19, 29, 0.07);
}

.benefit-card p,
.rule-card p,
.faq-list p {
    margin-bottom: 0;
    color: var(--muted);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    color: white;
    background: var(--game-accent-dark);
    border-radius: 14px;
    font-family: Georgia, serif;
    font-size: 1.45rem;
}

.feature-icon.accent {
    color: var(--game-accent-dark);
    background: var(--game-accent-soft);
}

.showcase-section {
    overflow: hidden;
    padding-block: 108px;
    background: var(--cream);
}

.showcase-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.82fr);
    align-items: center;
    gap: 92px;
}

.showcase-row + .showcase-row {
    margin-top: 126px;
}

.showcase-row.reverse {
    grid-template-columns: minmax(350px, 0.82fr) minmax(0, 1fr);
}

.showcase-row.reverse .showcase-copy {
    grid-column: 2;
}

.showcase-row.reverse .screenshot-card {
    grid-column: 1;
    grid-row: 1;
}

.showcase-copy p:not(.eyebrow) {
    max-width: 600px;
    color: var(--muted);
    font-size: 1.06rem;
}

.check-list {
    display: grid;
    gap: 11px;
    margin-top: 24px;
    font-weight: 680;
}

.check-list span {
    display: inline-grid;
    width: 23px;
    height: 23px;
    place-items: center;
    margin-right: 8px;
    color: var(--game-accent-dark);
    background: var(--game-accent-soft);
    border-radius: 50%;
    font-size: 0.75rem;
}

.screenshot-card {
    position: relative;
    width: min(100%, 370px);
    margin: 0 auto;
    padding: 12px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 32px;
    box-shadow: var(--shadow);
}

.screenshot-card::before {
    position: absolute;
    z-index: -1;
    inset: 15% -28% -10% 25%;
    content: "";
    background: var(--game-accent-soft);
    border-radius: 50%;
}

.screenshot-card img {
    width: 100%;
    max-height: 610px;
    object-fit: cover;
    object-position: top;
    border-radius: 22px;
}

.screenshot-score img {
    object-position: center 12%;
}

.screenshot-card figcaption {
    padding: 14px 9px 5px;
    color: var(--muted);
    font-size: 0.78rem;
    text-align: center;
}

.rules-section {
    background: var(--paper);
}

.appearance-section {
    padding-block: 96px;
    background: var(--game-accent-soft);
}

.appearance-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1.28fr);
    align-items: center;
    gap: 76px;
}

.appearance-copy p:last-child {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 1.06rem;
}

.appearance-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: end;
    gap: 14px;
}

.appearance-shot {
    margin: 0;
    padding: 7px;
    overflow: hidden;
    background: white;
    border: 1px solid rgba(7, 27, 43, 0.12);
    border-radius: 20px;
    box-shadow: 0 15px 36px rgba(4, 19, 29, 0.11);
}

.appearance-shot:nth-child(2) {
    transform: translateY(-18px);
}

.appearance-shot img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 14px;
}

.appearance-shot figcaption {
    padding: 9px 4px 4px;
    color: var(--muted);
    font-size: 0.74rem;
    font-weight: 680;
    text-align: center;
}

.whist-rules-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.rule-card {
    padding: 25px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
}

.rule-card h3::before {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 10px;
    content: "";
    background: var(--game-accent);
    border-radius: 50%;
    vertical-align: 2px;
}

.rules-action {
    margin-top: 30px;
}

.text-link {
    color: var(--game-accent-dark);
    font-weight: 760;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
}

.text-link span {
    margin-left: 4px;
}

.faq-section {
    background: var(--game-accent-soft);
}

.faq-layout {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 92px;
}

.faq-layout .section-heading {
    margin-bottom: 0;
}

.faq-list {
    display: grid;
    gap: 0;
}

.faq-list article {
    padding: 24px 0;
    border-top: 1px solid color-mix(in srgb, var(--game-accent-dark) 20%, transparent);
}

.faq-list article:last-child {
    border-bottom: 1px solid color-mix(in srgb, var(--game-accent-dark) 20%, transparent);
}

.download-section {
    padding-block: 76px;
    background: var(--paper);
}

.download-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    padding: 38px 42px;
    color: white;
    background:
        radial-gradient(circle at 20% 50%, color-mix(in srgb, var(--game-accent) 44%, transparent), transparent 32%),
        linear-gradient(125deg, var(--navy-950), var(--game-accent-dark));
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.download-icon {
    width: 84px;
    height: 84px;
    border-radius: 20px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.download-copy h2 {
    margin-bottom: 8px;
    font-size: clamp(2rem, 3.5vw, 3rem);
}

.download-copy p:last-child {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.72);
}

.store-links.compact {
    width: 165px;
    display: grid;
    justify-items: center;
    gap: 7px;
}

.store-links.compact .store-link img {
    height: 42px;
}

.store-links.compact .store-link .google-badge {
    height: 63px;
}

footer {
    color: rgba(255, 255, 255, 0.68);
    background: var(--navy-950);
}

.footer-inner {
    min-height: 116px;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 28px;
}

.footer-brand {
    color: white;
}

.footer-inner p {
    margin-bottom: 0;
    font-size: 0.86rem;
}

footer nav {
    gap: 18px;
}

footer nav a {
    font-size: 0.84rem;
    text-decoration: none;
}

footer nav a:hover,
footer nav a:focus-visible {
    color: white;
}

.copyright {
    white-space: nowrap;
}

@media (max-width: 980px) {
    .game-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
        gap: 40px;
    }

    .hero-visual {
        min-height: 510px;
    }

    .phone-frame {
        width: 250px;
    }

    .visual-callout {
        width: 178px;
    }

    .callout-ai {
        left: -10px;
    }

    .callout-rules {
        right: -10px;
    }

    .showcase-row,
    .showcase-row.reverse {
        gap: 55px;
    }

    .appearance-layout {
        grid-template-columns: 0.8fr 1.2fr;
        gap: 42px;
    }

    .appearance-shot img {
        height: 280px;
    }

    .whist-rules-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .download-card {
        grid-template-columns: auto 1fr;
    }

    .download-card .store-links {
        grid-column: 1 / -1;
        width: auto;
        display: flex;
    }

    .footer-inner {
        grid-template-columns: auto 1fr auto;
        padding-block: 28px;
    }

    .footer-inner > p:not(.copyright) {
        display: none;
    }
}

@media (max-width: 780px) {
    .site-header nav a:nth-child(2),
    .site-header nav a:nth-child(3) {
        display: none;
    }

    .game-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-block: 56px 72px;
    }

    .game-hero-copy {
        text-align: center;
    }

    .game-identity,
    .hero-proof,
    .store-links {
        justify-content: center;
    }

    .hero-summary {
        margin-inline: auto;
    }

    .hero-visual {
        width: min(100%, 560px);
        min-height: 520px;
        margin-inline: auto;
    }

    .variations-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .variations-inner ul {
        justify-content: flex-start;
    }

    .benefit-grid,
    .rules-grid {
        grid-template-columns: 1fr 1fr;
    }

    .benefit-card:last-child {
        grid-column: 1 / -1;
    }

    .showcase-row,
    .showcase-row.reverse {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .showcase-row.reverse .showcase-copy,
    .showcase-row.reverse .screenshot-card {
        grid-column: auto;
        grid-row: auto;
    }

    .showcase-row.reverse .showcase-copy {
        order: 1;
    }

    .showcase-row.reverse .screenshot-card {
        order: 2;
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .appearance-layout {
        grid-template-columns: 1fr;
    }

    .appearance-copy {
        max-width: 620px;
    }

    .download-card {
        text-align: center;
    }

    .download-icon {
        margin-inline: auto;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 18px;
        text-align: center;
    }
}

@media (max-width: 560px) {
    .shell {
        width: min(100% - 28px, 1160px);
    }

    .header-inner {
        min-height: 68px;
    }

    .site-header nav {
        gap: 17px;
    }

    .site-header nav a {
        font-size: 0.84rem;
    }

    .brand {
        font-size: 1.12rem;
    }

    .brand-mark {
        width: 36px;
        height: 36px;
    }

    h1 {
        font-size: clamp(3.2rem, 16vw, 4.4rem);
    }

    .game-identity {
        margin-bottom: 20px;
    }

    .hero-summary {
        font-size: 1.02rem;
    }

    .hero-proof {
        display: grid;
        justify-content: center;
        gap: 7px;
    }

    .store-links {
        gap: 6px;
    }

    .store-link img {
        height: 39px;
    }

    .store-link .google-badge {
        height: 58px;
    }

    .hero-visual {
        min-height: 455px;
    }

    .phone-frame {
        width: 230px;
    }

    .visual-glow {
        width: 350px;
        height: 350px;
    }

    .visual-callout {
        width: 164px;
        padding: 9px 10px;
    }

    .callout-symbol {
        width: 39px;
        height: 39px;
        font-size: 1.15rem;
    }

    .visual-callout small {
        font-size: 0.62rem;
    }

    .callout-ai {
        top: 50px;
        left: -5px;
    }

    .callout-rules {
        right: -5px;
        bottom: 53px;
    }

    .benefits-section,
    .rules-section,
    .faq-section,
    .appearance-section {
        padding-block: 72px;
    }

    .showcase-section {
        padding-block: 80px;
    }

    .showcase-row + .showcase-row {
        margin-top: 94px;
    }

    .benefit-grid,
    .rules-grid,
    .whist-rules-grid {
        grid-template-columns: 1fr;
    }

    .appearance-gallery {
        gap: 8px;
    }

    .appearance-shot {
        padding: 4px;
        border-radius: 13px;
    }

    .appearance-shot:nth-child(2) {
        transform: translateY(-10px);
    }

    .appearance-shot img {
        height: 230px;
        border-radius: 9px;
    }

    .appearance-shot figcaption {
        font-size: 0.62rem;
    }

    .benefit-card:last-child {
        grid-column: auto;
    }

    .benefit-card,
    .rule-card {
        padding: 24px;
    }

    .download-section {
        padding-block: 50px;
    }

    .download-card {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }

    .download-card .store-links {
        grid-column: auto;
        justify-content: center;
    }

    .download-icon {
        width: 72px;
        height: 72px;
    }

    footer nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .store-link {
        transition: none;
    }
}
