/* =========================================================
   DESIGN TOKENS  —  White background, Black + Yellow theme
========================================================= */
:root {
    --yellow: #ffc400;
    --yellow-dark: #e5a900;
    --yellow-soft: #fff5c7;
    --black: #171717;
    --dark: #242424;
    --text: #252525;
    --muted: #666666;
    --white: #ffffff;
    --light: #f7f8fa;
    --border: #171717;      /* borders = black */
    --shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
    --radius: 18px;
    --r12: 12px;
    --r6: 6px;
    --t: .25s ease;         /* standard transition */

    /* aliases so old var names used lower in the file keep working */
    --acc: var(--yellow);
    --acc2: var(--yellow);
    --br: var(--border);
    --tm: var(--white);
    --bg: var(--black);

    --essential-bg: #f7f8fa;
    --essential-bg-soft: #fffdf5;
    --essential-card: #ffffff;
    --essential-yellow: var(--yellow);
    --essential-yellow-soft: var(--yellow-soft);
    --essential-black: var(--black);
    --essential-text: #4f555c;
    --essential-border: #171717;
    --essential-shadow: 0 18px 50px rgba(20, 20, 20, .06);
}

*,
::after,
::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--light);
    color: var(--text);
    line-height: 1.75;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--black);
    text-decoration: none;
    transition: color var(--t);
}

a:hover {
    color: var(--yellow-dark);
}

a:focus-visible {
    outline: 2px solid var(--yellow);
    outline-offset: 3px;
    border-radius: 2px;
}

.container {
    width: min(1300px, calc(100% - 40px));
    margin-inline: auto;
}

/* ==============================
   HEADER WRAPPER
============================== */

.hdr,
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--t), background var(--t);
}

.hi,
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    gap: 30px;
}

/* ==============================
   LOGO
============================== */

.logo {
    display: inline-flex;
    align-items: center;
    font-family: Orbitron, sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: .04em;
    gap: 10px;
    color: var(--black);
}

.logo span {
    color: var(--yellow-dark);
}

a.logo img {
    max-width: 74px !important;
    border-radius: var(--r6);
}

.logo-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    background: var(--black);
    color: var(--yellow);
    border-radius: var(--r6);
    font-weight: 900;
}

/* ==============================
   DESKTOP NAV
============================== */

.nav,
.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nitem {
    position: relative;
}

.nl,
.main-nav a {
    display: flex;
    align-items: center;
    position: relative;
    height: 45px;
    padding: 0 16px;
    gap: 4px;
    border-radius: var(--r6);
    font-family: Rajdhani, sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--black);
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: background var(--t), color var(--t);
}

.nl:focus,
.nl:hover,
.main-nav a:hover {
    background: var(--yellow);
    color: var(--black);
}

.nl.act::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 2px;
    height: 2px;
    background: var(--black);
    border-radius: 20px;
}

.narr {
    font-size: .65rem;
    transition: transform var(--t);
}

.nitem:focus-within .narr,
.nitem:hover .narr {
    transform: rotate(180deg);
}

/* ==============================
   DROPDOWN (Blogs / More)
============================== */

.drop {
    overflow: hidden;
    opacity: 0;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--black);
    border: 1px solid var(--border);
    border-radius: var(--r12);
    min-width: 230px;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity var(--t), visibility var(--t), transform var(--t);
    box-shadow: var(--shadow);
}

.nitem:focus-within .drop,
.nitem:hover .drop {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.drop a {
    display: block;
    padding: 11px 18px;
    font-family: Rajdhani, sans-serif;
    font-size: .95rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: .02em;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    transition: color var(--t), background var(--t), padding-left var(--t);
}

.drop a:last-child {
    border-bottom: none;
}

.drop a:hover {
    background: var(--yellow);
    color: var(--black);
    padding-left: 24px;
}

/* ==============================
   DOWNLOAD / HEADER BUTTONS
============================== */

.hcta {
    display: flex;
    gap: 10px;
    margin-left: 20px;
}

.bhl,
.bhr {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
    background: var(--black);
    font-family: Rajdhani, sans-serif;
    font-size: .95rem;
    font-weight: 700;
    padding: 9px 20px;
    border-radius: var(--r6);
    letter-spacing: .05em;
    border: 1px solid var(--black);
    cursor: pointer;
    transition: all var(--t);
}

.bhl:hover,
.bhr:hover {
    background: var(--yellow);
    color: var(--black);
    border-color: var(--black);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 196, 0, .35);
}

