/* =========================================================
   XXI Online Games — Mobile Games & Apps Studio
   Dark + Gold theme
   ========================================================= */

:root {
    --bg: #0b0c11;
    --bg-2: #0e0f14;
    --surface: #14161f;
    --surface-2: #1b1e2a;
    --border: #2a2d3a;
    --border-soft: #20232f;
    --fg: #ecedf3;
    --fg-dim: #a8abbd;
    --fg-muted: #6b6f80;
    --gold: #d9b263;
    --gold-2: #ecc882;
    --gold-3: #b58b3a;
    --violet: #6c5ce7;
    --magenta: #c84efb;
    --cyan: #36d6ff;
    --gradient-glow: radial-gradient(60% 60% at 50% 0%, rgba(217,178,99,0.22) 0%, rgba(217,178,99,0) 60%);
    --gradient-aurora: linear-gradient(120deg, #6c5ce7 0%, #c84efb 45%, #d9b263 100%);
    --shadow-1: 0 10px 30px rgba(0,0,0,0.35);
    --shadow-glow: 0 0 60px rgba(217,178,99,0.18);
    --radius: 14px;
    --radius-lg: 22px;
    --container: 1200px;
    --transition: 220ms cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--bg);
    color: var(--fg);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover, a:focus, a:active, a:visited { text-decoration: none; }
a:hover { color: var(--gold-2); }
button, button:hover, button:focus, button:active { text-decoration: none; }
button { font-family: inherit; }
a, a:focus, a:active, a:hover,
button, button:focus, button:active, button:hover,
input:focus, textarea:focus, select:focus,
[tabindex]:focus, summary:focus {
    outline: none !important;
    outline-offset: 0 !important;
}
a::-moz-focus-inner, button::-moz-focus-inner { border: 0; }

::selection { background: rgba(217,178,99,0.35); color: #fff; }

/* Container override (keeps Bootstrap working on inner pages) */
.container { max-width: var(--container); width: 100%; margin: 0 auto; padding: 0 24px; }

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-weight: 600;
    color: var(--fg);
    letter-spacing: -0.5px;
    margin: 0 0 16px;
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.05; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); line-height: 1.15; }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
p  { color: var(--fg-dim); }

/* =========================================================
   Preloader
   ========================================================= */
.site-preloader {
    position: fixed; inset: 0;
    background: var(--bg);
    display: flex; align-items: center; justify-content: center;
    z-index: 9999;
    transition: opacity .6s ease, visibility .6s ease;
}
.site-preloader.is-hidden { opacity: 0; visibility: hidden; }
.site-preloader .spinner {
    width: 56px; height: 56px;
    border-radius: 50%;
    border: 2px solid rgba(217,178,99,0.25);
    border-top-color: var(--gold);
    animation: spin 0.9s linear infinite;
}
.site-preloader .double-bounce1, .site-preloader .double-bounce2 { display:none; }
@keyframes spin { to { transform: rotate(360deg); } }

/* =========================================================
   Header / Nav
   ========================================================= */
#header.header-top {
    position: fixed; inset: 0 0 auto 0;
    z-index: 100;
    background: linear-gradient(180deg, rgba(11,12,17,0.85) 0%, rgba(11,12,17,0) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background var(--transition), border-color var(--transition);
    border-bottom: 1px solid transparent;
}
#header.is-scrolled {
    background: rgba(11,12,17,0.92);
    border-bottom-color: var(--border-soft);
}
.main-menu .navbar { background: transparent; border: 0; margin: 0; min-height: 0; }
.main-menu .container {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 18px; padding-bottom: 18px;
}
.main-menu .row { display: contents; }
.main-menu .col-md-3, .main-menu .col-md-9 { width: auto; padding: 0; }
.logo { display: flex; align-items: center; }
.logo a { display: inline-flex; align-items: center; gap: 10px; }
.logo img { height: 38px; width: auto; filter: drop-shadow(0 4px 12px rgba(217,178,99,0.18)); }

