@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&family=Chakra+Petch:wght@600;700&display=swap");

:root {
    --bg: #fff3e8;
    --bg-soft: #fffaf4;
    --ink: #171d2b;
    --muted: #5e6a82;
    --line: rgba(18, 23, 35, 0.09);
    --card: rgba(255, 248, 240, 0.8);
    --card-strong: rgba(255, 252, 247, 0.96);
    --accent: #df7b1f;
    --accent-soft: rgba(223, 123, 31, 0.15);
    --cobalt: #2747c7;
    --mint: #a4582b;
    --shadow: 0 26px 68px rgba(31, 40, 74, 0.09);
    --radius-xl: 30px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --shell: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
    background: linear-gradient(180deg, #fff7ef 0%, #f5e6da 100%);
}

body.nav-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

.site-bg {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(39, 71, 199, 0.14), transparent 28%),
        radial-gradient(circle at 86% 10%, rgba(223, 123, 31, 0.18), transparent 20%),
        linear-gradient(transparent 96%, rgba(18, 23, 35, 0.035) 100%);
    background-size: auto, auto, 100% 32px;
    pointer-events: none;
    z-index: -1;
}

.shell {
    width: min(calc(100% - 32px), var(--shell));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: rgba(247, 239, 226, 0.82);
    border-bottom: 1px solid rgba(18, 23, 35, 0.06);
}

.header-shell {
    display: grid;
    grid-template-columns: minmax(240px, 320px) minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    min-height: 84px;
    padding: 10px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    max-width: 320px;
}

.brand-logo {
    width: 58px;
    height: 58px;
    object-fit: contain;
    filter: drop-shadow(0 10px 22px rgba(8, 38, 28, 0.18));
}

.brand-copy {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.brand-copy strong,
h1,
h2,
h3 {
    font-family: "Chakra Petch", sans-serif;
}

.brand-copy span {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.25;
    max-width: 250px;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    margin-left: 0;
    min-width: 0;
    flex-wrap: nowrap;
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    position: relative;
    color: var(--muted);
    font-weight: 600;
    font-size: 0.98rem;
    line-height: 1.1;
    white-space: nowrap;
}

.site-nav a.is-active,
.site-nav a:hover {
    color: var(--ink);
}

.site-nav a.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--cobalt), var(--accent));
}

.header-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    border: 1px solid transparent;
    min-height: 48px;
    padding: 0 22px;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-cta {
    flex-shrink: 0;
    white-space: nowrap;
}

.header-cta,
.button-primary {
    background: var(--ink);
    color: #fff;
    box-shadow: 0 16px 35px rgba(18, 23, 35, 0.18);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.55);
    border-color: rgba(18, 23, 35, 0.12);
}

.button-muted {
    background: rgba(18, 23, 35, 0.08);
    border-color: rgba(18, 23, 35, 0.08);
    color: var(--muted);
    box-shadow: none;
}

.button:hover,
.header-cta:hover {
    transform: translateY(-2px);
}

.is-disabled {
    cursor: not-allowed;
    pointer-events: none;
    transform: none !important;
}

.full {
    width: 100%;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    margin-left: auto;
    border: 1px solid rgba(18, 23, 35, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.55);
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto;
    background: var(--ink);
    transition: transform 180ms ease, opacity 180ms ease;
}

body.nav-open .menu-toggle span:first-child {
    transform: translateY(7px) rotate(45deg);
}

body.nav-open .menu-toggle span:last-child {
    transform: translateY(-7px) rotate(-45deg);
}

.hero-section,
.page-hero {
    padding: 42px 0 24px;
}

.hero-shell,
.page-hero-shell {
    display: grid;
    gap: 26px;
    align-items: stretch;
}

.hero-shell {
    grid-template-columns: 1.3fr 0.9fr;
}

