:root{
--header-height: 50px;
--menu-width-collapsed: 60px;
--menu-width-expanded: 600px;
--radius: 8px;
--transition: all .25s cubic-bezier(.4,.1,.2,1);
font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}
* {
box-sizing: border-box;
}
html, body {
height: 100%;
margin: 0;
}
body {
background: var(--body-bg);
color: var(--text-color);
margin: 0;
line-height: 1.4;
display: flex;
min-height: 100vh;
flex-direction: column;
}
a, button, label, small, strong, em, b, i { color: inherit; }
input, textarea, select { color: inherit; }
::placeholder { color: rgba(255, 255, 255, .6); }
svg { fill: currentColor; }
.wrapper {}
.sidebar {
background: var(--menu-bg);
width: var(--menu-width-collapsed);
height: calc(100vh - var(--header-height));
position: fixed;
top: var(--header-height);
left: 0;
z-index: 1000;
overflow-y: auto;
overflow-x: hidden;
border-right: 1px solid rgba(255, 255, 255, 0.1);
transition: width 0.25s, transform 0.25s;
-webkit-overflow-scrolling: touch;
scrollbar-width: thin;
scrollbar-color: rgba(255,255,255,0.2) transparent;
}
.sidebar::-webkit-scrollbar {
width: 6px;
}
.sidebar::-webkit-scrollbar-track {
background: transparent;
}
.sidebar::-webkit-scrollbar-thumb {
background-color: rgba(0, 0, 0, 0.2);
border-radius: 10px;
}
.sidebar::-webkit-scrollbar-thumb:hover {
background-color: rgba(0, 0, 0, 0.3);
}
@media (max-width: 1068px) {
.sidebar {
width: 100% !important;
transform: translateX(-100%);
border-right: none;
}
}
body:not(.is-mobile) .sidebar:hover { width: var(--menu-width-expanded); }
body:not(.is-mobile) .sidebar.collapsed { width: 0; transform: translateX(-100%); }
body.is-mobile .sidebar.active { transform: translateX(0); }
.container, .site-footer {
transition: margin-left 0.25s ease;
margin-left: var(--menu-width-collapsed);
}
@media (max-width: 1068px) {
.container, .site-footer {
margin-left: 0 !important;
}
}
body.sidebar-is-collapsed .container,
body.sidebar-is-collapsed .site-footer {
margin-left: 0 !important;
}
.sidebar nav { display: flex; flex-wrap: wrap; flex-direction: row; gap: 10px; padding: 2px; padding-bottom: 2rem;}
.sidebar a { display: flex; align-items: center; gap: 4px; font-size: 14px; text-decoration: none; font-weight: 600; background: rgba(255,255,255,0.1); border-radius: var(--radius); padding: 0; flex: 1 1 calc(33.333% - 10px); box-sizing: border-box; transition: background 0.2s; }
.sidebar a:hover { background: rgba(255, 255, 255, 0.2); }
.sidebar a img.category-icon { width: 50px; height: 50px; border-radius: var(--radius) 0 0 var(--radius); object-fit: cover; flex-shrink: 0; transition: transform 0.2s ease; }
.sidebar a img.category-icon:hover { transform: scale(1.05); }
.sidebar span.text { opacity: 0; transition: opacity 0.2s; }
body:not(.is-mobile) .sidebar:hover span.text, body.is-mobile .sidebar span.text { opacity: 1; }
.sidebar a.no-icon { justify-content: center; padding: 12px 8px; }
.sidebar a.no-icon span.text { opacity: 1; text-align: center; }
@media (max-width: 768px) { .sidebar a { flex: 1 1 calc(50% - 10px); } }
.sidebar .menu-top{
height:50px;
display:flex;
align-items:center;
justify-content:center;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
box-shadow: 0 6px 14px rgba(11, 24, 40, 0.15);
font-weight:700;
margin-bottom:6px;
}
.search-box {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
padding: 10px;
position: relative;
width: 100%;
}
.search-box input {
background: var(--menu-bg);
width: 100%;
padding: 14px 40px 14px 38px;
border: 1px solid var(--menu-bg);
font-size: 15px;
font-weight: 700;
outline: none;
}
.search-icon {
position: absolute;
left: 15px;
top: 50%;
transform: translateY(-50%);
width: 28px;
height: 28px;
pointer-events: none;
display: inline-block;
}
.container{
flex:1;
display:flex;
flex-direction:column;
min-width:0;
margin-left:var(--menu-width-collapsed);
transition:var(--transition);
padding: calc(var(--header-height) + 10px) 10px 0 10px;
}
.header{
height:var(--header-height);
background: var(--header-bg);
padding:12px 10px;
display:flex;
align-items:center;
justify-content:space-between;
position:fixed;
top:0;
left:0;
right:0;
z-index:20;
box-shadow:0 2px 6px rgba(0,0,0,0.08);
}
.brand{
display:flex;
align-items:center;
gap:10px;
}
.icon {
fill: var(--icon-color);
display: inline-block;
vertical-align: middle;
transition: transform 0.3s ease, fill 0.3s ease;
}
.hamburger {
width: 32px;
height: 32px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
position: relative;
}
.nav-toggle-svg {
width: 32px !important;
height: 32px !important;
display: none;
fill: var(--icon-color);
}
body.sidebar-is-collapsed .icon-menu {
display: block !important;
}
body:not(.sidebar-is-collapsed) .icon-close {
display: block !important;
}
.logo {
height: 48px;
width: auto;
display: block;
filter: drop-shadow(0 2px 3px rgba(0,0,0,0.3));
}
.header-right {
display: flex;
align-items: center;
gap: 12px;
flex: 0 0 auto;
}
.header-icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 36px;
height: 36px;
border-radius: 50%;
background: rgba(255,255,255,0.1);
transition: all 0.3s ease;
border: none;
cursor: pointer;
text-decoration: none;
}
.header-icon:hover {
opacity: 0.6;
background: rgba(255,255,255,0.2);
}
.header-icon .icon {
width: 20px;
height: 20px;
transition: fill 0.3s ease;
}
.breadcrumb {
font-size: 15px;
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 5px;
margin: 8px 0 0px 0;
transition: all 0.3s ease;
}
.breadcrumb .separator {
padding: 0 4px;
}
.breadcrumb a {
text-decoration: underline;
transition: color 0.2s ease;
}
.breadcrumb a:hover {
color: rgba(255, 255, 255, 0.7);
}
.breadcrumb a.active {
color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 768px) {
.breadcrumb {
font-size: 13px;
gap: 4px;
margin: 3px 0 10px 0;
}
}
.section-header {
min-height: 40px;
display: flex;
justify-content: space-between;
align-items: center;
gap: 6px;
margin: 0 0 15px;
padding: 0 8px 5px;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
box-shadow: 0 6px 14px rgba(11, 24, 40, 0.15);
}
.section-info {
display: flex;
flex-direction: column;
gap: 6px;
}
.section-header h1 {
font-size: 24px;
font-weight: 700;
letter-spacing: 0.5px;
margin: 0;
}
.section-h1-header-top {
display: flex;
align-items: center;
gap: 6px;
}
.section-select select {
background-color: var(--menu-bg);
border: 1px solid rgba(255,255,255,0.3);
border-radius: var(--radius);
padding: 7px 14px;
font-size: 15.2px;
cursor: pointer;
outline: none;
transition: var(--transition);
font-weight: 600;
}
.section-select select:hover {
background-color: color-mix(in srgb, var(--menu-bg) 80%, #ffffff 10%);
border-color: rgba(255,255,255,0.5);
}
.section-select select:focus {
border-color: var(--accent);
box-shadow: 0 0 6px color-mix(in srgb, var(--accent) 60%, #ffffff 40%);
}
@media (max-width: 768px) {
.section-header {
flex-direction: column;
align-items: stretch;
gap: 8px;
}
.section-select {
width: 100%;
}
.section-select select {
width: 100%;
padding: 10px 14px;
font-size: 16px;
}
}
.games-search-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(100px, 100px));
grid-auto-rows: minmax(100px, 100px);
grid-auto-flow: dense;
justify-content: center;
grid-gap: 0.8rem;
}
@media (max-width: 768px) {
.games-search-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(100px, 100px));
grid-auto-rows: minmax(100px, 100px);
grid-auto-flow: dense;
justify-content: center;
grid-gap: 0.8rem;
}
}
.games-search-grid .card-c {
position: relative;
border-radius: var(--radius);
overflow: hidden;
border: 1px solid rgba(255, 255, 255, 0.4);
box-shadow: 0 6px 14px rgba(11, 24, 40, 0.15);
transition: transform .16s ease, box-shadow .16s ease;
cursor: pointer;
}
.games-search-grid .card-c img {
width: 100px;
height: 100px;
object-fit: cover;
}
.card-c:hover {
border-radius: var(--radius) var(--radius) 0 0;
}
.games-search-grid .card-c .title-overlay-c {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
padding: 4px 2px;
background: rgba(0, 0, 0, 0.6);
font-weight: 600;
font-size: 13px;
opacity: 0;
transition: opacity .25s ease;
text-align: center;
}
.games-search-grid .card-c:hover .title-overlay-c {
opacity: 1;
}
.no-game-found {
width: 100px;
height: 100px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(0, 0, 0, 0.45);
border: 1px dashed rgba(255, 255, 255, 0.35);
border-radius: var(--radius);
text-align: center;
box-sizing: border-box;
}
.no-game-found p {
margin: 0;
padding: 0 6px;
font-size: 11px;
font-weight: 600;
line-height: 1.2;
color: rgba(255, 255, 255, 0.85);
}
.play-game-grid {
display: flex;
flex-direction: column;
background: var(--menu-bg);
border-radius: var(--radius);
}
.game-layout {
display: grid;
grid-template-columns: 1fr 336px;
gap: 30px;
align-items: start;
}
.game-area{
display: flex;
flex-direction: column;
width: 100%;
display: flex;
flex-direction: column;
}
.section-game-description {
order: 2;
background: var(--box_bg);
border-radius: var(--radius);
padding: 10px 25px 20px;
margin: 30px 0;
box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
color: rgba(255, 255, 255, 0.85);
line-height: 1.6;
font-size: 16px;
transition: background 200ms ease;
}
.right-column {
height:100%;
background: var(--box_bg);
display: flex;
flex-direction: column;
align-items: center;
gap: 15px;
}
.ad-box-300 {
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
box-sizing: border-box;
}
.ad-box-300 .ad-label {
width: 100%;
font-size: 12px;
font-weight: 600;
text-align: center;
opacity: 0.6;
margin: 8px 0;
padding: 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
box-sizing: border-box;
}
.ad-box-300 .ad-content {
display: flex;
align-items: center;
justify-content: center;
}
.ad-box-300 .ad-small {
display: none !important;
}
.ad-box-300 .ad-large {
display: flex !important;
}
.related-games-category-grid {
display: grid;
grid-template-columns: repeat(3, 100px);
grid-auto-rows: 100px;
justify-content: center;
gap: 0.6rem;
}
.related-games-category-grid .card-r img {
width: 100px;
height: 100px;
object-fit: cover;
}
.related-games-category-grid .card-r {
position: relative;
border-radius: var(--radius);
overflow: hidden;
border: 1px solid rgba(255, 255, 255, 0.4);
box-shadow: 0 6px 14px rgba(11, 24, 40, 0.15);
transition: transform .16s ease, box-shadow .16s ease;
cursor: pointer;
}
.related-games-category-grid .card-r:hover {
border-radius: var(--radius) var(--radius) 0 0;
}
.related-games-category-grid .card-r .title-overlay-r {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
padding: 4px 2px;
background: rgba(0, 0, 0, 0.6);
font-weight: 600;
font-size: 13px;
opacity: 0;
transition: opacity .25s ease;
text-align: center;
}
.related-games-category-grid .card-r:hover .title-overlay-r {
opacity: 1;
}
@media (max-width: 1200px) and (min-width: 993px) {
.game-layout {
grid-template-columns: 1fr 200px;
}
.related-games-category-grid {
display: grid;
grid-template-columns: repeat(2, 88px);
grid-auto-rows: 88px;
justify-content: center;
gap: 0.6rem;
}
.related-games-category-grid .card-r img {
width: 88px;
height: 88px;
object-fit: cover;
}
.ad-box-300 .ad-large {
display: none !important;
}
.ad-box-300 .ad-small {
display: flex !important;
}
.ad-box-300 {
max-width: 170px;
}
.ad-box-300 .ad-content img,
.ad-box-300 .ad-content iframe {
max-width: 100%;
height: auto;
}
}
.order-1 {
order: 1;
}
.game-container {
display: flex;
flex-direction: column;
width: 100%;
border-radius: 0 0 var(--radius) var(--radius);
overflow: hidden;
position: relative;
min-height: 564px;
max-width: 980px;
margin: 0 auto;
}
.game-container iframe {
width: 100%;
height: 520px;
border: none;
display: none;
}
@media (min-width: 1400px) and (max-width: 1599px) {
.game-container {
min-height: 600px;
max-width: 1100px;
}
.game-container iframe {
height: 550px;
}
}
@media (min-width: 1600px) and (max-width: 1799px) {
.game-container {
min-height: 700px;
max-width: 1200px;
}
.game-container iframe {
height: 655px;
}
}
@media (min-width: 1800px) {
.game-container {
min-height: 800px;
max-width: 1300px;
}
.game-container iframe {
height: 750px;
}
}
@media (max-width: 992px) {
.game-container {
min-height: 390px !important;
}
.game-layout {
grid-template-columns: 1fr;
}
.right-column {
display: none;
}
}
@media (max-width: 992px) {
.game-loader {
margin-bottom:50px;
}
.full-h {
display: none;
}
button.game-bar-btn.full-h {
display: none !important;
}
}
.game-container:fullscreen {
padding: 0 !important;
margin: 0 !important;
border-radius: 0 !important;
}
.game-container:fullscreen iframe {
height: 100vh !important;
}
.game-bar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 2px 10px;
background: var(--box_bg);
border-top: 1px solid rgba(255, 255, 255, 0.1);
gap: 8px;
margin-top: auto;
z-index: 3;
}
.game-loader {
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
background: var(--box_bg);
z-index: 5;
}
.cover-image {
position: absolute;
top: 50%;
left: 50%;
width: 325px;
height: auto;
transform: translate(-50%, -50%);
object-fit: cover;
opacity: 1;
border-radius: var(--radius);
padding: 4px;
z-index: 1;
}
.overlay {
position: absolute;
inset: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
z-index: 10;
}
#playBtn {
background: var(--playbutton);
border: none;
padding: 16px 40px;
border-radius: var(--radius);
font-size: 20px;
cursor: pointer;
transition: all .3s;
opacity: 0.8;
}
#playBtn:hover {
opacity: 0.9;
}
.blink {
animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
0%, 100% { opacity: 1; }
50% { opacity: 0; }
}
.loading {
display: none;
flex-direction: column;
align-items: center;
margin-top: 20px;
}
.loading p{
background: rgba(255,255,255,0.4);
text-decoration: none;
font-size: 16px;
font-weight:bold;
padding: 4px 8px;
border-radius: var(--radius);
}
.spinner {
width: 40px; height: 40px;
border: 4px solid #fff;
border-top: 4px solid var(--accent);
border-radius: 50%;
animation: spin 1s linear infinite;
margin-bottom: 10px;
}
@keyframes spin { to { transform: rotate(360deg); } }
#mobileExitBtn {
position: absolute;
top: 50px;
left: 0px;
z-index: 9999;
background: rgba(255,255,255,0.1);
border: none;
padding: 4px;
border-radius: var(--radius);
font-size: 20px;
cursor: grab;
touch-action: none;
display: none;
}
.like-dislike {
display: flex;
align-items: center;
gap: 8px;
margin-right: auto;
}
.like-dislike button {
background: none;
border: none;
border-radius: var(--radius);
padding: 8px 10px;
font-size: 14px;
cursor: pointer;
display: flex;
align-items: center;
gap: 4px;
transition: all 0.2s ease;
}
.like-dislike button:hover {
transform: translateY(-2px);
}
.game-bar-btn {
background: none;
border: none;
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
padding: 0; font-size: 0; cursor: pointer;
transition: all 0.2s ease;
}
.game-bar-btn:hover {
transform: translateY(-2px);
}
.game-bar-btn svg,
.like-dislike svg.icon-like,
.like-dislike svg.icon-dislike,
#mobileExitBtn svg.icon-close {
display: inline-block;
width: 28px;
height: 28px;
background-size: contain;
background-repeat: no-repeat;
background-position: center;
}
.game-bar-btn.active .icon-heart {
fill:  red;
}
.like-dislike svg.icon-like:hover {
fill: #4CAF50;
}
.like-dislike svg.icon-dislike:hover {
fill: #f44336;
}
@media (max-width: 1024px) {
.game-container:fullscreen .game-bar {
display: none !important;
}
.game-container:fullscreen #mobileExitBtn {
display: block !important;
}
}
.ad-box-bottom {
width: 100%;
min-height: 120px;
background: var(--box_bg);
margin-top: 20px;
margin-bottom: 20px;
display: flex;
flex-direction: row;
align-items: center;
overflow: hidden;
}
.ad-box-bottom .ad-label {
writing-mode: vertical-rl;
transform: rotate(180deg);
font-size: 12px;
font-weight: 600;
letter-spacing: 1px;
opacity: 0.5;
padding: 0;
border-left: 1px solid rgba(255,255,255,0.1);
}
.ad-box-bottom .ad-content {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
padding: 5px;
}
.mobile-ad { display: none !important; }
@media (max-width: 768px) {
.ad-box-bottom {
flex-direction: column;
min-height: auto;
padding-bottom: 15px;
}
.ad-box-bottom .ad-label {
writing-mode: horizontal-tb;
transform: none;
width: 100%;
text-align: center;
margin: 8px 0;
padding: 0;
border-left: none;
border-bottom: 1px solid rgba(255,255,255,0.05);
}
.desktop-ad { display: none !important; }
.mobile-ad { display: flex !important; }
}
.related-games-series-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(100px, 100px));
grid-auto-rows: minmax(100px, 100px);
grid-auto-flow: dense;
justify-content: center;
grid-gap: 0.8rem;
}
@media (max-width: 768px) {
.related-games-series-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(100px, 100px));
grid-auto-rows: minmax(100px, 100px);
grid-auto-flow: dense;
justify-content: center;
grid-gap: 0.8rem;
}
}
.related-games-series-grid .card-r {
position: relative;
border-radius: var(--radius);
overflow: hidden;
border: 1px solid rgba(255, 255, 255, 0.4);
box-shadow: 0 6px 14px rgba(11, 24, 40, 0.15);
transition: transform .16s ease, box-shadow .16s ease;
cursor: pointer;
}
.related-games-series-grid .card-r img {
width: 100px;
height: 100px;
object-fit: cover;
}
.card-c:hover {
border-radius: var(--radius) var(--radius) 0 0;
}
.related-games-series-grid .card-r .title-overlay-r {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
padding: 4px 2px;
background: rgba(0, 0, 0, 0.6);
font-weight: 600;
font-size: 13px;
opacity: 0;
transition: opacity .25s ease;
text-align: center;
}
.related-games-series-grid .card-r:hover .title-overlay-r {
opacity: 1;
}
.section-game-description h1 { font-size: 26px; margin: 10px 0;  font-weight: 700; }
.section-game-description h2 { font-size: 24px; margin: 10px 0;  font-weight: 700; }
.section-game-description h3 { font-size: 20px; margin: 10px 0;  font-weight: 700; }
.section-game-description h4 { font-size: 18px; margin: 10px 0;  font-weight: 700; }
.section-game-description h5 { font-size: 16px; margin: 10px 0;  font-weight: 700; }
.section-game-description h6 { font-size: 14px; margin: 10px 0;  font-weight: 700; }
.section-game-description p { margin-bottom: 15px; }
.section-game-description strong {  font-weight: 700; }
.section-game-description em, .section-game-description i { font-style: italic; color: rgba(255, 255, 255, 0.9); }
.section-game-description a {
text-decoration: underline;
text-decoration-thickness: 1px;
text-underline-offset: 3px;
font-weight: 600;
transition: all 180ms ease;
}
.section-game-description a:hover {
transform: translateY(-2px);
text-decoration-thickness: 1.5px;
}
.game-info-table {
margin-top: 25px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.info-row {
display: flex;
padding: 12px 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
font-size: 16px;
align-items: center;
}
.info-label {
flex: 0 0 150px;
color: rgba(255, 255, 255, 0.5);
font-weight: 500;
}
.info-value {
flex: 1;
font-weight: 600;
}
.votes-count {
font-weight: 400;
font-size: 12px;
color: rgba(255, 255, 255, 0.4);
margin-left: 5px;
}
.game-tags {
margin-top: 25px;
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.tag-btn {
background: rgba(255, 255, 255, 0.08);
color: var(--text-color) !important;
padding: 6px 16px;
border-radius: var(--radius);
font-size: 13px;
text-decoration: none !important;
border: 1px solid rgba(255, 255, 255, 0.1);
transition: all 0.2s ease;
font-weight: 600;
}
.tag-btn:hover {
background: var(--accent);
transform: translateY(-2px);
border-color: transparent;
box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.section-game-description ul,
.section-game-description ol {
margin: 10px 0 20px 5px;
padding-left: 0;
list-style-position: inside;
}
.section-game-description li {
margin-bottom: 8px;
color: rgba(255, 255, 255, 0.85);
line-height: 1.5;
}
.section-game-description ul li {
list-style-type: disc;
}
.section-game-description ol li {
list-style-type: decimal;
}
.section-game-description blockquote {
border-left: 4px solid var(--accent);
background: rgba(255, 255, 255, 0.03);
padding: 15px 20px;
margin: 20px 0;
border-radius: 0 var(--radius) var(--radius) 0;
}
@media (max-width: 768px) {
.info-row {
flex-direction: column;
align-items: flex-start;
gap: 4px;
}
.info-label {
flex: none;
}
.section-game-description {
padding: 15px;
}
}
.side-modal {
position: fixed;
top: 0;
right: -400px; width: 350px;
height: 100%;
background: var(--menu-bg);
z-index: 1000;
transition: right 0.3s ease;
box-shadow: -5px 0 15px rgba(0,0,0,0.3);
padding: 20px;
}
.side-modal.active {
right: 0;
}
.modal-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.5);
display: none;
z-index: 999;
}
.modal-header {
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 1px solid rgba(255,255,255,0.1);
padding-bottom: 15px;
margin-bottom: 20px;
}
.close-modal {
background: none;
border: none;
font-size: 36px;
cursor: pointer;
}
.modal-body input, .modal-body textarea {
width: 100%;
background: rgba(255,255,255,0.1);
border: 1px solid rgba(255,255,255,0.2);
padding: 10px;
border-radius: var(--radius);
margin-bottom: 15px;
}
.modal-body select {
background: var(--menu-bg);
border: 1px solid rgba(255,255,255,0.2);
padding: 7px 20px;
width:100%;
margin-top:10px;
margin-bottom:15px;
border-radius: var(--radius);
font-size: 15px;
cursor: pointer;
transition: background 0.2s ease;
}
.modal-body select:hover {
background: var(--menu-bg);
}
.share-buttons {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 10px;
}
.share-btn {
padding: 10px;
text-align: center;
border-radius: var(--radius);
text-decoration: none;
font-weight: bold;
font-size: 14px;
}
.copy-url-box {
display: flex;
gap: 5px;
margin-top: 20px;
}
.copy-url-section input#urlInput {
background: rgba(0, 0, 0, 0.2);
text-align: center;
font-size: 13px;
border-style: dashed; }
.copy-url-section .btn-primary {
font-weight: bold;
letter-spacing: 1px;
}
.btn-primary {
background: rgba(72, 71, 122, 0.5);
border: 1px solid rgba(255,255,255,0.2);
padding: 10px;
border-radius: var(--radius);
cursor: pointer;
width: 100%;
}
.btn-primary:hover {
background: rgba(72, 71, 122, 0.2);
}
.game-bar-btn {
position: relative;
}
[data-tooltip]:hover::after {
content: attr(data-tooltip);
position: absolute;
bottom: 130%;
left: 50%;
transform: translateX(-50%);
background: var(--menu-bg);
padding: 5px 10px;
border-radius: var(--radius);
font-size: 12px;
white-space: nowrap;
z-index: 99;
pointer-events: none;
}
[data-tooltip]:hover::before {
content: '';
position: absolute;
bottom: 110%;
left: 50%;
transform: translateX(-50%);
border-width: 6px;
border-style: solid;
border-color: var(--menu-bg) transparent transparent transparent;
z-index: 99;
pointer-events: none;
}
.section-description {
background: var(--box_bg);
border-radius: var(--radius);
padding: 25px 25px;
margin-top: 30px;
margin-bottom: 30px;
box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
color: rgba(255, 255, 255, 0.85);
line-height: 1.6;
font-size: 15px;
transition: background 200ms ease;
display: flex;
flex-wrap: wrap;
gap: 30px;
align-items: flex-start;
order: 2;
}
.description-content {
min-width: 300px;
}
.description-banner {
flex: 0 0 300px;
max-width: 100%;
}
.description-content > *:first-child {
margin-top: 0 !important;
}
@media (max-width: 768px) {
.description-banner {
flex: 1 1 100%;
order: -1;
text-align: center;
}
.description-banner img {
margin: 0 auto;
}
.description-top-wrapper {
gap: 15px;
}
}
.section-description h1 {
margin-top: 10px;
margin-bottom: 10px;
font-weight: 700;
font-size: 18px;
}
.section-description h2 {
margin-top: 10px;
margin-bottom: 10px;
font-weight: 700;
font-size: 18px;
}
.section-description p {
margin-bottom: 10px;
}
.section-description a {
text-decoration: underline;
text-decoration-thickness: 1px;
text-underline-offset: 3px;
font-weight: 600;
transition: color 180ms ease, transform 120ms ease;
cursor: pointer;
}
.section-description a:visited {
color: color-mix(in srgb, var(--accent) 70%, #ffffff 30%);
}
.section-description a:hover,
.section-description a:active {
transform: translateY(-2px);
text-decoration-thickness: 1.5px;
}
.section-description a:focus {
outline: 3px solid rgba(255,255,255,0.12);
outline-offset: 4px;
border-radius: var(--radius);
background: rgba(255,255,255,0.03);
}
.top-10-game-list {
flex: 1 1 250px;
min-width: 280px;
list-style: none;
padding: 0;
margin: 0;
list-style: none !important;
}
.top-10-block h3 {
color: #ffffff;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
padding-bottom: 8px;
margin-bottom: 15px;
}
.top-10-game-list li {
margin-bottom: 15px;
position: relative;
padding-left: 0px;
list-style-type: none;
}
.top-10-game-list li a {
display: inline-block;
color: rgba(255, 255, 255, 0.8);
text-decoration: none;
transition: all 180ms ease;
}
.top-10-game-list li a:hover {
color: #ffffff;
padding-left: 5px;
}
@media (min-width: 992px) {
.section-description {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
gap: 20px;
}
.top-10-game-list {
width: 30%;
min-width: 250px;
flex: 1;
}
}
.listGames {
order: 1;
display: grid;
grid-template-columns: repeat(auto-fill, minmax(100px, 100px));
grid-auto-rows: minmax(100px, 100px);
grid-auto-flow: dense;
justify-content: center;
grid-gap: 0.8rem;
}
.listGames .card-e {
position: relative;
border-radius: var(--radius);
overflow: hidden;
border: 1px solid rgba(255, 255, 255, 0.4);
box-shadow: 0 6px 14px rgba(11, 24, 40, 0.15);
transition: transform .16s ease, box-shadow .16s ease;
cursor: pointer;
}
.listGames .card-e-small img {
width: 100px;
height: 100px;
object-fit: cover;
}
.listGames .card-e-medium img {
width: 212px;
height: 212px;
object-fit: cover;
}
.listGames .card-e-large img {
width: 325px;
height: 325px;
object-fit: cover;
}
.listGames .card-e:hover {
border-radius: var(--radius) var(--radius) 0 0;
}
.listGames .card-e .title-overlay-e {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
padding: 4px 2px;
background: rgba(0, 0, 0, 0.6);
font-weight: 600;
font-size: 13px;
opacity: 0;
transition: opacity .25s ease;
text-align: center;
}
.listGames .card-e:hover .title-overlay-e {
opacity: 1;
}
.card-e-medium{
grid-row: span 2;
grid-column: span 2;
}
.card-e-large{
grid-row: span 3;
grid-column: span 3;
}
@media screen and (max-width: 212px) {
.card-e-medium{
grid-row: span 1;
grid-column: span 1;
}
}
@media screen and (max-width: 325px) {
.card-e-large{
grid-row: span 2;
grid-column: span 2;
}
}
.search-section {
display: flex;
justify-content: center;
margin: 20px 0;
}
.search-form {
display: flex;
align-items: center;
background: rgba(72, 71, 122, 0.5);
border-radius: var(--radius);
padding: 5px 10px;
width: 100%;
max-width: 400px;
}
.search-input {
flex: 1;
background: transparent;
border: none;
font-size: 16px;
padding: 8px 10px;
outline: none;
}
.search-button {
background: rgba(72, 71, 122, 0.8);
border: none;
border-radius: 50%;
width: 36px;
height: 36px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: background 0.3s, opacity 0.3s;
padding: 0;
}
.search-button:hover {
background: rgba(72, 71, 122, 1);
opacity: 0.9;
}
.search-button .search-icon {
width: 18px;
height: 18px;
position: static;
transform: none;
pointer-events: none;
}
.categories-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 12px;
}
.categories-item {
display: flex;
align-items: center;
background: rgba(255,255,255,0.1);
border-radius: var(--radius);
padding: 0;
transition: background 0.2s ease, transform 0.2s ease;
cursor: pointer;
}
.categories-item:hover {
background: rgba(255,255,255,0.2);
transform: translateY(-2px);
}
.categories-link {
display: flex;
align-items: center;
width: 100%;
height: 100%;
text-decoration: none;
color: inherit;
}
.categories-item img {
width: 100px;
height: 100px;
object-fit: cover;
border-radius: var(--radius) 0 0 var(--radius);
margin-right: 12px;
}
.categories-name {
font-size: 1rem;
font-weight: 500;
}
@media (max-width: 768px) {
.categories-grid {
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 10px;
}
}
@media (max-width: 431px) {
.categories-grid {
grid-template-columns: repeat(3, 1fr);
gap: 8px;
}
.categories-item {
flex-direction: column;
align-items: center;
}
.categories-link {
flex-direction: column;
align-items: center;
}
.categories-item img {
width: 100%;
height: auto;
border-radius: var(--radius) var(--radius) 0 0;
margin-right: 0;
margin-bottom: 6px;
}
.categories-name {
text-align: center;
font-size: 0.95rem;
}
}
.site-footer {
background: var(--footer-bg);
border-top: 1px solid rgba(255, 255, 255, 0.1);
flex: 1;
display: flex;
flex-direction: column;
min-width: 0;
margin-left: var(--menu-width-collapsed);
transition: var(--transition);
padding: calc(var(--header-height) + 0px) 20px 30px 20px;
}
.site-footer-mt {
margin-top: 40px;
}
.footer-container {
display: flex;
flex-direction: column;
gap: 40px;
max-width: 1440px;
margin: 0 auto;
}
.footer-main {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 30px;
}
.footer-brand {
display: flex;
flex-direction: column;
gap: 10px;
align-items: flex-start;
justify-content: center;
border-right: 1px solid rgba(255,255,255,0.2);
padding-right: 50px;
margin-right: 20px;
}
.footer-logo img {
width: 150px;
height: 48px;
}
.footer-slogan {
font-size: 15px;
font-weight: bold;
border-bottom: 1px solid rgba(255,255,255,0.2);
padding-bottom: 4px;
}
.footer-right {
display: flex;
align-items: center;
gap: 20px;
flex-wrap: wrap;
justify-content: flex-end;
margin-left: auto;
}
.footer-links {
display: flex;
flex-direction: column;
gap: 14px;
}
.footer-section {
display: flex;
align-items: center;
gap: 14px;
flex-wrap: wrap;
}
.footer-section h4 {
min-width: 100px;
margin: 0;
font-size: 16px;
font-weight: 600;
white-space: nowrap;
position: relative;
padding-bottom: 2px;
}
.footer-section h4::after {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 30px;
height: 2px;
background-color: #6C6F8E;
}
.footer-section a {
background: rgba(255,255,255,0.1);
padding: 6px 12px;
border-radius: var(--radius);
text-decoration: none;
font-size: 14px;
transition: all 0.2s ease;
}
.footer-section a:hover {
background: var(--accent);
transform: translateY(-2px);
}
.footer-lang select {
background: var(--menu-bg);
border: 1px solid rgba(255,255,255,0.2);
padding: 7px 20px;
border-radius: var(--radius);
font-size: 15px;
cursor: pointer;
transition: background 0.2s ease;
}
.footer-lang select:hover {
background: var(--menu-bg);
}
@media (max-width: 1200px) {
.footer-main {
flex-direction: column;
align-items: center;
gap: 20px;
}
.footer-right {
width: 100%;
justify-content: center;
flex-direction: column;
align-items: center;
gap: 15px;
margin-left: 0;
}
.footer-brand {
align-items: center;
border-right: 0;
padding-right: 0;
margin-right: 0;
}
.footer-section {
align-items: flex-start;
}
.footer-section h4 {
min-width: 100%;
}
}
.pagination-container {
display: flex;
justify-content: center;
align-items: center;
margin-top: 40px;
margin-bottom: 10px;
width: 100%;
order: 1;
}
.pagination {
display: flex;
list-style: none;
padding: 0;
margin: 0;
gap: 8px;
flex-wrap: wrap;
justify-content: center;
}
.pagination li.dots {
display: flex;
align-items: center;
justify-content: center;
padding: 0 10px;
color: rgba(255, 255, 255, 0.5);
font-weight: bold;
font-size: 18px;
}
.pagination li {
display: flex;
}
.pagination li a {
display: flex;
align-items: center;
justify-content: center;
min-width: 45px;
height: 45px;
padding: 0 15px;
background: rgba(255,255,255,0.1);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: var(--radius);
text-decoration: none;
font-weight: 600;
font-size: 15px;
transition: var(--transition);
color: rgba(255, 255, 255, 0.8);
}
.pagination li a:hover {
background: rgba(255, 255, 255, 0.2);
transform: translateY(-2px);
color: #fff;
border-color: rgba(255, 255, 255, 0.3);
}
.pagination li.active a {
background: var(--accent, #48477a);
color: #fff;
border-color: transparent;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
.pagination-container {
margin: 25px 0;
}
.pagination li a {
min-width: 40px;
height: 40px;
font-size: 14px;
padding: 0 10px;
}
.pagination {
gap: 6px;
}
}
.game-badge {
position: absolute;
left: 0;
top: 0;
z-index: 10;
font-size: 12px;
background-color: #ffffff;
color: #222020;
border-radius: 0 0 8px 0;
padding: 4px;
font-weight: bold;
box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}
.sr-only {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
overflow: hidden;
clip: rect(0 0 0 0);
border: 0;
}