.navigationwrape, .navbar-default { background: transparent !important; border: 0 !important; box-shadow: none !important; }
.navbar-collapse { padding: 0; box-shadow: none; }
.nav.navbar-nav { display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; list-style: none; float: none; }
.nav.navbar-nav > li { float: none; }
.nav.navbar-nav > li > a {
    display: inline-flex; align-items: center;
    color: var(--fg-dim);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.4px;
    padding: 10px 16px;
    border-radius: 999px;
    text-transform: uppercase;
    transition: color var(--transition), background var(--transition);
    background: transparent;
}
.nav.navbar-nav > li > a:hover,
.nav.navbar-nav > li > a:focus,
.nav.navbar-nav > li > a:active,
.nav.navbar-nav > li.active > a {
    color: var(--gold);
    background: rgba(217,178,99,0.08);
}
.nav.navbar-nav > li > a:focus:not(:hover):not(.active) {
    background: transparent;
    color: var(--fg-dim);
}
.nav.navbar-nav .mail_text {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 18px;
    border-radius: 999px;
    border: 1px solid var(--gold);
    color: var(--gold);
    background: linear-gradient(135deg, rgba(217,178,99,0.12), rgba(217,178,99,0));
    font-size: 13px;
    text-transform: none;
    letter-spacing: 0.2px;
    transition: all var(--transition);
}
.nav.navbar-nav .mail_text:hover {
    background: linear-gradient(135deg, rgba(217,178,99,0.25), rgba(217,178,99,0.05));
    color: var(--gold-2);
    border-color: var(--gold-2);
    box-shadow: 0 6px 24px rgba(217,178,99,0.25);
}
.nav.navbar-nav .mail_text i { color: inherit; }

/* Hide bootstrap mobile toggler default style; we'll restyle */
.navbar-toggle {
    background: transparent !important;
    border: 1px solid var(--border) !important;
    border-radius: 10px !important;
    padding: 8px 10px !important;
    margin: 0 !important;
}
.navbar-toggle .icon-bar { background: var(--gold) !important; height: 2px; width: 22px; }

/* =========================================================
   Buttons
   ========================================================= */
.btn-cta {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.3px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
    color: #1a1409;
    border: 0;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
    box-shadow: 0 10px 30px rgba(217,178,99,0.25), inset 0 1px 0 rgba(255,255,255,0.35);
}
.btn-cta:hover {
    transform: translateY(-2px);
    color: #1a1409;
    filter: brightness(1.05);
    box-shadow: 0 16px 40px rgba(217,178,99,0.35), inset 0 1px 0 rgba(255,255,255,0.4);
}
.btn-cta.is-ghost {
    background: rgba(255,255,255,0.04);
    color: var(--fg);
    border: 1px solid var(--border);
    box-shadow: none;
}
.btn-cta.is-ghost:hover {
    background: rgba(217,178,99,0.08);
    border-color: var(--gold);
    color: var(--gold-2);
    box-shadow: 0 8px 24px rgba(217,178,99,0.18);
}
.btn-cta svg, .btn-cta i { font-size: 18px; }

/* Store badges */
.store-badges { display: flex; flex-wrap: wrap; gap: 14px; }
.store-badge {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 10px 18px 10px 14px;
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0));
    border-radius: 14px;
    color: var(--fg);
    transition: border-color var(--transition), transform var(--transition), background var(--transition);
}
.store-badge:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    color: var(--fg);
    background: linear-gradient(180deg, rgba(217,178,99,0.10), rgba(217,178,99,0));
}
.store-badge .store-icon {
    width: 30px; height: 30px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 26px;
}
.store-badge .store-text { display: flex; flex-direction: column; line-height: 1.1; }
.store-badge .store-text small { font-size: 10px; color: var(--fg-dim); text-transform: uppercase; letter-spacing: 1.2px; }
.store-badge .store-text span { font-weight: 600; font-size: 15px; color: var(--fg); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 80px;
    display: flex; align-items: center;
    overflow: hidden;
    background:
        radial-gradient(900px 540px at 78% 22%, rgba(108,92,231,0.18) 0%, rgba(108,92,231,0) 60%),
        radial-gradient(700px 460px at 14% 78%, rgba(200,78,251,0.12) 0%, rgba(200,78,251,0) 60%),
        radial-gradient(60% 50% at 50% 0%, rgba(217,178,99,0.22) 0%, rgba(217,178,99,0) 70%),
        var(--bg);
}
.hero::before {
    content: "";
    position: absolute; inset: 0;
    background-image:
        radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
        radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 38px 38px, 80px 80px;
    background-position: 0 0, 19px 19px;
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.6), rgba(0,0,0,0) 70%);
            mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.6), rgba(0,0,0,0) 70%);
    pointer-events: none;
}
.hero::after {
    content: "";
    position: absolute;
    width: 1100px; height: 1100px;
    top: -350px; left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(closest-side, rgba(217,178,99,0.25), rgba(217,178,99,0) 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
    animation: glow-pulse 7s ease-in-out infinite;
}
@keyframes glow-pulse {
    0%,100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
    50%     { opacity: 1;   transform: translateX(-50%) scale(1.05); }
}
.hero .container { position: relative; z-index: 2; }
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 64px;
    align-items: center;
}
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.03);
    color: var(--fg-dim);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 22px;
}
.hero-eyebrow .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--gold); box-shadow: 0 0 12px var(--gold);
    animation: pulse-dot 1.6s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%,100% { opacity: 1; transform: scale(1); }
    50%     { opacity: 0.4; transform: scale(0.7); }
}
.hero h1 {
    font-size: clamp(2.6rem, 6vw, 5rem);
    line-height: 1.02;
    margin-bottom: 22px;
}
.hero h1 .accent {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 50%, var(--magenta) 110%);
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
    font-style: italic;
}
.hero p.lede {
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    color: var(--fg-dim);
    max-width: 560px;
    margin: 0 0 32px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 28px; color: var(--fg-dim); font-size: 14px; }