/* ==============================
   HAMBURGER (MOBILE TOGGLE)
============================== */

.ham {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
}

.ham span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: all var(--t);
}

.ham.op span:nth-child(2) {
    opacity: 0;
}

.ham.op span:first-child {
    transform: translateY(7px) rotate(45deg);
}

.ham.op span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ==============================
   MOBILE NAV
============================== */

.mnav {
    display: none;
    flex-direction: column;
    background: var(--black);
    border-top: 1px solid var(--yellow);
    padding: 16px 24px 24px;
    gap: 4px;
}

.mnav.op {
    display: flex;
}

.mnav a,
.mnav button {
    font-family: Rajdhani, sans-serif;
    font-size: 1.05rem;
    letter-spacing: .03em;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    display: block;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    text-align: left;
    color: var(--white);
    cursor: pointer;
    transition: color var(--t);
}

.mnav a:hover,
.mnav button:hover {
    color: var(--yellow);
}

.mnav .sub {
    padding-left: 16px;
    font-size: .95rem;
}

.mcta {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.mcta .bhl,
.mcta .bhr {
    flex: 1;
    text-align: center;
}

/* ==============================
   RESPONSIVE (MOBILE BREAKPOINT)
============================== */

@media (max-width: 768px) {
    .hcta,
    .nav,
    .main-nav {
        display: none;
    }

    .ham {
        display: flex;
    }
}

.for-padding .nl {
    height: 45px;
}

/* =========================
   HERO
========================= */
 .essential-page {

     padding: 50px 0 90px;
     overflow: hidden;
     position: relative;
 }
.hero{
    
     padding: 50px 0 90px;
     overflow: hidden;
     position: relative;
    background: radial-gradient(circle at 92% 15%, rgba(255, 196, 0, .18), transparent 24%), radial-gradient(circle at 5% 95%, rgba(255, 196, 0, .10), transparent 25%), linear-gradient(135deg, #ffffff 0%, #f8f9fb 52%, #fff9df 100%);
}

.hero::before,
.essential-page::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    top: -175px;
    right: -80px;
    background: var(--yellow);
    border-radius: 50%;
    opacity: .85;
}

.hero::after,
.essential-page::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    bottom: -115px;
    left: -70px;
    border: 24px solid rgba(255, 196, 0, .18);
    border-radius: 50%;
}

.eyebrow,
.essential-label {
    position: relative;
    z-index: 2;
    display: inline-block;
    margin-bottom: 22px;
    padding: 9px 17px;
    background: var(--black);
    color: var(--yellow);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    box-shadow: 4px 4px 0 var(--yellow);
}

.hero h1,
.essential-title {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0;
    color: var(--black);
    font-size: clamp(44px, 6vw, 76px);
    line-height: 1.04;
    letter-spacing: -3.5px;
    font-weight: 900;
}

.hero h1::after,
.essential-title::after {
    content: "";
    display: block;
    width: 90px;
    height: 7px;
    margin-top: 25px;
    background: var(--yellow);
    border-radius: 20px;
}

