@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

:root {
    --color-text: #002b50;
    --color-orange: #FFA500;
    --color-red: #FF0000;
    --color-yellow: #FFFF00;
    --color-white: #FFFFFF;
    --color-border: #DDDDDD;
    --color-shade_a: #eeedf2;
    --color-shade_b: #ecf0f4;
}

* {
    box-sizing: border-box;
    font-family: "Nunito", sans-serif;

}

body {
    font-family: "Nunito", sans-serif;
    background-color: var(--color-white);
    margin: 0;
}

.header {
    height: 70px;
    background-color: var(--color-orange);
    width: 100%;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    width: 95%;
}

.logo-pix {
    color: var(--color-white);
    background-color: var(--color-red);
    padding: 3px 0 3px 10px;
    font-weight: 700;
    border-top: 1px solid var(--color-yellow);
    border-left: 1px solid var(--color-yellow);
    border-bottom: 1px solid var(--color-yellow);
}

.logo-pla {
    color: var(--color-yellow);
    background-color: var(--color-red);
    padding: 3px 10px 3px 0;
    /* border-radius: 5px; */
    font-weight: 700;
    /* border-right: 10; */
    border-top: 1px solid var(--color-yellow);
    border-right: 1px solid var(--color-yellow);
    border-bottom: 1px solid var(--color-yellow);
}

.nav-flax {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.header-section .site-logo {
    color: var(--color-white);
    font-size: 22px;
    text-decoration: none;
    font-weight: 500;
}

.nav-links .menu-items {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links .link {
    padding: 0 6px 0;
    text-decoration: none;
    color: var(--color-white);
    font-size: 14px;
    font-weight: 900;
    transition: all 0.2s;
    letter-spacing: 1px;
}

.link:hover {
    color: var(--color-yellow);
}

.mobile-menu-ddq23 {
    display: none;
}

.mobile-menu-ddq23 span {
    color: #fff;
}

.my-account-btn {
    margin-left: 10px;
}

.btn {
    /* background-image: linear-gradient(to right, #4facfe 0%, #00f2fe 100%); */
    padding: 5px;
    border-radius: 100%;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    color: var(--color-white);
    background-color: var(--color-red);
}

#search_hht4 {
    display: none;
    z-index: 5;
}

.search {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

.search-box {
    width: 500px;
    height: 200px;
    background-color: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border: 5px solid var(--color-yellow);
}

.search-input {
    outline: none;
    border: 1px solid var(--color-border);
    width: 250px;
    padding: 10px;
    font-size: 18px;
    font-weight: 600;
    max-height: 50px;
}

button.game-search-btn {
    padding: 10px 40px;
    background: var(--color-orange);
    outline: none;
    border: 1px solid var(--color-orange);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-white);
    max-height: 50px;
    cursor: pointer;
}

.close-search {
    position: absolute;
    right: 0;
    top: 0;
    padding: 2px;
    border-radius: 2px;
    background-color: var(--color-red);
    color: var(--color-white);
    font-size: 0px;
    cursor: pointer;
}

.search-field {
    display: flex;
    justify-content: center;
}

.game-area {
    display: grid;
    grid-template-columns: 70% 30%;
    margin-top: 20px;
}

.game-play {
    grid-column: span 1;
}

.right-sied {
    grid-column: span 1;
    /* background-color: #13141e; */
    border: 1px solid var(--color-border);
    margin-left: 20px;
    margin-top: -20px;
}

#game-iframe {
    width: 100%;
    height: 540px;
    /* box-shadow: 5px 5px 10px 2px rgba(0, 0, 0, 0.5); */
}

.grid-game-items {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
}

/* .ad-1 {
    grid-column: span 1;
} */

.game-item {
    grid-column: span 1;
    margin: 0 10px 10px;
}

.game-item h3 {
    font-size: 12px;
}

.thumbnale-game {
    width: 100%;
}

.title-contral {
    display: flex;
    justify-content: space-between;
    background-color: var(--color-orange);
    padding: 10px;
    color: var(--color-text);
    border: 2px solid var(--color-yellow);
}

.game-title {
    margin: 0;
    font-size: 20px;
    max-width: 75%;
}

/* Tool Tip */
.game-contral {
    display: flex;
    gap: 15px;
}

/* Tooltip container */
.game-contral .material-symbols-outlined {
    position: relative;
    cursor: pointer;
    z-index: 1;
}

