/* =========================================================
   OKGames App Page V2
   Homepage Unified Design System
   File: /web/app.css
========================================================= */

/* =========================================================
   01. VARIABLES
========================================================= */

.okg-app-page {
    --okg-brand: #0564C8;
    --okg-brand-hover: #0B7BFF;
    --okg-accent: #FFB428;

    --okg-title: #173B74;
    --okg-text: #58677D;
    --okg-muted: #7A8799;

    --okg-page: #F4F7FB;
    --okg-section: #EDF3FA;
    --okg-card: #FFFFFF;
    --okg-border: #DCE5F2;

    --okg-success: #22A06B;
    --okg-warning-bg: #FFF8E8;
    --okg-warning-border: #F6D98C;

    --okg-radius: 10px;

    --okg-shadow:
        0 4px 16px rgba(23, 59, 116, 0.08);

    --okg-shadow-hover:
        0 10px 28px rgba(23, 59, 116, 0.13);

    --okg-container: 1320px;
    --okg-section-gap: 20px;

    width: 100%;
    margin: 0;
    padding: 10px 0;
    background: var(--okg-page);
    color: var(--okg-text);
    font-family: inherit;
    box-sizing: border-box;
}

.okg-app-page,
.okg-app-page *,
.okg-app-page *::before,
.okg-app-page *::after {
    box-sizing: border-box;
}

.okg-app-page img {
    display: block;
    max-width: 100%;
    height: auto;
}

.okg-app-page a {
    color: inherit;
}

.okg-app-page h1,
.okg-app-page h2,
.okg-app-page h3,
.okg-app-page p,
.okg-app-page ul,
.okg-app-page figure {
    margin-top: 0;
}

.okg-app-page h1,
.okg-app-page h2,
.okg-app-page h3 {
    color: var(--okg-title);
    font-family: inherit;
}

.okg-app-page p,
.okg-app-page li {
    color: var(--okg-text);
}

.okg-app-container {
    width: calc(100% - 48px);
    max-width: var(--okg-container);
    margin: 0 auto;
}


/* =========================================================
   02. GLOBAL SECTION SYSTEM
========================================================= */

.okg-app-hero,
.okg-app-highlights,
.okg-app-section {
    width: calc(100% - 1px);
    max-width: var(--okg-container);
    margin: 0 auto var(--okg-section-gap);
    padding: 0;
    border-radius: var(--okg-radius);
}

.okg-app-page > section:last-child {
    margin-bottom: 0;
}

.okg-app-section--page,
.okg-app-section--soft,
.okg-app-section--white {
    background: var(--okg-card);
    border: 1px solid var(--okg-border);
    box-shadow: var(--okg-shadow);
    overflow: hidden;
}

.okg-app-section > .okg-app-container,
.okg-app-highlights > .okg-app-container,
.okg-app-hero > .okg-app-container {
    width: 100%;
    max-width: none;
    margin: 0;
}

.okg-app-section > .okg-app-container {
    padding: 34px;
}

.okg-app-section--soft {
    background: var(--okg-card);
}

.okg-app-section--page {
    background: var(--okg-card);
}

.okg-app-section--white {
    background: var(--okg-card);
}


/* =========================================================
   03. SECTION HEADINGS
========================================================= */

.okg-app-section-heading {
    max-width: 860px;
    margin: 0 0 26px;
    text-align: left;
}

.okg-app-eyebrow,
.okg-app-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 9px;
    color: var(--okg-brand);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.okg-app-eyebrow::before,
.okg-app-hero-badge::before {
    content: "";
    width: 18px;
    height: 3px;
    flex: 0 0 18px;
    border-radius: 10px;
    background: var(--okg-accent);
}

.okg-app-section-heading h2,
.okg-app-overview-content h2,
.okg-app-safety-panel h2 {
    margin-bottom: 10px;
    color: var(--okg-title);
    font-size: clamp(27px, 3vw, 38px);
    font-weight: 850;
    line-height: 1.14;
    letter-spacing: -0.5px;
}

.okg-app-section-heading p,
.okg-app-overview-content > p,
.okg-app-safety-panel > p {
    max-width: 780px;
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.75;
}


