/* =========================================================
   ENGINEER YOUNAS
   MAIN WEBSITE STYLESHEET
========================================================= */


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    background: #080a0d;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

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

button {
    font-family: inherit;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    width: 100%;
    background: rgba(8, 10, 13, 0.98);
    border-bottom: 1px solid #292e36;

    position: sticky;
    top: 0;

    z-index: 99999;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header-inner {
    width: min(1180px, calc(100% - 40px));
    min-height: 78px;

    margin: auto;

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


/* =========================================================
   LOGO
========================================================= */

.logo {
    color: #ffffff;

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

    letter-spacing: 1px;

    white-space: nowrap;

    transition: 0.2s ease;
}

.logo span {
    color: #d9a441;
}

.logo:hover {
    color: #ffffff;
}

.logo:hover span {
    color: #efc263;
}


/* =========================================================
   MAIN NAVIGATION
========================================================= */

.main-nav {
    display: flex;
    align-items: center;

    gap: 26px;
}

.main-nav > a,
.games-button {
    color: #d4d7dc;

    font-size: 14px;
    font-weight: 500;

    background: none;
    border: none;

    cursor: pointer;

    transition: color 0.2s ease;
}

.main-nav > a:hover,
.games-button:hover {
    color: #e5b654;
}


/* =========================================================
   ONLINE GAMES DROPDOWN
========================================================= */

.games-dropdown {
    position: relative;
}


/* DROPDOWN BUTTON */

.games-button {
    padding: 10px 0;

    display: flex;
    align-items: center;

    gap: 7px;
}

.arrow {
    color: #d9a441;

    font-size: 9px;

    transition: transform 0.2s ease;
}


/* ROTATE ARROW */

.games-dropdown.open .arrow {
    transform: rotate(180deg);
}


/* DROPDOWN BOX */

.games-menu {
    position: absolute;

    top: 100%;
    left: 50%;

    transform: translateX(-50%);

    width: 250px;

    padding: 7px;

    margin-top: 8px;

    background: #12161c;

    border: 1px solid #30353d;

    border-radius: 9px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.6);

    display: none;

    z-index: 999999;
}


/* OPEN DROPDOWN */

.games-dropdown.open .games-menu {
    display: block;
}


/* DROPDOWN LINKS */

.games-menu a {
    display: block;

    width: 100%;

    padding: 12px 14px;

    color: #e1e3e7;

    font-size: 14px;

    border-radius: 6px;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.games-menu a:hover {
    background: #222830;

    color: #f2c766;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.mobile-menu {
    display: none;

    width: 42px;
    height: 42px;

    align-items: center;
    justify-content: center;

    background: transparent;

    border: 1px solid transparent;

    border-radius: 6px;

    color: #ffffff;

    font-size: 27px;

    cursor: pointer;

    transition: 0.2s ease;
}

.mobile-menu:hover {
    border-color: #343a43;

    color: #d9a441;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 680px;

    display: flex;
    align-items: center;

    text-align: center;

    background:
        radial-gradient(
            circle at 50% 10%,
            rgba(217, 164, 65, 0.17),
            transparent 40%
        );

    padding: 80px 20px;
}

.hero-inner {
    width: min(900px, 100%);

    margin: auto;
}

.hero-label {
    color: #e9bd5c;

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

    letter-spacing: 3px;

    margin-bottom: 18px;
}

.hero h1 {
    font-size: clamp(44px, 7vw, 76px);

    line-height: 1.05;

    letter-spacing: -3px;

    margin-bottom: 20px;
}

.hero h1 span {
    color: #d9a441;
}

.hero-text {
    max-width: 720px;

    margin: auto;

    color: #a7adb5;

    font-size: 18px;

    line-height: 1.8;
}


/* =========================================================
   LIVE BADGE
========================================================= */

.live-badge {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 28px;

    padding: 9px 16px;

    border: 1px solid #493c22;

    background: #17140e;

    border-radius: 50px;

    color: #e9bd5c;

    font-size: 13px;

    font-weight: 700;
}

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

    background: #55d982;

    border-radius: 50%;

    box-shadow:
        0 0 10px #55d982;
}


/* =========================================================
   BUTTONS
========================================================= */

.hero-buttons {
    margin-top: 35px;

    display: flex;

    justify-content: center;

    gap: 12px;

    flex-wrap: wrap;
}

.btn {
    display: inline-block;

    padding: 13px 24px;

    border-radius: 7px;

    font-size: 14px;

    font-weight: 700;

    transition:
        background 0.2s ease,
        border 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-gold {
    background: #d9a441;

    color: #080a0d;
}

.btn-gold:hover {
    background: #efc263;

    color: #080a0d;
}

.btn-dark {
    background: #161a20;

    border: 1px solid #343a43;

    color: #ffffff;
}

.btn-dark:hover {
    border-color: #d9a441;

    color: #f2c766;
}


/* =========================================================
   GENERAL CONTAINER
========================================================= */

.section-container {
    width: min(1100px, calc(100% - 40px));

    margin: auto;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {
    text-align: center;

    margin-bottom: 35px;
}

.section-heading h2 {
    font-size: 32px;

    line-height: 1.2;

    margin-bottom: 8px;
}

.section-heading h2 span {
    color: #d9a441;
}

.section-heading p {
    color: #858d98;

    font-size: 14px;
}


/* =========================================================
   SOCIAL SECTION
========================================================= */

.social-section {
    padding: 70px 20px;

    background: #0d1014;

    border-top: 1px solid #1e2329;

    border-bottom: 1px solid #1e2329;
}


/* =========================================================
   SOCIAL GRID - UPDATED FOR 7 PLATFORMS
========================================================= */

.social-grid {
    display: grid;

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

    gap: 15px;
}


/* =========================================================
   SOCIAL CARD - UPDATED WITH BETTER FOLLOW BUTTONS
========================================================= */

.social-card {
    display: block;

    padding: 25px 15px 20px;

    text-align: center;

    background: #12161c;

    border: 1px solid #292e36;

    border-radius: 10px;

    transition:
        transform 0.2s ease,
        border 0.2s ease,
        background 0.2s ease;

    position: relative;
}

.social-card:hover {
    transform: translateY(-5px);

    border-color: #d9a441;

    background: #171c23;
}

/* Social Icons - Platform Colors */

.social-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #1a1f26;
    transition: background 0.3s ease, transform 0.3s ease;
}

.social-card:hover .social-icon {
    transform: scale(1.05);
}

.social-icon svg {
    width: 26px;
    height: 26px;
}

/* Platform specific colors on hover */

.social-card:hover .social-icon.tiktok {
    background: #00f2ea;
    color: #000;
}

.social-card:hover .social-icon.facebook {
    background: #1877f2;
    color: #fff;
}

.social-card:hover .social-icon.youtube {
    background: #ff0000;
    color: #fff;
}

.social-card:hover .social-icon.instagram {
    background: radial-gradient(circle at 30% 30%, #fdf497, #fdf497 25%, #fd5949 50%, #d6249f 75%, #285aeb);
    color: #fff;
}

.social-card:hover .social-icon.x {
    background: #000;
    color: #fff;
}

.social-card:hover .social-icon.whatsapp {
    background: #25d366;
    color: #fff;
}

.social-card:hover .social-icon.telegram {
    background: #0088cc;
    color: #fff;
}

/* Default icon colors */

.social-icon.tiktok {
    color: #00f2ea;
}

.social-icon.facebook {
    color: #1877f2;
}

.social-icon.youtube {
    color: #ff0000;
}

.social-icon.instagram {
    color: #d6249f;
}

.social-icon.x {
    color: #fff;
}

.social-icon.whatsapp {
    color: #25d366;
}

.social-icon.telegram {
    color: #0088cc;
}

.social-card h3 {
    font-size: 15px;

    margin-bottom: 4px;

    color: #fff;
}

.social-card p {
    color: #7f8791;

    font-size: 12px;

    margin-bottom: 12px;
}

/* FOLLOW BUTTON - IMPROVED */

.follow-btn {
    display: inline-block;

    padding: 6px 18px;

    border-radius: 20px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.5px;

    text-transform: uppercase;

    background: #1a1f26;

    border: 1px solid #343a43;

    color: #9da4ae;

    transition: all 0.2s ease;
}

.social-card:hover .follow-btn {
    background: #d9a441;

    border-color: #d9a441;

    color: #080a0d;

    transform: translateY(-2px);
}

/* Special button variants */

.follow-btn.subscribe {
    color: #ff0000;
    border-color: #ff000033;
}

.social-card:hover .follow-btn.subscribe {
    background: #ff0000;
    border-color: #ff0000;
    color: #fff;
}

.follow-btn.join {
    color: #25d366;
    border-color: #25d36633;
}

.social-card:hover .follow-btn.join {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
}

.whatsapp-card:hover .follow-btn.join {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
}

.telegram-card:hover .follow-btn.join {
    background: #0088cc;
    border-color: #0088cc;
    color: #fff;
}


/* =========================================================
   LIVE TRADING
========================================================= */

.live-section {
    padding: 90px 20px;
}

.live-box {
    max-width: 1000px;

    margin: auto;

    padding: 50px 30px;

    text-align: center;

    background:
        linear-gradient(
            145deg,
            #151a20,
            #0f1216
        );

    border: 1px solid #343a43;

    border-radius: 14px;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.35);
}

.live-box h2 {
    font-size: 36px;

    margin-bottom: 12px;
}

.live-box h2 span {
    color: #d9a441;
}

.live-box p {
    max-width: 650px;

    margin: auto;

    color: #969ea8;

    font-size: 15px;
}

.live-time {
    margin: 25px 0;

    color: #e9bd5c;

    font-size: 17px;

    font-weight: 700;
}


/* =========================================================
   TRADING SECTION
========================================================= */

.trading-section {
    padding: 80px 20px;

    background: #0d1014;
}


/* =========================================================
   TRADING CARDS
========================================================= */

.cards {
    display: grid;

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

    gap: 20px;
}

.card {
    padding: 30px;

    background: #12161c;

    border: 1px solid #292e36;

    border-radius: 10px;

    transition:
        border 0.2s ease,
        transform 0.2s ease;
}

.card:hover {
    border-color: #d9a441;

    transform: translateY(-4px);
}

.card-icon {
    font-size: 30px;

    margin-bottom: 15px;
}

.card h3 {
    font-size: 19px;

    margin-bottom: 10px;
}

.card p {
    color: #89919c;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   ONLINE GAMES
========================================================= */

.games-section {
    padding: 90px 20px;
}

.games-grid {
    display: grid;

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

    gap: 20px;

    max-width: 900px;

    margin: auto;
}

.game-card {
    padding: 30px;

    background: #12161c;

    border: 1px solid #292e36;

    border-radius: 10px;

    transition:
        border 0.2s ease,
        transform 0.2s ease,
        background 0.2s ease;
}

.game-card:hover {
    border-color: #d9a441;

    transform: translateY(-4px);

    background: #171c23;
}

.game-card-icon {
    font-size: 40px;

    margin-bottom: 15px;
}

.game-card h3 {
    font-size: 21px;

    margin-bottom: 8px;
}

.game-card p {
    color: #89919c;

    font-size: 13px;

    margin-bottom: 20px;
}

.play-btn {
    display: inline-block;

    padding: 10px 18px;

    background: #d9a441;

    color: #080a0d;

    border-radius: 6px;

    font-size: 13px;

    font-weight: 700;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.play-btn:hover {
    background: #efc263;

    transform: translateY(-2px);
}


/* =========================================================
   ABOUT / EDUCATION
========================================================= */

.about-section {
    padding: 80px 20px;

    background: #0d1014;
}

.about-box {
    max-width: 900px;

    margin: auto;

    text-align: center;
}

.about-box h2 {
    font-size: 34px;

    margin-bottom: 18px;
}

.about-box h2 span {
    color: #d9a441;
}

.about-box p {
    color: #929aa4;

    font-size: 15px;

    line-height: 1.9;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding: 50px 20px;

    text-align: center;

    background: #080a0d;

    border-top: 1px solid #292e36;

    color: #777f89;
}

.footer-logo {
    color: #ffffff;

    font-size: 20px;

    font-weight: 800;

    letter-spacing: 1px;

    margin-bottom: 12px;
}

.footer-logo span {
    color: #d9a441;
}

.footer-links {
    margin: 20px 0;
}

.footer-links a {
    color: #9da4ae;

    margin: 0 10px;

    font-size: 13px;

    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #d9a441;
}

.footer-social {
    margin-top: 20px;
}

.footer-social a {
    display: inline-block;

    margin: 5px;

    padding: 8px 13px;

    background: #12161c;

    border: 1px solid #292e36;

    border-radius: 6px;

    font-size: 12px;

    transition:
        border 0.2s ease,
        color 0.2s ease;
}

.footer-social a:hover {
    border-color: #d9a441;

    color: #e9bd5c;
}

.copyright {
    margin-top: 25px;

    color: #5f6670;

    font-size: 11px;
}


/* =========================================================
   MOBILE RESPONSIVE
========================================================= */

@media (max-width: 850px) {

    /* HEADER */

    .header-inner {
        min-height: 70px;

        width: calc(100% - 30px);
    }


    /* MOBILE BUTTON */

    .mobile-menu {
        display: flex;
    }


    /* MAIN NAV */

    .main-nav {
        display: none;

        position: absolute;

        top: 70px;

        left: 0;

        width: 100%;

        padding: 10px 20px 18px;

        background: #080a0d;

        border-bottom: 1px solid #292e36;

        flex-direction: column;

        align-items: flex-start;

        gap: 0;

        box-shadow:
            0 20px 40px rgba(0, 0, 0, 0.45);
    }


    /* OPEN MOBILE NAV */

    .main-nav.open {
        display: flex;
    }


    /* NAV LINKS */

    .main-nav > a {
        width: 100%;

        padding: 13px 0;

        border-bottom: 1px solid #1b2026;
    }


    /* GAMES DROPDOWN */

    .games-dropdown {
        width: 100%;
    }


    .games-button {
        width: 100%;

        justify-content: space-between;

        padding: 13px 0;

        border-bottom: 1px solid #1b2026;
    }


    /* MOBILE GAMES MENU */

    .games-menu {
        position: static;

        transform: none;

        width: 100%;

        margin: 0;

        padding: 5px;

        box-shadow: none;

        border-radius: 7px;

        background: #101419;
    }


    .games-menu a {
        padding: 12px 14px;
    }


    /* SOCIAL GRID - TABLET */
    .social-grid {
        grid-template-columns: repeat(3, 1fr);
    }


    /* TRADING CARDS */

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


    /* GAMES */

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

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 500px) {

    .header-inner {
        width: calc(100% - 24px);
    }

    .logo {
        font-size: 17px;
    }

    .hero {
        min-height: 600px;

        padding: 70px 15px;
    }

    .hero h1 {
        font-size: 43px;

        letter-spacing: -2px;
    }

    .hero-text {
        font-size: 15px;
    }

    .hero-label {
        font-size: 10px;

        letter-spacing: 2px;
    }

    /* SOCIAL GRID - MOBILE */
    .social-grid {
        grid-template-columns: 1fr;
    }

    .section-heading h2 {
        font-size: 28px;
    }

    .live-box {
        padding: 35px 20px;
    }

    .live-box h2 {
        font-size: 29px;
    }

    .live-box p {
        font-size: 14px;
    }

    .btn {
        width: 100%;

        max-width: 280px;

        text-align: center;
    }

    .game-card {
        padding: 25px;
    }

    .about-box h2 {
        font-size: 29px;
    }

    .about-box p {
        font-size: 14px;
    }

    .footer-links a {
        display: inline-block;

        margin: 5px 8px;
    }

}


/* =========================================================
   VERY SMALL SCREENS
========================================================= */

@media (max-width: 350px) {

    .logo {
        font-size: 15px;
    }

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

    .live-badge {
        font-size: 11px;
    }

}/* =========================================================
   ENGINEER YOUNAS
   MAIN WEBSITE STYLESHEET
========================================================= */


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    background: #080a0d;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

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

button {
    font-family: inherit;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    width: 100%;
    background: rgba(8, 10, 13, 0.98);
    border-bottom: 1px solid #292e36;

    position: sticky;
    top: 0;

    z-index: 99999;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header-inner {
    width: min(1180px, calc(100% - 40px));
    min-height: 78px;

    margin: auto;

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


/* =========================================================
   LOGO
========================================================= */

.logo {
    color: #ffffff;

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

    letter-spacing: 1px;

    white-space: nowrap;

    transition: 0.2s ease;
}

.logo span {
    color: #d9a441;
}

.logo:hover {
    color: #ffffff;
}

.logo:hover span {
    color: #efc263;
}


/* =========================================================
   MAIN NAVIGATION
========================================================= */

.main-nav {
    display: flex;
    align-items: center;

    gap: 26px;
}

.main-nav > a,
.games-button {
    color: #d4d7dc;

    font-size: 14px;
    font-weight: 500;

    background: none;
    border: none;

    cursor: pointer;

    transition: color 0.2s ease;
}

.main-nav > a:hover,
.games-button:hover {
    color: #e5b654;
}


/* =========================================================
   ONLINE GAMES DROPDOWN
========================================================= */

.games-dropdown {
    position: relative;
}


/* DROPDOWN BUTTON */

.games-button {
    padding: 10px 0;

    display: flex;
    align-items: center;

    gap: 7px;
}

.arrow {
    color: #d9a441;

    font-size: 9px;

    transition: transform 0.2s ease;
}


/* ROTATE ARROW */

.games-dropdown.open .arrow {
    transform: rotate(180deg);
}


/* DROPDOWN BOX */

.games-menu {
    position: absolute;

    top: 100%;
    left: 50%;

    transform: translateX(-50%);

    width: 250px;

    padding: 7px;

    margin-top: 8px;

    background: #12161c;

    border: 1px solid #30353d;

    border-radius: 9px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.6);

    display: none;

    z-index: 999999;
}


/* OPEN DROPDOWN */

.games-dropdown.open .games-menu {
    display: block;
}


/* DROPDOWN LINKS */

.games-menu a {
    display: block;

    width: 100%;

    padding: 12px 14px;

    color: #e1e3e7;

    font-size: 14px;

    border-radius: 6px;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.games-menu a:hover {
    background: #222830;

    color: #f2c766;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.mobile-menu {
    display: none;

    width: 42px;
    height: 42px;

    align-items: center;
    justify-content: center;

    background: transparent;

    border: 1px solid transparent;

    border-radius: 6px;

    color: #ffffff;

    font-size: 27px;

    cursor: pointer;

    transition: 0.2s ease;
}

.mobile-menu:hover {
    border-color: #343a43;

    color: #d9a441;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 680px;

    display: flex;
    align-items: center;

    text-align: center;

    background:
        radial-gradient(
            circle at 50% 10%,
            rgba(217, 164, 65, 0.17),
            transparent 40%
        );

    padding: 80px 20px;
}

.hero-inner {
    width: min(900px, 100%);

    margin: auto;
}

.hero-label {
    color: #e9bd5c;

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

    letter-spacing: 3px;

    margin-bottom: 18px;
}

.hero h1 {
    font-size: clamp(44px, 7vw, 76px);

    line-height: 1.05;

    letter-spacing: -3px;

    margin-bottom: 20px;
}

.hero h1 span {
    color: #d9a441;
}

.hero-text {
    max-width: 720px;

    margin: auto;

    color: #a7adb5;

    font-size: 18px;

    line-height: 1.8;
}


/* =========================================================
   LIVE BADGE
========================================================= */

.live-badge {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 28px;

    padding: 9px 16px;

    border: 1px solid #493c22;

    background: #17140e;

    border-radius: 50px;

    color: #e9bd5c;

    font-size: 13px;

    font-weight: 700;
}

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

    background: #55d982;

    border-radius: 50%;

    box-shadow:
        0 0 10px #55d982;
}


/* =========================================================
   BUTTONS
========================================================= */

.hero-buttons {
    margin-top: 35px;

    display: flex;

    justify-content: center;

    gap: 12px;

    flex-wrap: wrap;
}

.btn {
    display: inline-block;

    padding: 13px 24px;

    border-radius: 7px;

    font-size: 14px;

    font-weight: 700;

    transition:
        background 0.2s ease,
        border 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-gold {
    background: #d9a441;

    color: #080a0d;
}

.btn-gold:hover {
    background: #efc263;

    color: #080a0d;
}

.btn-dark {
    background: #161a20;

    border: 1px solid #343a43;

    color: #ffffff;
}

.btn-dark:hover {
    border-color: #d9a441;

    color: #f2c766;
}


/* =========================================================
   GENERAL CONTAINER
========================================================= */

.section-container {
    width: min(1100px, calc(100% - 40px));

    margin: auto;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {
    text-align: center;

    margin-bottom: 35px;
}

.section-heading h2 {
    font-size: 32px;

    line-height: 1.2;

    margin-bottom: 8px;
}

.section-heading h2 span {
    color: #d9a441;
}

.section-heading p {
    color: #858d98;

    font-size: 14px;
}


/* =========================================================
   SOCIAL SECTION
========================================================= */

.social-section {
    padding: 70px 20px;

    background: #0d1014;

    border-top: 1px solid #1e2329;

    border-bottom: 1px solid #1e2329;
}


/* =========================================================
   SOCIAL GRID - UPDATED FOR 7 PLATFORMS
========================================================= */

.social-grid {
    display: grid;

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

    gap: 15px;
}


/* =========================================================
   SOCIAL CARD - UPDATED WITH BETTER FOLLOW BUTTONS
========================================================= */

.social-card {
    display: block;

    padding: 25px 15px 20px;

    text-align: center;

    background: #12161c;

    border: 1px solid #292e36;

    border-radius: 10px;

    transition:
        transform 0.2s ease,
        border 0.2s ease,
        background 0.2s ease;

    position: relative;
}

.social-card:hover {
    transform: translateY(-5px);

    border-color: #d9a441;

    background: #171c23;
}

/* Social Icons - Platform Colors */

.social-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #1a1f26;
    transition: background 0.3s ease, transform 0.3s ease;
}

.social-card:hover .social-icon {
    transform: scale(1.05);
}

.social-icon svg {
    width: 26px;
    height: 26px;
}

/* Platform specific colors on hover */

.social-card:hover .social-icon.tiktok {
    background: #00f2ea;
    color: #000;
}

.social-card:hover .social-icon.facebook {
    background: #1877f2;
    color: #fff;
}

.social-card:hover .social-icon.youtube {
    background: #ff0000;
    color: #fff;
}

.social-card:hover .social-icon.instagram {
    background: radial-gradient(circle at 30% 30%, #fdf497, #fdf497 25%, #fd5949 50%, #d6249f 75%, #285aeb);
    color: #fff;
}

.social-card:hover .social-icon.x {
    background: #000;
    color: #fff;
}

.social-card:hover .social-icon.whatsapp {
    background: #25d366;
    color: #fff;
}

.social-card:hover .social-icon.telegram {
    background: #0088cc;
    color: #fff;
}

/* Default icon colors */

.social-icon.tiktok {
    color: #00f2ea;
}

.social-icon.facebook {
    color: #1877f2;
}

.social-icon.youtube {
    color: #ff0000;
}

.social-icon.instagram {
    color: #d6249f;
}

.social-icon.x {
    color: #fff;
}

.social-icon.whatsapp {
    color: #25d366;
}

.social-icon.telegram {
    color: #0088cc;
}

.social-card h3 {
    font-size: 15px;

    margin-bottom: 4px;

    color: #fff;
}

.social-card p {
    color: #7f8791;

    font-size: 12px;

    margin-bottom: 12px;
}

/* FOLLOW BUTTON - IMPROVED */

.follow-btn {
    display: inline-block;

    padding: 6px 18px;

    border-radius: 20px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.5px;

    text-transform: uppercase;

    background: #1a1f26;

    border: 1px solid #343a43;

    color: #9da4ae;

    transition: all 0.2s ease;
}

.social-card:hover .follow-btn {
    background: #d9a441;

    border-color: #d9a441;

    color: #080a0d;

    transform: translateY(-2px);
}

/* Special button variants */

.follow-btn.subscribe {
    color: #ff0000;
    border-color: #ff000033;
}

.social-card:hover .follow-btn.subscribe {
    background: #ff0000;
    border-color: #ff0000;
    color: #fff;
}

.follow-btn.join {
    color: #25d366;
    border-color: #25d36633;
}

.social-card:hover .follow-btn.join {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
}

.whatsapp-card:hover .follow-btn.join {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
}

.telegram-card:hover .follow-btn.join {
    background: #0088cc;
    border-color: #0088cc;
    color: #fff;
}


/* =========================================================
   LIVE TRADING
========================================================= */

.live-section {
    padding: 90px 20px;
}

.live-box {
    max-width: 1000px;

    margin: auto;

    padding: 50px 30px;

    text-align: center;

    background:
        linear-gradient(
            145deg,
            #151a20,
            #0f1216
        );

    border: 1px solid #343a43;

    border-radius: 14px;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.35);
}

.live-box h2 {
    font-size: 36px;

    margin-bottom: 12px;
}

.live-box h2 span {
    color: #d9a441;
}

.live-box p {
    max-width: 650px;

    margin: auto;

    color: #969ea8;

    font-size: 15px;
}

.live-time {
    margin: 25px 0;

    color: #e9bd5c;

    font-size: 17px;

    font-weight: 700;
}


/* =========================================================
   TRADING SECTION
========================================================= */

.trading-section {
    padding: 80px 20px;

    background: #0d1014;
}


/* =========================================================
   TRADING CARDS
========================================================= */

.cards {
    display: grid;

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

    gap: 20px;
}

.card {
    padding: 30px;

    background: #12161c;

    border: 1px solid #292e36;

    border-radius: 10px;

    transition:
        border 0.2s ease,
        transform 0.2s ease;
}

.card:hover {
    border-color: #d9a441;

    transform: translateY(-4px);
}

.card-icon {
    font-size: 30px;

    margin-bottom: 15px;
}

.card h3 {
    font-size: 19px;

    margin-bottom: 10px;
}

.card p {
    color: #89919c;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   ONLINE GAMES
========================================================= */

.games-section {
    padding: 90px 20px;
}

.games-grid {
    display: grid;

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

    gap: 20px;

    max-width: 900px;

    margin: auto;
}

.game-card {
    padding: 30px;

    background: #12161c;

    border: 1px solid #292e36;

    border-radius: 10px;

    transition:
        border 0.2s ease,
        transform 0.2s ease,
        background 0.2s ease;
}

.game-card:hover {
    border-color: #d9a441;

    transform: translateY(-4px);

    background: #171c23;
}

.game-card-icon {
    font-size: 40px;

    margin-bottom: 15px;
}

.game-card h3 {
    font-size: 21px;

    margin-bottom: 8px;
}

.game-card p {
    color: #89919c;

    font-size: 13px;

    margin-bottom: 20px;
}

.play-btn {
    display: inline-block;

    padding: 10px 18px;

    background: #d9a441;

    color: #080a0d;

    border-radius: 6px;

    font-size: 13px;

    font-weight: 700;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.play-btn:hover {
    background: #efc263;

    transform: translateY(-2px);
}


/* =========================================================
   ABOUT / EDUCATION
========================================================= */

.about-section {
    padding: 80px 20px;

    background: #0d1014;
}

.about-box {
    max-width: 900px;

    margin: auto;

    text-align: center;
}

.about-box h2 {
    font-size: 34px;

    margin-bottom: 18px;
}

.about-box h2 span {
    color: #d9a441;
}

.about-box p {
    color: #929aa4;

    font-size: 15px;

    line-height: 1.9;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding: 50px 20px;

    text-align: center;

    background: #080a0d;

    border-top: 1px solid #292e36;

    color: #777f89;
}

.footer-logo {
    color: #ffffff;

    font-size: 20px;

    font-weight: 800;

    letter-spacing: 1px;

    margin-bottom: 12px;
}

.footer-logo span {
    color: #d9a441;
}

.footer-links {
    margin: 20px 0;
}

.footer-links a {
    color: #9da4ae;

    margin: 0 10px;

    font-size: 13px;

    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #d9a441;
}

.footer-social {
    margin-top: 20px;
}

.footer-social a {
    display: inline-block;

    margin: 5px;

    padding: 8px 13px;

    background: #12161c;

    border: 1px solid #292e36;

    border-radius: 6px;

    font-size: 12px;

    transition:
        border 0.2s ease,
        color 0.2s ease;
}

.footer-social a:hover {
    border-color: #d9a441;

    color: #e9bd5c;
}

.copyright {
    margin-top: 25px;

    color: #5f6670;

    font-size: 11px;
}


/* =========================================================
   MOBILE RESPONSIVE
========================================================= */

@media (max-width: 850px) {

    /* HEADER */

    .header-inner {
        min-height: 70px;

        width: calc(100% - 30px);
    }


    /* MOBILE BUTTON */

    .mobile-menu {
        display: flex;
    }


    /* MAIN NAV */

    .main-nav {
        display: none;

        position: absolute;

        top: 70px;

        left: 0;

        width: 100%;

        padding: 10px 20px 18px;

        background: #080a0d;

        border-bottom: 1px solid #292e36;

        flex-direction: column;

        align-items: flex-start;

        gap: 0;

        box-shadow:
            0 20px 40px rgba(0, 0, 0, 0.45);
    }


    /* OPEN MOBILE NAV */

    .main-nav.open {
        display: flex;
    }


    /* NAV LINKS */

    .main-nav > a {
        width: 100%;

        padding: 13px 0;

        border-bottom: 1px solid #1b2026;
    }


    /* GAMES DROPDOWN */

    .games-dropdown {
        width: 100%;
    }


    .games-button {
        width: 100%;

        justify-content: space-between;

        padding: 13px 0;

        border-bottom: 1px solid #1b2026;
    }


    /* MOBILE GAMES MENU */

    .games-menu {
        position: static;

        transform: none;

        width: 100%;

        margin: 0;

        padding: 5px;

        box-shadow: none;

        border-radius: 7px;

        background: #101419;
    }


    .games-menu a {
        padding: 12px 14px;
    }


    /* SOCIAL GRID - TABLET */
    .social-grid {
        grid-template-columns: repeat(3, 1fr);
    }


    /* TRADING CARDS */

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


    /* GAMES */

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

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 500px) {

    .header-inner {
        width: calc(100% - 24px);
    }

    .logo {
        font-size: 17px;
    }

    .hero {
        min-height: 600px;

        padding: 70px 15px;
    }

    .hero h1 {
        font-size: 43px;

        letter-spacing: -2px;
    }

    .hero-text {
        font-size: 15px;
    }

    .hero-label {
        font-size: 10px;

        letter-spacing: 2px;
    }

    /* SOCIAL GRID - MOBILE */
    .social-grid {
        grid-template-columns: 1fr;
    }

    .section-heading h2 {
        font-size: 28px;
    }

    .live-box {
        padding: 35px 20px;
    }

    .live-box h2 {
        font-size: 29px;
    }

    .live-box p {
        font-size: 14px;
    }

    .btn {
        width: 100%;

        max-width: 280px;

        text-align: center;
    }

    .game-card {
        padding: 25px;
    }

    .about-box h2 {
        font-size: 29px;
    }

    .about-box p {
        font-size: 14px;
    }

    .footer-links a {
        display: inline-block;

        margin: 5px 8px;
    }

}


/* =========================================================
   VERY SMALL SCREENS
========================================================= */

@media (max-width: 350px) {

    .logo {
        font-size: 15px;
    }

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

    .live-badge {
        font-size: 11px;
    }

}/* =========================================================
   ENGINEER YOUNAS
   MAIN WEBSITE STYLESHEET
========================================================= */


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    background: #080a0d;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

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

button {
    font-family: inherit;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    width: 100%;
    background: rgba(8, 10, 13, 0.98);
    border-bottom: 1px solid #292e36;

    position: sticky;
    top: 0;

    z-index: 99999;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header-inner {
    width: min(1180px, calc(100% - 40px));
    min-height: 78px;

    margin: auto;

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


/* =========================================================
   LOGO
========================================================= */

.logo {
    color: #ffffff;

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

    letter-spacing: 1px;

    white-space: nowrap;

    transition: 0.2s ease;
}

.logo span {
    color: #d9a441;
}

.logo:hover {
    color: #ffffff;
}

.logo:hover span {
    color: #efc263;
}


/* =========================================================
   MAIN NAVIGATION
========================================================= */

.main-nav {
    display: flex;
    align-items: center;

    gap: 26px;
}

.main-nav > a,
.games-button {
    color: #d4d7dc;

    font-size: 14px;
    font-weight: 500;

    background: none;
    border: none;

    cursor: pointer;

    transition: color 0.2s ease;
}

.main-nav > a:hover,
.games-button:hover {
    color: #e5b654;
}


/* =========================================================
   ONLINE GAMES DROPDOWN
========================================================= */

.games-dropdown {
    position: relative;
}


/* DROPDOWN BUTTON */

.games-button {
    padding: 10px 0;

    display: flex;
    align-items: center;

    gap: 7px;
}

.arrow {
    color: #d9a441;

    font-size: 9px;

    transition: transform 0.2s ease;
}


/* ROTATE ARROW */

.games-dropdown.open .arrow {
    transform: rotate(180deg);
}


/* DROPDOWN BOX */

.games-menu {
    position: absolute;

    top: 100%;
    left: 50%;

    transform: translateX(-50%);

    width: 250px;

    padding: 7px;

    margin-top: 8px;

    background: #12161c;

    border: 1px solid #30353d;

    border-radius: 9px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.6);

    display: none;

    z-index: 999999;
}


/* OPEN DROPDOWN */

.games-dropdown.open .games-menu {
    display: block;
}


/* DROPDOWN LINKS */

.games-menu a {
    display: block;

    width: 100%;

    padding: 12px 14px;

    color: #e1e3e7;

    font-size: 14px;

    border-radius: 6px;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.games-menu a:hover {
    background: #222830;

    color: #f2c766;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.mobile-menu {
    display: none;

    width: 42px;
    height: 42px;

    align-items: center;
    justify-content: center;

    background: transparent;

    border: 1px solid transparent;

    border-radius: 6px;

    color: #ffffff;

    font-size: 27px;

    cursor: pointer;

    transition: 0.2s ease;
}

.mobile-menu:hover {
    border-color: #343a43;

    color: #d9a441;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 680px;

    display: flex;
    align-items: center;

    text-align: center;

    background:
        radial-gradient(
            circle at 50% 10%,
            rgba(217, 164, 65, 0.17),
            transparent 40%
        );

    padding: 80px 20px;
}

.hero-inner {
    width: min(900px, 100%);

    margin: auto;
}

.hero-label {
    color: #e9bd5c;

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

    letter-spacing: 3px;

    margin-bottom: 18px;
}

.hero h1 {
    font-size: clamp(44px, 7vw, 76px);

    line-height: 1.05;

    letter-spacing: -3px;

    margin-bottom: 20px;
}

.hero h1 span {
    color: #d9a441;
}

.hero-text {
    max-width: 720px;

    margin: auto;

    color: #a7adb5;

    font-size: 18px;

    line-height: 1.8;
}


/* =========================================================
   LIVE BADGE
========================================================= */

.live-badge {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 28px;

    padding: 9px 16px;

    border: 1px solid #493c22;

    background: #17140e;

    border-radius: 50px;

    color: #e9bd5c;

    font-size: 13px;

    font-weight: 700;
}

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

    background: #55d982;

    border-radius: 50%;

    box-shadow:
        0 0 10px #55d982;
}


/* =========================================================
   BUTTONS
========================================================= */

.hero-buttons {
    margin-top: 35px;

    display: flex;

    justify-content: center;

    gap: 12px;

    flex-wrap: wrap;
}

.btn {
    display: inline-block;

    padding: 13px 24px;

    border-radius: 7px;

    font-size: 14px;

    font-weight: 700;

    transition:
        background 0.2s ease,
        border 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-gold {
    background: #d9a441;

    color: #080a0d;
}

.btn-gold:hover {
    background: #efc263;

    color: #080a0d;
}

.btn-dark {
    background: #161a20;

    border: 1px solid #343a43;

    color: #ffffff;
}

.btn-dark:hover {
    border-color: #d9a441;

    color: #f2c766;
}


/* =========================================================
   GENERAL CONTAINER
========================================================= */

.section-container {
    width: min(1100px, calc(100% - 40px));

    margin: auto;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {
    text-align: center;

    margin-bottom: 35px;
}

.section-heading h2 {
    font-size: 32px;

    line-height: 1.2;

    margin-bottom: 8px;
}

.section-heading h2 span {
    color: #d9a441;
}

.section-heading p {
    color: #858d98;

    font-size: 14px;
}


/* =========================================================
   SOCIAL SECTION
========================================================= */

.social-section {
    padding: 70px 20px;

    background: #0d1014;

    border-top: 1px solid #1e2329;

    border-bottom: 1px solid #1e2329;
}


/* =========================================================
   SOCIAL GRID - UPDATED FOR 7 PLATFORMS
========================================================= */

.social-grid {
    display: grid;

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

    gap: 15px;
}


/* =========================================================
   SOCIAL CARD - UPDATED WITH BETTER FOLLOW BUTTONS
========================================================= */

.social-card {
    display: block;

    padding: 25px 15px 20px;

    text-align: center;

    background: #12161c;

    border: 1px solid #292e36;

    border-radius: 10px;

    transition:
        transform 0.2s ease,
        border 0.2s ease,
        background 0.2s ease;

    position: relative;
}

.social-card:hover {
    transform: translateY(-5px);

    border-color: #d9a441;

    background: #171c23;
}

/* Social Icons - Platform Colors */

.social-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #1a1f26;
    transition: background 0.3s ease, transform 0.3s ease;
}

.social-card:hover .social-icon {
    transform: scale(1.05);
}

.social-icon svg {
    width: 26px;
    height: 26px;
}

/* Platform specific colors on hover */

.social-card:hover .social-icon.tiktok {
    background: #00f2ea;
    color: #000;
}

.social-card:hover .social-icon.facebook {
    background: #1877f2;
    color: #fff;
}

.social-card:hover .social-icon.youtube {
    background: #ff0000;
    color: #fff;
}

.social-card:hover .social-icon.instagram {
    background: radial-gradient(circle at 30% 30%, #fdf497, #fdf497 25%, #fd5949 50%, #d6249f 75%, #285aeb);
    color: #fff;
}

.social-card:hover .social-icon.x {
    background: #000;
    color: #fff;
}

.social-card:hover .social-icon.whatsapp {
    background: #25d366;
    color: #fff;
}

.social-card:hover .social-icon.telegram {
    background: #0088cc;
    color: #fff;
}

/* Default icon colors */

.social-icon.tiktok {
    color: #00f2ea;
}

.social-icon.facebook {
    color: #1877f2;
}

.social-icon.youtube {
    color: #ff0000;
}

.social-icon.instagram {
    color: #d6249f;
}

.social-icon.x {
    color: #fff;
}

.social-icon.whatsapp {
    color: #25d366;
}

.social-icon.telegram {
    color: #0088cc;
}

.social-card h3 {
    font-size: 15px;

    margin-bottom: 4px;

    color: #fff;
}

.social-card p {
    color: #7f8791;

    font-size: 12px;

    margin-bottom: 12px;
}

/* FOLLOW BUTTON - IMPROVED */

.follow-btn {
    display: inline-block;

    padding: 6px 18px;

    border-radius: 20px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.5px;

    text-transform: uppercase;

    background: #1a1f26;

    border: 1px solid #343a43;

    color: #9da4ae;

    transition: all 0.2s ease;
}

.social-card:hover .follow-btn {
    background: #d9a441;

    border-color: #d9a441;

    color: #080a0d;

    transform: translateY(-2px);
}

/* Special button variants */

.follow-btn.subscribe {
    color: #ff0000;
    border-color: #ff000033;
}

.social-card:hover .follow-btn.subscribe {
    background: #ff0000;
    border-color: #ff0000;
    color: #fff;
}

.follow-btn.join {
    color: #25d366;
    border-color: #25d36633;
}

.social-card:hover .follow-btn.join {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
}

.whatsapp-card:hover .follow-btn.join {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
}

.telegram-card:hover .follow-btn.join {
    background: #0088cc;
    border-color: #0088cc;
    color: #fff;
}


/* =========================================================
   LIVE TRADING
========================================================= */

.live-section {
    padding: 90px 20px;
}

.live-box {
    max-width: 1000px;

    margin: auto;

    padding: 50px 30px;

    text-align: center;

    background:
        linear-gradient(
            145deg,
            #151a20,
            #0f1216
        );

    border: 1px solid #343a43;

    border-radius: 14px;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.35);
}

.live-box h2 {
    font-size: 36px;

    margin-bottom: 12px;
}

.live-box h2 span {
    color: #d9a441;
}

.live-box p {
    max-width: 650px;

    margin: auto;

    color: #969ea8;

    font-size: 15px;
}

.live-time {
    margin: 25px 0;

    color: #e9bd5c;

    font-size: 17px;

    font-weight: 700;
}


/* =========================================================
   TRADING SECTION
========================================================= */

.trading-section {
    padding: 80px 20px;

    background: #0d1014;
}


/* =========================================================
   TRADING CARDS
========================================================= */

.cards {
    display: grid;

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

    gap: 20px;
}

.card {
    padding: 30px;

    background: #12161c;

    border: 1px solid #292e36;

    border-radius: 10px;

    transition:
        border 0.2s ease,
        transform 0.2s ease;
}

.card:hover {
    border-color: #d9a441;

    transform: translateY(-4px);
}

.card-icon {
    font-size: 30px;

    margin-bottom: 15px;
}

.card h3 {
    font-size: 19px;

    margin-bottom: 10px;
}

.card p {
    color: #89919c;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   ONLINE GAMES
========================================================= */

.games-section {
    padding: 90px 20px;
}

.games-grid {
    display: grid;

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

    gap: 20px;

    max-width: 900px;

    margin: auto;
}

.game-card {
    padding: 30px;

    background: #12161c;

    border: 1px solid #292e36;

    border-radius: 10px;

    transition:
        border 0.2s ease,
        transform 0.2s ease,
        background 0.2s ease;
}

.game-card:hover {
    border-color: #d9a441;

    transform: translateY(-4px);

    background: #171c23;
}

.game-card-icon {
    font-size: 40px;

    margin-bottom: 15px;
}

.game-card h3 {
    font-size: 21px;

    margin-bottom: 8px;
}

.game-card p {
    color: #89919c;

    font-size: 13px;

    margin-bottom: 20px;
}

.play-btn {
    display: inline-block;

    padding: 10px 18px;

    background: #d9a441;

    color: #080a0d;

    border-radius: 6px;

    font-size: 13px;

    font-weight: 700;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.play-btn:hover {
    background: #efc263;

    transform: translateY(-2px);
}


/* =========================================================
   ABOUT / EDUCATION
========================================================= */

.about-section {
    padding: 80px 20px;

    background: #0d1014;
}

.about-box {
    max-width: 900px;

    margin: auto;

    text-align: center;
}

.about-box h2 {
    font-size: 34px;

    margin-bottom: 18px;
}

.about-box h2 span {
    color: #d9a441;
}

.about-box p {
    color: #929aa4;

    font-size: 15px;

    line-height: 1.9;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding: 50px 20px;

    text-align: center;

    background: #080a0d;

    border-top: 1px solid #292e36;

    color: #777f89;
}

.footer-logo {
    color: #ffffff;

    font-size: 20px;

    font-weight: 800;

    letter-spacing: 1px;

    margin-bottom: 12px;
}

.footer-logo span {
    color: #d9a441;
}

.footer-links {
    margin: 20px 0;
}

.footer-links a {
    color: #9da4ae;

    margin: 0 10px;

    font-size: 13px;

    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #d9a441;
}

.footer-social {
    margin-top: 20px;
}

.footer-social a {
    display: inline-block;

    margin: 5px;

    padding: 8px 13px;

    background: #12161c;

    border: 1px solid #292e36;

    border-radius: 6px;

    font-size: 12px;

    transition:
        border 0.2s ease,
        color 0.2s ease;
}

.footer-social a:hover {
    border-color: #d9a441;

    color: #e9bd5c;
}

.copyright {
    margin-top: 25px;

    color: #5f6670;

    font-size: 11px;
}


/* =========================================================
   MOBILE RESPONSIVE
========================================================= */

@media (max-width: 850px) {

    /* HEADER */

    .header-inner {
        min-height: 70px;

        width: calc(100% - 30px);
    }


    /* MOBILE BUTTON */

    .mobile-menu {
        display: flex;
    }


    /* MAIN NAV */

    .main-nav {
        display: none;

        position: absolute;

        top: 70px;

        left: 0;

        width: 100%;

        padding: 10px 20px 18px;

        background: #080a0d;

        border-bottom: 1px solid #292e36;

        flex-direction: column;

        align-items: flex-start;

        gap: 0;

        box-shadow:
            0 20px 40px rgba(0, 0, 0, 0.45);
    }


    /* OPEN MOBILE NAV */

    .main-nav.open {
        display: flex;
    }


    /* NAV LINKS */

    .main-nav > a {
        width: 100%;

        padding: 13px 0;

        border-bottom: 1px solid #1b2026;
    }


    /* GAMES DROPDOWN */

    .games-dropdown {
        width: 100%;
    }


    .games-button {
        width: 100%;

        justify-content: space-between;

        padding: 13px 0;

        border-bottom: 1px solid #1b2026;
    }


    /* MOBILE GAMES MENU */

    .games-menu {
        position: static;

        transform: none;

        width: 100%;

        margin: 0;

        padding: 5px;

        box-shadow: none;

        border-radius: 7px;

        background: #101419;
    }


    .games-menu a {
        padding: 12px 14px;
    }


    /* SOCIAL GRID - TABLET */
    .social-grid {
        grid-template-columns: repeat(3, 1fr);
    }


    /* TRADING CARDS */

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


    /* GAMES */

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

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 500px) {

    .header-inner {
        width: calc(100% - 24px);
    }

    .logo {
        font-size: 17px;
    }

    .hero {
        min-height: 600px;

        padding: 70px 15px;
    }

    .hero h1 {
        font-size: 43px;

        letter-spacing: -2px;
    }

    .hero-text {
        font-size: 15px;
    }

    .hero-label {
        font-size: 10px;

        letter-spacing: 2px;
    }

    /* SOCIAL GRID - MOBILE */
    .social-grid {
        grid-template-columns: 1fr;
    }

    .section-heading h2 {
        font-size: 28px;
    }

    .live-box {
        padding: 35px 20px;
    }

    .live-box h2 {
        font-size: 29px;
    }

    .live-box p {
        font-size: 14px;
    }

    .btn {
        width: 100%;

        max-width: 280px;

        text-align: center;
    }

    .game-card {
        padding: 25px;
    }

    .about-box h2 {
        font-size: 29px;
    }

    .about-box p {
        font-size: 14px;
    }

    .footer-links a {
        display: inline-block;

        margin: 5px 8px;
    }

}


/* =========================================================
   VERY SMALL SCREENS
========================================================= */

@media (max-width: 350px) {

    .logo {
        font-size: 15px;
    }

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

    .live-badge {
        font-size: 11px;
    }

}