@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;500;600;700;800&display=swap');

/* =========================
   VARIABLES
========================= */

:root {
    --bg: #050914;
    --bg-header: rgba(5, 9, 20, 0.82);

    --text: #ffffff;
    --text-muted: #8e9aae;

    --blue: #168cff;
    --cyan: #00d9ff;

    --border: rgba(255, 255, 255, 0.08);

    --container: 1180px;
}


/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: "Vazirmatn", sans-serif;
}

a {
    color: inherit;
}

button,
input,
textarea,
select {
    font-family: inherit;
}


/* =========================
   COMMON
========================= */

.section-container {
    width: min(var(--container), 100%);
    margin: 0 auto;
}


/* =========================
   HEADER
========================= */

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;

    width: 100%;
    height: 82px;

    background: var(--bg-header);
    border-bottom: 1px solid var(--border);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.header-container {
    width: min(var(--container), calc(100% - 40px));
    height: 100%;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}


/* =========================
   BRAND
========================= */

.brand {
    display: flex;
    align-items: center;

    text-decoration: none;
    color: #fff;

    direction: ltr;
    flex-shrink: 0;
}

.brand-name {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1px;
}

.brand-name span {
    color: var(--cyan);
}


/* =========================
   DESKTOP NAV
========================= */

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;

    direction: rtl;
}

.main-nav a {
    color: var(--text-muted);
    text-decoration: none;

    font-size: 14px;
    font-weight: 500;

    transition: color 0.25s ease;
}

.main-nav a:hover {
    color: #fff;
}


/* =========================
   BOT BUTTON
========================= */

.bot-button {
    height: 44px;
    padding: 0 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    border-radius: 12px;

    background: linear-gradient(
        135deg,
        #078cff,
        #00cfff
    );

    color: #fff;
    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    white-space: nowrap;

    box-shadow: 0 8px 25px rgba(0, 153, 255, 0.18);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.bot-button span {
    font-size: 18px;
}

.bot-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 153, 255, 0.3);
}


/* =========================
   MOBILE MENU BUTTON
========================= */

.mobile-menu {
    width: 42px;
    height: 42px;

    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;

    background: transparent;
    border: 1px solid var(--border);
    border-radius: 10px;

    cursor: pointer;
}

.mobile-menu span {
    width: 19px;
    height: 2px;

    background: #fff;
    border-radius: 10px;
}


/* =========================
   MOBILE NAV
========================= */