.hero-meta strong { color: var(--fg); font-weight: 600; }
.hero-meta .stars { color: var(--gold); letter-spacing: 2px; }

/* Floating phone */
.hero-art { position: relative; display: flex; justify-content: center; }
.phone {
    position: relative;
    width: min(360px, 100%);
    aspect-ratio: 9 / 16;
    border-radius: 44px;
    background: linear-gradient(180deg, #1a1d2a 0%, #0d0f17 100%);
    border: 1px solid var(--border);
    box-shadow:
        0 40px 80px rgba(0,0,0,0.55),
        0 0 0 8px #0a0b10,
        0 0 0 9px #1a1d2a,
        0 0 80px rgba(217,178,99,0.15);
    padding: 14px;
    transform: rotate(-4deg);
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0%,100% { transform: rotate(-4deg) translateY(0); }
    50%     { transform: rotate(-4deg) translateY(-12px); }
}
.phone::before {
    content: "";
    position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
    width: 100px; height: 24px;
    background: #060709;
    border-radius: 999px;
    z-index: 3;
}
.phone-screen {
    position: relative;
    width: 100%; height: 100%;
    border-radius: 32px;
    overflow: hidden;
    background: linear-gradient(160deg, #14101c 0%, #1f1830 30%, #2a1a36 60%, #0e0f14 100%);
    display: flex; flex-direction: column;
    color: var(--fg);
}
.phone-screen .phone-shot {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 12%;
    display: block;
}
.phone-screen .glow {
    position: absolute; inset: 0;
    background: radial-gradient(60% 50% at 50% 18%, rgba(217,178,99,0.45) 0%, rgba(217,178,99,0) 60%);
    pointer-events: none;
}
.phone-screen .stars {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(1px 1px at 14% 22%, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 28% 60%, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 75% 30%, rgba(255,255,255,0.7), transparent),
        radial-gradient(2px 2px at 60% 80%, rgba(255,255,255,0.55), transparent),
        radial-gradient(1px 1px at 90% 70%, rgba(255,255,255,0.55), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255,255,255,0.7), transparent);
    pointer-events: none;
}
.phone-content {
    position: relative;
    z-index: 2;
    padding: 60px 24px 24px;
    display: flex; flex-direction: column; gap: 14px;
    height: 100%;
}
.phone-content .title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    line-height: 1;
    color: var(--gold);
    text-shadow: 0 0 24px rgba(217,178,99,0.45);
    margin-top: 8px;
    letter-spacing: -0.5px;
}
.phone-content .title em { font-style: italic; color: var(--gold-2); }
.phone-content .sub { font-size: 11px; letter-spacing: 3px; color: var(--fg-dim); text-transform: uppercase; }
.phone-content .scene {
    margin-top: auto;
    background: linear-gradient(180deg, rgba(217,178,99,0.08), rgba(217,178,99,0));
    border: 1px solid rgba(217,178,99,0.25);
    border-radius: 14px;
    padding: 14px;
    backdrop-filter: blur(4px);
}
.phone-content .scene .row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.phone-content .scene .avatar {
    width: 34px; height: 34px; border-radius: 50%;
    background: linear-gradient(135deg, #f7c471, #b58b3a);
    box-shadow: 0 0 0 2px rgba(217,178,99,0.4);
    flex: none;
}
.phone-content .scene .who { font-size: 13px; color: var(--fg); font-weight: 600; }
.phone-content .scene .role { font-size: 10px; color: var(--fg-dim); letter-spacing: 1.5px; text-transform: uppercase; }
.phone-content .scene .stat { display: flex; gap: 8px; margin-top: 8px; flex-wrap: wrap; }
.phone-content .scene .chip {
    font-size: 10px;
    color: var(--gold-2);
    border: 1px solid rgba(217,178,99,0.35);
    border-radius: 999px;
    padding: 3px 8px;
    letter-spacing: 0.5px;
}
.phone-content .scene .bar {
    height: 4px; border-radius: 999px;
    background: rgba(255,255,255,0.08);
    margin-top: 10px; overflow: hidden;
}
.phone-content .scene .bar > span {
    display: block; height: 100%;
    width: 72%;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-2) 100%);
    border-radius: 999px;
    box-shadow: 0 0 12px rgba(217,178,99,0.55);
}

