@font-face {
    font-family: 'Pretendard';
    font-weight: 100;
    font-display: swap;
    src: url('../fonts/pretendard/woff2/Pretendard-Thin.woff2') format('woff2'), url('../../fonts/pretendard/woff/Pretendard-Thin.woff') format('woff');
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 200;
    font-display: swap;
    src: url('../fonts/pretendard/woff2/Pretendard-ExtraLight.woff2') format('woff2'), url('../../fonts/pretendard/woff/Pretendard-ExtraLight.woff') format('woff');
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 300;
    font-display: swap;
    src: url('../fonts/pretendard/woff2/Pretendard-Light.woff2') format('woff2'), url('../../fonts/pretendard/woff/Pretendard-Light.woff') format('woff');
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/pretendard/woff2/Pretendard-Regular.woff2') format('woff2'), url('../../fonts/pretendard/woff/Pretendard-Regular.woff') format('woff');
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/pretendard/woff2/Pretendard-Medium.woff2') format('woff2'), url('../../fonts/pretendard/woff/Pretendard-Medium.woff') format('woff');
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/pretendard/woff2/Pretendard-SemiBold.woff2') format('woff2'), url('../../fonts/pretendard/woff/Pretendard-SemiBold.woff') format('woff');
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/pretendard/woff2/Pretendard-Bold.woff2') format('woff2'), url('../../fonts/pretendard/woff/Pretendard-Bold.woff') format('woff');
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 800;
    font-display: swap;
    src: url('../fonts/pretendard/woff2/Pretendard-ExtraBold.woff2') format('woff2'), url('../../fonts/pretendard/woff/Pretendard-ExtraBold.woff') format('woff');
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 900;
    font-display: swap;
    src: url('../fonts/pretendard/woff2/Pretendard-Black.woff2') format('woff2'), url('../../fonts/pretendard/woff/Pretendard-Black.woff') format('woff');
}
* {
    margin: 0;
    padding: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

* {
    --color-black: #000;
    --color-white: #fff;
    --color-gray: #929292;
    --color-lightgray: #d9d9d9;
    --color-highlight: #f9bf00;
    --handleBg: #b99767;
    --handleDownBg: #ffeeb8;
    --handleTrackBg: #b99767;
}
/* 스크롤바 공통 */
::-webkit-scrollbar {
    width: 0px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}
.game_area iframe#game_iframe body {
    background-color: transparent;
    padding: 100px;
}

html,
body {
    height: auto;
    width: 100%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    scroll-behavior: smooth;
}

body {
    font-family: 'Pretendard', Noto Sans KR, sans-serif;
    margin: 0;
    color: var(--color-white);
    background-color: var(--color-black);
    font-size: 18px;
    font-weight: 400;
}
a {
    color: var(--color-white);
    text-decoration: none;
}
ul,
ol,
li {
    list-style-type: none;
}

img {
    max-width: 100%;
}

.btn {
    display: block;
    font-size: 22px;
    line-height: 60px;
    padding: 0 30px;
    color: var(--color-white);
    transition-duration: 0.3s;
    cursor: pointer;
}
.btn-group {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    column-gap: 30px;
}
.btn-outline {
    border: 2px solid #fff;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50px;
}
.btn-grd-outline {
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    background-clip: padding-box;
    border: solid 2px transparent;
    border-radius: 50px;
}
.btn-grd-outline:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -5px;
    border-radius: inherit;
    background: linear-gradient(to right, #fff1ba, #24f0ff);
}