/* =========================================================
   04. HERO
========================================================= */

.okg-app-hero {
    background: var(--okg-card);
    border: 1px solid var(--okg-border);
    box-shadow: var(--okg-shadow);
    overflow: hidden;
}

.okg-app-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
    align-items: center;
    min-height: 430px;
    padding: 36px 40px;
    gap: 36px;
    background:
        radial-gradient(
            circle at 82% 18%,
            rgba(5, 100, 200, 0.08),
            transparent 30%
        ),
        radial-gradient(
            circle at 72% 82%,
            rgba(255, 180, 40, 0.11),
            transparent 24%
        ),
        linear-gradient(
            135deg,
            #FFFFFF 0%,
            #F8FBFF 55%,
            #EEF5FD 100%
        );
}

.okg-app-hero-content {
    position: relative;
    z-index: 2;
    max-width: 690px;
}

.okg-app-hero-content h1 {
    margin-bottom: 15px;
    color: var(--okg-title);
    font-size: clamp(40px, 5vw, 62px);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -1.5px;
}

.okg-app-hero-content > p {
    max-width: 640px;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.75;
}

.okg-app-hero-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.okg-app-hero-features li {
    position: relative;
    min-width: 0;
    padding-left: 24px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
}

.okg-app-hero-features li::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: rgba(5, 100, 200, 0.1);
    color: var(--okg-brand);
    font-size: 11px;
    font-weight: 900;
}

.okg-app-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.okg-app-button {
    min-height: 46px;
    padding: 0 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: var(--okg-radius);
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.okg-app-button:hover {
    transform: translateY(-2px);
}

.okg-app-button--primary {
    background: var(--okg-brand);
    color: #FFFFFF;
    box-shadow: 0 7px 17px rgba(5, 100, 200, 0.22);
}

.okg-app-button--primary:hover {
    background: var(--okg-brand-hover);
    color: #FFFFFF;
}

.okg-app-button--secondary {
    background: #FFFFFF;
    color: var(--okg-brand);
    border-color: var(--okg-brand);
}

.okg-app-button--secondary:hover {
    background: #F2F7FD;
    color: var(--okg-brand);
}

.okg-app-button--accent {
    background: var(--okg-accent);
    color: #17304F;
    box-shadow: 0 7px 17px rgba(255, 180, 40, 0.25);
}

.okg-app-button--accent:hover {
    background: #FFC451;
    color: #17304F;
}

.okg-app-hero-note {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-top: 18px;
    color: var(--okg-muted);
    font-size: 12px;
    line-height: 1.55;
}

.okg-app-hero-image-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 0;
    height: 100%;
}

.okg-app-hero-image {
    width: 100%;
    max-width: 590px;
    max-height: 390px;
    object-fit: contain;
    object-position: right center;
}


/* =========================================================
   05. QUICK HIGHLIGHTS
========================================================= */

.okg-app-highlights {
    padding: 0;
    background: transparent;
}

.okg-app-highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.okg-app-highlight-item {
    min-width: 0;
    min-height: 150px;
    padding: 22px 18px;
    background: var(--okg-card);
    border: 1px solid var(--okg-border);
    border-radius: var(--okg-radius);
    box-shadow: var(--okg-shadow);
    text-align: center;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.okg-app-highlight-item:hover {
    transform: translateY(-3px);
    border-color: rgba(5, 100, 200, 0.3);
    box-shadow: var(--okg-shadow-hover);
}

.okg-app-highlight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin: 0 auto 12px;
    border-radius: var(--okg-radius);
    background: rgba(5, 100, 200, 0.09);
    color: var(--okg-brand);
    font-size: 23px;
}

.okg-app-highlight-item h3 {
    margin-bottom: 7px;
    font-size: 16px;
    font-weight: 850;
    line-height: 1.25;
}

.okg-app-highlight-item p {
    margin-bottom: 0;
    font-size: 13px;
    line-height: 1.55;
}


/* =========================================================
   06. OVERVIEW
========================================================= */

.okg-app-overview-grid {
    display: grid;
    grid-template-columns: minmax(380px, 0.93fr) minmax(0, 1.07fr);
    align-items: center;
    gap: 40px;
}

