* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Doto", sans-serif;
    background-image: linear-gradient(to right, #000000 0%, #151d39 50%, #000000 100%);
    overflow: hidden;
}

iframe {
        width: 100vw;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        border: none;
        margin: 0;
        padding: 0;
    }

header {
    position: relative;
    width: 100%;
    z-index: 100;
}

header ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 10px 0;
}

header li {
    padding: 15px 20px;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
}

header .logo {
	max-width: 100%;
	width: 300px;
	height: 80px;
}

.item button {
	padding: 20px 90px;
	background-image: linear-gradient(to top, #000000 0%,#e38900 50%, #000 100%);
	border: solid 2px #ffffff;
	border-radius: 30px;
	color: #fff;
	font-size: 1.2em;
	font-weight: 700;
	font-family: 'Pacifico', cursive;
	box-shadow: 
            0 10px 0 #adadad55,
            0 4px 1px #0e1829,
            0 4px 12px 5px #ffae00;
			transition: 0.5s;
	justify-items: center;
	justify-content: center;
}

.item button:active {
	box-shadow:
            0 0px 0 3px #ffffff,
            0 0 20px 20px #ffc800;
        transform: translateY(5px);
}

.slider {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
}

.title {
    color: #fff;
    font-size: 2rem;
    font-family: 'Pacifico', cursive;
    text-shadow: 3px 3px 0px #a06800;
    text-align: center;
    margin-bottom: 20px;
}

.images {
    display: flex;
    transition: transform 0.5s ease-in-out;
    max-width: 100%;
}

.item {
    flex: 0 0 100%;
    width: 100%;
    text-align: center;
}

.item img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

#prev,
#next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-family: "Doto", sans-serif;
    font-weight: 400;
    border: none;
	border-radius: 30px;
    padding: 20px;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

#prev {
    left: 10px;
        font-family: "Doto", sans-serif;
    font-weight: 400;

}

#next {
    right: 10px;
        font-family: "Doto", sans-serif;
    font-weight: 400;

}

#prev:hover,
#next:hover {
    opacity: 1;
}

.dots {
    text-align: center;
    padding: 10px 0;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: #bbb;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: #E88735;
}

#play-demo {
    display: block;
    margin: 10px auto;
    padding: 10px 20px;
    background: #E88735;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

#play-demo:hover {
    background: #d77624;
}

@media (max-width: 768px) {
    header li {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    header {
        padding: 0px 2px;
        margin-top: -28px;
        border-radius: 30px;
    }
    header img {
        margin-bottom: -30px;
        margin-left: -10px;
        max-width: 80%;
    }
    #prev,
    #next {
        font-size: 1.5rem;
        padding: 8px;
    }

    .item img {
        max-width: 90%;
    }

    #play-demo {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 1.8rem;
    }

    header li {
        padding: 8px 10px;
        font-size: 0.8rem;
    }

    #prev,
    #next {
        font-size: 1.2rem;
        padding: 5px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    #play-demo {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    }