table {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-collapse: collapse;
    border-spacing: 1px;
    margin-left: auto;
    margin-right: auto;
}
table th {
    background: rgba(69, 69, 69, 0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 30px;
    color: var(--color-highlight);
}
table th:last-child,
table td:last-child {
    border-right: none;
}
table td {
    background-color: rgba(0, 0, 0, 0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(162, 162, 162, 0.2);
    padding: 15px 30px;
    text-align: center;
}

.section-space {
    margin-bottom: 100px;
}

.flex-content {
    display: block;
}
.justify-content-center {
    justify-content: center;
}

.wrap {
    position: relative;
}
.container {
    position: relative;
    display: block;
    width: 1700px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}
header {
    position: fixed;
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 30px 0;
    top: 0;
    left: 0;
    z-index: 10;
    transition: 0.3s all;

    &.fixed {
        background-color: rgba(0, 0, 0, 0.8);
        padding: 15px 0;
    }

    nav {
        position: relative;
        width: 100%;
        display: flex;
        margin-left: auto;
        margin-right: auto;
        justify-content: space-between;
        align-items: center;

        .navbar-gnb {
            position: relative;
            display: flex;
            justify-content: flex-start;
            align-items: center;
            gap: 15px;
            z-index: 2;
        }
        .gnb-menu {
            display: none;
            width: 22px;
            height: 16px;
            cursor: pointer;

            span {
                display: block;
                background-color: #ffffff;
                height: 2px;
                width: 100%;
            }
        }

        .navbar-brand {
            display: block;
            background: url(../images/brand_logo.svg) no-repeat 0 0 / contain;
            width: 157px;
            height: 68px;
        }
        .navbar-nav {
            display: flex;
            justify-content: end;

            li {
                display: block;

                a {
                    display: block;
                    line-height: 68px;
                    font-size: 22px;
                    font-weight: 700;
                    padding: 0 15px;
                }

                &.active a,
                &:hover a {
                    color: var(--color-highlight);
                }
            }
        }

        .utility-menu {
            position: relative;
            display: flex;
            column-gap: 20px;
            align-items: center;
        }

        .btn-demo {
            display: flex;
            column-gap: 20px;
            align-items: center;

            .btn {
                display: flex;
                align-items: center;
                gap: 6px;
                font-size: 16px;
                padding: 0;
                color: var(--color-white);

                &::before {
                    content: '';
                    display: block;
                    block-size: 18px;
                    inline-size: 18px;
                    background-position: 50%;
                    background-repeat: no-repeat;
                    background-size: contain;
                }
                &.btn-request:before {
                    background-image: url(../images/demo-request.svg);
                }
                &.btn-move:before {
                    background-image: url(../images/demo-move.svg);
                }
            }
        }

        .language-set {
            display: block;
            position: relative;

            button {
                background-color: transparent;
                border: 0;
                color: var(--color-white);
                cursor: pointer;
            }

            .btn-select-language {
                display: flex;
                align-items: center;
                gap: 6px;
                font-size: 16px;
                line-height: 68px;

                &::before {
                    content: '';
                    display: block;
                    block-size: 18px;
                    inline-size: 18px;
                    background-position: 50%;
                    background-repeat: no-repeat;
                    background-size: contain;
                }

                &[value='ko']:before {
                    background-image: url(../images/flag-ko.svg);
                }
                &[value='us']:before {
                    background-image: url(../images/flag-us.svg);
                }
                &[value='jp']:before {
                    background-image: url(../images/flag-jp.svg);
                }
                &[value='zh']:before {
                    background-image: url(../images/flag-zh.svg);
                }
                &[value='tw']:before {
                    background-image: url(../images/flag-zh-tw.svg);
                }
                &[value='ru']:before {
                    background-image: url(../images/flag-ru.svg);
                }
                &[value='th']:before {
                    background-image: url(../images/flag-th.svg);
                }
                &[value='vn']:before {
                    background-image: url(../images/flag-vn.svg);
                }
                &[value='id']:before {
                    background-image: url(../images/flag-id.svg);
                }
                &[value='my']:before {
                    background-image: url(../images/flag-my.svg);
                }
                &[value='mn']:before {
                    background-image: url(../images/flag-mn.svg);
                }
                &::after {
                    content: '';
                    width: 0px;
                    height: 0px;
                    border-style: solid;
                    border-width: 0 5px 5px 5px;
                    border-color: transparent transparent #ffcf3a transparent;
                    transform: rotate(180deg);
                }
            }

            .list-sel-language {
                display: none;
                position: absolute;
                top: 50px;
                left: -15px;
                width: 200px;
                background-color: #000;
                color: var(--color-white);
                border-radius: 5px;

                &.active {
                    display: block !important;
                }

                .language-option {
                    display: flex;
                    align-items: center;
                    gap: 6px;
                    width: 100%;
                    font-size: 16px;
                    line-height: 40px;
                    padding: 0 15px;
                    cursor: pointer;

                    &::before {
                        content: '';
                        display: block;
                        block-size: 18px;
                        inline-size: 18px;
                        background-position: 50%;
                        background-repeat: no-repeat;
                        background-size: contain;
                    }

                    &[value='ko']:before {
                        background-image: url(../images/flag-ko.svg);
                    }
                    &[value='us']:before {
                        background-image: url(../images/flag-us.svg);
                    }
                    &[value='jp']:before {
                        background-image: url(../images/flag-jp.svg);
                    }
                    &[value='zh']:before {
                        background-image: url(../images/flag-zh.svg);
                    }
                    &[value='tw']:before {
                        background-image: url(../images/flag-zh-tw.svg);
                    }
                    &[value='ru']:before {
                        background-image: url(../images/flag-ru.svg);
                    }
                    &[value='th']:before {
                        background-image: url(../images/flag-th.svg);
                    }
                    &[value='vn']:before {
                        background-image: url(../images/flag-vn.svg);
                    }
                    &[value='id']:before {
                        background-image: url(../images/flag-id.svg);
                    }
                    &[value='my']:before {
                        background-image: url(../images/flag-my.svg);
                    }
                    &[value='mn']:before {
                        background-image: url(../images/flag-mn.svg);
                    }
                    &:hover {
                        background-color: rgba(255, 255, 255, 0.2);
                    }
                }
            }
        }
    }
}

.card {
    position: relative;
    background: transparent linear-gradient(180deg, rgba(162, 162, 162, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    outline: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    padding: 40px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.4s ease-out;

    &.animate {
        opacity: 1;
        transform: translateY(0);
    }
}
.show-event {
    margin: 50px auto;
}
section {
    width: 100%;

    .section-title {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        width: 680px;
        margin-bottom: 80px;
        opacity: 0;
        transform: translateY(50px);
        transition: all 0.5s ease-out;

        &.animate {
            opacity: 1;
            transform: translateY(0);
        }

        h1 {
            font-size: 80px;
            font-weight: 900;
        }
        p {
            font-size: 24px;
            font-weight: 800;
            background: transparent linear-gradient(90deg, #fff4b3 11%, #6ba6ff 50%, #41f9ff 93%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
    }

    &.intro {
        position: relative;
        width: 100%;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;

        &:before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 60%);
            z-index: 0;
        }

        video.introduce {
            width: 100vw;
            height: 100vh;
            object-fit: cover;
            overflow: hidden;
            position: absolute;
            top: 0;
            left: 0;
            z-index: -1;
        }
        .container {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            height: 100%;
        }
        .home-intro {
            display: block;
            z-index: 1;

            .gold-chips {
                background: url(../images/gold_chips.png) no-repeat center top / contain;
                width: 100%;
                height: 162px;
            }
            .glass-theme-01 {
                position: relative;
                background: transparent linear-gradient(180deg, rgba(162, 162, 162, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%);
                border: 2px solid #424242;
                backdrop-filter: blur(22px);
                -webkit-backdrop-filter: blur(22px);
                width: 1200px;
                height: 500px;
                border-radius: 45px;
                margin-top: -30px;
                padding: 50px 0;
                display: flex;
                justify-content: center;
                align-items: center;

                .flex-content {
                    width: 860px;
                    text-align: center;
                    animation: fadeInUp 1s ease-out;

                    .head-copy {
                        font-weight: 900;
                        font-size: 72px;
                        background: transparent linear-gradient(90deg, #fff4b3 11%, #6ba6ff 50%, #41f9ff 93%);
                        -webkit-background-clip: text;
                        -webkit-text-fill-color: transparent;
                        line-height: 120%;
                        margin-bottom: 20px;
                    }
                    .slogan {
                        font-weight: 600;
                        font-size: 24px;
                        margin-bottom: 10px;
                    }
                    .subhead-copy {
                        font-weight: 500;
                        font-size: 20px;
                        color: var(--color-white);
                        margin-bottom: 40px;
                    }
                }

                .mr-poker {
                    position: absolute;
                    background: url(../images/mr_poker.png) no-repeat 0 0 / contain;
                    bottom: -20px;
                    right: -265px;
                    width: 445px;
                    height: 630px;
                    animation: fadeInLeft 1s ease-out;
                }
            }
        }
    }
    &.solution {
        position: relative;
        width: 100%;
        overflow: hidden;
        padding: 150px 0;

        &:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 50%);
            z-index: 0;
        }

        video.solutions {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
            z-index: -1;
        }
        .solution-summary {
            justify-content: space-between;
            margin-bottom: 80px;
        }
        .card.solutions {
            border-radius: 240px;
            text-align: center;
            display: flex;
            flex-direction: column;
            row-gap: 80px;
            padding: 140px 30px;

            h4 {
                font-size: 32px;
            }
            p {
                font-size: 24px;
                color: var(--color-gray);
            }
            ul {
                display: flex;
                flex-direction: column;
                font-size: 20px;
                color: var(--color-gray);
                row-gap: 10px;
            }
        }
    }
    .card-title {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        margin-bottom: 30px;

        h3 {
            font-size: 34px;
            font-weight: 800;
        }
        p {
            font-size: 20px;
            font-weight: 800;
            background: transparent linear-gradient(90deg, #fff4b3 11%, #6ba6ff 50%, #41f9ff 93%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
    }
    p.help {
        color: var(--color-gray);
        text-align: center;
        padding-top: 50px;
    }

    &.technology {
        position: relative;
        width: 100%;
        overflow: hidden;
        padding: 150px 0;

        &:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 50%);
            z-index: 0;
        }

        video.tech {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
            z-index: -1;
        }
        .tech-summary {
            margin-bottom: 50px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            column-gap: 50px;
            row-gap: 20px;
        }
        .core-tech {
            padding: 40px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            row-gap: 10px;

            h5 {
                font-size: 24px;
                font-weight: 700;
            }
            p {
                color: var(--color-gray);
            }

            &:hover {
                transform: scale(1.1);
                transition: all 0.2s ease-in;

                h5 {
                    color: var(--color-highlight);
                }
            }
        }

        .card.security,
        .card.api {
            padding: 40px;
            padding-left: 170px;
            height: 100%;

            h5 {
                font-size: 24px;
                font-weight: 700;
                margin-bottom: 20px;
            }
            ul {
                display: flex;
                flex-direction: column;
                row-gap: 15px;
                font-size: 20px;
                font-weight: 500;
                color: #d9d9d9;
                padding-left: 20px;

                li {
                    list-style-type: circle;
                }

                p {
                    font-weight: 400;
                    font-size: 18px;
                    color: var(--color-gray);
                }
            }
        }
        .card.security:before,
        .card.api:before {
            content: '';
            position: absolute;
            top: 30px;
            left: 50px;
            width: 110px;
            height: 100px;
        }
        .card.security:before {
            background: url(../images/icon_security.png) no-repeat 0 0 / contain;
        }
        .card.api:before {
            background: url(../images/icon_api.png) no-repeat 0 0 / contain;
        }
    }

    &.games {
        position: relative;
        width: 100%;
        overflow: hidden;
        padding: 150px 0;
        background: url(../images/games_bg.png) no-repeat center center / cover;

        &:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 50%);
            z-index: 0;
        }

        video.gaming {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
            z-index: -1;
        }

        .mb-responsive {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            column-gap: 50px;
            row-gap: 40px;
            padding: 50px;
        }
        .tournament-grid {
            display: flex;
            flex-direction: column;
            row-gap: 50px;
            padding: 50px;

            .row {
                row-gap: 30px;
            }

            .row + .row {
                padding: 0;
            }
        }

        figure {
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: end;
            width: 100%;
            padding: 25px;
            overflow: hidden;
            border-radius: 15px;
            height: 284px;

            &:before {
                content: '';
                position: absolute;
                background-color: rgba(0, 0, 0, 0.3);
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                z-index: 0;
            }
            h3 {
                font-size: 26px;
                font-weight: 700;
            }
            ul {
                display: flex;
                flex-direction: column;
                row-gap: 5px;
                margin-top: 10px;
            }

            small {
                color: var(--color-highlight);
            }
        }
        figure > * {
            position: relative;
            z-index: 1;
        }
        .texas-holdem {
            background: url(../images/game-01.png) no-repeat center center / cover;
        }
        .omaha {
            background: url(../images/game-02.png) no-repeat center center / cover;
        }
        .short-deck {
            background: url(../images/game-03.png) no-repeat center center / cover;
        }
        .speed-poker {
            background: url(../images/game-04.png) no-repeat center center / cover;
        }
        .spin-go {
            background: url(../images/game-05.png) no-repeat center center / cover;
        }
        .aof {
            background: url(../images/game-06.png) no-repeat center center / cover;
        }
        .freeroll {
            background: url(../images/game-07.png) no-repeat center center / cover;
        }
        .guaranteed {
            background: url(../images/game-08.png) no-repeat center center / cover;
        }
        .bounty-hunter {
            background: url(../images/game-09.png) no-repeat center center / cover;
        }
        .mystery-bounty {
            background: url(../images/game-10.png) no-repeat center center / cover;
        }
        .daily {
            background: url(../images/game-11.png) no-repeat center center / cover;
        }
        .multiday {
            background: url(../images/game-12.png) no-repeat center center / cover;
        }
        .satellite {
            background: url(../images/game-13.png) no-repeat center center / cover;
        }

        .spec-info {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            margin: 30px 0;

            i {
                display: block;
                margin-bottom: 10px;
                width: 100px;
                height: 95px;
                background-position: center center;
                background-size: contain;
                background-repeat: no-repeat;
            }

            &.history i {
                background-image: url(../images/game-icon-01.png);
            }
            &.multi-table i {
                background-image: url(../images/game-icon-02.png);
            }
            &.game-chat i {
                background-image: url(../images/game-icon-03.png);
            }
            &.localization i {
                background-image: url(../images/game-icon-04.png);
            }
            &.auto-action i {
                background-image: url(../images/game-icon-05.png);
            }
            &.time-bank i {
                background-image: url(../images/game-icon-06.png);
            }
            &.rabbit-hunt i {
                background-image: url(../images/game-icon-07.png);
            }

            h3 {
                font-size: 26px;
                margin-bottom: 5px;
            }

            &:hover {
                transform: scale(1.1);
                transition: all 0.2s ease-in;

                h3 {
                    color: var(--color-highlight);
                }
            }
        }
    }
    &.about {
        position: relative;
        width: 100%;
        overflow: hidden;
        padding: 150px 0;

        &:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 70%);
            z-index: 0;
        }

        video.aboutus {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
            z-index: -1;
        }
        .card.mission-info,
        .card.trust-info {
            padding: 40px;
            padding-left: 170px;
            height: 100%;

            h6 {
                font-size: 26px;
                font-weight: 700;
                margin-bottom: 20px;
            }
            p {
                font-weight: 400;
                font-size: 20px;
                color: var(--color-lightgray);
            }
        }
        .card.mission-info:before,
        .card.trust-info:before {
            content: '';
            position: absolute;
            top: 30px;
            left: 50px;
            width: 110px;
            height: 100px;
        }
        .card.mission-info:before {
            background: url(../images/icon_mission.svg) no-repeat 0 0 / contain;
        }
        .card.trust-info:before {
            background: url(../images/icon_trust.svg) no-repeat 0 0 / contain;
        }
        .card.core-info {
            text-align: center;
            height: 100%;

            h6 {
                font-size: 26px;
                font-weight: 700;
                margin-bottom: 20px;
            }
            p {
                font-weight: 400;
                font-size: 20px;
                color: var(--color-lightgray);
            }
        }

        .bm-section {
            h6 {
                font-size: 26px;
                margin-bottom: 30px;
            }
            p {
                font-size: 20px;
                color: var(--color-lightgray);
                margin-bottom: 10px;
            }
            ul {
                margin: 20px 0;
                padding-left: 20px;

                li {
                    list-style-type: circle;
                    color: var(--color-gray);
                    font-size: 16px;
                }
            }
        }
    }
    &.partnership {
        position: relative;
        width: 100%;
        overflow: hidden;
        padding: 150px 0;

        &:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 50%);
            z-index: 0;
        }

        video.partner {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
            z-index: -1;
        }
        h6 {
            font-size: 26px;
        }
        p {
            font-size: 20px;
            color: var(--color-gray);
        }
        .form-area {
            width: 1140px;
            margin-left: auto;
            margin-right: auto;

            .row + .row {
                padding: 0;
            }

            form {
                display: flex;
                flex-direction: column;
                row-gap: 30px;
                margin: 30px 0;
            }

            label {
                display: block;
                font-size: 18px;
                margin-bottom: 10px;
            }

            input[type='text'],
            input[type='email'] {
                display: block;
                background-color: rgba(0, 0, 0, 0.5) !important;
                width: 100%;
                border: 1px solid rgba(255, 255, 255, 0.2) !important;
                border-radius: 5px;
                height: 50px;
                padding: 8px 15px;
                font-size: 16px;
                color: var(--color-lightgray);

                &:placeholder {
                    font-size: 16px;
                    color: var(--color-gray);
                }
                :focus {
                    color: var(--color-white);
                }
            }
            select {
                display: block;
                background-color: rgba(0, 0, 0, 0.5);
                -webkit-appearance: none;
                appearance: none;
                width: 100%;
                border: 1px solid rgba(255, 255, 255, 0.2);
                background-position: calc(100% - 17px), calc(100% - 10px);
                background-size: 8px 7px, 8px 7px;
                background-repeat: no-repeat;
                border-radius: 5px;
                height: 50px;
                padding: 8px 15px;
                font-size: 16px;
                color: var(--color-lightgray);
                background-image: linear-gradient(45deg, transparent 50%, #fff 50%), linear-gradient(135deg, #fff 50%, transparent 50%);
            }
            .form-btn {
                padding: 0 50px;
                background-color: #363636;
                font-size: 18px;
                font-weight: 700;
                border: 1px solid transparent;

                span {
                    color: #fff4b3;
                }
                &:focus {
                    border: 1px solid transparent;
                }
            }
            .form-btn:hover {
                background-color: var(--color-highlight);

                span {
                    color: #000;
                }
            }
        }
    }
}
input[type='text']:-webkit-autofill,
input[type='text']:-webkit-autofill:hover,
input[type='text']:-webkit-autofill:focus,
input[type='email']:-webkit-autofill,
input[type='email']:-webkit-autofill:hover,
input[type='email']:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:focus,
select:-webkit-autofill {
    -webkit-text-fill-color: #fff !important;
    /* 브라우저가 칠하는 내부 배경을 '그림자'로 덮어쓰기 */
    -webkit-box-shadow: 0 0 0px 1000px #111 inset !important;
    box-shadow: 0 0 0px 1000px #111 inset !important;

    /* 일부 케이스에서 transition으로 색상 튐 완화 */
    transition: background-color 9999s ease-out 0s;
}
.range-simu {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    margin: 30px 0;

    label {
        display: block;
        font-size: 18px;
        margin-bottom: 10px;
        color: var(--color-gray);
    }
    /* --- Range label + value (slider header line) --- */
    .range__input {
        margin-right: 0;
        width: 100%;
    }
    .range input[type='range'],
    .range input[type='range']::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 100%;
    }
    .range input[type='range'],
    .range__input-fill {
        border-radius: 0.25em;
        height: 5px;
    }

    .range input[type='range'] {
        background-color: rgba(255, 255, 255, 0.2);
        display: block;
        margin: 0.5em 0;
        padding: 0;
    }
    .range input[type='range']:focus {
        outline: transparent;
    }
    .range input[type='range']::-webkit-slider-thumb {
        background-color: var(--handleBg);
        border: 0;
        border-radius: 50%;
        cursor: pointer;
        position: relative;
        transition: background 0.1s linear;
        width: 15px;
        height: 15px;
        z-index: 1;
    }
    .range input[type='range']::-moz-range-thumb {
        background-color: var(--handleBg);
        border: 0;
        border-radius: 50%;
        cursor: pointer;
        position: relative;
        transform: translateZ(1px);
        transition: background-color 0.1s linear;
        width: 15px;
        height: 15px;
        z-index: 1;
    }
    .range input[type='range']::-moz-focus-outer {
        border: 0;
    }
    .range__input,
    .range__input-fill,
    .range__counter-column,
    .range__counter-digit {
        display: block;
    }
    .range__input,
    .range__counter {
        position: relative;
    }
    .range__input:active input[type='range']::-webkit-slider-thumb,
    .range input[type='range']:focus::-webkit-slider-thumb,
    .range input[type='range']::-webkit-slider-thumb:hover {
        background-color: var(--handleDownBg);
    }
    .range__input:active input[type='range']::-moz-range-thumb,
    .range input[type='range']:focus::-moz-range-thumb,
    .range input[type='range']::-moz-range-thumb:hover {
        background-color: var(--handleDownBg);
    }

    .range__input-fill {
        position: absolute !important;
        padding: 0 !important;
        overflow: hidden !important;
        white-space: nowrap !important;
        border: 0 !important;
        background-color: var(--handleTrackBg);
        pointer-events: none;
        top: calc(50% - 2.5px);
    }
    .range-label__value {
        color: var(--color-white);
        font-weight: 800;
    }
    .range__counter-text {
        display: none;
    }

    /* --- Slider label + value layout (simple counter) --- */
}
.range-result {
    display: flex;
    flex-direction: column;
    margin: 30px 0;

    .row > [class*='col-'] {
        padding-right: 10px;
        padding-left: 10px;
    }

    .monitor-board {
        background-color: #000;
        border-radius: 10px;
        padding: 15px;
        display: flex;
        flex-direction: column;
        row-gap: 15px;
        margin-bottom: 30px;

        p {
            font-size: 16px;
            color: var(--color-gray);
        }

        .total-lg,
        .total-sm {
            font-weight: 800;
            background: transparent linear-gradient(150deg, #ffe3a6 10%, #52ffff 50%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 120%;
        }

        .total-lg {
            font-size: 32px;
        }
        .total-sm {
            font-size: 22px;
        }
    }

    small {
        font-size: 16px;
        color: var(--color-gray);
    }
}
.btn-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    block-size: 45px;
    inline-size: 45px;
    background-color: var(--color-highlight);
    border: 0;
    border-radius: 50%;
    color: var(--color-black);
    font-size: 14px;
    font-weight: 800;
    text-align: center;
    line-height: 45px;
    opacity: 0;
    cursor: pointer;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 1000;

    &.show {
        opacity: 0.7;
        visibility: visible;
        transform: translateY(0);
    }
    &:hover {
        opacity: 1;
    }
}

