@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --black: #090b0d;
    --black2: #0e1214;
    --card: #14191c;
    --card2: #181e21;
    --green: #8bd23f;
    --green2: #b8ed58;
    --yellow: #f3c94b;
    --white: #f5f5ef;
    --muted: #9ba3a6;
    --border: #293135;
    --max: 1160px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--black);
    color: var(--white);
    font-family: Inter, Arial, sans-serif;
    line-height: 1.6;
}

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

.container {
    width: min(calc(100% - 40px), var(--max));
    margin: auto;
}


/* TOP LINE */

.top-line {
    height: 4px;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 999;

    background: linear-gradient(
        90deg,
        var(--green),
        #d8ec61,
        #ff6388
    );
}


/* HEADER */

.header {
    position: sticky;
    top: 4px;
    z-index: 100;

    background: rgba(9, 11, 13, 0.9);
    backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.header-inner {
    height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 7px;
}

.logo-gta,
.logo-6 {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 800;
}

.logo-gta {
    font-size: 29px;
}

.logo-6 {
    color: var(--green);
    font-size: 37px;
}

.logo-text {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.navigation {
    display: flex;
    gap: 30px;
}

.navigation a {
    color: #aeb5b7;

    font-size: 12px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 0.8px;

    transition: 0.2s;
}

.navigation a:hover {
    color: var(--green);
}


/* HERO */

.hero {
    min-height: 620px;

    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(139, 210, 63, 0.18),
            transparent 25%
        ),
        linear-gradient(
            145deg,
            #080b0c,
            #111719 55%,
            #090c0e
        );
}

.hero::after {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -120px;
    top: -100px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(220, 235, 100, 0.55),
            rgba(139, 210, 63, 0.13) 45%,
            transparent 70%
        );

    filter: blur(3px);
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            120deg,
            transparent 0 45%,
            rgba(255, 255, 255, 0.035) 46%,
            transparent 47%
        ),
        linear-gradient(
            60deg,
            transparent 0 55%,
            rgba(139, 210, 63, 0.05) 56%,
            transparent 57%
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    padding: 105px 0 80px;
}

.eyebrow,
.section-label {
    color: var(--green);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;
}

.hero h1 {
    font-family: "Barlow Condensed", sans-serif;

    font-size: clamp(60px, 9vw, 110px);

    line-height: 0.85;

    text-transform: uppercase;

    letter-spacing: -2px;

    margin: 18px 0;
}

.hero h1 span {
    display: block;
}

.tagline {
    font-family: "Barlow Condensed", sans-serif;

    text-transform: uppercase;

    font-size: 27px;

    letter-spacing: 1px;

    color: #d9dddd;

    margin: 25px 0 14px;
}

.platforms {
    display: flex;
    gap: 8px;

    margin-bottom: 27px;
}

.platforms span {
    border: 1px solid #394246;

    padding: 6px 10px;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.7px;
}

.search-box {
    display: flex;

    width: min(680px, 100%);

    background: white;

    border-radius: 3px;

    overflow: hidden;
}

.search-box input {
    flex: 1;

    min-width: 0;

    border: 0;
    outline: 0;

    padding: 17px;

    font: 600 14px Inter;
}

.search-box button {
    border: 0;

    background: var(--green);

    padding: 0 24px;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1px;

    cursor: pointer;
}

.search-box button:hover {
    background: var(--green2);
}

.status {
    display: flex;
    align-items: center;
    gap: 9px;

    flex-wrap: wrap;

    margin-top: 19px;

    color: #9ea7aa;

    font-size: 10px;
}

.status strong {
    color: #eee;

    font-size: 9px;

    letter-spacing: 1px;
}

.status-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--yellow);

    box-shadow:
        0 0 12px rgba(243, 201, 75, 0.5);
}


/* SECTIONS */

.section {
    padding: 82px 0;
}

.dark-section {
    background: #0d1113;

    border-top: 1px solid #1f272a;
    border-bottom: 1px solid #1f272a;
}

.section-heading {
    display: flex;

    align-items: end;

    justify-content: space-between;

    margin-bottom: 12px;
}

.section h2 {
    font-family: "Barlow Condensed", sans-serif;

    font-size: 49px;

    line-height: 1;

    text-transform: uppercase;

    margin: 6px 0 0;
}

.view-all {
    color: var(--green);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;
}

.section-description {
    max-width: 720px;

    color: var(--muted);

    font-size: 13px;

    margin-bottom: 32px;
}


/* CHEAT CARDS */

.cheat-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 14px;
}

.cheat-card {
    position: relative;

    overflow: hidden;

    min-height: 215px;

    padding: 24px;

    background:
        linear-gradient(
            145deg,
            var(--card2),
            var(--card)
        );

    border: 1px solid var(--border);

    transition: 0.2s;
}