.hero-copy,
.hero-panel,
.page-hero-shell,
.app-hero-copy,
.app-hero-card,
.content-card,
.sidebar-card,
.reason-card,
.contact-card,
.mini-collection,
.category-card,
.app-card,
.cta-band {
    border: 1px solid rgba(18, 23, 35, 0.08);
    background: var(--card);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.hero-copy,
.page-hero-shell,
.app-hero-copy {
    border-radius: var(--radius-xl);
    padding: 34px;
}

.hero-copy h1,
.page-hero h1,
.app-hero-copy h1 {
    margin: 10px 0 16px;
    font-size: clamp(2.35rem, 4vw, 4.5rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.hero-text,
.page-hero p,
.app-hero-copy p {
    margin: 0;
    max-width: 64ch;
    color: var(--muted);
    font-size: 1.06rem;
    line-height: 1.7;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cobalt);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-actions,
.cta-band-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
}

.hero-stats div,
.hero-panel-card,
.app-hero-card,
.search-bar,
.stat-grid,
.sidebar-card,
.content-card,
.reason-card,
.contact-card,
.faq-item,
.mini-item {
    border-radius: var(--radius-lg);
}

.hero-stats div {
    padding: 18px;
    background: rgba(255, 255, 255, 0.56);
    border: 1px solid rgba(18, 23, 35, 0.06);
}

.hero-stats strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1.6rem;
}

.hero-stats span {
    color: var(--muted);
    font-size: 0.95rem;
}

.hero-panel {
    display: grid;
    gap: 18px;
}

.hero-panel-card {
    padding: 28px;
}

.hero-panel-card.tinted {
    background: linear-gradient(135deg, rgba(39, 71, 199, 0.08), rgba(223, 123, 31, 0.12));
}

.panel-kicker {
    margin: 0;
    color: var(--muted);
    font-weight: 700;
}

.panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.panel-head a,
.panel-head-note {
    color: var(--cobalt);
    font-size: 0.88rem;
    font-weight: 700;
    white-space: nowrap;
}

.hero-link-list,
.hero-guide-list {
    display: grid;
    gap: 12px;
}

.hero-keyword-link,
.hero-guide-item {
    min-height: 0;
    padding: 14px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(18, 23, 35, 0.06);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.hero-keyword-link:hover,
.hero-guide-item:hover {
    transform: translateY(-2px);
    border-color: rgba(31, 86, 194, 0.14);
    background: rgba(255, 255, 255, 0.72);
}

.hero-keyword-link {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
}

.hero-keyword-logo {
    width: 58px;
    height: 58px;
    object-fit: contain;
    filter: drop-shadow(0 10px 18px rgba(8, 38, 28, 0.14));
}

.hero-keyword-copy {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.hero-keyword-copy strong,
.hero-guide-copy strong {
    font-size: 1.02rem;
    line-height: 1.2;
}

.hero-keyword-copy span,
.hero-guide-copy span {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.45;
}

.hero-keyword-meta {
    display: grid;
    gap: 4px;
    justify-items: end;
    text-align: right;
}

.hero-keyword-meta span {
    color: var(--muted);
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-keyword-meta strong {
    color: var(--accent);
    white-space: nowrap;
}

.hero-guide-item {
    display: grid;
    grid-template-columns: 12px minmax(0, 1fr);
    align-items: start;
    gap: 12px;
}

.hero-guide-dot {
    width: 10px;
    height: 10px;
    margin-top: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cobalt), var(--accent));
}

.section {
    padding: 28px 0;
}

.section-head {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
}

.section-head.split {
    grid-template-columns: 0.95fr 1fr;
    align-items: end;
}

.section-head h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
}

.section-head p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.category-grid,
.card-grid,
.reason-grid,
.contact-grid {
    display: grid;
    gap: 18px;
}

.category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

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

.category-card,
.app-card,
.reason-card,
.contact-card,
.mini-collection,
.content-card,
.sidebar-card,
.cta-band {
    padding: 24px;
}

.category-card strong,
.app-card h3,
.mini-collection h3,
.reason-card h3,
.contact-card h2,
.content-card h2,
.sidebar-card h3,
.cta-band h2 {
    margin: 0;
}

.category-card p,
.app-card p,
.mini-collection p,
.reason-card p,
.contact-card p,
.content-card p,
.sidebar-card p,
.cta-band p {
    color: var(--muted);
    line-height: 1.7;
}

.category-card:hover,
.app-card:hover {
    transform: translateY(-4px);
}

.app-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: 100%;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.app-logo-link {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 0 2px;
}

.app-logo {
    width: 124px;
    height: 124px;
    object-fit: contain;
    filter: drop-shadow(0 14px 24px rgba(8, 38, 28, 0.18));
}

.app-card-top,
.mini-collection-head,
.card-actions,
.tag-row,
.footer-shell,
.breadcrumbs,
.app-layout,
.collection-layout {
    display: flex;
    gap: 12px;
}

.app-card-top,
.mini-collection-head {
    justify-content: space-between;
    align-items: center;
}

.pill,
.card-badge,
.tag-row span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.64);
    border: 1px solid rgba(18, 23, 35, 0.08);
    font-size: 0.84rem;
    font-weight: 700;
}

.card-badge {
    color: var(--accent);
}