footer {
    background-color: var(--color-black);
    padding: 50px 0;

    .footer-inner {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;

        .company-area {
            .footer-brand {
                background: url(../images/brand_logo.svg) no-repeat 0 0 / contain;
                width: 157px;
                height: 68px;
                filter: grayscale(100%);
            }
            .copyright {
                font-size: 12px;
                color: var(--color-gray);
            }
        }

        .nav-area {
            display: flex;
            justify-content: flex-end;
            align-items: flex-start;
            column-gap: 40px;

            .menu-nav {
                color: var(--color-gray);

                h6 {
                    font-size: 18px;
                    font-weight: 800;
                    color: var(--color-white);
                    margin-bottom: 25px;
                }
                ul {
                    display: flex;
                    flex-direction: column;
                    row-gap: 5px;
                    font-size: 14px;
                    list-style-type: none;
                }
            }

            a,
            a:link,
            a:visited {
                color: var(--color-gray);
            }
            a:hover {
                color: var(--color-highlight);
            }
        }
    }
}

.contact-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;

    &.is-open {
        display: block;
    }

    .contact-modal__backdrop {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.7);
    }

    .contact-modal__panel {
        position: relative;
        max-width: 400px;
        margin: 0 auto;
        text-align: center;
        top: 50%;
        transform: translateY(-50%);
        background: #111;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);

        .contact-modal__title {
            margin: 0 0 10px;
            font-size: 18px;
            line-height: 1.2;
            color: #fff;
        }

        .contact-modal__message {
            margin: 0 0 14px;
            font-size: 14px;
            line-height: 1.55;
            color: rgba(255, 255, 255, 0.85);
            white-space: pre-line;
            word-break: keep-all;
        }

        .contact-modal__btn {
            padding: 0 25px;
            height: 40px;
            border-radius: 5px;
            border: 1px solid transparent;
            background: var(--color-highlight);
            color: #000;
            font-weight: 600;
            cursor: pointer;

            &:focus {
                border: 1px solid transparent;
            }
        }
    }
}