.mobile-nav {
    display: none;

    position: fixed;
    top: 82px;
    right: 14px;
    left: 14px;
    z-index: 999;

    padding: 12px;

    background: rgba(8, 14, 28, 0.97);

    border: 1px solid var(--border);
    border-radius: 16px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);

    direction: rtl;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav a {
    display: block;

    padding: 13px 14px;

    color: #fff;
    text-decoration: none;

    font-size: 14px;

    border-radius: 10px;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.mobile-nav a:hover {
    background: rgba(0, 180, 255, 0.08);
    color: var(--cyan);
}


/* =========================
   HERO
========================= */

.hero {
    position: relative;

    min-height: 100vh;
    padding-top: 82px;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.hero::before,
.hero::after {
    content: "";

    position: absolute;

    border-radius: 50%;
    filter: blur(100px);
}

.hero::before {
    width: 600px;
    height: 600px;

    top: 10%;
    right: -250px;

    background: rgba(0, 174, 255, 0.08);
}

.hero::after {
    width: 450px;
    height: 450px;

    bottom: -200px;
    left: 10%;

    background: rgba(0, 100, 255, 0.06);
}

.hero-container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;

    gap: 70px;

    position: relative;
    z-index: 2;
}


/* =========================
   HERO CONTENT
========================= */

.hero-content {
    position: relative;
    z-index: 3;
}

.hero h1 {
    max-width: 650px;
    margin-bottom: 22px;

    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.35;
    font-weight: 800;

    letter-spacing: -1px;
}

.hero h1 span {
    display: block;

    color: var(--cyan);

    text-shadow:
        0 0 30px rgba(0, 217, 255, 0.22);
}

.hero-content p {
    max-width: 560px;
    margin-bottom: 30px;

    color: var(--text-muted);

    font-size: 16px;
    line-height: 2.1;
}


/* =========================
   HERO BUTTONS
========================= */

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-primary-button,
.hero-secondary-button {
    height: 50px;
    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    border-radius: 13px;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    transition: 0.25s ease;
}

.hero-primary-button {
    background: linear-gradient(
        135deg,
        #078cff,
        #00d9ff
    );

    color: #fff;

    box-shadow: 0 10px 30px rgba(0, 153, 255, 0.2);
}

.hero-primary-button:hover {
    transform: translateY(-3px);

    box-shadow: 0 15px 35px rgba(0, 153, 255, 0.32);
}

.hero-secondary-button {
    border: 1px solid var(--border);

    background: rgba(255, 255, 255, 0.025);

    color: #fff;
}

.hero-secondary-button:hover {
    background: rgba(255, 255, 255, 0.06);
}


/* =========================
   HERO VISUAL
========================= */

.hero-visual {
    min-height: 540px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================
   NEON CIRCLES
========================= */

.neon-circle {
    position: absolute;

    border: 1px solid rgba(0, 217, 255, 0.08);
    border-radius: 50%;
}

.circle-one {
    width: 480px;
    height: 480px;
}

.circle-two {
    width: 350px;
    height: 350px;

    border-color: rgba(0, 217, 255, 0.12);
}


/* =========================
   GAMING CARD
========================= */

.gaming-card {
    width: min(390px, 90%);
    padding: 22px;

    position: relative;
    z-index: 3;

    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 28px;

    background: linear-gradient(
        145deg,
        rgba(17, 31, 55, 0.96),
        rgba(5, 12, 27, 0.98)
    );

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.45),
        0 0 60px rgba(0, 174, 255, 0.08);

    backdrop-filter: blur(20px);
}


/* =========================
   CARD TOP
========================= */

.card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.online-status {
    display: flex;
    align-items: center;
    gap: 6px;

    color: #8cecff;
    font-size: 10px;
}

.online-status span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #00e5ff;

    box-shadow: 0 0 10px #00e5ff;
}

.card-menu {
    color: #68758b;
    letter-spacing: 3px;
}


/* =========================
   CARD TITLE
========================= */

.gaming-title {
    margin-top: 15px;

    text-align: center;

    font-size: 28px;
    font-weight: 800;

    letter-spacing: 4px;
}

.gaming-subtitle {
    margin-top: 3px;

    text-align: center;

    color: var(--text-muted);

    font-size: 8px;
    letter-spacing: 4px;
}


/* =========================
   MARKET ITEMS
========================= */

.market-items {
    display: flex;
    flex-direction: column;
    gap: 10px;

    margin-top: 25px;
}

.market-item {
    min-height: 65px;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 10px 12px;

    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 15px;

    background: rgba(255, 255, 255, 0.025);
}

.item-icon {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 11px;

    background: rgba(0, 217, 255, 0.08);

    color: var(--cyan);

    font-size: 19px;
}

.item-info {
    flex: 1;

    display: flex;
    flex-direction: column;
    gap: 2px;
}

.item-info strong {
    font-size: 12px;
}

.market-item b {
    color: var(--cyan);
    font-size: 20px;
}


/* =========================
   CARD BOTTOM
========================= */

.card-bottom {
    margin-top: 20px;

    display: flex;
    align-items: center;
    gap: 12px;

    color: #526176;

    font-size: 8px;
    letter-spacing: 2px;
}

.card-line {
    flex: 1;

    height: 1px;

    background: rgba(255, 255, 255, 0.06);
}


/* =========================
   ABOUT
========================= */

.about-section {
    position: relative;

    padding: 110px 20px;

    background: var(--bg);
}

.section-heading {
    max-width: 700px;

    margin: 0 auto 55px;

    text-align: center;
}

.section-heading h2 {
    margin-bottom: 18px;

    color: var(--text);

    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;

    line-height: 1.2;
}

.section-heading p {
    color: var(--text-muted);

    font-size: 16px;
    line-height: 2;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
    align-items: stretch;
}