.app-card h3 {
    font-size: 1.35rem;
    letter-spacing: -0.02em;
}

.app-card-copy {
    display: grid;
    gap: 14px;
}

.app-card-copy h3 {
    margin: 0;
    line-height: 1.2;
}

.app-card-copy p {
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-items: stretch;
}

.app-meta {
    display: grid;
    gap: 0;
    margin-top: auto;
    padding-top: 2px;
    border-top: 1px solid rgba(18, 23, 35, 0.08);
}

.app-meta-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(18, 23, 35, 0.06);
}

.app-meta-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.stat-grid div {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 118px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(18, 23, 35, 0.07);
    border-radius: 18px;
}

.app-meta-row span,
.stat-grid span {
    display: block;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.2;
}

.stat-grid span {
    margin-bottom: 4px;
}

.app-meta-row strong,
.stat-grid strong {
    font-size: 1.05rem;
    white-space: nowrap;
}

.tag-row {
    flex-wrap: wrap;
}

.tag-row.compact span {
    background: transparent;
}

.card-actions {
    justify-content: space-between;
    align-items: center;
    margin-top: 2px;
}

.text-link {
    color: var(--muted);
    font-weight: 700;
}

.text-link-button {
    padding: 0;
    border: none;
    background: transparent;
    font: inherit;
    cursor: pointer;
}

.text-link.strong {
    color: var(--cobalt);
}

.text-link.disabled {
    color: rgba(93, 101, 120, 0.75);
}

.section-link {
    margin-top: 18px;
}

.section-link a,
.mini-collection-head a {
    color: var(--cobalt);
    font-weight: 700;
}

.collection-layout {
    align-items: stretch;
    flex-wrap: wrap;
}

.collection-layout > div {
    flex: 1 1 280px;
}

.mini-list {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.mini-item {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.56);
    border: 1px solid rgba(18, 23, 35, 0.06);
}

.mini-logo {
    width: 74px;
    height: 74px;
    flex: 0 0 auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 16px rgba(8, 38, 28, 0.14));
}

.mini-copy {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.mini-item strong {
    display: block;
}

.mini-copy span {
    display: block;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.mini-score {
    display: grid;
    gap: 4px;
    min-width: 92px;
    padding: 12px 14px;
    border-radius: 18px;
    border: 1px solid rgba(18, 23, 35, 0.08);
    background: linear-gradient(135deg, rgba(239, 108, 36, 0.08), rgba(31, 86, 194, 0.04));
    justify-items: end;
    text-align: right;
}

.mini-score span {
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.1;
}

.mini-score strong {
    color: var(--accent);
    font-weight: 700;
    white-space: nowrap;
    font-size: 1.08rem;
    line-height: 1.1;
}

.search-bar {
    padding: 16px;
    margin-top: 18px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(18, 23, 35, 0.08);
}

.search-bar input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    font: inherit;
    color: var(--ink);
}

.search-bar input::placeholder {
    color: rgba(93, 101, 120, 0.88);
}

.faq-shell {
    display: grid;
    gap: 24px;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    padding: 0 22px;
    background: rgba(255, 255, 255, 0.56);
    border: 1px solid rgba(18, 23, 35, 0.06);
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 22px 0;
    font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    margin: 0 0 22px;
    color: var(--muted);
    line-height: 1.7;
}

.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(31, 86, 194, 0.1), rgba(239, 108, 36, 0.11));
}

.page-hero-shell {
    max-width: 860px;
}

.app-hero-shell {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 18px;
    align-items: start;
    --hero-mx: 0.5;
    --hero-my: 0.5;
}

.app-hero-copy {
    position: relative;
    overflow: hidden;
}

.app-hero-copy::before,
.app-hero-card::before {
    content: "";
    position: absolute;
    pointer-events: none;
}

.app-hero-copy::before {
    inset: auto auto -90px -50px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(31, 86, 194, 0.15), transparent 70%);
}

.app-hero-card::before {
    top: -90px;
    right: -56px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(239, 108, 36, 0.18), transparent 68%);
    transform: translate3d(calc((var(--hero-mx) - 0.5) * 24px), calc((var(--hero-my) - 0.5) * 24px), 0);
    transition: transform 180ms ease;
}

.app-hero-copy > *,
.app-hero-card > * {
    position: relative;
    z-index: 1;
}

.app-hero-top {
    display: grid;
    grid-template-columns: 168px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
}

.app-hero-intro {
    display: grid;
    gap: 14px;
}