.okg-app-overview-image-box {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 18% 18%,
            rgba(5, 100, 200, 0.11),
            transparent 26%
        ),
        radial-gradient(
            circle at 82% 82%,
            rgba(255, 180, 40, 0.13),
            transparent 24%
        ),
        #F4F8FD;
    border: 1px solid var(--okg-border);
    border-radius: var(--okg-radius);
}

.okg-app-overview-image {
    width: 90%;
    max-width: 540px;
    max-height: 420px;
    object-fit: contain;
}

.okg-app-overview-content {
    min-width: 0;
}

.okg-app-overview-content > p {
    margin-bottom: 13px;
}

.okg-app-overview-list {
    display: grid;
    gap: 9px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.okg-app-overview-list li {
    position: relative;
    padding: 12px 14px 12px 40px;
    background: #FFFFFF;
    border: 1px solid var(--okg-border);
    border-radius: var(--okg-radius);
    font-size: 14px;
    font-weight: 650;
    line-height: 1.45;
}

.okg-app-overview-list li::before {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(34, 160, 107, 0.12);
    color: var(--okg-success);
    font-size: 11px;
    font-weight: 900;
}


/* =========================================================
   07. DOWNLOAD STEPS
========================================================= */

.okg-app-timeline {
    position: relative;
}

.okg-app-timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.okg-app-step {
    position: relative;
    min-width: 0;
    padding-top: 34px;
}

.okg-app-step::before {
    content: "";
    position: absolute;
    top: 21px;
    left: 50%;
    width: calc(100% + 16px);
    height: 2px;
    background: #C9DCF3;
    z-index: 0;
}

.okg-app-step:last-child::before {
    display: none;
}

.okg-app-step-number {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 2;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 4px solid #FFFFFF;
    border-radius: 50%;
    background: var(--okg-brand);
    color: #FFFFFF;
    box-shadow: 0 5px 13px rgba(5, 100, 200, 0.22);
    font-size: 15px;
    font-weight: 900;
}

.okg-app-step-card {
    height: 100%;
    min-height: 146px;
    padding: 25px 18px 19px;
    background: #FFFFFF;
    border: 1px solid var(--okg-border);
    border-radius: var(--okg-radius);
    text-align: center;
}

.okg-app-step-card h3 {
    margin-bottom: 7px;
    font-size: 15px;
    font-weight: 850;
    line-height: 1.3;
}

.okg-app-step-card p {
    margin-bottom: 0;
    font-size: 13px;
    line-height: 1.55;
}

.okg-app-notice {
    margin-top: 18px;
    padding: 13px 16px;
    background: var(--okg-warning-bg);
    border: 1px solid var(--okg-warning-border);
    border-radius: var(--okg-radius);
    color: #6D5727;
    font-size: 13px;
    line-height: 1.6;
}

.okg-app-notice strong {
    color: #4F3C13;
}


/* =========================================================
   08. GRID AND CARDS
========================================================= */

.okg-app-grid {
    display: grid;
    gap: 16px;
}

.okg-app-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.okg-app-card {
    min-width: 0;
    background: #FFFFFF;
    border: 1px solid var(--okg-border);
    border-radius: var(--okg-radius);
    box-shadow: 0 3px 12px rgba(23, 59, 116, 0.05);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.okg-app-card:hover {
    transform: translateY(-3px);
    border-color: rgba(5, 100, 200, 0.28);
    box-shadow: var(--okg-shadow-hover);
}


/* =========================================================
   09. DEVICE CARDS
========================================================= */

.okg-app-device-card {
    padding: 21px;
}

.okg-app-device-head {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 14px;
}

.okg-app-device-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    border-radius: var(--okg-radius);
    background: rgba(5, 100, 200, 0.09);
    font-size: 22px;
}

.okg-app-device-head h3 {
    margin-bottom: 3px;
    font-size: 17px;
    font-weight: 850;
    line-height: 1.25;
}

.okg-app-device-label {
    color: var(--okg-brand);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.okg-app-device-card > p {
    min-height: 64px;
    margin-bottom: 16px;
    font-size: 13px;
    line-height: 1.6;
}

.okg-app-device-specs {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--okg-border);
}

.okg-app-device-specs li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid var(--okg-border);
    font-size: 12px;
    line-height: 1.35;
}