.about-main-card {
    position: relative;

    display: flex;
    align-items: center;

    padding: 42px;

    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: 24px;

    background:
        linear-gradient(
            135deg,
            rgba(22, 140, 255, 0.1),
            rgba(0, 217, 255, 0.025)
        ),
        rgba(255, 255, 255, 0.025);
}

.about-main-card::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    top: -90px;
    left: -90px;

    border-radius: 50%;

    background: rgba(0, 217, 255, 0.12);

    filter: blur(35px);
}

.about-main-content {
    position: relative;
}

.about-main-content h3 {
    margin-bottom: 13px;

    color: var(--text);

    font-size: 25px;
    font-weight: 800;
}

.about-main-content p {
    margin-bottom: 22px;

    color: var(--text-muted);

    font-size: 14px;
    line-height: 2;
}

.about-bot-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--cyan);

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition: 0.25s ease;
}

.about-bot-link:hover {
    color: #fff;
    transform: translateX(-3px);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 18px;

    flex: 1;

    padding: 24px;

    border: 1px solid var(--border);
    border-radius: 20px;

    background: rgba(255, 255, 255, 0.025);

    transition: 0.25s ease;
}

.about-feature:hover {
    border-color: rgba(0, 217, 255, 0.25);

    background: rgba(0, 217, 255, 0.035);

    transform: translateX(-4px);
}

.about-feature-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border: 1px solid rgba(22, 140, 255, 0.25);
    border-radius: 14px;

    background: rgba(22, 140, 255, 0.08);

    color: var(--cyan);

    font-size: 12px;
    font-weight: 900;
}

.about-feature h4 {
    margin-bottom: 6px;

    color: var(--text);

    font-size: 15px;
    font-weight: 800;
}

.about-feature p {
    color: var(--text-muted);

    font-size: 12px;
    line-height: 1.9;
}


/* =========================
   FEATURES
========================= */

.features-section {
    position: relative;

    padding: 110px 20px;

    background:
        linear-gradient(
            180deg,
            var(--bg) 0%,
            #070d1b 50%,
            var(--bg) 100%
        );
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.feature-card {
    position: relative;

    min-height: 230px;

    padding: 30px;

    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: 22px;

    background: rgba(255, 255, 255, 0.025);

    transition: 0.3s ease;
}

.feature-card::before {
    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

    top: -70px;
    right: -60px;

    border-radius: 50%;

    background: rgba(0, 217, 255, 0.08);

    filter: blur(25px);

    transition: 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(0, 217, 255, 0.28);

    background: rgba(0, 217, 255, 0.035);

    transform: translateY(-5px);
}

.feature-card:hover::before {
    transform: scale(1.5);
}

.feature-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 24px;

    border: 1px solid rgba(0, 217, 255, 0.22);
    border-radius: 16px;

    background: rgba(22, 140, 255, 0.08);

    color: var(--cyan);

    font-size: 22px;
    font-weight: 800;

    box-shadow: 0 0 25px rgba(0, 217, 255, 0.06);
}

.feature-card h3 {
    margin-bottom: 10px;

    color: var(--text);

    font-size: 17px;
    font-weight: 800;
}

.feature-card p {
    color: var(--text-muted);

    font-size: 13px;
    line-height: 2;
}


/* =========================
   HOW IT WORKS
========================= */

.how-section {
    position: relative;

    padding: 110px 20px;

    background: var(--bg);
}

.steps-wrapper {
    max-width: 900px;

    margin: 0 auto 55px;
}

.step-item {
    position: relative;

    display: grid;
    grid-template-columns: 90px 1fr;

    gap: 30px;

    min-height: 155px;
}

.step-number {
    position: relative;
    z-index: 2;

    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 22px;

    background: #07101f;

    color: var(--cyan);

    font-size: 16px;
    font-weight: 900;

    box-shadow: 0 0 30px rgba(0, 217, 255, 0.08);
}

.step-line {
    position: absolute;

    top: 70px;
    left: 34px;

    width: 1px;
    height: calc(100% - 70px);

    background: linear-gradient(
        to bottom,
        rgba(0, 217, 255, 0.35),
        rgba(0, 217, 255, 0.03)
    );
}

.step-content {
    padding: 8px 0 35px;
}

.step-content > span {
    display: block;

    margin-bottom: 8px;

    color: var(--cyan);

    font-size: 11px;
    font-weight: 700;
}