.detail-logo-shell {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 178px;
    padding: 14px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 26% 22%, rgba(255, 255, 255, 0.74), transparent 34%),
        linear-gradient(145deg, rgba(12, 92, 72, 0.16), rgba(31, 86, 194, 0.1));
    border: 1px solid rgba(18, 23, 35, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
    overflow: hidden;
}

.detail-logo-shell::before,
.detail-logo-shell::after {
    content: "";
    position: absolute;
    inset: auto;
    border-radius: 50%;
    pointer-events: none;
}

.detail-logo-shell::before {
    width: 156px;
    height: 156px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.34), transparent 70%);
    animation: pulseGlow 4.8s ease-in-out infinite;
}

.detail-logo-shell::after {
    width: 130%;
    height: 18px;
    bottom: 18px;
    left: -15%;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.58), transparent);
    opacity: 0.58;
    animation: shimmerSweep 5.8s linear infinite;
}

.detail-logo {
    width: 152px;
    height: 152px;
    margin: 0;
    object-fit: contain;
    filter: drop-shadow(0 18px 30px rgba(8, 38, 28, 0.18));
    animation: floatLogo 5.1s ease-in-out infinite;
}

.breadcrumbs {
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 0.92rem;
}

.hero-note {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 16px;
    align-items: center;
    margin-top: 22px;
    padding: 16px 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(31, 86, 194, 0.08), rgba(239, 108, 36, 0.1));
    border: 1px solid rgba(18, 23, 35, 0.07);
}

.hero-note span {
    color: var(--cobalt);
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hero-note strong {
    font-size: 1rem;
    line-height: 1.5;
}

.app-hero-card {
    display: grid;
    gap: 16px;
    align-self: start;
    position: relative;
    overflow: hidden;
    padding: 24px;
}

.app-hero-panel-head {
    display: grid;
    gap: 6px;
}

.app-hero-panel-head h2 {
    margin: 0;
    font-size: 1.35rem;
    line-height: 1.15;
}

.app-hero-card .stat-grid {
    gap: 14px;
}

.app-hero-card .stat-grid div {
    min-height: 90px;
    padding: 15px 16px;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.app-hero-card .stat-grid div:hover {
    transform: translateY(-3px);
    border-color: rgba(31, 86, 194, 0.15);
    background: rgba(255, 255, 255, 0.7);
}

.hero-cta-stack {
    display: grid;
    gap: 10px;
    padding: 14px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(31, 86, 194, 0.08), rgba(239, 108, 36, 0.1));
    border: 1px solid rgba(18, 23, 35, 0.07);
}

.hero-cta-stack .button {
    min-height: 52px;
}

.hero-cta-note {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.45;
    text-align: center;
}

.signal-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.signal-pill {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.64);
    border: 1px solid rgba(18, 23, 35, 0.08);
    font-size: 0.84rem;
    font-weight: 700;
}

.hero-mini-grid,
.sidebar-note-list {
    display: grid;
    gap: 12px;
}

.hero-signal-list {
    display: grid;
    gap: 10px;
}

.hero-signal-item,
.hero-mini-card,
.sidebar-note-item {
    padding: 14px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.56);
    border: 1px solid rgba(18, 23, 35, 0.07);
}

.hero-signal-item {
    position: relative;
    padding-left: 18px;
}

.hero-signal-item::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cobalt), var(--accent));
}

.hero-signal-item span,
.hero-mini-card span,
.sidebar-note-item span {
    display: block;
    color: var(--muted);
    font-size: 0.84rem;
    margin-bottom: 6px;
}

.hero-signal-item strong,
.hero-mini-card strong,
.sidebar-note-item strong {
    display: block;
    line-height: 1.45;
    font-size: 0.97rem;
}

.app-layout {
    align-items: flex-start;
}

.app-main {
    flex: 1 1 0;
    display: grid;
    gap: 18px;
}

.app-sidebar {
    width: min(360px, 100%);
}

.sidebar-card {
    position: sticky;
    top: 104px;
    display: grid;
    gap: 18px;
}

.bullet-list {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.bullet-item {
    min-height: 56px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.56);
    border: 1px solid rgba(18, 23, 35, 0.06);
    line-height: 1.6;
}

.compact .faq-item {
    background: rgba(255, 255, 255, 0.46);
}

.content-card-accent {
    background:
        radial-gradient(circle at top right, rgba(239, 108, 36, 0.12), transparent 30%),
        radial-gradient(circle at bottom left, rgba(31, 86, 194, 0.1), transparent 28%),
        var(--card);
}

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