@media (max-width: 576px) {
    body {
        font-size: 14px;
        line-height: 120%;
    }
    table th,
    table td {
        padding: 10px 5px !important;
        font-size: 12px;
    }
    .btn-group {
        column-gap: 10px;
    }
    header {
        nav {
            .gnb-menu {
                display: flex;
                flex-direction: column;
                justify-content: space-between;
            }
            .navbar-brand {
                width: 78px;
                height: 30px;
            }
            .navbar-nav {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 0;
                opacity: 0;
                visibility: hidden;
                background-color: #000;
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
                transition: 0.3s all;

                &.active {
                    opacity: 1;
                    visibility: visible;
                    height: auto;
                    padding-top: 60px;
                }

                li {
                    a {
                        line-height: 100%;
                        font-size: 20px;
                        padding: 15px;
                    }
                }
            }
            .btn-demo {
                column-gap: 10px;

                .btn {
                    font-size: 0px;
                    text-indent: -9999px;
                }
            }
            .language-set {
                .btn-select-language {
                    font-size: 12px;
                    line-height: 50px;
                }
            }
        }
    }
    section {
        .section-title {
            width: 100%;
            margin-bottom: 30px;

            h1 {
                font-size: 26px;
                font-weight: 700;
                margin-bottom: 5px;
            }
            p {
                font-size: 14px;
                line-height: 140%;
            }
        }
        .card-title {
            h3 {
                font-size: 20px;
            }
        }
        .show-event {
            margin: 30px auto;
        }
        p.help {
            padding-top: 30px;
        }
        &.intro {
            .home-intro {
                width: 96%;
                .gold-chips {
                    height: 50px;
                }
                .glass-theme-01 {
                    width: 100%;
                    height: auto;
                    padding: 30px 0;
                    margin-top: -10px;

                    .flex-content {
                        .slogan {
                            font-size: 14px;
                        }
                        .head-copy {
                            font-size: 24px;
                            margin-bottom: 15px;

                            span {
                                display: block;
                            }
                        }
                        .subhead-copy {
                            font-size: 14px;
                        }
                    }
                    .mr-poker {
                        top: -175px;
                        left: 50%;
                        transform: translateX(-50%);
                        right: auto;
                        width: 141px;
                        height: 200px;
                    }
                    .btn {
                        font-size: 14px;
                        padding: 0 15px;
                        line-height: 30px;
                    }
                    .btn-grd-outline:before {
                        margin: -2px;
                    }
                }
            }
        }
    }
    section {
        &.solution {
            padding: 80px 0;

            .solution-summary {
                flex-direction: column;
                row-gap: 30px;

                .card.solutions {
                    padding: 30px 15px;
                    row-gap: 20px;

                    h4 {
                        font-size: 20px;
                    }
                    ul {
                        font-size: 14px;
                    }
                }
            }
        }
    }
    section {
        &.technology {
            padding: 80px 0;

            .tech-summary {
                grid-template-columns: 1fr;
                row-gap: 20px;
            }

            .core-tech {
                padding: 15px;

                figure {
                    height: 70px;

                    img {
                        height: 100%;
                    }
                }

                h5 {
                    font-size: 18px;
                }
            }

            .card.security,
            .card.api {
                padding: 20px 15px;
                padding-left: 100px;
                height: 100%;

                h5 {
                    font-size: 18px;
                }

                ul {
                    font-size: 14px;

                    p {
                        font-size: 14px;
                    }
                }
            }
            .card.security:before,
            .card.api:before {
                top: 10px;
                left: 20px;
                width: 55px;
                height: 50px;
            }
        }
    }
    section {
        &.games {
            padding: 80px 0;

            .mb-responsive {
                grid-template-columns: 1fr;
                row-gap: 20px;
                padding: 15px;
            }
            .tournament-grid {
                padding: 15px;
                row-gap: 30px;
            }
            figure {
                height: 220px;

                h3 {
                    font-size: 18px;
                }
                ul {
                    font-size: 12px;
                }

                &.daily,
                &.multiday,
                &.satellite {
                    height: 200px;
                }
            }
            .spec-info {
                margin: 20px 0;

                i {
                    width: 70px;
                    height: 67px;
                }
                h3 {
                    font-size: 18px;
                }
            }
        }
    }
    section {
        &.about {
            padding: 80px 0;

            .card.mission-info,
            .card.trust-info {
                padding: 15px;
                padding-left: 80px;

                h6 {
                    font-size: 16px;
                    margin-bottom: 15px;
                }
                p {
                    font-size: 14px;
                }
            }
            .card.mission-info:before,
            .card.trust-info:before {
                top: 15px;
                left: 20px;
                width: 55px;
                height: 50px;
            }
            .card.core-info {
                h6 {
                    font-size: 16px;
                    margin-bottom: 15px;
                }
                P {
                    font-size: 14px;
                }
            }
            .bm-section {
                row-gap: 50px;

                h6 {
                    font-size: 18px;
                    margin-bottom: 10px;
                }

                p {
                    font-size: 14px;
                }

                figure {
                    width: 70%;
                    margin: 0 auto;
                }
                ul {
                    li {
                        font-size: 14px;
                    }
                }
            }
        }
    }
    section {
        &.partnership {
            p {
                font-size: 16px;
            }
        }
    }
    .range-result {
        & .monitor-board {
            .total-lg {
                font-size: 26px;
            }
        }
    }
    .contact-modal__panel {
        max-width: 300px;
    }

    footer {
        .footer-inner {
            justify-content: center;
            text-align: center;

            .company-area {
                .footer-brand {
                    margin: 0 auto;
                }
            }
            .nav-area {
                display: none !important;
            }
        }
    }
}
@media (min-width: 576px) and (max-width: 744px) {
    body {
        font-size: 14px;
    }
    header {
        nav {
            .gnb-menu {
                display: flex;
                flex-direction: column;
                justify-content: space-between;
            }
            .navbar-brand {
                width: 91px;
                height: 35px;
            }
            .navbar-nav {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 0;
                opacity: 0;
                visibility: hidden;
                background-color: #000;
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
                transition: 0.3s all;

                &.active {
                    opacity: 1;
                    visibility: visible;
                    height: auto;
                    padding-top: 60px;
                }

                li {
                    a {
                        line-height: 100%;
                        font-size: 20px;
                        padding: 15px;
                    }
                }
            }
            .btn-demo {
                column-gap: 10px;

                .btn {
                    font-size: 0px;
                    text-indent: -9999px;
                }
            }
            .language-set {
                .btn-select-language {
                    font-size: 12px;
                    line-height: 50px;
                }
            }
        }
    }
    section {
        .section-title {
            width: 400px;
            margin-bottom: 30px;

            h1 {
                font-size: 30px;
                font-weight: 700;
            }
            p {
                font-size: 16px;
            }
        }
        .card-title {
            h3 {
                font-size: 20px;
            }
        }
        .show-event {
            margin: 30px auto;
        }
        p.help {
            padding-top: 30px;
        }
        &.intro {
            .home-intro {
                .gold-chips {
                    height: 80px;
                }
                .glass-theme-01 {
                    width: 500px;
                    height: auto;
                    padding: 30px 0;
                    margin-top: -20px;

                    .flex-content {
                        .slogan {
                            font-size: 16px;
                        }
                        .head-copy {
                            font-size: 28px;
                            margin-bottom: 15px;

                            span {
                                display: block;
                            }
                        }
                        .subhead-copy {
                            font-size: 16px;
                        }
                    }
                    .mr-poker {
                        bottom: -7px;
                        right: -87px;
                        width: 180px;
                        height: 255px;
                    }
                    .btn {
                        font-size: 14px;
                        line-height: 35px;
                    }
                    .btn-grd-outline:before {
                        margin: -2px;
                    }
                }
            }
        }
    }
    section {
        &.solution {
            padding: 80px 0;

            .solution-summary {
                flex-direction: column;
                row-gap: 30px;

                .card.solutions {
                    padding: 30px 15px;
                    row-gap: 20px;

                    h4 {
                        font-size: 24px;
                    }
                    ul {
                        font-size: 16px;
                    }
                }
            }
        }
    }
    section {
        &.technology {
            padding: 80px 0;

            .tech-summary {
                grid-template-columns: repeat(2, 1fr);
                column-gap: 20px;
            }

            .core-tech {
                padding: 15px;

                h5 {
                    font-size: 18px;
                }
            }

            .card.security,
            .card.api {
                padding: 20px 15px;
                padding-left: 100px;
                height: 100%;

                h5 {
                    font-size: 20px;
                }

                ul {
                    font-size: 16px;

                    p {
                        font-size: 14px;
                    }
                }
            }
            .card.security:before,
            .card.api:before {
                top: 10px;
                left: 20px;
                width: 55px;
                height: 50px;
            }
        }
    }
    section {
        &.games {
            padding: 80px 0;

            .mb-responsive {
                grid-template-columns: repeat(2, 1fr);
                column-gap: 30px;
                row-gap: 20px;
                padding: 15px;
            }
            .tournament-grid {
                padding: 15px;
                row-gap: 30px;
            }
            figure {
                height: 180px;

                h3 {
                    font-size: 18px;
                }
                ul {
                    font-size: 12px;
                }

                &.daily,
                &.multiday,
                &.satellite {
                    height: 200px;
                }
            }
            .spec-info {
                margin: 20px 0;

                i {
                    width: 70px;
                    height: 67px;
                }
                h3 {
                    font-size: 20px;
                }
            }
        }
    }
    section {
        &.about {
            padding: 80px 0;

            .card.mission-info,
            .card.trust-info {
                padding: 15px;
                padding-left: 80px;

                h6 {
                    font-size: 16px;
                    margin-bottom: 15px;
                }
                p {
                    font-size: 14px;
                }
            }
            .card.mission-info:before,
            .card.trust-info:before {
                top: 15px;
                left: 20px;
                width: 55px;
                height: 50px;
            }
            .card.core-info {
                h6 {
                    font-size: 18px;
                    margin-bottom: 15px;
                }
                P {
                    font-size: 14px;
                }
            }
            .bm-section {
                row-gap: 50px;

                h6 {
                    font-size: 20px;
                    margin-bottom: 10px;
                }

                p {
                    font-size: 14px;
                }

                figure {
                    width: 70%;
                    margin: 0 auto;
                }
                ul {
                    li {
                        font-size: 14px;
                    }
                }
            }
        }
    }
    section {
        &.partnership {
            p {
                font-size: 16px;
            }
        }
    }
}
@media (min-width: 744px) and (max-width: 991px) {
    body {
        font-size: 16px;
    }
    header {
        nav {
            .navbar-brand {
                width: 104px;
                height: 40px;
            }
            .btn-demo {
                column-gap: 10px;

                .btn {
                    font-size: 12px;
                }
            }
            .language-set {
                .btn-select-language {
                    font-size: 12px;
                    line-height: 50px;
                }
            }
        }
    }
    section {
        .section-title {
            width: 500px;
            margin-bottom: 50px;

            h1 {
                font-size: 40px;
                font-weight: 800;
            }
            p {
                font-size: 16px;
            }
        }
        .card-title {
            h3 {
                font-size: 24px;
            }
        }
        &.intro {
            .home-intro {
                .gold-chips {
                    height: 100px;
                }
                .glass-theme-01 {
                    width: 650px;
                    height: auto;
                    padding: 30px 0;

                    .flex-content {
                        .slogan {
                            font-size: 18px;
                        }
                        .head-copy {
                            font-size: 35px;
                            margin-bottom: 20px;

                            span {
                                display: block;
                            }
                        }
                        .subhead-copy {
                            font-size: 18px;
                        }
                    }
                    .mr-poker {
                        bottom: -20px;
                        right: -115px;
                        width: 240px;
                        height: 339px;
                    }
                    .btn {
                        font-size: 18px;
                        line-height: 45px;
                    }
                    .btn-grd-outline:before {
                        margin: -2px;
                    }
                }
            }
        }
    }
    section {
        &.solution {
            padding: 80px 0;

            .card.solutions {
                padding: 80px 20px;
                row-gap: 30px;

                h4 {
                    font-size: 24px;
                }
                ul {
                    font-size: 16px;
                }
            }
        }
    }
    section {
        &.technology {
            padding: 80px 0;

            .tech-summary {
                grid-template-columns: repeat(2, 1fr);
                column-gap: 20px;
            }

            .core-tech {
                padding: 15px;

                h5 {
                    font-size: 20px;
                }
            }

            .card.security,
            .card.api {
                padding: 20px 15px;
                padding-left: 100px;
                height: 100%;

                h5 {
                    font-size: 20px;
                }

                ul {
                    font-size: 16px;

                    p {
                        font-size: 14px;
                    }
                }
            }
            .card.security:before,
            .card.api:before {
                top: 10px;
                left: 20px;
                width: 70px;
                height: 64px;
            }
        }
    }
    section {
        &.games {
            padding: 80px 0;

            .mb-responsive {
                grid-template-columns: repeat(2, 1fr);
                column-gap: 30px;
                row-gap: 20px;
                padding: 15px;
            }
            .tournament-grid {
                padding: 15px;
                row-gap: 30px;
            }
            figure {
                height: 240px;

                h3 {
                    font-size: 20px;
                }
                ul {
                    font-size: 14px;
                }

                &.daily,
                &.multiday,
                &.satellite {
                    height: 200px;
                }
            }
            .spec-info {
                margin: 20px 0;

                i {
                    width: 70px;
                    height: 67px;
                }
                h3 {
                    font-size: 20px;
                }
            }
        }
    }
    section {
        &.about {
            padding: 80px 0;

            .card.mission-info,
            .card.trust-info {
                padding: 15px;
                padding-left: 110px;

                h6 {
                    font-size: 20px;
                    margin-bottom: 20px;
                }
                p {
                    font-size: 16px;
                }
            }
            .card.mission-info:before,
            .card.trust-info:before {
                top: 15px;
                left: 20px;
                width: 80px;
                height: 73px;
            }
            .card.core-info {
                h6 {
                    font-size: 20px;
                    margin-bottom: 20px;
                }
                P {
                    font-size: 14px;
                }
            }
            .bm-section {
                row-gap: 50px;

                h6 {
                    font-size: 22px;
                    margin-bottom: 10px;
                }

                p {
                    font-size: 16px;
                }

                figure {
                    width: 60%;
                    margin: 0 auto;
                }
                ul {
                    li {
                        font-size: 14px;
                    }
                }
            }
        }
    }
}
@media (max-width: 991px) {
    table th,
    table td {
        padding: 15px;
    }
    .card {
        padding: 20px 15px;
        border-radius: 20px;
    }
    .section-space {
        margin-bottom: 60px;
    }
    .container {
        width: 100%;
    }
    header {
        padding: 0;

        &.fixed {
            padding: 0;
        }

        nav {
            .gnb-menu {
                display: flex;
                flex-direction: column;
                justify-content: space-between;
            }
            .navbar-nav {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 0;
                opacity: 0;
                visibility: hidden;
                background-color: #000;
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
                transition: 0.3s all;

                &.active {
                    opacity: 1;
                    visibility: visible;
                    height: auto;
                    padding-top: 60px;
                }

                li {
                    a {
                        line-height: 100%;
                        font-size: 20px;
                        padding: 15px;
                    }
                }
            }
        }
    }
    section {
        padding: 80px 0;
    }
    section {
        &.partnership {
            h6 {
                font-size: 22px;
            }
            .form-area {
                label {
                    font-size: 15px;
                }
            }
        }
    }
    .range-simu {
        .range-label__value {
            font-size: 18px;
        }
    }

    footer {
        .footer-inner {
            .company-area {
                .footer-brand {
                    width: 104px;
                    height: 40px;
                }
            }
        }
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    body {
        font-size: 14px;
    }
    .btn {
        font-size: 16px;
        line-height: 50px;
    }
    .container {
        width: 960px;
    }
    header {
        nav {
            .navbar-brand {
                width: 110px;
                height: 48px;
            }
            .navbar-nav {
                li {
                    a {
                        font-size: 16px;
                    }
                }
            }
            .language-set {
                .btn-select-language {
                    font-size: 12px;
                }
                .list-sel-language {
                    .language-option {
                        font-size: 14px;
                        line-height: 40px;
                    }
                }
            }
            .btn-demo {
                .btn {
                    font-size: 0px;
                    text-indent: -9999px;
                }
            }
        }
    }
    section {
        .section-title {
            width: 500px;
            margin-bottom: 50px;

            h1 {
                font-size: 40px;
                font-weight: 800;
            }
            p {
                font-size: 16px;
            }
        }
        .card-title {
            h3 {
                font-size: 28px;
            }
        }
        &.intro {
            .home-intro {
                .gold-chips {
                    height: 100px;
                }
                .glass-theme-01 {
                    width: 750px;
                    height: auto;

                    .flex-content {
                        .slogan {
                            font-size: 18px;
                        }
                        .head-copy {
                            font-size: 40px;
                            margin-bottom: 20px;

                            span {
                                display: block;
                            }
                        }
                    }
                    .mr-poker {
                        bottom: -20px;
                        right: -145px;
                        width: 270px;
                        height: 382px;
                    }
                }
            }
        }
    }
    section {
        &.solution {
            padding: 80px 0;

            .card.solutions {
                padding: 100px 25px;
                row-gap: 50px;

                h4 {
                    font-size: 26px;
                }
                ul {
                    font-size: 16px;
                }
            }
        }
    }
    section {
        &.technology {
            padding: 80px 0;

            .tech-summary {
                grid-template-columns: repeat(2, 1fr);
                column-gap: 20px;
            }

            .core-tech {
                padding: 15px;

                h5 {
                    font-size: 20px;
                }
            }

            .card.security,
            .card.api {
                padding: 15px;
                padding-left: 110px;
                height: 100%;

                h5 {
                    font-size: 20px;
                }

                ul {
                    font-size: 16px;

                    p {
                        font-size: 14px;
                    }
                }
            }
            .card.security:before,
            .card.api:before {
                top: 10px;
                left: 20px;
                width: 80px;
                height: 73px;
            }
        }
    }
    section {
        &.games {
            padding: 80px 0;

            .mb-responsive {
                grid-template-columns: repeat(2, 1fr);
                column-gap: 30px;
                row-gap: 20px;
                padding: 15px;
            }

            figure {
                height: 240px;

                h3 {
                    font-size: 20px;
                }
                ul {
                    font-size: 14px;
                }

                &.daily,
                &.multiday,
                &.satellite {
                    height: 200px;
                }
            }
            .spec-info {
                margin: 20px 0;

                i {
                    width: 70px;
                    height: 67px;
                }
                h3 {
                    font-size: 20px;
                }
            }
        }
    }
    section {
        &.about {
            padding: 80px 0;

            .card.mission-info,
            .card.trust-info {
                padding: 15px;
                padding-left: 120px;

                h6 {
                    font-size: 22px;
                    margin-bottom: 20px;
                }
                p {
                    font-size: 18px;
                }
            }
            .card.mission-info:before,
            .card.trust-info:before {
                top: 15px;
                left: 20px;
                width: 80px;
                height: 73px;
            }
            .card.core-info {
                h6 {
                    font-size: 22px;
                    margin-bottom: 20px;
                }
                P {
                    font-size: 16px;
                }
            }
            .bm-section {
                row-gap: 50px;

                p {
                    font-size: 16px;
                }

                figure {
                    width: 50%;
                    margin: 0 auto;
                }
            }
        }
    }
    section {
        &.partnership {
            padding: 80px 0;
        }
    }
}
@media (min-width: 1200px) and (max-width: 1500px) {
    body {
        font-size: 16px;
    }
    .btn {
        font-size: 18px;
        line-height: 50px;
    }
    .container {
        width: 1170px;
    }
    header {
        nav {
            .navbar-nav {
                li {
                    a {
                        font-size: 18px;
                    }
                }
            }
            .language-set {
                .btn-select-language {
                    font-size: 12px;
                }
            }
            .btn-demo {
                .btn {
                    font-size: 12px;
                }
            }
        }
    }
    section {
        .section-title {
            width: 680px;
            margin-bottom: 80px;

            h1 {
                font-size: 50px;
                font-weight: 900;
            }
            p {
                font-size: 18px;
            }
        }
        &.intro {
            .home-intro {
                .gold-chips {
                    height: 125px;
                }
                .glass-theme-01 {
                    width: 900px;
                    height: auto;

                    .flex-content {
                        .slogan {
                            font-size: 20px;
                        }
                        .head-copy {
                            font-size: 50px;
                            margin-bottom: 20px;

                            span {
                                display: block;
                            }
                        }
                    }
                    .mr-poker {
                        bottom: -20px;
                        right: -200px;
                        width: 300px;
                        height: 424px;
                    }
                }
            }
        }
    }
    section {
        &.technology {
            .core-tech {
                h5 {
                    font-size: 20px;
                }
            }
        }
    }
    section {
        &.games {
            figure {
                height: 200px;

                h3 {
                    font-size: 20px;
                }
                ul {
                    font-size: 14px;
                }
            }
        }
    }
    section {
        &.about {
            .card.mission-info,
            .card.trust-info {
                padding: 15px;
                padding-left: 120px;

                h6 {
                    font-size: 22px;
                    margin-bottom: 20px;
                }
                p {
                    font-size: 18px;
                }
            }
            .card.mission-info:before,
            .card.trust-info:before {
                top: 15px;
                left: 20px;
                width: 80px;
                height: 73px;
            }
            .card.core-info {
                h6 {
                    font-size: 22px;
                    margin-bottom: 20px;
                }
                P {
                    font-size: 16px;
                }
            }
            .bm-section {
                p {
                    font-size: 16px;
                }
            }
        }
    }
    section {
        &.partnership {
            p {
                font-size: 18px;
            }
        }
    }
}
@media (max-width: 1500px) {
    header {
        nav {
            .language-set {
                .list-sel-language {
                    left: auto;
                    right: 0;

                    .language-option {
                        font-size: 14px;
                        line-height: 40px;
                    }
                }
            }
        }
    }
    section {
        &.partnership {
            .form-area {
                width: 100%;
            }
        }
    }
}
@media (min-width: 1500px) and (max-width: 1800px) {
    .container {
        width: 1400px;
    }
    header {
        nav {
            .navbar-nav {
                & li {
                    a {
                        font-size: 20px;
                    }
                }
            }
        }
    }

    section {
        .section-title {
            width: 680px;
            margin-bottom: 80px;

            h1 {
                font-size: 70px;
                font-weight: 900;
            }
            p {
                font-size: 20px;
            }
        }
        &.intro {
            .home-intro {
                .gold-chips {
                    height: 145px;
                }
                .glass-theme-01 {
                    width: 1000px;
                    height: auto;

                    .flex-content {
                        .slogan {
                            font-size: 22px;
                        }
                        .head-copy {
                            font-size: 60px;
                            margin-bottom: 20px;

                            span {
                                display: block;
                            }
                        }
                    }
                    .mr-poker {
                        bottom: -20px;
                        right: -200px;
                        width: 350px;
                        height: 495px;
                    }
                }
            }
        }
    }
    section {
        &.about {
            .card.mission-info,
            .card.trust-info {
                padding: 20px;
                padding-left: 110px;

                h6 {
                    font-size: 22px;
                    margin-bottom: 20px;
                }
                p {
                    font-size: 18px;
                }
            }
            .card.mission-info:before,
            .card.trust-info:before {
                top: 15px;
                left: 20px;
                width: 80px;
                height: 73px;
            }
            .card.core-info {
                h6 {
                    font-size: 22px;
                    margin-bottom: 20px;
                }
                P {
                    font-size: 18px;
                }
            }
        }
    }
}
@media (min-width: 1800px) {
    .container {
        width: 1700px;
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