.cheat-card:hover {
    transform: translateY(-4px);

    border-color: #566268;
}

.cheat-card::after {
    content: "";

    position: absolute;

    width: 110px;
    height: 110px;

    right: -50px;
    bottom: -50px;

    border-radius: 50%;

    background:
        rgba(139, 210, 63, 0.08);
}

.cheat-number {
    color: #697276;

    font-family: "Barlow Condensed";

    font-size: 14px;

    font-weight: 800;
}

.cheat-card h3 {
    font-family: "Barlow Condensed";

    font-size: 31px;

    text-transform: uppercase;

    margin: 15px 0 4px;
}

.cheat-card p {
    color: #9aa3a6;

    font-size: 12px;

    max-width: 290px;
}

.card-bottom {
    position: absolute;

    left: 24px;
    bottom: 22px;
}

.unverified {
    color: var(--yellow);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;
}


/* CATEGORIES */

.category-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 12px;
}

.category-card {
    min-height: 150px;

    padding: 23px;

    background: #121719;

    border: 1px solid #252e32;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    transition: 0.2s;
}

.category-card:hover {
    border-color: var(--green);
}

.category-card span {
    color: #667073;

    font-family: "Barlow Condensed";

    font-size: 13px;
}

.category-card strong {
    font-family: "Barlow Condensed";

    font-size: 30px;
}

.category-card small {
    color: #8e989b;

    font-size: 11px;
}


/* GUIDES */

.guide-list {
    display: grid;

    gap: 10px;
}

.guide {
    display: grid;

    grid-template-columns:
        50px 1fr 30px;

    align-items: center;

    gap: 18px;

    padding: 20px 22px;

    background: #111618;

    border: 1px solid #252e32;

    transition: 0.2s;
}

.guide:hover {
    border-color: #566268;
}

.guide-number {
    color: var(--green);

    font-family: "Barlow Condensed";

    font-size: 25px;

    font-weight: 800;
}

.guide h3 {
    font-family: "Barlow Condensed";

    font-size: 23px;

    text-transform: uppercase;

    margin: 0;
}

.guide p {
    color: #899295;

    font-size: 12px;

    margin: 3px 0 0;
}

.guide strong {
    color: var(--green);

    font-size: 20px;
}


/* FAQ */

.faq-section {
    background:
        linear-gradient(
            110deg,
            #8bd23f,
            #c0ea5a
        );

    color: #091006;

    padding: 55px 0;
}

.faq-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}

.faq-inner .section-label {
    color: #294417;
}

.faq-inner h2 {
    font-family: "Barlow Condensed";

    font-size: 49px;

    line-height: 1;

    text-transform: uppercase;

    margin: 6px 0;
}

.faq-inner p {
    margin: 5px 0;

    font-size: 13px;
}

.faq-button {
    background: #0b100c;

    color: white;

    padding: 14px 20px;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;
}


/* FOOTER */

.footer {
    padding: 55px 0 20px;

    background: #07090a;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        2fr 1fr 1fr;

    gap: 40px;
}

.footer-grid > div {
    display: flex;

    flex-direction: column;

    gap: 8px;
}

.footer-grid strong {
    color: var(--green);

    font-size: 10px;

    letter-spacing: 1.5px;
}

.footer-grid p,
.footer-grid a {
    color: #7d878a;

    font-size: 12px;
}

.copyright {
    border-top: 1px solid #1b2124;

    margin-top: 35px;

    padding-top: 18px;

    color: #5f686b;

    font-size: 10px;
}


/* MOBILE */

@media (max-width: 800px) {

    .container {
        width: min(
            calc(100% - 28px),
            var(--max)
        );
    }

    .header-inner {
        height: 68px;
    }

    .navigation {
        display: none;
    }

    .hero {
        min-height: 600px;
    }

    .hero-content {
        padding: 80px 0;
    }

    .hero h1 {
        font-size: 64px;
    }

    .tagline {
        font-size: 23px;
    }

    .search-box button {
        padding: 0 15px;
    }

    .section {
        padding: 60px 0;
    }

    .section h2 {
        font-size: 41px;
    }

    .section-heading {
        align-items: flex-start;
    }

    .view-all {
        display: none;
    }

    .cheat-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .faq-inner {
        align-items: flex-start;

        flex-direction: column;
    }

    .faq-inner h2 {
        font-size: 42px;
    }

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

    .footer-grid > div:first-child {
        grid-column: 1 / -1;
    }

}


@media (max-width: 430px) {

    .logo-text {
        display: none;
    }

    .hero h1 {
        font-size: 56px;
    }

    .platforms {
        flex-wrap: wrap;
    }

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

    .footer-grid > div:first-child {
        grid-column: auto;
    }

}