.promo-tile {
    min-height: 100%;
    padding: 18px;
    border-radius: 24px;
    border: 1px solid rgba(18, 23, 35, 0.07);
    background: rgba(255, 255, 255, 0.58);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.promo-tile:hover {
    transform: translateY(-4px);
    border-color: rgba(239, 108, 36, 0.16);
    box-shadow: 0 18px 36px rgba(18, 23, 35, 0.08);
}

.promo-tile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.promo-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(8, 38, 28, 0.16));
}

.promo-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 32px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(31, 86, 194, 0.08);
    color: var(--cobalt);
    font-size: 0.85rem;
    font-weight: 700;
}

.promo-tile strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.04rem;
}

.promo-tile p {
    margin: 0;
}

@keyframes floatLogo {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes pulseGlow {
    0%,
    100% {
        transform: scale(0.94);
        opacity: 0.72;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

@keyframes shimmerSweep {
    0% {
        transform: translateX(-24%);
    }

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

.site-footer {
    padding: 32px 0 48px;
}

.footer-shell {
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px 24px;
    padding: 24px 0 0;
    border-top: 1px solid rgba(18, 23, 35, 0.08);
}

.footer-title {
    margin: 0 0 8px;
    font-family: "Chakra Petch", sans-serif;
    font-weight: 700;
}

.footer-copy {
    margin: 0;
    max-width: 56ch;
    color: var(--muted);
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    color: var(--muted);
    font-weight: 600;
}

.footer-meta {
    display: grid;
    gap: 6px;
    color: var(--muted);
    text-align: right;
}

[data-search-card].is-hidden {
    display: none;
}

.reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 430ms ease, transform 430ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1080px) {
    .hero-shell,
    .app-hero-shell,
    .section-head.split,
    .category-grid,
    .card-grid,
    .reason-grid,
    .contact-grid,
    .app-layout {
        grid-template-columns: 1fr;
    }

    .app-layout {
        display: grid;
    }

    .app-hero-top,
    .promo-grid {
        grid-template-columns: 1fr;
    }

    .app-sidebar {
        width: 100%;
    }

    .sidebar-card {
        position: static;
    }
}

@media (max-width: 1220px) {
    .header-shell {
        grid-template-columns: minmax(220px, 276px) minmax(0, 1fr) auto;
        gap: 14px;
    }

    .brand {
        max-width: 276px;
    }

    .brand-copy span {
        display: none;
    }

    .site-nav {
        gap: 10px;
    }

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

    .header-cta {
        min-height: 44px;
        padding: 0 18px;
        font-size: 0.96rem;
    }
}

@media (max-width: 920px) {
    .header-shell {
        display: flex;
        gap: 12px;
        padding: 10px 0;
    }

    .menu-toggle {
        display: inline-block;
    }

    .header-cta {
        display: none;
    }

    .site-nav {
        position: fixed;
        inset: 84px 16px auto;
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
        border-radius: 24px;
        border: 1px solid rgba(18, 23, 35, 0.08);
        background: rgba(255, 250, 243, 0.97);
        box-shadow: var(--shadow);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 180ms ease, transform 180ms ease;
    }

    body.nav-open .site-nav {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .site-nav a.is-active::after {
        display: none;
    }

    .hero-stats,
    .app-stats,
    .stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .hero-section,
    .page-hero,
    .section {
        padding: 20px 0;
    }

    .hero-copy,
    .page-hero-shell,
    .app-hero-copy,
    .app-hero-card,
    .category-card,
    .app-card,
    .mini-collection,
    .reason-card,
    .contact-card,
    .content-card,
    .sidebar-card,
    .cta-band {
        padding: 22px;
    }

    .app-hero-top {
        gap: 18px;
    }

    .detail-logo-shell {
        min-height: 156px;
    }

    .brand-copy span {
        display: none;
    }

    .brand-logo {
        width: 52px;
        height: 52px;
    }

    .hero-stats,
    .stat-grid {
        grid-template-columns: 1fr;
    }

    .panel-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-keyword-link {
        grid-template-columns: 58px minmax(0, 1fr);
        align-items: start;
    }

    .hero-keyword-meta {
        grid-column: 2;
        justify-items: start;
        text-align: left;
    }

    .cta-band,
    .card-actions,
    .footer-shell {
        flex-direction: column;
        align-items: flex-start;
    }

    .mini-logo {
        width: 68px;
        height: 68px;
    }

    .mini-item {
        grid-template-columns: 68px minmax(0, 1fr);
        align-items: start;
    }

    .mini-score {
        grid-column: 2;
        justify-items: start;
        text-align: left;
        min-width: 0;
        width: fit-content;
    }
}

body.site-yonorummyapk777 {
    background:
        radial-gradient(circle at top right, rgba(255, 173, 55, 0.16), transparent 24%),
        linear-gradient(180deg, #f8f5ef 0%, #efe2cd 100%);
}

body.site-yonorummyapk777 .site-bg {
    background:
        radial-gradient(circle at 8% 12%, rgba(39, 110, 196, 0.1), transparent 28%),
        radial-gradient(circle at 86% 12%, rgba(242, 150, 30, 0.16), transparent 22%),
        linear-gradient(120deg, rgba(39, 110, 196, 0.03) 0%, transparent 40%, rgba(242, 150, 30, 0.05) 100%);
}

body.site-yonorummyapk777 .site-header {
    background: rgba(250, 244, 235, 0.9);
}

body.site-yonorummyapk777 .header-cta,
body.site-yonorummyapk777 .button-primary {
    background: linear-gradient(135deg, #0f2444, #2c6ad4);
    color: #fff;
    box-shadow: 0 20px 42px rgba(44, 106, 212, 0.22);
}

body.site-yonorummyapk777 .button-secondary {
    border-color: rgba(15, 36, 68, 0.14);
    background: rgba(255, 255, 255, 0.72);
}

body.site-yonorummyapk777 .hero-copy,
body.site-yonorummyapk777 .hero-panel,
body.site-yonorummyapk777 .app-hero-copy,
body.site-yonorummyapk777 .app-hero-card,
body.site-yonorummyapk777 .content-card,
body.site-yonorummyapk777 .sidebar-card,
body.site-yonorummyapk777 .reason-card,
body.site-yonorummyapk777 .category-card,
body.site-yonorummyapk777 .mini-collection {
    border: 1px solid rgba(33, 60, 104, 0.1);
}

body.site-yonorummyapk777 .hero-panel-card-steps {
    position: relative;
    overflow: hidden;
}

body.site-yonorummyapk777 .hero-panel-card-steps::before {
    content: "";
    position: absolute;
    inset: -30% auto auto 60%;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 189, 83, 0.24), transparent 70%);
    pointer-events: none;
}

body.site-yonorummyapk777 .hero-step-list {
    display: grid;
    gap: 12px;
}

body.site-yonorummyapk777 .hero-step-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(44, 106, 212, 0.1);
}

body.site-yonorummyapk777 .hero-step-no {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(242, 150, 30, 0.18), rgba(44, 106, 212, 0.16));
    color: #173869;
    font-family: "Chakra Petch", sans-serif;
    font-weight: 700;
}

body.site-yonorummyapk777 .app-note-strip {
    margin-top: 18px;
}

body.site-yonorummyapk777 .signal-pill {
    background: rgba(44, 106, 212, 0.08);
}

body.site-yonorummyapk777 .app-card:hover,
body.site-yonorummyapk777 .hero-panel-card:hover,
body.site-yonorummyapk777 .content-card:hover {
    transform: translateY(-3px);
}

body.site-yonorummyapk777 .text-link.strong {
    color: #2c6ad4;
}

.apk-launch-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: #0b1018;
    color: #fff;
    border-bottom: 3px solid #ffbf61;
}

.apk-launch-header-shell {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    min-height: 80px;
}

.apk-launch-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: "Chakra Petch", sans-serif;
    font-size: 1.22rem;
    text-transform: uppercase;
}