.okg-app-device-specs li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.okg-app-device-specs span {
    color: var(--okg-muted);
}

.okg-app-device-specs strong {
    color: var(--okg-title);
    text-align: right;
}


/* =========================================================
   10. FEATURE CARDS
========================================================= */

.okg-app-feature-card {
    position: relative;
    min-height: 190px;
    padding: 22px;
    overflow: hidden;
}

.okg-app-feature-number {
    position: absolute;
    top: 7px;
    right: 13px;
    color: rgba(5, 100, 200, 0.12);
    font-size: 40px;
    font-weight: 900;
    line-height: 1;
}

.okg-app-card-icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
    border-radius: var(--okg-radius);
    background: rgba(255, 180, 40, 0.14);
    font-size: 21px;
}

.okg-app-feature-card h3 {
    position: relative;
    z-index: 2;
    margin-bottom: 8px;
    font-size: 17px;
    font-weight: 850;
}

.okg-app-feature-card p {
    position: relative;
    z-index: 2;
    margin-bottom: 0;
    font-size: 13px;
    line-height: 1.62;
}


/* =========================================================
   11. SCREENSHOTS
========================================================= */

.okg-app-screenshots-wrap {
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
}

.okg-app-screenshots-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(210px, 1fr));
    gap: 16px;
    min-width: 920px;
}

.okg-app-screenshot-card {
    margin: 0;
    overflow: hidden;
    background: #FFFFFF;
    border: 1px solid var(--okg-border);
    border-radius: var(--okg-radius);
    box-shadow: 0 3px 12px rgba(23, 59, 116, 0.05);
}

.okg-app-screenshot-image {
    width: 100%;
    height: 390px;
    padding: 12px;
    background: #F4F8FD;
    object-fit: contain;
    object-position: center;
}

.okg-app-screenshot-caption {
    min-height: 102px;
    padding: 16px;
    border-top: 1px solid var(--okg-border);
}

.okg-app-screenshot-caption h3 {
    margin-bottom: 5px;
    font-size: 15px;
    font-weight: 850;
}

.okg-app-screenshot-caption p {
    margin-bottom: 0;
    font-size: 12px;
    line-height: 1.5;
}


/* =========================================================
   12. SAFETY
========================================================= */

.okg-app-safety-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(400px, 1fr);
    align-items: stretch;
    gap: 34px;
}

.okg-app-safety-panel {
    min-width: 0;
}

.okg-app-safety-list {
    display: grid;
    gap: 9px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.okg-app-safety-list li {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    padding: 16px 18px 16px 52px;

    background: #FFFFFF;
    border: 1px solid var(--okg-border);
    border-radius: 10px;

    text-align: left;
}

.okg-app-safety-list li::before{
    content:"✓";

    position:absolute;

    left:18px;
    top:18px;

    width:22px;
    height:22px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#E9F8F0;

    color:#18A75A;

    font-size:13px;
    font-weight:700;
}

.okg-app-safety-list strong{
    display:block;
    margin:0 0 4px;

    text-align:left;

    font-size:15px;
    font-weight:800;

    color:var(--okg-title);
}

.okg-app-safety-list span{
    display:block;

    margin:0;

    text-align:left;

    font-size:14px;
    line-height:1.65;

    color:var(--okg-text);
}

.okg-app-safety-list strong {
    display: block;
    margin-bottom: 3px;
    color: var(--okg-title);
    font-size: 13px;
}

.okg-app-safety-list span {
    display: block;
    color: var(--okg-text);
    font-size: 12px;
    line-height: 1.5;
}

.okg-app-safety-image-box {
    min-height: 470px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(5, 100, 200, 0.1),
            transparent 34%
        ),
        radial-gradient(
            circle at 75% 80%,
            rgba(255, 180, 40, 0.12),
            transparent 26%
        ),
        #F4F8FD;
    border: 1px solid var(--okg-border);
    border-radius: var(--okg-radius);
}