.step-content h3 {
    margin-bottom: 10px;

    color: var(--text);

    font-size: 21px;
    font-weight: 800;
}

.step-content p {
    max-width: 650px;

    color: var(--text-muted);

    font-size: 14px;
    line-height: 2;
}


/* =========================
   HOW CTA
========================= */

.how-cta {
    max-width: 900px;

    margin: 0 auto;
    padding: 25px 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    border: 1px solid rgba(0, 217, 255, 0.16);
    border-radius: 20px;

    background: rgba(0, 217, 255, 0.035);
}

.how-cta div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.how-cta strong {
    color: var(--text);
    font-size: 16px;
}

.how-cta div span {
    color: var(--text-muted);
    font-size: 12px;
}

.how-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 13px 20px;

    border-radius: 12px;

    background: linear-gradient(
        135deg,
        var(--blue),
        var(--cyan)
    );

    color: #fff;

    font-size: 13px;
    font-weight: 800;

    text-decoration: none;

    box-shadow: 0 8px 25px rgba(0, 140, 255, 0.18);

    transition: 0.25s ease;
}

.how-cta a:hover {
    transform: translateY(-2px);

    box-shadow: 0 12px 30px rgba(0, 217, 255, 0.25);
}


/* =========================
   FAQ
========================= */

.faq-section {
    position: relative;

    padding: 110px 20px;

    background: var(--bg);
}

.faq-list {
    width: min(850px, 100%);

    margin: 0 auto;
}

.faq-item {
    margin-bottom: 12px;

    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: 17px;

    background: rgba(255, 255, 255, 0.025);

    transition: 0.25s ease;
}

.faq-item.active {
    border-color: rgba(0, 217, 255, 0.22);
    background: rgba(0, 217, 255, 0.035);
}

.faq-question {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 22px 25px;

    border: 0;
    outline: none;

    background: transparent;

    color: var(--text);

    font-family: inherit;
    font-size: 14px;
    font-weight: 700;

    text-align: right;

    cursor: pointer;
}

.faq-plus {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    margin-right: 15px;

    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 10px;

    color: var(--cyan);

    font-size: 20px;
    font-weight: 400;

    transition: 0.3s ease;
}

.faq-item.active .faq-plus {
    transform: rotate(45deg);

    background: rgba(0, 217, 255, 0.08);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;

    transition: grid-template-rows 0.3s ease;
}

