
        *,
        *::after,
        **::before {
            box-sizing: border-box;
        }

        :root {
            --orange: #FDC730;
            --cubic: cubic-bezier(0.4, 0, 0.2, 1);
        }

        .orange {
            color: var(--orange)
        }

        .gcb-logo {
            width: 100%;
            display: grid;
            place-items: center;
            margin: 1em 0
        }

        .gcb-logo img {
            width: 80px
        }

        body {
            line-height: 1.5;
            padding: 0;
            margin: 0;
            background-image: url('assets/bg.png');
            background-position: top center;
            background-repeat: no-repeat;
            font-family: "Open Sans", Arial, Helvetica, sans-serif;
        }

        img {
            max-width: 100%;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        a.pure-link {
            color: #fff;
            display: inline-block;
            width: 100%;
            text-align: center;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            gap: .5em;
            margin: 1em auto;
            font-family: 'Arial', sans-serif;
            font-weight: 700;
            font-size: 1.2em;
            /*background: rgba(0, 0, 0, 0.5);*/
            border-radius: 6px;
            width: 80%;
            padding: .25em 0;
            text-shadow: 0 0 11px #000;
        }

        .pure-link svg {
            width: 1em
        }

        ul,
        li {
            padding: 0;
            margin: 0;
            list-style-type: none;
        }

        .container {
            max-width: 1400px;
            width: 100%;
            margin-left: auto;
            margin-right: auto;
            position: relative;
        }

        /* Header */

        .header {
            position: relative;
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            background: linear-gradient(to left, transparent 0%, rgb(28 31 44 / 0.7) 20%, rgb(28 31 44 / 1) 50%, rgb(28 31 44 / 0.7) 80%, transparent 100%);
            margin-top: 6em
        }

        .header::after {
            content: "";
            position: absolute;
            top: -4px;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(to left, transparent 0%, #FDC730 20%, #FDC730, #FDC730 80%, transparent 100%);
            z-index: 1;
        }

        .logo {
            position: relative;
            z-index: 3;
            margin-top: -2.5em;
            transform: translateY(1em)
        }

        .logo img {
            width: 300px;
        }

        .logoback {
            position: absolute;
            bottom: -1.5em;
            width: 400px;
            height: 100%;
            background: rgb(28 31 44 / 0.85);
            clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
            z-index: 1;
            backdrop-filter: blur(5px);
        }

        .header .container {
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
        }

        .header ul {
            position: absolute;
            right: 0;
            display: grid;
            grid-template-columns: auto auto;
        }

        .header ul li {
            transform: skew(-11deg);
            position: relative;
        }

        .header ul li a {
            padding: 1.75em 2em;
            color: #fff;
            position: relative;
            transform: skew(11deg);
            font-weight: 700;
        }

        .header ul li:first-child a {
            background: #e8b730;
        }

        .header ul li:last-child a {
            background: #1c1f2c;
        }

        /* Header Text */

        .header-text {
            color: #fff;
            margin-top: 8em
        }

        .header-text .container {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
        }

        .header-text .container>* {
            max-width: 400px;
        }

        .header-text h1 {
            position: relative;
            font-size: 40px;
            font-weight: 600;
            line-height: 1.2;
            padding-left: .5em;
            margin: 0
        }

        .header-text h1::after {
            content: "";
            position: absolute;
            top: 7%;
            left: 0;
            height: 88%;
            width: 4px;
            background: #FDC730;
        }

        .header-text p {
            text-align: right;
            font-weight: 400;
            margin: 0
        }

        /* Second Area */

        .second-area {
            margin-top: 20em;
            color: #fff;
            text-align: center;
            /* background-color:#171C2C;*/
            background-image: url('assets/secondbg.png');
            background-position: top center;
            height: 1000px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .second-area .container {
            margin-top: 20em
        }

        .second-area h2 {
            font-size: 2em;
            margin: 0 0 .5em 0
        }

        .second-area p {
            max-width: 80%;
            margin: 0 auto;
            font-size: 1.1em;
        }

        /* Games Area */

        .games-area {
            background-image: url('assets/gamesbg.png');
            background-size: 100% calc(100% - 3em);
            background-repeat: no-repeat;
            margin-top: -6em;
        }

        .games-area .container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1em;
            transform: translateY(-4em);
            justify-content: space-between;
        }

        .games-area img {
            transition: all 300ms var(--cubic)
        }

        /* Promation Area */

        .promotion-area {
            text-align: center;
            color: #fff;
            background-image: url('assets/promobg.png');
            background-position: top center;
            background-repeat: no-repeat;
            background-color: #161b2b;
            padding: 6em 0
        }

        .promotion-area h2 {
            font-size: 2em;
            margin: 0 0 .5em 0
        }

        .promotion-area p {
            max-width: 70%;
            margin: 0 auto;
            font-size: 1.1em;
        }


        /* Footer */

        .footer-top {
            background: #121623;
        }

        .footer-top .container {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            padding: 2em 0
        }

        .footer-cizgi {
            border-top: 1px solid #FDC730;
            opacity: .2;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            background: linear-gradient(to bottom, #121623 70%, #121623 70%, #151a28 70%, #151a28 100%);
        }

        .footer-logo img {
            position: relative;
            z-index: 2;
        }

        .footer-logo::after {
            content: "";
            position: absolute;
            top: 70%;
            width: 100%;
            height: 4px;
            background: var(--orange);
            z-index: 1;
        }

        .footer-bottom {
            color: #999;
            text-align: center;
            padding: 4em 0;
            background-color: #151a28;
            background-image: url('assets/footer-icon.png'), url('assets/footer-icon.png');
            background-position: left, right;
            background-repeat: no-repeat;
        }

        .social {
            margin-top: 2em;
            display: grid;
            grid-template-columns: repeat(4, auto);
            gap: 1em;
            justify-content: center;
        }

        .just-mobile {
            display: none;
        }

        .just-mobile .social {
            margin: 0;
            line-height: 1;
        }

        .mobile-show {
            display: none;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            padding: 1em;
            text-align: center;
            margin: 1em;
            background: #1c1f2c;
            color: var(--orange);
            font-weight: 700;
            text-transform: uppercase;
            clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
        }

        .mobile-show svg {
            width: 1.5em;
            margin-left: 1em
        }

        .mobile-social {
            display: none;
        }

        .tvgirismobile {
            margin: 0 1em 1em 1em;
            background-color: #000000;
        }

        @media screen and (min-width:1336px) {
            .container {
                max-width: 1200px;
            }
        }

        @media screen and (max-width:768px) {
            .just-mobile {
                display: unset;
            }

            .mobile-show {
                display: flex;
            }

            .header-text {
                margin-top: 0
            }

            .mobile-social {
                display: grid;
                grid-template-columns: repeat(5, auto);
                gap: 0;
                justify-content: center;
                gap: 1em;
                padding: .5em 1em;
                line-height: 1;
                background: rgb(28 31 44 / 0.6);
                backdrop-filter: blur(5px);
            }

            .mobile-social a {
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 1.5em;
                padding: .5em;
                background: rgba(255, 255, 255, 0.2);
                color: #fff;
                border-radius: 5px;
            }

            .mobile-social svg {
                width: 24px;
            }

            .logoback {
                width: 100%;
                bottom: unset;
                height: 100%;
                top: 0;
            }

            .logo {
                transform: none;
                pointer-events: none;
            }

            .second-area {
                margin-top: 2em;
                height: 800px;
            }

            .games-area {
                text-align: center;
            }

            .header-text .container {
                flex-direction: column;
            }

            .header ul {
                right: unset;
                top: -5em
            }

            .header .container {
                flex-direction: column;
            }

            .header-text h1::after {
                display: none;
            }

            .header-text h1 {
                text-align: center;
                padding: 0 1em;
                margin-bottom: .5em;
                font-weight: 700;
                line-height: 1;
                text-shadow: 0px 0px 5px #1c1f2c;
                font-size: 3em;
            }

            .header ul li {
                transform: none
            }

            .header ul li a {
                display: inline-grid;
                transform: none
            }

            .header-text p {
                text-align: center;
                padding: 0 2em
            }

            .games-area .container {
                grid-template-columns: 1fr;
            }

            .games-area .container {
                transform: none;
                padding: 2em 0
            }

            .games-area {
                background-size: 100%;
                background-repeat: repeat-y;
            }

            .footer span {
                padding: 2em;
                text-align: center;
            }

            .footer img {
                max-width: 80%;
                margin-left: auto;
                margin-right: auto;
            }

            .header-text .container>* {
                max-width: 100%;
            }

            .second-area .container {
                margin-top: 4em
            }

            .mobile-providers {
                display: grid;
                grid-template-columns: repeat(3, auto);
                gap: 0em;
                margin: 2em;
                justify-content: center;
                align-items: center;
                align-self: center;
                align-content: center;
                justify-items: center;
                justify-self: center;
            }

            .mobile-providers img {
                max-width: 100%;
            }
        }