.apk-launch-brand img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.apk-launch-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.apk-launch-nav a {
    padding: 10px 12px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.74);
    font-weight: 900;
}

.apk-launch-nav a.is-active,
.apk-launch-nav a:hover {
    color: #0b1018;
    background: #ffbf61;
}

.apk-launch-header-cta {
    padding: 13px 18px;
    border-radius: 8px;
    color: #0b1018;
    background: #ffbf61;
    font-weight: 1000;
}

.apk-launch-footer {
    margin-top: 34px;
    padding: 28px 0;
    background: #0b1018;
    color: rgba(255, 255, 255, 0.72);
}

.apk-launch-footer-shell {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) repeat(4, auto);
    gap: 18px;
    align-items: center;
}

.apk-launch-footer-shell div {
    display: grid;
    gap: 4px;
}

.apk-launch-footer-shell strong {
    color: #fff;
    font-family: "Chakra Petch", sans-serif;
    font-size: 1.4rem;
}

.apk-launch-footer-shell a:hover {
    color: #ffbf61;
}

.apk-collection-launch {
    padding: 44px 0 26px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(10, 15, 24, 0.96), rgba(15, 36, 68, 0.9)),
        linear-gradient(90deg, rgba(255, 191, 97, 0.22), transparent);
}

.apk-collection-head {
    display: grid;
    gap: 14px;
}