.okg-app-safety-image {
    width: 94%;
    max-width: 560px;
    max-height: 440px;
    object-fit: contain;
}


/* =========================================================
   13. FAQ
========================================================= */

.okg-app-faq-list {
    display: grid;
    gap: 9px;
    max-width: 1040px;
}

.okg-app-faq-item {
    overflow: hidden;
    background: #FFFFFF;
    border: 1px solid var(--okg-border);
    border-radius: var(--okg-radius);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.okg-app-faq-item[open] {
    border-color: rgba(5, 100, 200, 0.32);
    box-shadow: 0 5px 15px rgba(23, 59, 116, 0.07);
}

.okg-app-faq-item summary {
    position: relative;
    min-height: 50px;
    padding: 15px 50px 15px 17px;
    color: var(--okg-title);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.4;
    cursor: pointer;
    list-style: none;
}

.okg-app-faq-item summary::-webkit-details-marker {
    display: none;
}

.okg-app-faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 17px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background: rgba(5, 100, 200, 0.08);
    color: var(--okg-brand);
    font-size: 18px;
    font-weight: 700;
}

.okg-app-faq-item[open] summary::after {
    content: "−";
}

.okg-app-faq-content {
    padding: 0 17px 16px;
    border-top: 1px solid var(--okg-border);
}

.okg-app-faq-content p {
    margin: 13px 0 0;
    font-size: 13px;
    line-height: 1.65;
}


/* =========================================================
   14. CTA
========================================================= */

.okg-app-page > section:last-child {
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: visible;
}

.okg-app-page > section:last-child > .okg-app-container {
    padding: 0;
}

.okg-app-cta {
    overflow: hidden;
    border-radius: var(--okg-radius);
    background:
        radial-gradient(
            circle at 88% 20%,
            rgba(255, 255, 255, 0.15),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #0564C8 0%,
            #0875E3 55%,
            #0B7BFF 100%
        );
    box-shadow: 0 8px 22px rgba(5, 100, 200, 0.2);
}

.okg-app-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    min-height: 160px;
    padding: 30px 34px;
}

.okg-app-cta-content {
    max-width: 760px;
}

.okg-app-cta-content h2 {
    margin-bottom: 9px;
    color: #FFFFFF;
    font-size: clamp(27px, 3vw, 38px);
    font-weight: 900;
    line-height: 1.15;
}

.okg-app-cta-content p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    line-height: 1.65;
}


/* =========================================================
   15. TABLET
========================================================= */

@media (max-width: 1100px) {

    .okg-app-hero-inner {
        grid-template-columns: minmax(0, 1fr) minmax(350px, 0.82fr);
        padding: 34px;
        gap: 24px;
    }

    .okg-app-hero-content h1 {
        font-size: 48px;
    }

    .okg-app-highlights-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .okg-app-overview-grid,
    .okg-app-safety-grid {
        grid-template-columns: 1fr 1fr;
        gap: 26px;
    }

    .okg-app-timeline-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .okg-app-step::before {
        display: none;
    }

    .okg-app-grid--3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .okg-app-safety-image-box {
        min-height: 430px;
    }
}


/* =========================================================
   16. MOBILE
========================================================= */