/* =========================================
   GTA 6 CHEATS DATABASE
   ========================================= */

.database-hero {
    padding: 90px 0 70px;

    background:
        radial-gradient(
            circle at 80% 40%,
            rgba(139, 210, 63, 0.13),
            transparent 30%
        ),
        #0e1214;

    border-bottom: 1px solid #20282b;
}

.database-hero h1 {
    font-family: "Barlow Condensed", sans-serif;

    font-size: clamp(
        58px,
        8vw,
        90px
    );

    line-height: 0.88;

    text-transform: uppercase;

    letter-spacing: -1px;

    margin: 18px 0;
}

.database-hero h1 span {
    display: block;
}

.database-hero p {
    max-width: 680px;

    color: #a4adaf;

    font-size: 14px;
}


.database-search {
    display: flex;

    width: min(
        700px,
        100%
    );

    background: white;

    border-radius: 3px;

    overflow: hidden;

    margin-bottom: 18px;
}

.database-search input {
    flex: 1;

    min-width: 0;

    border: 0;

    outline: 0;

    padding: 17px 18px;

    color: #111;

    font: 600 14px Inter;
}

.database-search button {
    border: 0;

    padding: 0 24px;

    background: var(--green);

    color: #071006;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;

    cursor: pointer;
}

.database-search button:hover {
    background: var(--green2);
}


.cheat-filters {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 25px;
}

.filter-button {
    border: 1px solid #30393d;

    background: #111618;

    color: #a7afb1;

    padding: 9px 13px;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.7px;

    cursor: pointer;
}

.filter-button:hover,
.filter-button.active {
    background: var(--green);

    border-color: var(--green);

    color: #081006;
}


.database-status {
    display: flex;

    align-items: center;

    gap: 9px;

    flex-wrap: wrap;

    margin-bottom: 32px;

    color: #969fa2;

    font-size: 10px;
}

.database-status strong {
    color: #eeeeea;

    font-size: 9px;

    letter-spacing: 1px;
}


.database-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 14px;
}


.database-card {
    position: relative;

    min-height: 235px;

    padding: 24px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #181e21,
            #121719
        );

    border: 1px solid #293236;

    transition:
        transform .2s ease,
        border-color .2s ease;
}

.database-card:hover {
    transform: translateY(-4px);

    border-color: #586469;
}

.database-card::after {
    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

    right: -60px;
    bottom: -60px;

    border-radius: 50%;

    background:
        rgba(139, 210, 63, .08);
}


.database-number {
    color: #697376;

    font-family:
        "Barlow Condensed",
        sans-serif;

    font-size: 14px;

    font-weight: 800;
}


.database-category {
    display: inline-block;

    margin-top: 17px;

    padding: 5px 8px;

    border: 1px solid #353e42;

    color: #899295;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1px;
}


.database-card h2 {
    font-family:
        "Barlow Condensed",
        sans-serif;

    font-size: 31px;

    line-height: 1;

    text-transform: uppercase;

    margin: 15px 0 8px;
}


.database-card p {
    max-width: 300px;

    color: #98a1a4;

    font-size: 12px;
}


.database-footer {
    position: absolute;

    left: 24px;

    bottom: 22px;
}


.not-verified {
    color: var(--yellow);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;
}


.no-results {
    display: none;

    padding: 50px;

    border: 1px dashed #30393d;

    color: #8d9699;

    text-align: center;

    font-size: 13px;
}


.database-cta {
    padding: 65px 0;

    background:
        linear-gradient(
            110deg,
            #8bd23f,
            #b7e955
        );

    color: #091006;
}

.database-cta h2 {
    max-width: 650px;

    font-family:
        "Barlow Condensed",
        sans-serif;

    font-size: 48px;

    line-height: 1;

    text-transform: uppercase;

    margin: 7px 0 12px;
}

.database-cta p {
    max-width: 650px;

    font-size: 13px;

    margin-bottom: 25px;
}

.database-button {
    display: inline-block;

    padding: 14px 20px;

    background: #0b100c;

    color: white;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;
}


@media (max-width: 800px) {

    .database-hero {
        padding: 70px 0 55px;
    }

    .database-hero h1 {
        font-size: 59px;
    }

    .database-grid {
        grid-template-columns: 1fr;
    }

    .cheat-filters {
        overflow-x: auto;

        flex-wrap: nowrap;

        padding-bottom: 4px;
    }

    .filter-button {
        flex-shrink: 0;
    }

    .database-cta h2 {
        font-size: 41px;
    }

}


@media (max-width: 430px) {

    .database-hero h1 {
        font-size: 53px;
    }

    .database-search button {
        padding: 0 14px;
    }

}