.hero-description,
.essential-section {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: 34px;
    padding: 30px 34px;
    background: linear-gradient(135deg, #fff9df 0%, #fffdf3 50%, #ffffff 100%);
    border: 1px solid var(--border);
    border-top: 4px solid var(--yellow);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-description::before,
.essential-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 28px;
    bottom: 28px;
    width: 4px;
    background: var(--black);
    border-radius: 0 5px 5px 0;
}

.hero-description p,
.essential-section p {
    width: 100%;
    margin: 0 0 19px;
    padding-left: 5px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.85;
}

.hero-description p:last-child,
.essential-section p:last-child {
    margin-bottom: 0;
}

.essential-section h2 {
    margin: 0 0 18px;
    color: var(--black);
    font-size: clamp(25px, 3vw, 34px);
    line-height: 1.2;
    letter-spacing: -.8px;
    font-weight: 800;
}

.essential-section h2::after {
    content: "";
    display: block;
    width: 42px;
    height: 4px;
    margin-top: 12px;
    background: var(--yellow);
    border-radius: 10px;
}

.essential-section a {
    color: var(--black);
    font-weight: 700;
    border-bottom: 2px solid var(--yellow);
}

.essential-section a:hover {
    color: var(--yellow-dark);
    border-bottom-color: var(--black);
}

.essential-email {
    display: inline-block;
    padding: 11px 16px;
    background: var(--yellow-soft);
    border: 1px solid var(--yellow);
    border-radius: 9px;
}

.essential-email a {
    border-bottom: 0;
}

/* =========================
   ARTICLE / CONTENT CARDS
========================= */

.article {
    padding: 65px 0 80px;
}

.content-section {
    margin-bottom: 55px;
}

.section-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 22px;
}

.section-heading > span {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    display: grid;
    place-items: center;
    background: var(--black);
    color: var(--yellow);
    border-radius: var(--r12);
    font-size: 13px;
    font-weight: 800;
}

.section-heading h2 {
    font-size: clamp(27px, 3vw, 38px);
    line-height: 1.2;
    color: var(--black);
    letter-spacing: -0.7px;
}

.content-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 5px solid var(--yellow);
    border-radius: var(--radius);
    padding: 34px;
    box-shadow: var(--shadow);
    transition: border-color var(--t), box-shadow var(--t);
}

.content-card:hover {
    border-color: var(--yellow);
}

.content-card p {
    color: var(--muted);
    margin-bottom: 18px;
}

.content-card p:last-child {
    margin-bottom: 0;
}

.content-card h3 {
    color: var(--black);
    margin-top: 32px;
    margin-bottom: 11px;
}

.content-card h4 {
    color: var(--black);
    margin-top: 25px;
    margin-bottom: 8px;
    font-size: 18px;
}

.content-card ol,
.content-card ul {
    padding-left: 25px;
    margin-top: 18px;
}

.content-card li {
    color: var(--muted);
    margin-bottom: 11px;
    padding-left: 5px;
}

.content-card li::marker {
    color: var(--yellow-dark);
    font-weight: 800;
}

/* =========================
   FEATURE CARDS  (black box + yellow accent, hover -> yellow)
========================= */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 28px;
}

.feature-card {
    background: var(--black);
    color: var(--white);
    border: 1px solid var(--black);
    border-radius: 15px;
    padding: 25px;
    position: relative;
    overflow: hidden;
    transition: transform var(--t), box-shadow var(--t), border-color var(--t),
        background var(--t), color var(--t);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--black);
    background: var(--yellow);
    color: var(--black);
}

.feature-card::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    right: -55px;
    bottom: -55px;
    background: var(--yellow);
    border-radius: 50%;
    opacity: 0.15;
    transition: background var(--t), opacity var(--t);
}

.feature-card:hover::after {
    background: var(--black);
    opacity: 0.08;
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--yellow);
    color: var(--black);
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 16px;
    transition: background var(--t), color var(--t);
}

.feature-card:hover .feature-icon {
    background: var(--black);
    color: var(--yellow);
}

.feature-card h3,
.game-item h3,
.content-card h3 {
    line-height: 1.35;
    margin-bottom: 11px;
}

.feature-card h3 {
    color: var(--yellow);
    transition: color var(--t);
}

.feature-card:hover h3 {
    color: var(--black);
}

.feature-card p {
    font-size: 14px;
    margin: 0;
    color: #d5d5d5;
    transition: color var(--t);
}

.feature-card:hover p {
    color: var(--dark);
}

/* number badge used inside feature cards (01 / 02 / 03 / 04) */
.feature-card .num,
.feature-card .badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 26px;
    padding: 0 8px;
    margin-bottom: 18px;
    background: var(--yellow);
    color: var(--black);
    font-size: 12px;
    font-weight: 800;
    border-radius: var(--r6);
    transition: background var(--t), color var(--t);
}

.feature-card:hover .num,
.feature-card:hover .badge {
    background: var(--black);
    color: var(--yellow);
}

/* =========================
   METHODS
========================= */