.apk-collection-head .eyebrow {
    color: #ffbf61;
}

.apk-collection-head h1 {
    max-width: 920px;
    margin: 0;
    font-size: clamp(3.2rem, 7vw, 6rem);
    line-height: 0.92;
}

.apk-collection-head p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.75;
}

.apk-collection-search input {
    width: min(100%, 520px);
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid rgba(255, 191, 97, 0.4);
    border-radius: 8px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    font: inherit;
}

.apk-collection-search input::placeholder {
    color: rgba(255, 255, 255, 0.56);
}

.apk-collection-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.apk-collection-tile {
    display: grid;
    grid-template-rows: auto auto auto 1fr auto auto;
    gap: 12px;
    padding: 16px;
    min-height: 360px;
    background: #fff;
    border: 1px solid rgba(23, 56, 105, 0.12);
    border-radius: 8px;
}

.apk-collection-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 94px;
    height: 94px;
    border-radius: 8px;
    background: #f6f3eb;
}

.apk-collection-logo img {
    width: 78px;
    height: 78px;
    object-fit: contain;
}

.apk-collection-tile > span {
    color: #2c6ad4;
    font-weight: 900;
    font-size: 0.78rem;
    text-transform: uppercase;
}

.apk-collection-tile h2 {
    margin: 0;
    font-size: 1.35rem;
}

.apk-collection-tile p {
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
}

.apk-collection-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(23, 56, 105, 0.1);
}

.apk-collection-meta strong {
    color: #2c6ad4;
}

.apk-collection-meta em {
    font-style: normal;
    color: var(--muted);
}

.apk-collection-tile button {
    min-height: 46px;
    border: 0;
    border-radius: 8px;
    color: #0b1018;
    background: #ffbf61;
    font-weight: 1000;
    cursor: pointer;
}

body.site-yonorummyapk777 {
    background: #f7f6f1;
}

.apk-launch-hero {
    padding: 54px 0 28px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(10, 15, 24, 0.92), rgba(15, 36, 68, 0.88)),
        linear-gradient(90deg, rgba(255, 184, 77, 0.22), transparent);
}

.apk-launch-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 34px;
    align-items: center;
}

.apk-launch-copy .eyebrow {
    color: #ffbf61;
}

.apk-launch-copy h1 {
    margin: 8px 0 18px;
    font-size: clamp(3.5rem, 8vw, 7.4rem);
    line-height: 0.9;
}

.apk-launch-copy p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.08rem;
    line-height: 1.8;
}

.apk-launch-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.apk-launch-hero .button-secondary {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
}

.apk-launch-pad {
    display: grid;
    gap: 14px;
    padding: 24px;
    color: var(--ink);
    background: #fff7e7;
    border-radius: 8px;
    border: 2px solid rgba(255, 191, 97, 0.72);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.apk-launch-pad img {
    width: 132px;
    height: 132px;
    object-fit: contain;
}

.apk-launch-pad span {
    color: #c56a12;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.apk-launch-pad h2 {
    margin: 0;
    font-size: 2.1rem;
}

.apk-step-strip {
    padding: 16px 0;
    background: #ffbf61;
}

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

.apk-step-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.68);
    border-radius: 8px;
}

.apk-step-item strong {
    color: #173869;
    font-family: "Chakra Petch", sans-serif;
    font-size: 1.3rem;
}

.apk-step-item span {
    font-weight: 800;
}

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

.apk-download-tile {
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 14px;
    min-height: 360px;
    padding: 18px;
    background: #fff;
    border: 1px solid rgba(23, 56, 105, 0.12);
    border-radius: 8px;
}

.apk-download-tile img {
    width: 96px;
    height: 96px;
    object-fit: contain;
}

.apk-download-tile span {
    color: #2c6ad4;
    font-weight: 900;
    font-size: 0.78rem;
    text-transform: uppercase;
}

.apk-download-tile h3 {
    margin: 6px 0 8px;
    font-size: 1.6rem;
}

.apk-download-tile p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.apk-download-tile button {
    width: 100%;
    min-height: 48px;
    border: 0;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, #173869, #2c6ad4);
    font-weight: 900;
    cursor: pointer;
}

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

