html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
}

main {
    display: block;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

pre {
    font-family: monospace, monospace;
    font-size: 1em;
}

a {
    background-color: transparent;
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted;
}

b,
strong {
    font-weight: bolder;
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

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;
}

img {
    border-style: none;
}

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

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

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

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

fieldset {
    padding: 0.35em 0.75em 0.625em;
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

progress {
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}
 
::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

details {
    display: block;
}

summary {
    display: list-item;
}

template {
    display: none;
}

[hidden] {
    display: none;
}
 
.force_full_screen {
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 99999;
    top: 0px !important;
    border: 0px !important;
    left: 0px !important;
    right: 0px !important;
    cursor: pointer !important;
    min-height: 100% !important;
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: none;
    box-sizing: border-box;
}

html {
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: 100%;
    /* scrollbar-width: thin; */
    scrollbar-color: #8b8b8b transparent;
}

body {
    margin: 0;
    font-family: Lato, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    text-align: left;
    background-color: #000000;
}

a {
    text-decoration: none;
    cursor: pointer;
    background-color: transparent;
    outline: none;
    color: #fff;
}

ul,
li {
    list-style: none;
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4 {
    font-weight: normal;
    font-family:'Lato',sans-serif;
    font-weight:900;
    margin: 0;
}

table {
    border-collapse: collapse;
}

table th,
table td {
    font-weight: normal;
    text-align: left;
    vertical-align: top;
}

input,
select,
textarea,
button {
    background-color: transparent;
    outline: none;
}

button {
    -webkit-transition: background-color 0.2s ease 0s, color 0.2s ease 0s, border-color 0.2s ease 0s;
    -moz-transition: background-color 0.2s ease 0s, color 0.2s ease 0s, border-color 0.2s ease 0s;
    -o-transition: background-color 0.2s ease 0s, color 0.2s ease 0s, border-color 0.2s ease 0s;
    transition: background-color 0.2s ease 0s, color 0.2s ease 0s, border-color 0.2s ease 0s;
}

input,
button {
    border: 0;
}

.container {
    position: relative;
    width: 100%;
     margin: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.row {
    width: 100%;
}

.font-bold {
    font-weight: bold;
}

.d-block {
    display: block;
}

.d-inline {
    display: inline-block;
}

.d-flex {
    display: flex;
}

.d-r-flex {
    display: flex;
    flex-wrap: wrap;
}

.d-c-flex {
    display: flex;
    flex-direction: column;
}

.sp {
    justify-content: space-between;
}

.jc {
    justify-content: center;
}

.center-box {
    display: flex;
    align-items: center;
}

.center-middle {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bz {
    box-sizing: border-box;
}

.p-r {
    position: relative;
}

.bg-fff {
    background-color: #fff;
}

.absolute {
    position: absolute;
    top: 50%;
}

.text-overflow {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    line-height: 1.5;
}

.text-center {
    text-align: center;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-capitalize {
    text-transform: capitalize;
}

.flex-start {
    justify-content: flex-start;
}

.flex-end {
    justify-content: flex-end;
}

.gif {
    width: 100%;
    text-align: center;
    padding: 10px 0;
}

#loading_img {
    width: 50px;
    height: 50px;
    background-color: transparent !important;
}

.hidden {
    display: none;
}

.al {
    align-items: center;
}

.loadingImage {
    width: 50px;
    height: 50px;
    background-color: transparent !important;
    animation: loadingAnimation 1s linear infinite;
}

@keyframes loadingAnimation {
    to {
        transform: rotate(360deg);
    }
}

.us-grid-wrapper {
    margin-bottom: 30px;
}

.us-grid-clayover {
    display: grid;
    grid-gap: 10px;
}

.us-grid-game {
    box-sizing: border-box;
}

.us-span-2x1 {
    grid-column-end: span 2;
}

.us-span-2x2 {
    grid-column-end: span 2;
    grid-row-end: span 2;
}

.us-span-3x3 {
    grid-column-end: span 3;
    grid-row-end: span 3;
}

 
/*game_item*/

.main-wrapper {
    min-height: 90vh;
    /* padding: 0 15px; */
}

.us-game-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 5px;
    transition: background ease .3s, border linear .3s;
    box-sizing: border-box;
    border-radius: 10px;
}

.us-wrap-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    transition: all .3s;
    border-radius: 10px;
}

.us-wrap-image>img {
    display: block;
    background-color: #000;
    transition: all 400ms ease-in-out;
}

.us-game-title {
    overflow: hidden;
    margin: 0;
    color: #fff;
    text-align: center;
    margin-bottom: 0;
    opacity: 0;
    font-weight: 700;
    position: absolute;
    width: 100%;
    bottom: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, .878) 0, #0000 50%);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 16px 5px 8px;
    box-sizing: border-box;
    text-transform: capitalize;
    font-size: 14px;
    z-index: 4;
}

.us-game-title .text-overflow {
    -webkit-line-clamp: 2;
}

.us-game-link:hover .us-game-title {
    opacity: 1;
}
  
.us-game-link:hover img {
    scale: 1.1;
}
 
.us-content {
    background-color: #13141e;
    padding: 30px 30px;
    border-radius: 10px;
    margin-top: 35px;
}

.us-content h1,
.us-content h2 {
    font-weight: bold;
}

.us-content h1,
.us-content h2,
.us-content h3,
.us-content h4,
.us-content h5,
.us-content h6 {
    margin: revert;
    /* text-transform: capitalize; */
    font-size: revert;
    font-weight: revert;
}

.h3-suggest {
    margin: 10px 0;
}

.us-content p {
    margin-bottom: 1rem;
}

.us-content ul,
.us-content ol {
    padding-left: 40px;
    list-style: disc;
    margin-bottom: 1rem;
}

.us-content ul li,
.us-content ol li {
    list-style: disc;
}

.us-content a {
    color: #C86BFF;
}

/*game_play*/
 
/*Update 25/08/19*/

 

.us-grid-game {
    padding-bottom: 100%;
    position: relative;
    cursor: pointer;
}

.us-game-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.us-wrap-image>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
} 

.start-playing-btn {
    display: inline-block;
    background:linear-gradient(135deg, #dfcb41 0%, #ffd60a 100%);
    color: rgb(0, 0, 0);
    padding: 14px 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(234, 232, 102, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.start-playing-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(234, 232, 102, 0.6), 0 0 20px rgba(234, 232, 102, 0.4);
    background: linear-gradient(135deg, #dfcb41 0%, #ffd60a 100%);
}

.start-playing-btn:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 4px 15px rgba(234, 232, 102, 0.4);
}

footer {
    padding: 1rem 0;
    background-color: #000000;
    border-top: 1px solid #333;
}
 .text-center {
    text-align: center;
}
.link {
    color: #fff;
    padding: 8px 0;
    display: inline-block;
    margin: 0 10px;
    font-size: 14px;
}
.ad-desktop-only {
  display: block;
}

@media screen and (max-width: 768px) {
  .ad-desktop-only {
    display: none !important;
  }
}