@media (max-width: 767px) {

    .okg-app-page {
        padding: 14px 0;
        --okg-section-gap: 14px;
    }

    .okg-app-container,
    .okg-app-hero,
    .okg-app-highlights,
    .okg-app-section {
        width: calc(100% - 1px);
    }

    .okg-app-hero > .okg-app-container,
    .okg-app-highlights > .okg-app-container,
    .okg-app-section > .okg-app-container {
        width: 100%;
    }

    .okg-app-section > .okg-app-container {
        padding: 21px 15px;
    }

    .okg-app-hero-inner {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 24px 16px 18px;
        gap: 16px;
    }

    .okg-app-hero-content {
        max-width: none;
        text-align: left;
    }

    .okg-app-hero-content h1 {
        margin-bottom: 12px;
        font-size: 36px;
        line-height: 1.06;
        letter-spacing: -0.8px;
    }

    .okg-app-hero-content > p {
        margin-bottom: 16px;
        font-size: 14px;
        line-height: 1.65;
    }

    .okg-app-hero-features {
        grid-template-columns: 1fr 1fr;
        gap: 8px 10px;
        margin-bottom: 18px;
    }

    .okg-app-hero-features li {
        padding-left: 21px;
        font-size: 12px;
    }

    .okg-app-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
        gap: 9px;
    }

    .okg-app-button {
        width: 100%;
        min-height: 43px;
        padding: 0 12px;
        font-size: 12px;
    }

    .okg-app-hero-note {
        font-size: 11px;
    }

    .okg-app-hero-image-wrap {
        justify-content: center;
    }

    .okg-app-hero-image {
        width: 100%;
        max-width: 430px;
        max-height: 290px;
        object-position: center;
    }

    .okg-app-highlights-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
    }

    .okg-app-highlight-item {
        min-height: 140px;
        padding: 17px 10px;
    }

    .okg-app-highlight-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 9px;
        font-size: 19px;
    }

    .okg-app-highlight-item h3 {
        font-size: 14px;
    }

    .okg-app-highlight-item p {
        font-size: 11px;
        line-height: 1.45;
    }

    .okg-app-section-heading {
        margin-bottom: 19px;
    }

    .okg-app-section-heading h2,
    .okg-app-overview-content h2,
    .okg-app-safety-panel h2 {
        margin-bottom: 8px;
        font-size: 26px;
    }

    .okg-app-section-heading p,
    .okg-app-overview-content > p,
    .okg-app-safety-panel > p {
        font-size: 13px;
        line-height: 1.65;
    }

    .okg-app-overview-grid,
    .okg-app-safety-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .okg-app-overview-image-box {
        min-height: 260px;
    }

    .okg-app-overview-image {
        width: 95%;
        max-height: 300px;
    }

    .okg-app-overview-list li {
        padding: 11px 12px 11px 37px;
        font-size: 12px;
    }

    .okg-app-timeline-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .okg-app-step {
        display: grid;
        grid-template-columns: 42px minmax(0, 1fr);
        align-items: stretch;
        gap: 10px;
        padding-top: 0;
    }

    .okg-app-step-number {
        position: static;
        transform: none;
        width: 40px;
        height: 40px;
        margin-top: 9px;
        border-width: 3px;
        font-size: 13px;
    }

    .okg-app-step-card {
        min-height: 0;
        padding: 15px;
        text-align: left;
    }

    .okg-app-step-card h3 {
        font-size: 14px;
    }

    .okg-app-step-card p {
        font-size: 12px;
    }

    .okg-app-grid--3 {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .okg-app-device-card {
        padding: 17px;
    }

    .okg-app-device-card > p {
        min-height: 0;
    }

    .okg-app-feature-card {
        min-height: 0;
        padding: 18px;
    }

    .okg-app-feature-number {
        font-size: 34px;
    }

    .okg-app-screenshots-grid {
        grid-template-columns: repeat(4, 200px);
        gap: 10px;
        min-width: 830px;
    }

    .okg-app-screenshot-image {
        height: 350px;
        padding: 8px;
    }

    .okg-app-screenshot-caption {
        min-height: 92px;
        padding: 13px;
    }

    .okg-app-safety-image-box {
        min-height: 280px;
        order: -1;
    }

    .okg-app-safety-image {
        max-height: 290px;
    }

    .okg-app-faq-item summary {
        min-height: 47px;
        padding: 13px 45px 13px 14px;
        font-size: 12px;
    }

    .okg-app-faq-item summary::after {
        right: 13px;
    }

    .okg-app-faq-content {
        padding: 0 14px 14px;
    }

    .okg-app-faq-content p {
        font-size: 12px;
    }

    .okg-app-cta-inner {
        display: block;
        min-height: 0;
        padding: 24px 17px;
    }

    .okg-app-cta-content h2 {
        font-size: 28px;
    }

    .okg-app-cta-content p {
        font-size: 13px;
    }

    .okg-app-cta .okg-app-buttons {
        display: block;
        margin-top: 18px;
    }

    .okg-app-cta .okg-app-button {
        width: auto;
        min-width: 150px;
        padding: 0 22px;
    }
}