footer {
    position: fixed;
    padding: 10px 0;
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    text-align: center;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes borderGlow {
    0%, 100% {
        border-color: #ffae00;
        box-shadow: 0 0 5px #ffaa00, 0 0 20px #ffaa0088;
    }
    50% {
        border-color: #ffffff;
        box-shadow: 0 0 15px #ffcc33, 0 0 40px #ffcc3388;
    }
}

footer button {
    padding: 10px 640px;
    width: calc(100% - 20px);
    margin: 0 10px;
    border-radius: 30px 30px 0 0;
    color: #fff;
    font-size: 1.8em;
    font-weight: 700;
    font-family: "Doto", sans-serif;
    cursor: pointer;
    border: solid 2px #ff006a;
    background-image: linear-gradient(270deg, #000000, #d69200, #ad7600, #000000);
    background-size: 600% 600%;
    background-position: 0% 50%;
    animation:
        gradientMove 6s ease infinite,
        borderGlow 3s ease infinite;
    transition: transform 0.3s ease;
    box-sizing: border-box;
}

footer button:hover {
    transform: scale(1.05);
    color: #ffd000;
    animation-play-state: paused;
    background-image: linear-gradient(270deg, #000000, #ffae00, #ffae00, #000000);
    border-color: #ffc400;
    box-shadow:
        0 0 15px #ffc400,
        0 0 40px #ffae00;
}

footer button:active {
    transform: translateY(2px);
}

@media (max-width: 640px) {
    footer {
        min-height: 40px;
        padding: 5px;
    }
    footer button {
        padding: 5px 0;
        font-size: 1.4em;
        border-width: 2px;
        margin: 0 5px;
        width: calc(100% - 10px);
        width: 400px;
        margin-bottom: -6px;
    }
}
.game-frame .jq-ry-group svg {
    margin-right: 5px
}
.game-frame-simple {
    background-color: #080808;
    display: flex;
    align-items: center;
    height: 40px;
    margin-top: 28px;
    border-radius: 15px 15px 0 0
}
.game-frame-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center
}

.game-frame-actions .write-review {
    margin-right: 20px;
    cursor: pointer
}

.game-frame-actions .write-review a,
.game-frame-actions .write-review a:visited {
    text-decoration-color: #fcf45f;
    text-decoration: underline
}

.game-frame-actions .write-review span {
    padding-left: 5px;
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 12px
}

.game-frame-actions .refresh-game {
    cursor: pointer
}

.game-frame-actions .refresh-game {
    -webkit-mask: url(/images/icons/refresh.svg) no-repeat center;
    mask: url(/images/icons/refresh.svg) no-repeat center;
    width: 25px;
    height: 25px;
    background-color: #686868;
    cursor: pointer
}

.game-frame-actions .refresh-game.active {
    background: linear-gradient(180deg, #fcf45f 0, #fead25 100%)
}

.votes-count-bubble>span {
    width: 45px;
    display: block;
    float: left;
    text-align: center
}

.game-frame {
    position: relative
}

.game-frame .game-content a:not(.button) {
    display: block
}

.game-frame .game-content a>img {
    width: 100%
}

.game-frame .game-content span {
    font-size: 12px;
    display: inherit;
    text-align: center
}

.game-frame .game-content span a {
    color: #fff
}

.game-frame {
    color: #fff;
    text-decoration: none
}
.game-frame-actions {
    background: linear-gradient(0, #f2960e, #f7b119);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    border: 0
}
.magenta .main-block .game-frame .game-frame-simple {
    background: #2b292e;
    border-radius: 0
}

.magenta .main-block .game-frame .game-frame-simple .review-stars .jq-ry-container .jq-ry-group-wrapper svg {
    margin-right: 6.2px
}

.magenta .main-block .game-frame .game-frame-simple .review-stars .jq-ry-container .jq-ry-group-wrapper svg:last-child {
    margin: 0
}

.magenta .main-block .game-frame .game-frame-simple .review-stars .jq-ry-container .jq-ry-group-wrapper .jq-ry-rated-group svg {
    filter: brightness(0) saturate(1) invert(1)
}

.magenta .main-block .game-frame .game-frame-simple .review-stars .review-average span {
    font-family: Montserrat, sans-serif
}

.magenta .main-block .game-frame .game-frame-simple .game-frame-actions {
    align-items: center;
    display: flex;
    gap: 2ch;
    justify-content: space-evenly
}

.magenta .main-block .game-frame .game-frame-simple .game-frame-actions .votes-count-bubble {
    position: relative;
    top: 0;
    right: 0;
    width: auto;
    height: auto;
    background: 0 0;
    color: #fff;
    padding: 0
}

.magenta .main-block .game-frame .game-frame-simple .game-frame-actions .votes-count-bubble>span {
    display: flex;
    gap: 1ch
}

.magenta .main-block .game-frame .game-frame-simple .game-frame-actions .votes-count-bubble>span>br {
    display: none
}

.magenta .main-block .game-frame .game-frame-simple .game-frame-actions .write-review {
    filter: brightness(0) saturate(1) invert(1);
    margin-left: auto;
    margin-right: 0
}

.magenta .main-block .game-frame .game-frame-simple .game-frame-actions .write-review a {
    text-decoration: none
}

.magenta .main-block .game-frame .game-content .game-container-wrapper .play-game-button-wrapper {
    display: flex;
    flex-direction: column-reverse
}

.magenta .main-block .game-frame .game-content .game-container-wrapper .play-game-button-wrapper .magenta-button {
    align-items: center;
    display: flex;
    justify-content: center;
    font-size: 15px
}

.magenta .main-block .game-frame .game-content .game-container-wrapper .play-game-button-wrapper .transparent-button {
    border-radius: 0
}

.magenta .main-block .game-frame .content-border-img,
.magenta .main-block .mobile-review .content-border-img {
    display: none
}