/* Floating accent cards next to the phone */
.hero-art .float-card {
    position: absolute;
    background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px 14px;
    box-shadow: var(--shadow-1);
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; color: var(--fg);
    backdrop-filter: blur(8px);
}
.hero-art .float-card .ico {
    width: 34px; height: 34px; border-radius: 10px;
    display: grid; place-items: center;
    background: linear-gradient(135deg, var(--gold), var(--gold-3));
    color: #1a1409;
    font-size: 16px;
}
.hero-art .float-card.fc-1 { left: -14px; top: 18%; animation: floatA 7s ease-in-out infinite; }
.hero-art .float-card.fc-2 { right: -14px; top: 50%; animation: floatB 8s ease-in-out infinite; }
.hero-art .float-card.fc-3 { left: 8%; bottom: -10px; animation: floatA 9s ease-in-out infinite reverse; }
@keyframes floatA { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes floatB { 0%,100% { transform: translateY(0); } 50% { transform: translateY(12px); } }

/* =========================================================
   Section base
   ========================================================= */
section { position: relative; padding: 100px 0; }
.section-eyebrow {
    display: inline-block;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}
.section-title {
    text-align: center;
    margin: 0 auto 56px;
    max-width: 720px;
}
.section-title h2, .section-title h3 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}
.section-title h3 span, .section-title h2 span { color: var(--gold); font-style: italic; }
.section-title p { color: var(--fg-dim); font-size: 1.05rem; }

/* Reveal-on-scroll helper */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .9s ease, transform .9s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* =========================================================
   Featured game
   ========================================================= */
.featured {
    background:
        radial-gradient(700px 400px at 80% 0%, rgba(108,92,231,0.16) 0%, rgba(108,92,231,0) 60%),
        radial-gradient(600px 360px at 10% 100%, rgba(217,178,99,0.10) 0%, rgba(217,178,99,0) 60%),
        var(--bg-2);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
}
.featured-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: linear-gradient(160deg, rgba(217,178,99,0.05) 0%, rgba(11,12,17,0.4) 50%, rgba(108,92,231,0.10) 100%), var(--surface);
    padding: clamp(28px, 5vw, 64px);
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.featured-card::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(60% 60% at 50% 0%, rgba(217,178,99,0.18) 0%, rgba(217,178,99,0) 70%);
    pointer-events: none;
}
.featured-info { position: relative; z-index: 1; }
.featured-info .tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(217,178,99,0.12);
    border: 1px solid rgba(217,178,99,0.35);
    color: var(--gold-2);
    margin-bottom: 18px;
}
.featured-info h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 14px;
    line-height: 1.05;
}
.featured-info h2 em { font-style: italic; color: var(--gold); }
.featured-info p { font-size: 1.05rem; color: var(--fg-dim); max-width: 560px; }
.featured-info .feature-list {
    list-style: none; padding: 0;
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 24px;
    margin: 24px 0 32px;
}
.featured-info .feature-list li {
    display: flex; align-items: center; gap: 10px;
    color: var(--fg);
    font-size: 14px;
}
.featured-info .feature-list li::before {
    content: ""; width: 8px; height: 8px; border-radius: 50%;
    background: var(--gold); box-shadow: 0 0 10px rgba(217,178,99,0.5);
    flex: none;
}
.featured-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.featured-art {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius);
    overflow: hidden;
    background:
        radial-gradient(closest-side at 50% 25%, rgba(217,178,99,0.28), rgba(217,178,99,0) 65%),
        linear-gradient(160deg, #1a1530 0%, #25193b 35%, #3a1f2c 70%, #100c1c 100%);
    border: 1px solid var(--border);
    display: flex; align-items: flex-end;
    padding: 28px;
    box-shadow: var(--shadow-1);
}
.featured-art .featured-art-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.featured-art::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.55) 100%);
    pointer-events: none;
}
.featured-art .key-art {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 40% 70%, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 80% 20%, rgba(255,255,255,0.5), transparent),
        radial-gradient(2px 2px at 70% 60%, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 90% 90%, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 30% 90%, rgba(255,255,255,0.55), transparent);
    pointer-events: none;
}
.featured-art .key-spot {
    position: absolute;
    width: 60%; height: 60%;
    top: 8%; left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(closest-side, rgba(217,178,99,0.55), rgba(217,178,99,0) 70%);
    filter: blur(14px);
    pointer-events: none;
    animation: glow-pulse 5s ease-in-out infinite;
}
.featured-art .title-block {
    position: relative; z-index: 2;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 100%);
    border-radius: 12px;
    padding: 16px;
    width: 100%;
}
.featured-art .title-block .game-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    line-height: 1;
    color: var(--gold);
    text-shadow: 0 0 30px rgba(217,178,99,0.45);
}
.featured-art .title-block .game-name em { font-style: italic; color: var(--gold-2); }
.featured-art .title-block .game-tag {
    text-transform: uppercase; letter-spacing: 3px; font-size: 11px;
    color: var(--fg-dim); margin-top: 6px;
}

