:root {
    --bg: #08080c;
    --panel: #111119;
    --panel-soft: #171720;
    --line: rgba(255, 255, 255, 0.12);
    --text: #f7f7fb;
    --muted: #b8b8c8;
    --soft: #8d8da1;
    --hot: #ff2d6f;
    --cyan: #27d7ff;
    --gold: #ffc857;
    --green: #55e6a5;
    --radius: 8px;
    --shadow: 0 18px 55px rgba(0, 0, 0, 0.42);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        linear-gradient(180deg, rgba(255, 45, 111, 0.12), transparent 360px),
        linear-gradient(135deg, rgba(39, 215, 255, 0.08), transparent 420px),
        var(--bg);
    color: var(--text);
    font-family: Outfit, Arial, sans-serif;
    line-height: 1.55;
}

a {
    color: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid var(--line);
    background: rgba(8, 8, 12, 0.9);
    backdrop-filter: blur(18px);
}

.header-inner,
.hero-inner,
.section-inner,
.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 12px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    text-decoration: none;
}

.brand img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    filter: drop-shadow(0 0 14px rgba(255, 45, 111, 0.45));
}

.brand span {
    font: 800 1.08rem/1 Space Grotesk, Arial, sans-serif;
    letter-spacing: 0;
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.main-nav a,
.filter-button,
.lang-switcher a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.92rem;
}

.main-nav a {
    padding: 0 12px;
    color: var(--muted);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
}

.lang-switcher {
    display: flex;
    gap: 4px;
}

.lang-switcher a {
    width: 38px;
    color: var(--soft);
    border: 1px solid transparent;
}

.lang-switcher a.active,
.lang-switcher a:hover {
    color: var(--text);
    border-color: var(--line);
    background: var(--panel-soft);
}

.hero {
    border-bottom: 1px solid var(--line);
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 34px;
    align-items: center;
    padding: 54px 0 42px;
}

.eyebrow,
.kicker {
    color: var(--green);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
}

h1,
h2,
h3 {
    font-family: Space Grotesk, Arial, sans-serif;
    letter-spacing: 0;
}

h1 {
    margin: 10px 0 14px;
    max-width: 840px;
    font-size: clamp(2.15rem, 5vw, 4.7rem);
    line-height: 0.98;
}

.hero-copy {
    max-width: 760px;
    color: var(--muted);
    font-size: 1.12rem;
    margin: 0 0 22px;
}

.hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 24px 0 0;
}

.primary-cta,
.secondary-cta,
.visit-button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 800;
}

.primary-cta {
    padding: 0 18px;
    color: #07070b;
    background: linear-gradient(135deg, var(--gold), #ff7a59);
}

.secondary-cta {
    padding: 0 16px;
    border: 1px solid var(--line);
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
}

.hero-art {
    position: relative;
    min-height: 290px;
    display: grid;
    place-items: center;
}

.hero-art::before {
    content: "";
    position: absolute;
    inset: 18%;
    background: linear-gradient(135deg, var(--hot), var(--cyan));
    filter: blur(62px);
    opacity: 0.38;
}

.hero-art img {
    position: relative;
    width: min(280px, 82vw);
    filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.55));
}

.section {
    padding: 42px 0;
}

.section-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: end;
    margin-bottom: 18px;
}

.section-head h2 {
    margin: 4px 0 6px;
    font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.section-head p {
    margin: 0;
    color: var(--muted);
    max-width: 760px;
}

.filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.filter-button {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.05);
    color: var(--muted);
    cursor: pointer;
    padding: 0 12px;
    font-family: inherit;
}

.filter-button.active,
.filter-button:hover {
    color: var(--text);
    border-color: rgba(255, 45, 111, 0.55);
    background: rgba(255, 45, 111, 0.14);
}

.mobile-filter {
    display: none;
    margin-bottom: 16px;
}

.mobile-filter select {
    width: 100%;
    min-height: 46px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    color: var(--text);
    background: var(--panel);
    padding: 0 12px;
    font: 700 1rem Outfit, Arial, sans-serif;
}

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