.apk-panel {
    padding: 20px;
    background: #fff;
    border: 1px solid rgba(23, 56, 105, 0.12);
    border-radius: 8px;
}

.apk-panel h2 {
    margin: 6px 0 16px;
}

.apk-panel a {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 0;
    border-top: 1px solid rgba(23, 56, 105, 0.1);
}

.apk-panel strong {
    color: #2c6ad4;
}

.apk-detail-launch {
    padding: 48px 0 30px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(10, 15, 24, 0.94), rgba(15, 36, 68, 0.9)),
        linear-gradient(90deg, rgba(255, 184, 77, 0.16), transparent);
}

.apk-detail-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 30px;
    align-items: center;
}

.apk-detail-copy .breadcrumbs,
.apk-detail-copy .eyebrow {
    color: #ffbf61;
}

.apk-detail-copy h1 {
    margin: 10px 0 16px;
    font-size: clamp(3.2rem, 7vw, 6.4rem);
    line-height: 0.92;
}

.apk-detail-copy p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.8;
    font-size: 1.08rem;
}

.apk-detail-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.apk-detail-launch .button-secondary {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
}

.apk-detail-card {
    display: grid;
    gap: 10px;
    padding: 20px;
    color: var(--ink);
    background: #fff7e7;
    border-radius: 8px;
    border: 2px solid rgba(255, 191, 97, 0.72);
}

.apk-detail-card img {
    width: 132px;
    height: 132px;
    object-fit: contain;
}

.apk-detail-stat {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 0;
    border-top: 1px solid rgba(23, 56, 105, 0.12);
}

.apk-detail-stat span {
    color: var(--muted);
}

.apk-detail-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 320px;
    gap: 16px;
    align-items: start;
}

.apk-copy-panel {
    padding: 20px;
    background: #fff;
    border: 1px solid rgba(23, 56, 105, 0.12);
    border-radius: 8px;
}

.apk-copy-panel h2 {
    margin: 6px 0 14px;
}

.apk-copy-panel p {
    color: var(--muted);
    line-height: 1.75;
}

.apk-fact-list {
    display: grid;
    gap: 10px;
}

.apk-fact-list span {
    padding: 12px;
    background: #f6f3eb;
    border-left: 4px solid #ffbf61;
}

.apk-related-panel {
    display: grid;
    gap: 10px;
}

.apk-related-panel a {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 10px;
    background: #f6f3eb;
    border-radius: 8px;
}

.apk-related-panel img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

@media (max-width: 1080px) {
    .apk-launch-shell,
    .apk-detail-shell,
    .apk-detail-content,
    .apk-panels {
        grid-template-columns: 1fr;
    }

    .apk-tile-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1120px) {
    .apk-collection-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 920px) {
    .apk-launch-header-shell {
        display: flex;
    }

    .apk-launch-header-cta {
        display: none;
    }

    .apk-launch-nav {
        position: fixed;
        inset: 84px 16px auto;
        display: grid;
        padding: 16px;
        background: #0b1018;
        border: 1px solid rgba(255, 191, 97, 0.24);
        box-shadow: var(--shadow);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 180ms ease, transform 180ms ease;
    }

    body.nav-open .apk-launch-nav {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .apk-launch-footer-shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .apk-collection-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .apk-launch-copy h1,
    .apk-detail-copy h1 {
        font-size: 3.2rem;
    }

    .apk-step-grid,
    .apk-tile-grid {
        grid-template-columns: 1fr;
    }
}

.site-yonorummyapk777 {
    padding-bottom: 75px !important;
}

.floating-cta-container {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    box-sizing: border-box;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

.floating-download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    border: 0;
    outline: 0;
    cursor: pointer;
    background: linear-gradient(135deg, #00b09b, #96c93d);
    color: #fff !important;
    font-family: inherit;
    font-size: 18px;
    font-weight: 800;
    padding: 14px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 176, 155, 0.4);
    text-transform: uppercase;
    animation: floating-cta-pulse 2s infinite;
    transition: transform 0.2s ease;
}

.floating-download-btn:active {
    transform: scale(0.95);
}

@keyframes floating-cta-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 176, 155, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 176, 155, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 176, 155, 0);
    }
}

@media (min-width: 768px) {
    .site-yonorummyapk777 {
        padding-bottom: 0 !important;
    }

    .floating-cta-container {
        bottom: 20px;
        display: flex;
        justify-content: center;
        padding: 15px 0;
        background: transparent;
        box-shadow: none;
        pointer-events: none;
    }

    .floating-download-btn {
        width: 350px;
        pointer-events: auto;
    }
}