.method-box {
    background: var(--black);
    color: var(--white);
    border: 1px solid var(--black);
    border-left: 5px solid var(--yellow);
    padding: 25px;
    margin-top: 22px;
    border-radius: 12px;
    transition: background var(--t), color var(--t), border-color var(--t);
}

.method-box:hover {
    background: var(--yellow);
    color: var(--black);
    border-left-color: var(--black);
}

.method-box h3 {
    margin-bottom: 14px;
    color: var(--yellow);
    transition: color var(--t);
}

.method-box:hover h3 {
    color: var(--black);
}

.method-box p,
.method-box li {
    color: #d5d5d5;
    transition: color var(--t);
}

.method-box:hover p,
.method-box:hover li {
    color: var(--dark);
}

/* =========================
   GAMES
========================= */

.game-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 25px;
}

.game-item {
    padding: 23px;
    border: 1px solid var(--black);
    border-radius: 14px;
    background: var(--black);
    color: var(--white);
    transition: border-color var(--t), transform var(--t), background var(--t), color var(--t);
}

.game-item:hover {
    border-color: var(--black);
    transform: translateY(-3px);
    background: var(--yellow);
    color: var(--black);
}

.game-item h3 {
    font-size: 19px;
    color: var(--yellow);
    transition: color var(--t);
}

.game-item:hover h3 {
    color: var(--black);
}

.game-item p {
    font-size: 14px;
    margin: 0;
    color: #d5d5d5;
    transition: color var(--t);
}

.game-item:hover p {
    color: var(--dark);
}

/* =========================
   REVIEWS
========================= */

.review-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.review-card {
    background: var(--black);
    color: var(--white);
    border: 1px solid var(--black);
    border-radius: 15px;
    padding: 25px;
    box-shadow: var(--shadow);
    position: relative;
    transition: border-color var(--t), background var(--t), color var(--t);
}

.review-card:hover {
    border-color: var(--black);
    background: var(--yellow);
    color: var(--black);
}

.review-card::before {
    content: "\201C";
    position: absolute;
    right: 20px;
    top: 4px;
    font-size: 70px;
    line-height: 1;
    color: rgba(255, 196, 0, .5);
    font-weight: 800;
    transition: color var(--t);
}

.review-card:hover::before {
    color: rgba(23, 23, 23, .25);
}

.review-card .review-name {
    color: var(--yellow);
    font-size: 17px;
    margin-bottom: 10px;
    font-weight: 700;
    transition: color var(--t);
}

.review-card:hover .review-name {
    color: var(--black);
}

.review-card p {
    color: #d5d5d5;
    font-size: 14px;
    margin: 0;
    transition: color var(--t);
}

.review-card:hover p {
    color: var(--dark);
}

/* =========================
   RESPONSIBLE / CONCLUSION
========================= */

.responsible-card {
    border-top: 5px solid var(--yellow);
}

.conclusion-card {
    background: linear-gradient(135deg, #ffffff, #fffdf5);
}

/* =========================
   FAQ
========================= */

.faq-section {
    margin-bottom: 20px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 7px 25px rgba(0, 0, 0, 0.045);
    transition: border-color var(--t);
}

.faq-question {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 21px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
    cursor: pointer;
    color: var(--black);
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
}

.faq-icon {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--yellow);
    color: var(--black);
    font-size: 21px;
    font-weight: 500;
    transition: transform var(--t);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer p {
    padding: 0 24px 23px;
    margin: 0;
    color: var(--muted);
}

.faq-item.active {
    border-color: var(--yellow);
}

.faq-item.active .faq-question {
    background: var(--yellow-soft);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* =========================
   FOOTER  (black bg, yellow accents)
========================= */

footer,
.site-footer {
    position: relative;
    overflow: hidden;
    margin-top: 40px;
    background: var(--black);
    color: var(--white);
    border-top: 1px solid var(--border);
}

footer::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -220px;
    right: -160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 196, 0, .15) 0%, transparent 70%);
    filter: blur(10px);
    pointer-events: none;
}

footer::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    bottom: -200px;
    left: -140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 196, 0, .1) 0%, transparent 70%);
    filter: blur(10px);
    pointer-events: none;
}