/* Tooltip text */
.game-contral .material-symbols-outlined::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: #222;
    color: #fff;
    padding: 5px 8px;
    font-size: 12px;
    font-family: "Nunito", sans-serif;
    border-radius: 4px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform: translateX(-50%) translateY(5px);
    z-index: 999;
}

/* Tooltip arrow (optional) */
.game-contral .material-symbols-outlined::before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #222 transparent transparent transparent;
    opacity: 0;
    transition: opacity 0.2s ease;
}

/* Show tooltip on hover */
.game-contral .material-symbols-outlined:hover::after,
.game-contral .material-symbols-outlined:hover::before {
    opacity: 1;
}

/* Tool Tip */

.game-contral .material-symbols-outlined {
    margin-right: 10px;
    font-size: 22px;
    cursor: pointer;
}

.material-symbols-outlined:last-child {
    margin-right: 0;
}

.ad {
    width: 336px;
    height: 280px;
    background-color: green;
    margin: 10px 20px;
    transition: all 2s;
}

.game-info {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 20px;
    margin-top: 20px;
}

.game-info-1 {
    grid-column: span 1;
    /* color: #fff; */
    background-color: var(--color-shade_a);
    padding: 20px;
}

.game-info-1 {
    font-size: 15px;
    width: 500;
    line-height: 1.5;
}

.description, .game-tags {
    background-color: var(--color-white);
    margin: 0;
    padding: 20px;
    max-height: 175px;
    overflow: auto;
    scrollbar-color: var(--color-white) var(--color-shade_a);
    scrollbar-width: thin;
}

.game-tags {
    max-height: 100px;
} 

.game-info-1 a {
    text-decoration: none;
    color: var(--color-orange);
    padding: 2px 8px;
    margin-left: 5px;
    line-height: 2;
    border: 1px solid var(--color-orange);
    border-radius: 5px;
}

.game-info-2 {
    grid-column: span 1;
    background-color: var(--color-shade_a);
    padding: 20px;
}

.game-info-2 img {
    width: 100%;
}

.game-info-3 {
    grid-column: span 1;
    background-color: var(--color-shade_a);
    padding: 20px;
}

/* .game-info-3 img {
    width: 153px;
    height: 84px;
} */

