html , body {
    background: #001315;
    scroll-behavior: smooth;
    text-decoration: none;
    --bg: #00121793;
    --text: #b5f6ff;
    --text-sec: #b5f6ffaf;
    --text-green: #97ffc4e3;
    --text-sec2:rgba(181, 246, 255, 0.326);
    --bd: #171f21;
    --bd2:rgb(64, 86, 92);
    --bg2:rgb(0, 52, 65);
    --bg2vm:rgba(0, 52, 65, 0.379);
    --brd: #b5f6ff4e;
    --line: #b5f6ff4c;
    --ltext: linear-gradient(to bottom, var(--text), var(--text-sec));
    --box-c: #001c1f;
    --box-g: linear-gradient(to bottom , var(--box-c) , #001214);
}

@font-face {
    font-family: 'Gotham Medium';
    src: url(/static/gothammedium-webfont.woff);
}

@font-face {
    font-family: 'Gotham Bold';
    src: url(/static/gothambold-webfont.woff);
}

body {
    overflow-x: hidden;
    width: 100%;
    margin-top: 0;
    margin-left: 0;
}

nav {
    backdrop-filter: blur(10px);
    position: fixed;
    z-index: 4;
    width: 100%;
    height: 65px;
    overflow: hidden;
    background: var(--bg);
    opacity: 0;
    top: -5px;
    transition: all 0.5s;
}

nav.on {
    opacity: 1;
    top: 0;
}

.line {
    width: 100%;
    position: absolute;
    bottom: 0px;
    height: 1px;
    background: var(--line);
}

.nav-left {
    position: absolute;
    left: 5px;
    height: 65px;
    cursor: pointer;
    overflow: hidden;
    width: 240px;
}

.nav-img {
    width: 55px;
    height: 55px;
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
}

.nav-title {
    position: absolute;
    font-family: "Gotham Bold";
    color: var(--text);
    user-select: none;
    font-size: 23px;
    left: 65px;
    line-height: 35px;
    height: 100%;
}

.nav-right {
    position: absolute;
    right: 15px;
    height: 100%;
    width: calc(100% - 335px);
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-end;
    gap: 10px;
    align-items: center;
}

.nav-bth {
    cursor: pointer;
    right: 15px;
    top: 10px;
    font-size: 40px;
    position: absolute;
    cursor: pointer;
    display: none;
}

.nav-fa {
    color: var(--text-sec);
    transform: rotateZ(0deg);
    transition: all 0.2s , transform 0.5s;
}

.nav-bth:hover > .nav-fa {
    color: var(--text);
}

.nav-button {
    font-family: "Gotham Bold";
    color: var(--text-sec);
    user-select: none;
    cursor: pointer;
    font-size: 17px;
    padding: 10px 10px;
    border-radius: 10px;
    text-decoration: none;
    background: #ffffff00;
    transition: all 0.2s;
}

.nav-button:hover {
    color: var(--text);
    scale: 1.05;
    background: var(--bg2vm);
}

@media (max-width: 768px) {
  .nav-right {
    left: 0;
    top: 75px;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0px;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .nav-bth {
    display: block;
  }

  .nav-button {
        left: 5px;
        position: relative;
        width: 100%;
  }

  .nav-button:hover {
    scale: 1;
  }

  nav.toggle {
    height: 275px;

    .nav-fa {
        color: var(--text);
        transform: rotateZ(360deg);
    }
  }
}

.highlight-fra {
    width: 150px;
    height: 150px;
    border-radius: 150px;
    background: #b5f6ff85;
    filter: blur(100px);
    position: absolute;
    z-index: 1;
    pointer-events: none;
    transform: translate(-50%,-50%);
    transition: opacity 0.5s;
}

.highlight-fra.on {
    transition: opacity 0.5s;
    opacity: 1;
}

.highlight-fra.non {
    opacity: 0;
}

.main-pg {
    z-index: 3;
    position: relative;
    height: 440px;
    box-shadow: 0px 0px 55px var(--bg);
    background-image: 
        linear-gradient(0deg, rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    overflow: hidden;
}

.main-pg.loader {
    height: 100%;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.main-ti {
    font-family: "Gotham Bold";
    background: var(--ltext);
    position: absolute;
    font-size: 55px;
    left: 50%;
    -webkit-background-clip: text;
    background-clip: text;
    user-select: none;
    color: transparent;
    -webkit-text-fill-color: transparent;
    z-index: 3;
    top: 130px;
    opacity: 0;
    filter: drop-shadow(0px 0px 45px var(--text)) blur(15px);
    transform: translateX(-50%);
    transition: all 0.5s;
}

.main-ti.on {
    top: 150px;
    opacity: 1;
    filter: drop-shadow(0px 0px 45px var(--text));
}

.main-dec {
    font-family: "Gotham Bold";
    color: var(--text-sec2);
    position: absolute;
    top: 235px;
    width: 100%;
    z-index: 3;
    text-align: center;
    opacity: 0;
    filter: blur(15px);
    transition: all 0.75s;
}

.main-dec.on {
    top: 255px;
    opacity: 1;
    filter: blur(0px);
}

.main-fle {
    position: absolute;
    width: calc(100% - 100px);
    min-width: 350px;
    height: 100px;
    top: 315px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.main-l {
    background: var(--bd);
    backdrop-filter: blur(10px);
    cursor: pointer;
    font-family: 'Gotham Bold';
    color: var(--text-sec);
    padding: 11px 11px; 
    text-decoration: none;
    border-radius: 10px;
    border: solid 3px var(--brd);
    transition: all 0.5s;
}

.space {
    position: relative;
    height: 35px;
}

.space.long {
    height: 100px;
}

.line-top {
    position: absolute;
    height: 1px;
    background: var(--line);
    width: 100%;
}

.sec-pg {
    position: relative;
    width: 100%;
    height: auto;
}

.commu {
    position: relative;
    width: 100%;
    height: auto;
    background-image: 
        linear-gradient(0deg, rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    overflow: hidden;
}

.main-l:hover {
    scale: 1.05;
    border: solid 3px var(--text);
    color: var(--text);
}

.sec-text {
    font-family: "Gotham Bold";
    background: var(--ltext);
    position: relative;
    font-size: 45px;
    left: 50%;
    width: 100%;
    text-align: center;
    -webkit-background-clip: text;
    background-clip: text;
    user-select: none;
    color: transparent;
    -webkit-text-fill-color: transparent;
    z-index: 3;
    top: -10px;
    opacity: 0;
    filter: drop-shadow(0px 0px 45px var(--text)) blur(15px);
    transform: translateX(-50%);
    transition: all 0.5s;
}

.sec-text.small {
    font-size: 35px;
}

.sec-text.on {
    top: 0;
    opacity: 1;
    filter: drop-shadow(0px 0px 45px var(--text));
}

.sec-dec {
    display: block;
    font-family: "Gotham Bold";
    color: var(--text-sec2);
    position: relative;
    top: -15px;
    width: 100%;
    z-index: 3;
    text-align: center;
    opacity: 0;
    filter: blur(15px);
    transition: all 0.75s;
}

.sec-dec.on {
    top: 0px;
    opacity: 1;
    filter: blur(0px);
}

.global-flex {
    position: relative;
    width: calc(100% - 150px);
    min-width: 350px;
        left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
}

.global-flex.now {
    position: relative;
    width: calc(100% - 150px);
    min-width: 350px;
        left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-direction: column;
}

.f-box {
    width: 350px;
    height: 265px;
    position: relative;
    background: var(--box-g);
    border-radius: 20px;
    opacity: 0;
    top: -45px;
    filter: drop-shadow(0px 0px 0px #ffffff00);
    transition: all 0.25s , top 0.5s ease , opacity 0.5s ease , filter 0.3s;
}

.f-box.on {
    top: 0;
    opacity: 1;
}

.f-box:hover {
    scale: 1.035;
    filter: drop-shadow(0px 0px 5px var(--text-sec));
}

.f-icon {
    color: var(--text);
    font-size: 65px;
    position: absolute;
    left: 50%;
    top: 30px;
    transform: translateX(-50%);
}

.f-desc {
    font-family: "Gotham Bold";
    color: var(--text-sec2);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 165px;
    font-size: 15px;
    width: calc(100% - 20px);
    text-align: center;
    display: block;
}

.f-title {
    font-family: "Gotham Bold";
    color: var(--text-sec);
    position: absolute;
    left: 50%;
    width: 100%;
    text-align: center;
    transform: translateX(-50%);
    top: 90px;
    display: block;
}

.f-line {
    width: 100%;
    background: var(--line);
    height: 1px;
    position: relative;
}

.plan-box {
    width: 350px;
    border-radius: 15px;
    height: auto;
    padding: 95px 0px;
    background: var(--box-g);
    display: block;
    position: relative;
    min-height: 120px;
    opacity: 0;
    top: -45px;
    transition: all 0.25s;
}

.plan-box.on {
    opacity: 1;
    top: 0;
}

.plan-box:hover {
    scale: 1.035;
    filter: drop-shadow(0px 0px 5px var(--text-sec));
}

.plantop {
    font-family: "Gotham Bold";
    color: var(--text);
    position: absolute;
    left: 15px;
    top: 5px;
}

.plan-icon {
    font-size: 15px;
}

.plan-per {
    font-size: 17px;
    opacity: 0.5;
}

.plan-type {
    position: absolute;
    font-family: "Gotham Bold";
    color: var(--text-sec);
    top: 5px;
    right: 5px;
    border-radius: 8px;
    background: var(--box-c);
    width: 100px;
    text-align: right;
    padding: 7px 7px;
}

.mkplan {
    width: 100%;
    height: 1px;
    background: var(--line);
    position: absolute;
    top: 80px;
}

.mkplan.m2 {
    width: 100%;
    height: 1px;
    background: var(--line);
    position: relative;
    top: 125px;
}

.fea-list {
    position: relative;
    width: calc(100% - 35px);
    left: 50%;
    transform: translateX(-50%);
    height: auto;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}

.fea-box {
    font-family: "Gotham Bold";
    color: var(--text);
    font-size: 20px;
    position: relative;
}

.fea-ic {
    color: var(--text-green);
    font-size: 20px;
    opacity: 0.75;
}

.planbutton {
    background: var(--box-c);
    font-family: "Gotham Bold";
    color: var(--text);
    cursor: pointer;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
    font-size: 20px;
    width: calc(100% - 15px);
    text-align: center;
    height: 45px;
    text-decoration: none;
    line-height: 45px;
    border-radius: 5px;
    transition: all 0.25s;
}

.planbutton:hover {
    background: var(--text-sec2);
}

.ft {
    width: 100%;
    height: 55px;
    position: fixed;
    bottom: -65px;
    background: var(--bg2vm);
    backdrop-filter: blur(10px);
    z-index: 4;
    transition: all 0.5s ease;
}

.ft.on {
    bottom: 0;
}

.cr {
    font-family: "Gotham Bold";
    color: var(--brd);
    font-size: 13px;
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
}

.dc {
    font-family: "Gotham Bold";
    color: var(--brd);
    font-size: 10px;
    position: absolute;
    top: 50%;
    right: 15px;
    display: block;
    transform: translateY(-50%);
}

.game-box {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    overflow: hidden;
    display: block;
    position: relative;
    cursor: pointer;
    height: 250px;
    margin-left: -5%;
    opacity: 0;
    transition: all 0.5s ease;
}

.gameinfo {
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    transition: all 0.3s;
}

.game-box:hover {
    .gameinfo {
        background: rgba(0, 0, 0, 0.35);
        backdrop-filter: blur(0px);
    }
}

.gamename {
    font-size: 45px;
    color: var(--text);
    font-family: "Gotham Bold";
    pointer-events: none;
    position: absolute;
    left: 25px;
    top: 10px;
    filter: drop-shadow(0px 0px 4px var(--text-sec));
}

.game-box.on {
    margin-left: 0;
    opacity: 1;
}

.faq-box {
    width: calc(100% - 150px);
    max-width: 550px;
    min-width: 350px;
    height: 55px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    z-index: 2;
    opacity: 0;
    top: -25px;
    filter: blur(10px);
    transition: all 0.3s ease;
}

.faq-box.on {
    opacity: 1;
    top: 0;
    filter: blur(0px);
}

.faq-title {
    font-size: 17px;
    color: var(--text);
    font-family: "Gotham Bold";
    pointer-events: none;
    position: absolute;
    left: 5px;
    top: 5px;
    filter: drop-shadow(0px 0px 4px var(--text-sec));
}

.faq-button {
    position: absolute;
    right: 15px;
    top: 20px;
    color: var(--text);
    transition: all 0.25s ease;
}

.faq-box.tog {
    .faq-button {
        transform: rotateZ(180deg);
    }

    height: 120px;
}

.faq-answ {
    font-family: "Gotham Bold";
    pointer-events: none;
    position: absolute;
    font-size: 15px;
    color: var(--text);
    top: 55px;
    left: 5px;
    opacity: 0.5;
    width: calc(100% - 10px);
}