/* =========================================================
   Games grid
   ========================================================= */
.games {
    background: var(--bg);
}
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.game-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--surface);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    display: flex; flex-direction: column;
}
.game-card:hover {
    transform: translateY(-6px);
    border-color: rgba(217,178,99,0.45);
    box-shadow: 0 24px 60px rgba(0,0,0,0.45), 0 0 30px rgba(217,178,99,0.12);
}
.game-thumb {
    position: relative;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #251936 0%, #14111e 50%, #1f1224 100%);
    overflow: hidden;
    display: grid; place-items: center;
}
.game-thumb::after {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(closest-side at 50% 30%, rgba(217,178,99,0.35), rgba(217,178,99,0) 70%);
    pointer-events: none;
}
.game-thumb .thumb-title {
    position: relative; z-index: 1;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 28px;
    color: var(--gold);
    text-shadow: 0 0 28px rgba(217,178,99,0.5);
    text-align: center;
    padding: 0 16px;
}
.game-thumb img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1.2s ease;
    z-index: 1;
}
.game-card:hover .game-thumb img { transform: scale(1.05); }
.game-thumb .badge {
    position: absolute; top: 12px; left: 12px; z-index: 2;
    padding: 5px 10px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(217,178,99,0.35);
    color: var(--gold-2);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 999px;
}
.game-thumb .badge.is-soon { color: var(--magenta); border-color: rgba(200,78,251,0.5); }
.game-info { padding: 28px 28px 32px; display: flex; flex-direction: column; gap: 12px; }
.game-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin: 0;
    color: var(--fg);
}
.game-info .genre {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
}
.game-info p { color: var(--fg-dim); font-size: 14px; margin: 0; }
.game-info .game-stores { margin-top: 6px; display: flex; gap: 10px; flex-wrap: wrap; }
.game-info .game-stores a {
    font-size: 12px; color: var(--fg-dim);
    display: inline-flex; align-items: center; gap: 6px;
}
.game-info .game-stores a:hover { color: var(--gold); }
.game-info .game-stores a { position: relative; z-index: 3; }
.game-info h4 a.card-link {
    color: inherit;
    text-decoration: none;
}
.game-info h4 a.card-link::before {
    content: ""; position: absolute; inset: 0; z-index: 2;
}
.game-card:hover .game-info h4 a.card-link { color: var(--gold); }

/* =========================================================
   Studio block
   ========================================================= */
.studio {
    background:
        radial-gradient(600px 360px at 0% 30%, rgba(108,92,231,0.10), rgba(108,92,231,0) 60%),
        radial-gradient(600px 360px at 100% 70%, rgba(217,178,99,0.10), rgba(217,178,99,0) 60%),
        var(--bg-2);
    border-top: 1px solid var(--border-soft);
}
.studio-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
    gap: 64px;
    align-items: center;
}
.studio-info h3 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 16px; }
.studio-info h3 span { color: var(--gold); font-style: italic; }
.studio-info p { color: var(--fg-dim); margin-bottom: 14px; }

.studio-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 28px; }
.stat-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0));
    padding: 22px;
}
.stat-card .num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--gold);
    line-height: 1;
}
.stat-card .label { color: var(--fg-dim); font-size: 13px; margin-top: 6px; text-transform: uppercase; letter-spacing: 1.5px; }

.studio-art {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background:
        radial-gradient(closest-side at 50% 30%, rgba(217,178,99,0.35), rgba(217,178,99,0) 65%),
        linear-gradient(160deg, #14101c 0%, #1f1830 50%, #2a1a36 100%);
    display: grid; place-items: center;
}
.studio-art .marquee {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1;
    text-shadow: 0 0 40px rgba(217,178,99,0.55);
    text-align: center;
    padding: 32px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 50%, var(--magenta) 110%);
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
}
.studio-art .studio-art-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.studio-art::after {
    content: ""; position: absolute; inset: 0;
    background-image:
        radial-gradient(2px 2px at 14% 18%, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 30% 70%, rgba(255,255,255,0.5), transparent),
        radial-gradient(2px 2px at 70% 30%, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 86% 78%, rgba(255,255,255,0.55), transparent);
    pointer-events: none;
}