.faq-answer p {
    min-height: 0;

    margin: 0;
    padding: 0 25px;

    overflow: hidden;

    color: var(--text-muted);

    font-size: 13px;
    line-height: 2;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-item.active .faq-answer p {
    padding-bottom: 23px;
}


/* =========================
   FOOTER
========================= */

.igmax-footer {
    width: 100%;
    margin-top: 70px;

    background: var(--bg);

    border-top: 1px solid rgba(255, 255, 255, 0.06);

    direction: rtl;
}

.igmax-footer-container {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    padding: 45px 24px 20px;
}

.igmax-footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.igmax-footer-logo {
    color: #fff;

    font-size: 27px;
    font-weight: 900;

    letter-spacing: -0.5px;
}

.igmax-footer-logo span {
    color: #27d9e8;
}

.igmax-footer-description {
    margin-top: 10px;

    color: #7f8a9d;

    font-size: 13px;
    line-height: 1.8;
}

.igmax-bot-button {
    min-width: 145px;
    height: 46px;

    padding: 0 18px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    border-radius: 12px;

    background: #27d9e8;

    color: #031017;

    text-decoration: none;

    font-size: 13px;
    font-weight: 800;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.igmax-bot-button:hover {
    transform: translateY(-2px);

    background: #35e1ef;

    box-shadow: 0 8px 25px rgba(39, 217, 232, 0.18);
}

.igmax-bot-arrow {
    font-size: 16px;
    line-height: 1;
}

.igmax-footer-copyright {
    width: 100%;

    margin-top: 30px;
    padding-top: 18px;

    border-top: 1px solid rgba(255, 255, 255, 0.06);

    text-align: center;

    color: #626d80;

    font-size: 11px;
    line-height: 1.8;
}


/* =========================
   BACK TO TOP
========================= */

.back-to-top {
    position: fixed;

    left: 24px;
    bottom: 24px;

    z-index: 9999;

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(39, 217, 232, 0.25);
    border-radius: 12px;

    background: rgba(5, 9, 20, 0.9);

    color: #27d9e8;

    font-size: 22px;
    font-weight: 700;

    cursor: pointer;

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;

    backdrop-filter: blur(8px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.back-to-top:hover {
    background: #27d9e8;

    color: #031017;

    box-shadow: 0 8px 25px rgba(39, 217, 232, 0.2);
}


/* =========================
   TABLET
========================= */

@media (max-width: 950px) {

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================
   TABLET / MOBILE
========================= */

@media (max-width: 900px) {

    .main-nav {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    .header-container {
        width: min(100% - 28px, var(--container));
    }

    .hero {
        padding-top: 110px;
        padding-bottom: 70px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .hero-content {
        text-align: center;
    }

    .hero h1 {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        min-height: 450px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 800px) {

    .about-section {
        padding: 80px 18px;
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .section-heading p {
        font-size: 14px;
        line-height: 1.9;
    }

    .about-main-card {
        flex-direction: column;
        align-items: flex-start;

        padding: 28px;
    }

    .about-main-content h3 {
        font-size: 22px;
    }

    .about-feature {
        padding: 20px;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 600px) {

    .features-section,
    .how-section,
    .faq-section {
        padding: 80px 18px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .feature-card {
        min-height: auto;
        padding: 25px;
    }

    .feature-icon {
        margin-bottom: 18px;
    }


    /* How It Works */

    .step-item {
        grid-template-columns: 65px 1fr;
        gap: 20px;

        min-height: 170px;
    }

    .step-number {
        width: 58px;
        height: 58px;

        border-radius: 18px;

        font-size: 14px;
    }

    .step-line {
        top: 58px;
        left: 28px;

        height: calc(100% - 58px);
    }

    .step-content {
        padding-top: 4px;
        padding-bottom: 35px;
    }

    .step-content h3 {
        font-size: 18px;
    }

    .step-content p {
        font-size: 13px;
        line-height: 1.9;
    }


    /* CTA */

    .how-cta {
        flex-direction: column;
        align-items: stretch;

        padding: 22px;
    }

    .how-cta a {
        justify-content: center;
    }


    /* FAQ */

    .faq-question {
        padding: 19px 18px;
        font-size: 13px;
    }

    .faq-plus {
        width: 29px;
        height: 29px;

        margin-right: 12px;
    }

    .faq-answer p {
        padding-right: 18px;
        padding-left: 18px;

        font-size: 12px;
    }

    .faq-item.active .faq-answer p {
        padding-bottom: 19px;
    }


    /* Footer */

    .igmax-footer-container {
        padding: 35px 20px 18px;
    }

    .igmax-footer-top {
        flex-direction: column;
        align-items: center;

        text-align: center;

        gap: 25px;
    }

    .igmax-footer-brand {
        width: 100%;
    }

    .igmax-footer-description {
        margin-left: auto;
        margin-right: auto;
    }

    .igmax-bot-button {
        min-width: 160px;
    }

    .igmax-footer-copyright {
        margin-top: 25px;
    }


    /* Back To Top */

    .back-to-top {
        left: 16px;
        bottom: 16px;

        width: 42px;
        height: 42px;

        border-radius: 11px;
    }

}


/* =========================
   EXTRA SMALL MOBILE
========================= */

@media (max-width: 520px) {

    .site-header {
        height: 72px;
    }

    .brand-name {
        font-size: 17px;
    }

    .bot-button {
        display: none;
    }

    .mobile-nav {
        top: 78px;
    }

    .hero {
        padding-top: 95px;
    }

    .hero-container {
        width: min(100% - 28px, var(--container));
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;

        width: 100%;
    }

    .hero-primary-button,
    .hero-secondary-button {
        width: 100%;
    }

    .hero-visual {
        min-height: 380px;
    }

    .gaming-card {
        width: 92%;
        padding: 18px;
    }

    .circle-one {
        width: 350px;
        height: 350px;
    }

    .circle-two {
        width: 270px;
        height: 270px;
    }

}