.platform-card {
    display: flex;
    min-height: 100%;
}

.platform-card[hidden] {
    display: none;
}

.card-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 354px;
    padding: 18px;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)), var(--panel);
    box-shadow: var(--shadow);
}

.card-inner::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--hot), var(--gold), var(--cyan));
}

.rank-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 16px;
}

.rank {
    min-width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    color: #08080c;
    background: var(--gold);
    font-weight: 900;
}

.tags {
    display: flex;
    gap: 6px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.tag {
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    padding: 4px 8px;
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
}

.platform-card h3 {
    margin: 0 0 8px;
    font-size: 1.25rem;
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--gold);
    font-weight: 900;
}

.rating span {
    color: var(--muted);
    font-size: 0.88rem;
}

.platform-card p {
    color: var(--muted);
    margin: 0 0 16px;
    font-size: 0.96rem;
}

.best-for {
    margin-top: auto;
    color: var(--soft);
    font-size: 0.88rem;
}

.best-for strong {
    color: var(--text);
}

.visit-button {
    width: 100%;
    margin-top: 16px;
    color: #08080c;
    background: linear-gradient(135deg, var(--cyan), var(--green));
}

.seo-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 18px;
}

.content-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(17, 17, 25, 0.72);
    padding: 22px;
}

.content-panel h2,
.content-panel h3 {
    margin-top: 0;
}

.content-panel p,
.content-panel li {
    color: var(--muted);
}

.keyword-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.keyword-cloud span {
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.05);
    color: var(--muted);
    padding: 7px 10px;
    font-weight: 700;
    font-size: 0.9rem;
}

.site-footer {
    border-top: 1px solid var(--line);
    padding: 34px 0;
    background: #050508;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: start;
}

.footer-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 700;
}

.disclosure {
    color: var(--soft);
    max-width: 720px;
    font-size: 0.9rem;
    margin: 8px 0 0;
}

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

@media (max-width: 820px) {
    .header-inner {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .brand,
    .main-nav,
    .lang-switcher {
        justify-content: center;
    }

    .main-nav {
        order: 3;
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-bottom: 2px;
    }

    .main-nav a {
        white-space: nowrap;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        padding: 34px 0 28px;
    }

    .hero-art {
        min-height: 180px;
        order: -1;
    }

    .hero-art img {
        width: 170px;
    }

    .section-head {
        grid-template-columns: 1fr;
    }

    .filters {
        display: none;
    }

    .mobile-filter {
        display: block;
    }

    .platform-grid,
    .seo-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 520px) {
    .header-inner,
    .hero-inner,
    .section-inner,
    .footer-inner {
        width: min(100% - 22px, 1180px);
    }

    .brand span {
        font-size: 1rem;
    }

    .card-inner {
        min-height: 0;
    }

    .hero-actions a {
        width: 100%;
    }
}

 . b u t t o n - g r o u p   { 
         d i s p l a y :   f l e x ; 
         g a p :   8 p x ; 
         m a r g i n - t o p :   1 6 p x ; 
 } 
 . b u t t o n - g r o u p   . v i s i t - b u t t o n   { 
         m a r g i n - t o p :   0 ; 
         f l e x :   1 ; 
 } 
 . b u t t o n - g r o u p   . r e v i e w - b u t t o n   { 
         f l e x :   1 ; 
         m i n - h e i g h t :   4 6 p x ; 
         d i s p l a y :   i n l i n e - f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         b o r d e r - r a d i u s :   v a r ( - - r a d i u s ) ; 
         t e x t - d e c o r a t i o n :   n o n e ; 
         f o n t - w e i g h t :   8 0 0 ; 
         c o l o r :   v a r ( - - t e x t ) ; 
         b o r d e r :   1 p x   s o l i d   v a r ( - - l i n e ) ; 
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 6 ) ; 
         f o n t - s i z e :   0 . 9 r e m ; 
 } 
 . b u t t o n - g r o u p   . r e v i e w - b u t t o n : h o v e r   { 
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 1 ) ; 
 } 
  
 