/* =========================================================
   Why us / pillars
   ========================================================= */
.pillars {
    background: var(--bg);
}
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}
.pillar {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    background: linear-gradient(180deg, var(--surface) 0%, rgba(20,22,31,0.4) 100%);
    transition: border-color var(--transition), transform var(--transition);
}
.pillar:hover {
    border-color: rgba(217,178,99,0.45);
    transform: translateY(-4px);
}
.pillar .ico {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: grid; place-items: center;
    background: linear-gradient(135deg, rgba(217,178,99,0.18), rgba(217,178,99,0.04));
    border: 1px solid rgba(217,178,99,0.35);
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 16px;
}
.pillar h4 { font-family: 'Playfair Display', serif; font-size: 1.25rem; margin-bottom: 8px; color: var(--fg); }
.pillar p { color: var(--fg-dim); font-size: 14px; margin: 0; }

/* =========================================================
   Contact
   ========================================================= */
.contWrap, #contact {
    background:
        radial-gradient(700px 360px at 50% 0%, rgba(217,178,99,0.18) 0%, rgba(217,178,99,0) 70%),
        var(--bg-2);
    border-top: 1px solid var(--border-soft);
}
.contact_heading { display: none; }
.contact-area {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    padding: 40px 20px;
}
.contact-area h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 14px;
}
.contact-area > .row > .col-md-12 { padding: 0; width: 100%; }
.contact-area .row { display: block; }
.contact-info p { color: var(--fg-dim); font-size: 1.05rem; }
.all-contacts { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-top: 28px; }
.single-contact {
    display: inline-flex; align-items: center; gap: 14px;
    border: 1px solid var(--border);
    background: var(--surface);
    border-radius: 999px;
    padding: 12px 22px;
    transition: border-color var(--transition), background var(--transition);
}
.single-contact:hover {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(217,178,99,0.10), rgba(217,178,99,0));
}
.single-contact i { color: var(--gold); font-size: 18px; }
.single-contact .contact-detail { text-align: left; }
.single-contact h5 {
    margin: 0;
    color: var(--fg-dim);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}
.single-contact p { margin: 0; color: var(--fg); }
.single-contact a { color: var(--gold-2); }

/* =========================================================
   Footer
   ========================================================= */
footer { background: #07080b; padding: 64px 0 24px; border-top: 1px solid var(--border-soft); }
footer .footer-bg { background: transparent; padding: 0; }
footer .footer-area > div { padding: 0; }
footer .row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
footer .col-md-4, footer .col-md-3, footer .col-md-7, footer .col-md-5, footer .col-sm-6, footer .col-xs-12 { width: auto; padding: 0; }
.footer-inner h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--gold);
    margin-bottom: 16px;
}
.footer-inner p, .footer-inner a, .footer-pages a { color: var(--fg-dim); font-size: 14px; }
.footer-inner a:hover, .footer-pages a:hover { color: var(--gold); }
.footer-pages ul, .footer-social ul, .footer-menu ul {
    list-style: none; padding: 0; margin: 0;
}
.footer-pages li { margin-bottom: 8px; }
.footer-social ul { display: flex; gap: 10px; margin-top: 14px; }
.footer-social li { list-style: none; }
.footer-social a {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border);
    color: var(--fg-dim);
    display: grid; place-items: center;
    transition: all var(--transition);
}
.footer-social a:hover {
    color: var(--gold);
    border-color: var(--gold);
    background: rgba(217,178,99,0.08);
    transform: translateY(-2px);
}
.copyright-area {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--border-soft);
}
.copyright-area .row { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px; }
.copyright-area .col-md-5, .copyright-area .col-md-7 { flex: 1 1 auto; }
.copyright p { color: var(--fg-muted); font-size: 13px; margin: 0; }
.footer-menu ul { display: flex; flex-wrap: wrap; gap: 18px; justify-content: flex-end; }
.footer-menu a { color: var(--fg-dim); font-size: 13px; text-transform: uppercase; letter-spacing: 1.2px; }
.footer-menu a:hover { color: var(--gold); }