.fmain {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 40px;
    padding: 60px 25px 40px;
}

.footer-top {
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-logo,
.fbrand {
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.fbrand img {
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.fbrand p {
    color: #cfcfcf;
    font-size: .95rem;
    line-height: 1.8;
    max-width: 320px;
}

.fcol {
    position: relative;
}

.fcol .q-l-head {
    position: relative;
    margin: 0 0 22px;
    padding: 0;
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: .02em;
}

.fcol .q-l-head::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 42px;
    height: 3px;
    border-radius: 10px;
    background: var(--yellow);
}

.fcol ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

.fcol ul li a,
.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cfcfcf;
    font-size: .95rem;
    text-decoration: none;
    padding: 9px 13px;
    border-radius: var(--r6);
    transition: color var(--t), background var(--t), padding-left var(--t);
}

.fcol ul li a::before {
    content: "\203A";
    color: var(--yellow);
    font-weight: 700;
    transition: transform var(--t);
}

.fcol ul li a:hover,
.footer-links a:hover {
    background: var(--yellow);
    color: var(--black);
    padding-left: 17px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.fbot {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 22px 25px;
    text-align: center;
}

.fbot p {
    color: var(--white);
    font-size: .88rem;
    letter-spacing: .02em;
}

.fbot p a {
    color: var(--yellow);
    font-weight: 600;
    text-decoration: none;
    transition: color var(--t);
}

.fbot p a:hover {
    color: var(--yellow-dark);
    text-decoration: underline;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {
    .main-nav {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        max-width: 850px;
    }

    .hero-image {
        max-width: 760px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 900px) {
    .fmain {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .fbrand {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
    }

    .fbrand p {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero,
    .essential-page {
        padding: 65px 0 70px;
    }

    .hero h1,
    .essential-title {
        font-size: clamp(38px, 8vw, 58px);
        letter-spacing: -2.5px;
    }

    .hero-description,
    .essential-section {
        margin-top: 28px;
        padding: 26px 28px;
    }

    .hero-description p,
    .essential-section p {
        font-size: 15.5px;
        line-height: 1.78;
    }
}

@media (max-width: 700px) {
    .container {
        width: min(100% - 26px, 1250px);
    }

    .article {
        padding: 45px 0 60px;
    }

    .content-section {
        margin-bottom: 40px;
    }

    .content-card {
        padding: 22px;
        border-radius: 14px;
    }

    .section-heading {
        align-items: flex-start;
    }

    .section-heading > span {
        width: 39px;
        height: 39px;
        flex-basis: 39px;
    }

    .section-heading h2 {
        font-size: 27px;
    }

    .feature-grid,
    .game-list,
    .review-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        padding: 28px 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        justify-content: flex-start;
    }

    .fmain {
        grid-template-columns: 1fr;
        padding: 45px 20px 30px;
        text-align: center;
    }

    .fcol .q-l-head::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .fcol ul li a {
        justify-content: center;
    }

    .fbot {
        padding: 18px 16px;
    }
}

@media (max-width: 480px) {
    .header-inner,
    .hi {
        min-height: 68px;
    }

    .logo {
        font-size: 18px;
    }

    .logo-mark {
        width: 34px;
        height: 34px;
    }

    .hero h1,
    .essential-title {
        font-size: 32px;
    }

    .eyebrow,
    .essential-label {
        margin-bottom: 18px;
        padding: 8px 14px;
        font-size: 10px;
    }

    .hero h1::after,
    .essential-title::after {
        width: 60px;
        height: 5px;
        margin-top: 18px;
    }

    .hero-description,
    .essential-section {
        margin-top: 24px;
        padding: 22px 20px;
        border-top-width: 3px;
        border-radius: 13px;
    }

    .hero-description::before,
    .essential-section::before {
        top: 22px;
        bottom: 22px;
        width: 3px;
    }

    .hero-description p,
    .essential-section p {
        padding-left: 4px;
        font-size: 15px;
        line-height: 1.75;
    }

    .content-card {
        padding: 18px;
    }

    .faq-question {
        padding: 17px;
        font-size: 14px;
    }

    .faq-answer p {
        padding: 0 17px 18px;
    }
}