<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
*,
::before,
::after {
	box-sizing: border-box;
}

html {
	/* Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3) */
	font-family:
		system-ui,
		'Segoe UI',
		Roboto,
		Helvetica,
		Arial,
		sans-serif,
		'Apple Color Emoji',
		'Segoe UI Emoji';
	line-height: 1.15; /* 1. Correct the line height in all browsers. */
	-webkit-text-size-adjust: 100%; /* 2. Prevent adjustments of font size after orientation changes in iOS. */
	-moz-tab-size: 4; /* 3. Use a more readable tab size (opinionated). */
	-o-tab-size: 4;
	   tab-size: 4; /* 3 */
}


hr {
	height: 0; /* 1 */
	color: inherit; /* 2 */
}

abbr[title] {
	-webkit-text-decoration: underline dotted;
	        text-decoration: underline dotted;
}

b,
strong {
	font-weight: bolder;
}

code,
kbd,
samp,
pre {
	font-family:
		ui-monospace,
		SFMono-Regular,
		Consolas,
		'Liberation Mono',
		Menlo,
		monospace; /* 1 */
	font-size: 1em; /* 2 */
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

table {
	text-indent: 0; /* 1 */
	border-color: inherit; /* 2 */
}

button,
input,
optgroup,
select,
textarea {
	font-family: inherit; /* 1 */
	font-size: 100%; /* 1 */
	line-height: 1.15; /* 1 */
	margin: 0; /* 2 */
}

button,
select {
	text-transform: none;
}

button,
[type='button'],
[type='reset'],
[type='submit'] {
	-webkit-appearance: button;
}

::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

:-moz-focusring {
	outline: 1px dotted ButtonText;
}

:-moz-ui-invalid {
	box-shadow: none;
}

legend {
	padding: 0;
}

progress {
	vertical-align: baseline;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
	height: auto;
}

[type='search'] {
	-webkit-appearance: textfield; /* 1 */
	outline-offset: -2px; /* 2 */
}

::-webkit-search-decoration {
	-webkit-appearance: none;
}

::-webkit-file-upload-button {
	-webkit-appearance: button; /* 1 */
	font: inherit; /* 2 */
}

summary {
	display: list-item;
}

:root {
    --light-primary: #fff;
    --accent-color: #0290e9;
    --accent-color-secondarily:#ff8331;
    --dark-primary: #262525;
    --dark-secondarily: #000000;
    --border-color: #878776;
    --bg-th:#fff;
    --bg-td:#9a8c8c;
    --td-hover:#fcfcfc;
    --before-color:#0290e9;
    --btn-color: linear-gradient(145deg, #f74b57, #e40310);
    --btn-hover:linear-gradient(145deg, #e73844, #c7020f);
    --btn-active:linear-gradient(145deg, #c7020f, #a0020d); 
    --bg-gradient: linear-gradient(to bottom, #000000, #333333);
   
}

p{
    margin-bottom: 15px;
}

*:where( :not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
    all: unset;
    display: revert;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
}

a,
button {
    cursor: revert;
    text-decoration: none;
    
}

ol,
ul,
menu {
    list-style: none;
}

/* For images to not be able to exceed their container */

img {
    max-inline-size: 100%;
    max-block-size: 100%;
  
}

/* removes spacing between cells in tables */

table {
    border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the &lt;body&gt; text input doesn't working */

input,
textarea {
    -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */

textarea {
    white-space: revert;
}

/* minimum style to allow to style meter element */

meter {
    -webkit-appearance: revert;
    -moz-appearance: revert;
         appearance: revert;
}

/* preformatted text - use only for this feature */

:where(pre) {
    all: revert;
    box-sizing: border-box;
}

/* reset default text opacity of input placeholder */

::-moz-placeholder {
    color: unset;
}

::placeholder {
    color: unset;
}

/* remove default dot (â€¢) sign */

::marker {
    content: initial;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */

:where([hidden]) {
    display: none;
}

:where([contenteditable]:not([contenteditable="false"])) {
    -moz-user-modify: read-write;
    -webkit-user-modify: read-write;
    overflow-wrap: break-word;
    -webkit-line-break: after-white-space;
    -webkit-user-select: auto;
}

:where([draggable="true"]) {
    -webkit-user-drag: element;
}

:where(dialog:modal) {
    all: revert;
    box-sizing: border-box;
}

body{
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif;;
    font-size: 17px;
    line-height: 20px;
    line-height: 1.5;
    box-sizing: border-box;
    overflow-x: hidden;
    margin: 0;
    background-color: var(--light-primary);
}

h1,h2{
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 15px;
}

h3{
    font-weight: 600;
    font-size: 20px;
    margin-top:10px;
}

.section{
    padding: 20px;
    max-width: 720px;
    margin: 0 auto;
    color: var(--dark-primary);
}

.section-top{
    padding-top: 100px;
}

.button-box{
    width: 100%;
    height: auto;
    color: var(--light-primary);
    background-color: var(--accent-color);
    border-radius: 15px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 35px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4), 0 4px 6px rgba(255, 255, 255, 0.2) inset;


    &amp;&gt;div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    gap: 5px;
    width: 50%;
    }

    &amp; p {
        text-align: center;
    }
}

.button {
    min-height: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 15px 10px;
  background: linear-gradient(145deg, #f74b57, #e40310);
  border-radius: 0.75rem;
  transition: all 0.1s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4), 0 4px 6px rgba(255, 255, 255, 0.2) inset;
  width: 50%;
  height: 50px;
  color: var(--light-primary);
}

.button:hover {
  background: linear-gradient(145deg, #e73844, #c7020f);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5), 0 4px 6px rgba(255, 255, 255, 0.3) inset;
}

.button:active {
  letter-spacing: 0px;
  transform: skew(-10deg) translateY(6px); 
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4), 0 2px 4px rgba(255, 255, 255, 0.2) inset;
  background: linear-gradient(145deg, #c7020f, #a0020d); 
}

.img-box {
  width: 100%;
  height: auto; 
  border-radius: 15px;
    overflow: hidden;
    margin-bottom: 15px;

    &amp; img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
      -o-object-position: center;
         object-position: center;
      display: block;
    }
}

.no-scroll {
    overflow: hidden;
  }

.hidden {
  position: absolute;
  left: -9999px;
  visibility: hidden;
}

strong{
  margin: 10px 0px;
  display: block;
}

.header {
    position: fixed;
    background: var(--bg-gradient);
    color: var(--light-primary);
    width: 100%;
   padding: 10px 15px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, .3);
  z-index: 998;
}

.logo{
    margin-right: 150px;
}

.logo-link{
    margin-right: 50px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;

    @media(min-width:992px){
     justify-content: center;
    }
}

@media(min-width:992px){
    nav{
        margin-left: 75px;
    }
   }

.nav-mob.is-visible {
    transform: translateY(0);
}

.nav-list {
    display: none;
 }

@media (min-width: 992px) {
    .nav-list {
       display: flex;
       gap: 64px;
    }
 }

.nav-item {
transition: all 0.3s ease;
position: relative;

    &amp;:hover{
        color: var(--accent-color);
    }
}

.burger-btn {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-right: 15px;
    @media (min-width:992px) {
        display: none;
    }
}

.top-line, .middle-line,.bottom-line {
    display: block;
    width: 20px;
    height: 1.5px;
    border-radius: 15px;
    background-color: var(--light-primary);
}

.nav-mob {
    transform: translateY(-200%);
    background-color: var(--dark-secondarily);
    color: var(--light-primary);
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    transition: all 0.3s ease;
}

.nav-btn-close{
position: absolute;
top: 20px;
right: 40px;;

}

.nav-list-mob {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 24px;
    font-weight: 600;
}

.nav-link.active {
    border-bottom: 2px solid var(--bg-accent-color);
    color: var(--accent-color);
    
}

.nav-link-mob.active {
  border-bottom: 2px solid var(--accent-color);
  color: var(--accent-color);
  position: relative;
}

.active:before{
    content: '';
    display: block;
    width: 45px;
    height: 25px;
    position: absolute;
    top: 0;
    left: -50px;
    background-image: url(./img/555.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;


}

.language-dropdown {
    position: relative;
    display: inline-block;
    margin-left: 50px;
    display: none;

    @media (min-width:992px) {
        display: block;
    }
    
}

.dropdown-btn {
    color: var(--btn-color);color: var(--btn-color);
    padding: 10px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    background: var(--bg-gradient);
    border-radius: 5px;
}

.dropdown-content {
    display: none;
    position: absolute;
    min-width: 140px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    background: var(--bg-gradient);
}

.dropdown-content.show {
    display: block;
  }

.dropdown-content a {
    color: var(--btn-color);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.mob a{
    padding: 6px 5px;
    font-size: 16px;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
    background: var(--btn-color);
    color: var(--dark-primary);
}

.language-dropdown:hover .dropdown-content {
    display: block;
}

.language-dropdown:hover .dropdown-content {
    display: block;
}

@media (max-width: 991px) {
    .language-dropdown:hover .dropdown-content {
        display: none;
    }

    .dropdown-content.show {
        display: block;
    }
}

.questions-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: var(--light-primary);
}

.questions-item {
    border-radius: 25px;
    overflow: hidden;
}

.questions-content-box {
    background: linear-gradient(145deg, var(--accent-color), var(--accent-color-secondarily));
    padding: 12px 42px;
}

.questions-title {
    display: grid;
    grid-template-columns: 1fr 20px;
    cursor: pointer;
    align-items: center;
    font-size: 22px;
}

.icon {
    width: 30px;
    height: 25px;
    fill: var(--light-primary);
}

.questions-content {
    display: none;
}

@media (min-width:992px) {
    .hero-cover{
        display: flex;
        gap: 15px;
        justify-content: center;
        align-items: center;
        }
        
        .hero-box {
            width: 50%;
        }
}

.hero-mob-text{
    font-weight: 900;
    font-size: 24px;
    color: var(--btn-color);
    text-shadow: 1px 1px 3px var(--accent-color-secondarily);
    margin-bottom: 5px;

    @media (min-width:768px) {
        display: none;
     }
}

.hero-list-mob {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;

    @media (min-width:768px) {
        display: none;
     }
}

.hero-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px auto;
    display: block;

    @media (max-width:768px) {
       display: none;
    }
}

.hero-img-box{
    border-radius: 15px;
    overflow: hidden;
    margin-top: 15px;
    /* max-width: 300px; */
    width: 300px;
    max-height: 350px;

    &amp; img {
        width: 100%;
        -o-object-fit: contain;
           object-fit: contain;
        -o-object-position: center;
           object-position: center;
        
    }

    }

@media (max-width:992px) {
    .hero-img-box{
        margin: 0 auto;
        width: 100%;
        height: auto; 

        &amp; img {
           display: block;
          }
    }
   
}

.list {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 15px;
    padding: 20px 0px 0px 40px;
    margin-bottom: 15px;
}

.list-item{
    position: relative;
    padding: 10px 25px 10px 40px;
    border-radius: 10px;
    background: var(--accent-color-secondarily);
    color: var(--light-primary);

    &amp;::before {
        content: attr(data-title);
        position: absolute;
        top: 50%;
        left: -20px;
        transform: translateY(-50%);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        font-weight: 700;
        font-size: 38px;
        background: var(--before-color);
        border-radius: 50%;
        z-index: 2;
        color: var(--light-primary);
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2),
                    inset 0px -3px 6px rgba(0, 0, 0, 0.3),
                    inset 0px 3px 6px rgba(255, 255, 255, 0.3);
    }
}

table {
    width: 100%; 
    border-collapse: collapse; 
    margin-top: 15px;
   
}

th, td {
    padding: 12px; 
    text-align: left; 
    border-bottom: 1px solid var(--border-color);
}

th {
    background-color: var(--bg-th);
    font-weight: bold;

    &amp;:first-child{
        border-top-left-radius: 10px;
    }

    &amp;:last-child{
        border-top-right-radius: 10px;
    }
}

tbody tr:hover {
    background-color: var(--td-hover);
    color: var(--dark-secondarily);
}

.hidden {
    display: none;
}

tbody tr&gt;td:nth-child(odd) {
    background: var(--before-color);
    color: var(--light-primary);
}

.list-img{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px 0px;
    margin-top: 20px;
    margin-bottom: 15px;
}

.list-img-item{
    width: 80%;
    transition: all 0.3s ease-in-out;

    &amp;:hover,
    &amp;:focus{
transform: scale(1.1);
    }
}

.list-img-item{
overflow: hidden;
border-radius: 15px;  
height: auto;

&amp;&gt;img {
    height: 100%;
    width: 100%;
}
}



.footer{
    width: 100%;
    padding: 25px;
    text-align: center;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, .3);
    background:var( --bg-gradient);
    color: var(--light-primary);
}

.footer-text{
font-size: 12px;
}

.footer-payment-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.footer-payment-list {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: center;
}


/* ----------plus-minus------------- */
@media (min-width:992px) {
    .plus-minus-box{
        display: flex;
        gap: 15px;
    }
}

.group {
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.plus-group {
    background-color: #98d39c;
    border: 1px solid #08ef0f;
}

.minus-group {
    background-color: #8b454f;
    border: 1px solid #ed1b1b;
    color: #fff;
}

.plus-minus-box ul li {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 16px;
}

.plus-group ul li::before {
    content: 'âœ”';
    color: #4CAF50;
    margin-right: 10px;
}

.minus-group ul li::before {
    content: 'âœ–';
    color: #F44336;
    margin-right: 10px;
}

/* --language-dropdown-- */

.language-dropdown {
    position: relative;
    display: inline-block;
    margin-left: 50px;
    display: none;

    @media (min-width:992px) {
        display: block;
    }
    
}

.dropdown-btn {
    color: var(--light-primary);
    padding: 10px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    background: #e9673c;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-content {
    display: none;
    position: absolute;
    min-width: 160px;
    z-index: 1;
    background: #e9673c;
    border-radius: 15px;
    overflow: hidden;
}

.dropdown-item{
    display: flex;
    align-items: center;
    padding-left: 5px;
}

.dropdown-content.show {
    display: block;
  }

.dropdown-content a {
    color: var(--light-primary);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.mob a{
    padding: 10px 5px;
    font-size: 16px;
}

.dropdown-content .dropdown-item:hover {
    background: var(--light-primary);
}

.dropdown-content a:hover {
    color: var(--dark-primary);
    background: var(--light-primary);
}

.language-dropdown:hover .dropdown-content {
    display: block;
}

@media (max-width: 991px) {
    .language-dropdown:hover .dropdown-content {
        display: none;
    }

    .dropdown-content.show {
        display: block;
    }
}

/* ------- */



/* ------------------------------- */

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .game-list {
        grid-column-gap: 15px;
        grid-row-gap: 15px;
    }
}

.game-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 50px;
    grid-row-gap: 50px;

    @media only screen and (max-width:768px) {
        grid-template-columns: repeat(2, 1fr);  
    }
}

.card[data-v-5e038574] {
    position: relative;
    border-radius: 20px;
    background-color: #efebff;
    transition: all .2s ease;


    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
    -webkit-font-smoothing: antialiased;
    transition: all 0.3s ease;
}

.card:hover,
.card:focus{
    transform: scale(1.1);
}

.card-desc{
    @media only screen and (max-width:768px) {
       display: none; 
    }
}

.card .card-favorite[data-v-5e038574] {
    top: 15px;
}

.card .card-favorite[data-v-5e038574], .card .card-tutorial[data-v-5e038574] {
    width: 28px;
    height: 28px;
    border-radius: 14px;
    box-shadow: 0 3px 5px 0 rgba(0, 0, 0, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: none;
    position: absolute;
    right: 15px;
    z-index: 1;
    padding: 0;
}


.card .card-image[data-v-5e038574] {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 230px;
    cursor: pointer;
}

.card .card-tutorial[data-v-5e038574] {
    bottom: 68px;
}

.card .card-favorite[data-v-5e038574], .card .card-tutorial[data-v-5e038574] {
    width: 28px;
    height: 28px;
    border-radius: 14px;
    box-shadow: 0 3px 5px 0 rgba(0, 0, 0, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: none;
    position: absolute;
    right: 15px;
    z-index: 1;
    padding: 0;
}

.card .card-link[data-v-5e038574] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: #fff;
    height: 53px;
    background: #fe4100;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    text-decoration: none;
    transition: all .2s ease;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.card .card-link:hover{
    background: #6d1d03;
}

.card .card-link[data-v-5e038574] {
    top: 10px;
}

.card .card-favorite img[data-v-5e038574], .card .card-tutorial img[data-v-5e038574] {
    display: flex;
    transform: translateY(2px);
}

.app-list-item{

    &amp;::before {
        content: attr(data-title);
        position: absolute;
        top: 50%;
        left: -20px;
        transform: translateY(-50%);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        font-weight: 700;
        font-size: 38px;
        background: linear-gradient(145deg, #fe4100, #f06a3d);
        border-radius: 50%;
        z-index: 2;
        color: var(--light-primary);
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2),
                    inset 0px -3px 6px rgba(0, 0, 0, 0.3),
                    inset 0px 3px 6px rgba(255, 255, 255, 0.3);
    }
}

/* -----------------join------------- */

.join {
    width: 150px;
    height: 79px;
    position: fixed;
    top: 100px;
    left: 0;
    z-index: 100;
    transition: transform 0.3s ease;
    transform: translateX(-110%);
  }
  
  @media only screen and (min-width: 480px) {
    .join {
      width: 180px;
      height: 92px;
    }
  }
  
  @media only screen and (min-width: 768px) {
    .join {
      width: 220px;
      height: 120px;
    }
  }
  
  @media only screen and (min-width: 1024px) {
    .join {
      width: 320px;
      height: 250px;
    }
  }
  
  .join-btn {
    fill: #fff; 
    width: 25px;
    height: 25px;
    margin-left: 5px;
    transition: transform 0.3s ease, filter 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2px;
    background-color: var(--accent-color);
    border-radius: 50%;

    &amp; svg{
color: var(--light-primary);
    }
  }
  
  @media only screen and (min-width: 768px) {
    .join-btn {
      width: 30px;
      height: 30px;
    }
  }
  
  @media only screen and (min-width: 1024px) {
    .join-btn {
      width: 40px;
      height: 40px;
    }
  }
  
  .join-btn .middle,
  .join-btn .bottom {
    width: 65%;
    height: 1.5px;
    background-color: #fff; 
  }
  
  .join-btn .middle {
    transform: translateY(0.5px) rotate(45deg);
  }
  
  .join-btn .bottom {
    transform: translateY(-3px) rotate(-45deg);
  }</pre></body></html>