/* =========================================================
   17. SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .okg-app-hero-content h1 {
        font-size: 30px;
    }

    .okg-app-hero-features {
        grid-template-columns: 1fr;
    }

    .okg-app-buttons {
        grid-template-columns: 1fr;
    }

    .okg-app-highlights-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .okg-app-highlight-item {
        min-height: 132px;
    }

    .okg-app-section-heading h2,
    .okg-app-overview-content h2,
    .okg-app-safety-panel h2 {
        font-size: 20px;
    }
}


/* =========================================================
   18. ACCESSIBILITY
========================================================= */

.okg-app-page a:focus-visible,
.okg-app-page summary:focus-visible {
    outline: 3px solid rgba(11, 123, 255, 0.32);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {

    .okg-app-page *,
    .okg-app-page *::before,
    .okg-app-page *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }
}

/* =========================================================
   OKGames App V2.1
   Force 10px Rounded Corners
========================================================= */

.okg-app-page .okg-app-hero,
.okg-app-page .okg-app-section,
.okg-app-page .okg-app-highlight-item,
.okg-app-page .okg-app-overview-image-box,
.okg-app-page .okg-app-step-card,
.okg-app-page .okg-app-card,
.okg-app-page .okg-app-device-card,
.okg-app-page .okg-app-feature-card,
.okg-app-page .okg-app-screenshot-card,
.okg-app-page .okg-app-safety-image-box,
.okg-app-page .okg-app-faq-item,
.okg-app-page .okg-app-cta,
.okg-app-page .okg-app-notice,
.okg-app-page .okg-app-overview-list li,
.okg-app-page .okg-app-safety-list li {
    border-radius: 10px !important;
}


.okg-app-page .okg-app-hero,
.okg-app-page .okg-app-section,
.okg-app-page .okg-app-screenshot-card,
.okg-app-page .okg-app-faq-item,
.okg-app-page .okg-app-cta,
.okg-app-page .okg-app-overview-image-box,
.okg-app-page .okg-app-safety-image-box {
    overflow: hidden !important;
}


.okg-app-page .okg-app-hero-inner {
    border-radius: 10px !important;
}


.okg-app-page .okg-app-overview-image,
.okg-app-page .okg-app-screenshot-image,
.okg-app-page .okg-app-safety-image {
    border-radius: 10px !important;
}


.okg-app-page > section:last-child {
    border-radius: 10px !important;
}


.entry-content,
.entry-content > .wp-block-uagb-container,
.entry-content > .wp-block-group,
.uagb-container-inner-blocks-wrap {
    border-radius: 10px;
}

/* Safety */
.okg-app-page ul.okg-app-safety-list {
    width: 100% !important;
    max-width: none !important;

    margin: 20px 0 0 0 !important;
    padding: 0 !important;
    padding-left: 0 !important;

    list-style: none !important;
    text-align: left !important;
}

.okg-app-page ul.okg-app-safety-list > li {
    position: relative !important;
    width: 100% !important;

    margin: 0 !important;
    padding: 16px 18px 16px 52px !important;

    background: #FFFFFF;
    border: 1px solid var(--okg-border);
    border-radius: 10px !important;

    text-align: left !important;
}

.okg-app-page ul.okg-app-safety-list > li::before {
    content: "✓";

    position: absolute;
    top: 18px;
    left: 18px;

    width: 22px;
    height: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #E9F8F0;
    color: #18A75A;

    font-size: 13px;
    font-weight: 700;
}


.okg-app-page ul.okg-app-safety-list > li strong,
.okg-app-page ul.okg-app-safety-list > li span {
    display: block !important;
    width: 100% !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
    text-align: left !important;
}

.okg-app-page ul.okg-app-safety-list > li strong {
    margin-bottom: 4px !important;
}


/* Hero Primary Button */
.okg-app-button--primary,
.okg-app-button--primary:link,
.okg-app-button--primary:visited,
.okg-app-button--primary:hover,
.okg-app-button--primary:active,
.okg-app-button--primary:focus{
    color:#FFFFFF !important;
    text-decoration:none !important;
}