/* Scroll to top */
.totop a {
    position: fixed; right: 24px; bottom: 24px;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    color: #1a1409;
    display: grid; place-items: center;
    font-size: 20px;
    box-shadow: 0 12px 30px rgba(217,178,99,0.35);
    z-index: 50;
    opacity: 0; pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
}
.totop a.is-visible { opacity: 1; pointer-events: auto; }
.totop a:hover { transform: translateY(-3px); color: #1a1409; }

/* =========================================================
   Inner pages (privacy / terms)
   ========================================================= */
.inner-heading {
    padding: 160px 0 60px;
    background:
        radial-gradient(700px 360px at 50% 0%, rgba(217,178,99,0.18) 0%, rgba(217,178,99,0) 70%),
        var(--bg-2);
    border-bottom: 1px solid var(--border-soft);
    text-align: center;
}
.inner-heading h1 {
    font-size: clamp(2.2rem, 4.5vw, 3rem);
    margin: 0;
}
.blogWrap {
    padding: 80px 0;
    background: var(--bg);
}
.blogWrap .container { max-width: 880px; }
.blogWrap h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 1.25rem;
    margin-top: 28px;
    margin-bottom: 10px;
}
.blogWrap p, .blogWrap li { color: var(--fg-dim); }
.blogWrap a { color: var(--gold-2); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 991px) {
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero { padding: 130px 0 60px; min-height: auto; }
    .hero-art { order: -1; width: 100%; max-width: 260px; margin: 0 auto; }
    .featured-card { grid-template-columns: 1fr; gap: 28px; }
    .studio-grid { grid-template-columns: 1fr; gap: 36px; }
    .studio-art { order: -1; max-width: 420px; margin: 0 auto; }
    footer .row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
    section { padding: 70px 0; }
    .hero-art { max-width: 220px; width: 100%; }
    .nav.navbar-nav {
        flex-direction: column;
        align-items: stretch;
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 12px;
        margin-top: 12px;
        gap: 4px;
    }
    .nav.navbar-nav > li > a { width: 100%; padding: 12px 14px; border-radius: 10px; }
    .nav.navbar-nav .mail_text { width: 100%; justify-content: center; margin-top: 4px; }
    .navbar-collapse.collapse { display: none !important; }
    .navbar-collapse.collapse.in { display: block !important; }
    .main-menu .col-md-3 { display: flex; align-items: center; justify-content: space-between; flex: 1; }
    .main-menu .container { flex-wrap: wrap; }
    .main-menu .col-md-9 { width: 100%; }
    .featured-info .feature-list { grid-template-columns: 1fr; }
    .studio-stats { grid-template-columns: 1fr; }
    footer .row { grid-template-columns: 1fr; }
    .copyright-area .row { flex-direction: column; align-items: flex-start; }
    .footer-menu ul { justify-content: flex-start; }
    .hero-art .float-card { display: none; }
    .totop a { right: 16px; bottom: 16px; }
}

/* Hide bootstrap-progress styles that the old design used */
.progress, .progress-bar { display: none; }

/* =========================================================
   Game detail page (.gp-*)
   ========================================================= */
.gp-hero {
    position: relative;
    padding: 160px 0 80px;
    overflow: hidden;
    isolation: isolate;
    border-bottom: 1px solid var(--border-soft);
}
.gp-hero-bg {
    position: absolute; inset: 0;
    z-index: -1;
}
.gp-hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.35;
    filter: saturate(0.9) blur(2px);
}
.gp-hero-bg::after {
    content: ""; position: absolute; inset: 0;
    background:
        radial-gradient(800px 400px at 20% 20%, rgba(217,178,99,0.18), transparent 60%),
        linear-gradient(180deg, rgba(11,12,17,0.55) 0%, rgba(11,12,17,0.95) 100%);
}
.gp-hero-inner { position: relative; z-index: 1; max-width: 920px; }
.gp-crumbs {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--fg-dim);
    margin-bottom: 18px;
}
.gp-crumbs a { color: var(--fg-dim); }
.gp-crumbs a:hover { color: var(--gold); }
.gp-crumbs .sep { margin: 0 8px; opacity: 0.5; }
.gp-status {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(217,178,99,0.45);
    background: rgba(217,178,99,0.08);
    color: var(--gold-2);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 22px;
}
.gp-status .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 12px var(--gold);
    animation: pulse-dot 1.6s ease-in-out infinite;
}
.gp-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 6vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: -0.5px;
    margin: 0 0 16px;
}
.gp-hero h1 em {
    font-style: italic;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-2) 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.gp-tagline {
    color: var(--fg-dim);
    font-size: 1.1rem;
    max-width: 640px;
    margin: 0 0 32px;
}
.gp-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.gp-meta {
    list-style: none;
    margin: 36px 0 0;
    padding: 24px 0 0;
    border-top: 1px solid var(--border-soft);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 18px 28px;
}
.gp-meta li { display: flex; flex-direction: column; gap: 4px; }
.gp-meta .k {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
}
.gp-meta .v { color: var(--fg); font-size: 14px; }