.rs-games {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.rs-game-aa {
    position: relative;
    overflow: hidden;
    /* box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px; */
    border-radius: 10px;
}
.rs-game-aa .cat-game-img {
    width: 100%;
    height: 100%;
}

.rs-game-aa img {
    display: block;
    width: 100%;
    height: 123px;
}

/* glass default hidden */
.rs-game-aa .glass {
    position: absolute;
    inset: 0;
    background: black;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* title default hidden */
.rs-game-aa .rs-game-title {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    color: var(--color-white);
    font-size: 12px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 3;
}

/* hover effect */
.rs-game-aa:hover .glass {
    opacity: 0.2;
}

.rs-game-aa:hover .rs-game-title {
    opacity: 1;
    transform: translateY(0);
}

.game-info-grid {
    margin: 20px 0;
}

.rs-games-all {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.rs-games-full-width {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

.lb-728 {
    margin: 20px 100px;
}
.lb-728-top {
    display: none;
}
.ad-lb {
    width: 728px;
    height: 90px;
    background-color: green;
}

.share, .mobile {
    text-align: center;
}

.share .material-symbols-outlined {
    font-size: 12px;
}

.share a, .mobile a {
    text-decoration: none;
}

.share-game, .mobile-game {
    font-size: 16px;
    color: var(--color-white);
    background-color: var(--color-orange);
    padding: 5px 15px;
    margin-top: 15px;
    border-radius: 5px;
    font-weight: 500;
}

.share {
    position: relative;
}

.share-options {
    position: absolute;
    top: -225px;
    right: 40px;
    width: 125px;
    /* background-color: rgb(48, 45, 45); */
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 9px;
    padding: 10px 10px 10px 20px;
    margin: 0 auto;
    display: none;
}

.share-options-block {
    display: block;
    z-index: 10;
}

.social-share {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.social-share-li a {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text);
    margin-left: 18px;
}

.social-share-li {
    padding: 5px;
    float: left;
}

.ss-f, 
.ss-w, 
.ss-t, 
.ss-r, 
.ss-te, 
.ss-p {
    position: relative;
}

.social-share-li .ss-c {
    margin-left: 6px;
}

.share .copy-link {
    font-size: 20px;
}

svg.svg-social-f,
svg.svg-social-w,
svg.svg-social-t,
svg.svg-social-r,
svg.svg-social-te,
svg.svg-social-p {
    position: absolute;
    left: -25px;
}

footer {
    background-color: rgb(255 0 0 / 70%);
    padding: 80px 0 0;
}

.bgcol {
    padding: 70px 0 0;
    background-color: rgba(255, 165, 0, .8);
}

.footer-def4 {
    display: grid;
    grid-template-columns: 8fr 4fr;
    gap: 15px;
}

.about-cat {
    grid-column: span 1;
    padding-bottom: 50px;
}

.game-news-socal {
    grid-column: span 1;
    padding: 20px 20px;
    /* border-top: 1px solid white; */
}

.jd78 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--color-white);
    padding: 0 0 20px 0;
}

.ewq785 {
    padding-right: 15px;
    /* border-right: 1px solid rgba(255, 255, 255, 0.1); */
    border-right: 1px solid var(--color-white);
}

.about-game {
    margin-left: 15px;
    line-height: 1.7;
    font-size: 15px;
}

.about-game p {
    color: var(--color-white);
}

.gamecat {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding-top: 50px;
}

.gamecat > * {
    grid-column: span 1;
}

.gamecat ul {
    list-style-type: none;
    padding-left: 0;
    font-size: 14px;
}

.gamecat ul li {
    margin-bottom: 10px;
}

.gamecat ul li a {
    text-decoration: none;
    color: var(--color-white);
    text-decoration: none;
}

.game-total {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    color: var(--color-white);
}

.total, .totalcat {
    grid-column: span 1;
    display: flex;
    flex-direction: column;
    font-size: 28px;
    font-weight: 700;
    padding: 0 12px 30px;
}

.h34hy {
    font-size: 14px;
    opacity: .7;
    margin-top: 10px;
}

.c73edt {
    height: 38px;
    max-width: 356px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.llew4 {
    display: flex;
    height: 100%;
    height: 38px;
}

.hh217 {
    width: 42px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-orange);
    border-right: 1px solid var(--color-border);
}

.rrtt7 {
    height: 38px;
    width: 228px;
    background-color: var(--color-white);
    color: var(--color-text);
    border: none;
    outline: none;
    padding: 0 6px;
    /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
}

.dde889 {
    height: 38px;
    background: var(--color-orange);
    border: 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-white);
    width: 86px;
    cursor: pointer;
}

.social {
    margin-top: 38px;
    padding-left: 12px;
}

.newslatter {
    padding: 12px;
    line-height: 1.5;
    color: var(--color-white);
}

.hhhh3 {
    display: flex;
    justify-content: start;
}

.cc3411 {
    display: flex;
    justify-content: center;
    margin-right: 50px;
}

.rwewaw {
    font-size: 12px;
    line-height: 1.5;
}

.hgfhf {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 5px;
}

.hgfhf a {
    text-decoration: none;
    color: var(--color-white);
}

.copyright {
    color: var(--color-white);
    background-color: var(--color-red);
    padding: 3px;
    text-align: center;
    margin-top: 50px;
}

.copyright a {
    color: var(--color-white);
    text-decoration: none;
}

.sq455re {
    font-size: 15px;
    font-weight: 500;
}

.aa455re {
    font-weight: 400;
    font-size: 13px;
}

.login-form {
    background-color: #fff;
    padding: 100px 0;
}

.reg-kky {
    margin: 0 0 40px;
    text-align: center;
}

.mmov5 {
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 350px;
    margin: 0 auto;
    padding: 30px;
}

.nhhtwq {
    /* margin: 0 15px 20px; */
    margin-bottom: 20px;
}

label {
    font-size: 16px;
    font-weight: 700;
}

.label, .input {
    width: 100%;
}

.input {
    padding: 8px;
    margin-top: 10px;
    outline: none;
    border: 1px solid #ddd;
}

.input:focus {
    border: 1px solid #FFA500;
}

button.button {
    margin-top: 10px;
    padding: 8px 50px;
    background: #FFA500;
    border: 0;
    border-radius: 3px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    transition: all .5s ease;
}

button.button:hover {
    background-color: #ff9800;
    cursor: pointer;
}

.ddewq {
    padding: 50px 0;
    background-color: #fff;
}

.hjh22k {
    display: grid;
    grid-template-columns: 3fr 9fr;
    gap: 30px;
    margin: 0 100px;
}

.hhhqhq {
    border: 1px solid #ddd;
    padding: 20px;
}

.profile-img {
    max-width: 100%;
}

img.hhhk-profile-img {
    max-width: 100%;
}

.p-jlla {
    position: relative;
}

.update-pic {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 10px;
    background-color: rgb(53 53 50 / 60%);
    color: #FFFFFF;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.p-jlla:hover .update-pic {
    opacity: 1;
}

.jk-pro {
    padding: 10px;
    margin-top: -6px;
    border: 1px solid #ddd;
    display: flex;
    justify-content: left;
}

.jk4dew {
    font-size: 12px;
    font-weight: 500;
}

.username-dssse3 {
    font-size: 20px;
}

.admin-menu ul {
    padding: 0;
    /* margin: 0; */
}

.admin-menu ul li {
    list-style: none;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    transition: ease-in-out .3s;
}

.admin-menu ul li:first-child {
    border-top: 1px solid #ddd;
}

.admin-menu li a {
    display: block;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    color: #0c0d15;
    transition: ease-in-out .3s;
}

.admin-menu li a:hover {
    color: #FF0000;
}

.admin-menu li:hover {
    background-color: #FFA500;
} 

.active-am {
    background-color: rgba(255, 165, 0, 50%);
    color: #FF0000;
}

.jhh455q {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.fpwd {
    margin: 15px 5px;
}

.fpwd a {
    text-decoration: none;
    font-size: 14px;
    color: #ff9800;
}

.nam {
    margin: 15px 5px 0;
    text-align: center;
}

.nam span {
    font-size: 14px;
    font-weight: 700; 
}

.nam a {
    margin: 5px;
    text-decoration: none;
    color: #ff9800;
}

button.button-login,
button.button-signup {
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 8px 50px;
    background: #FFA500;
    border: 0;
    border-radius: 3px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    transition: all .5s ease;
}

.mobile-menu {
    z-index: 10;
    position: absolute;
    right: 20px;
    top: 80px;
    background-color: var(--color-orange);
    padding: 0 25px;
    border-radius: 5px;
    display: none;
}

.m-menu-items {
    padding: 0;
    list-style: none;
}

.m-list-item {
    padding: 10px;
}

.m-list-item .m-link {
    padding: 10px;
    text-decoration: none;
    color: #fff;
    font-weight: 900;
    letter-spacing: 1px;
    transition: all .5s;
}

a.m-link:hover {
    color: var(--color-yellow);
}

.pagination {
    border: 1px solid red;
    background-color: #ff9800;
    padding: 20px;
    margin: 5px;
    text-align: center;
}

.step-links a{
    padding: 5px 15px;
    color: white;
    background-color: red;
    text-decoration: none;
}

.current {
    color: wheat;
}

.gc-kje {
    text-align: center;
    padding: 20px;
    background: #ff0000;
    transition: all .2s;
}

.gc-kje a {
    color: #fff;
    text-decoration: none;
    font-size: 18px
}

.gc-kje:hover {
    background: #ffa500;
}

.form-error {
    background-color: var(--color-red);
    color: var(--color-white);
    font-size: 12px;
    padding: 5px 10px;
    font-weight: 700;
    border-radius: 3px;
}

.subscribe {
    margin: 100px 0;
}

.hhd55 {
    width: 450px;
    margin: 0 auto;
    background: var(--color-red);
    border-radius: 5px;
    padding: 50px;
}

.hhd55sapn {
    margin-bottom: 20px;
    font-size: 25px;
    display: block;
    text-align: center;
    color: var(--color-white)
}

p.hhd55p {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
    margin: 15px 0;
    text-align: center;
    color: var(--color-white);
}

.click-style {
    color: #fff;
}

.success-message {
    color: green;
    background-color: rgb(175 245 175);
    border: 1px solid green;
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
}

.notification-nf {
    background: lightgreen;
    padding: 5px 20px;
    margin: 25px 0;
    border-radius: 10px;
}

p.nf {
    color: green;
    font-size: 18px;
    margin: 10px;
    font-weight: 700;
}

a.nfa {
    color: #ff0000;
    text-decoration: none;
}