.gp-section { padding: 90px 0; }
.gp-section .section-title { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.gp-section .section-title h2,
.gp-section .section-title h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 8px 0 14px;
    line-height: 1.1;
}
.gp-section .section-title h3 span,
.gp-section .section-title h2 span {
    font-style: italic;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-2) 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.gp-section .section-title p { color: var(--fg-dim); }

.gp-pitch { background: var(--bg-2); border-top: 1px solid var(--border-soft); }
.gp-pitch-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
}
.gp-pitch-copy h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    margin: 8px 0 18px;
}
.gp-pitch-copy h2 em {
    font-style: italic;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-2) 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.gp-pitch-copy p { color: var(--fg-dim); margin-bottom: 14px; }
.gp-pitch-copy strong { color: var(--fg); }
.gp-pitch-art {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.gp-pitch-art img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
}

.gp-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}
.gp-feature {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px 24px;
    transition: border-color var(--transition), transform var(--transition);
}
.gp-feature:hover {
    border-color: rgba(217,178,99,0.4);
    transform: translateY(-3px);
}
.gp-feature .ico {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: grid; place-items: center;
    background: linear-gradient(135deg, rgba(217,178,99,0.18), rgba(217,178,99,0.04));
    border: 1px solid rgba(217,178,99,0.3);
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 16px;
}
.gp-feature h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin: 0 0 8px;
    color: var(--fg);
}
.gp-feature p { color: var(--fg-dim); font-size: 14px; margin: 0; }

.gp-shots-section { background: var(--bg-2); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.gp-shots {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 6px 4px 24px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-color: var(--gold) transparent;
}
.gp-shots::-webkit-scrollbar { height: 8px; }
.gp-shots::-webkit-scrollbar-track { background: transparent; }
.gp-shots::-webkit-scrollbar-thumb { background: rgba(217,178,99,0.35); border-radius: 999px; }
.gp-shot {
    flex: 0 0 auto;
    width: clamp(180px, 22vw, 260px);
    aspect-ratio: 9 / 16;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--surface);
    scroll-snap-align: start;
    box-shadow: 0 18px 40px rgba(0,0,0,0.4);
    transition: transform var(--transition);
}
.gp-shot:hover { transform: translateY(-4px); }
.gp-shot img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.gp-shots-hint {
    text-align: center;
    color: var(--fg-dim);
    font-size: 13px;
    margin: 16px 0 0;
}

.gp-final-cta { background: var(--bg-2); border-top: 1px solid var(--border-soft); }
.gp-final-card {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    padding: 48px 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.gp-final-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin: 0 0 12px;
}
.gp-final-card p { color: var(--fg-dim); margin: 0 0 24px; }
.gp-final-card .gp-cta { justify-content: center; }

@media (max-width: 991px) {
    .gp-hero { padding: 130px 0 60px; }
    .gp-pitch-grid { grid-template-columns: 1fr; gap: 32px; }
    .gp-pitch-art { order: -1; max-width: 420px; margin: 0 auto; aspect-ratio: 16/10; }
    .gp-section { padding: 70px 0; }
}
@media (max-width: 767px) {
    .gp-hero { padding: 110px 0 50px; }
    .gp-meta { grid-template-columns: 1fr 1fr; gap: 14px 20px; }
    .gp-shot { width: 200px; }
}

/* Font Awesome 4.7 has no google-play glyph — render it as an SVG mask.
   Uses currentColor and 1em sizing so it matches every place fa-google-play
   is used (hero/CTA buttons, store links, footer social row). */
.fa-google-play::before { content: ""; }
.fa-google-play {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -0.125em;
    background-color: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M325.3 234.3 104.6 13l280.8 161.2-60.1 60.1zM47 0C34 6.8 25.3 19.2 25.3 35.3v441.3c0 16.1 8.7 28.5 21.7 35.3l256.6-256L47 0zm425.2 225.6-58.9-34.1-65.7 64.5 65.7 64.5 60.1-34.1c18-14.3 18-46.5-1.2-60.8zM104.6 499l280.8-161.2-60.1-60.1L104.6 499z'/%3E%3C/svg%3E") no-repeat center;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M325.3 234.3 104.6 13l280.8 161.2-60.1 60.1zM47 0C34 6.8 25.3 19.2 25.3 35.3v441.3c0 16.1 8.7 28.5 21.7 35.3l256.6-256L47 0zm425.2 225.6-58.9-34.1-65.7 64.5 65.7 64.5 60.1-34.1c18-14.3 18-46.5-1.2-60.8zM104.6 499l280.8-161.2-60.1-60.1L104.6 499z'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
}
