:root {
--original-bgcolor: #B0B6ED;
--textcolor: #555555;
--linkcolor: #565872;
--iconsvg-color: #6C6F8E;
--boxiconsvg-color: #FFFFFF;
--gametitle-color: #ffffff;
--searchbox-bg-color: #B0B6ED;
--close-btn-bg-color: #ffffff;
--categories-bg-color: #ffffff;
--categories-bg-5color: #E1E7E8;
--categories-linkcolor: #565872;
--home-description-bg-color: #ffffff;
--game-description-bg-color: #ffffff;
--footer-copy-bg-color: #ffffff;
--game-average-svg-color: gold;
--game-list-svg-color: #E1E71C;
--mobile-playbutton-bg-color: #B0B6ED;
--thumb-bgcolor: #FFFFFF;
}
* {
box-sizing: border-box;
}
.wrapper {
max-width: 1920px;
margin: 15px auto;
min-height: 100vh;
}
body {
font-family: Arial, sans-serif;
margin: 0;
position: relative;
z-index: 0;
text-decoration: none;
}
body::before {
content: "";
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
opacity: 0.8;
z-index: -1;
}

.menu {
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
background-color: rgba(255, 255, 255, 0.9);
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
position: sticky;
top: 15px;
z-index: 10;
border: none;
border-radius: 8px;
height: 100%;
object-fit: cover;
}
.menu .icons{
display: flex;
gap: 15px;
justify-content: space-between;
align-items: center; /* Dikey hizalama için opsiyonel */
width: 100%; /* Gerekirse genişliği ayarlayın */
border-top: 1px solid #6C6F8E;
padding-top:7px;
padding-left:2px;
padding-right:2px;
}
.menu .logo{
margin-bottom: auto;
text-align:center;
}
.menu .logo img{
margin-top:10px;
margin-bottom: auto;
max-width: 90px;
width: 100%;
}

.menu .home-icon, .menu .menu-list-icon{
font-size: 26px;
}
.menu svg{
width: 35px;
height: 35px;
}
#iconsvg path {
fill: var(--iconsvg-color);
}
#iconsvg:hover {
opacity: 0.5;
transition: visibility 0.3s, opacity 0.3s ease;
transform: scale(1.09);
}
.game-average-total-votes #iconsvg path {
fill: var(--game-average-svg-color);
}
.game-list-svg {
position: relative;
border: none;
border-radius: 8px;
overflow: hidden;
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
background: var(--game-list-svg-color);
display: flex;
justify-content: center;
align-items: center;
}
.game-list-svg:hover {
transform: scale(1.09);
}
.game-list-svg svg {
width: 100%;
height: 100%;
object-fit: cover;
}
#gamelistsvg path{
fill: var(--boxiconsvg-color);
}
.game-list-svg-title {
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 100%;
padding: 5px 1px;
text-align: center;
font-size: 14px;
font-weight: normal;
background-color: rgba(0, 0, 0, 0.6);
color: var(--gametitle-color);
visibility: hidden;
opacity: 0;
}
.game-list-svg:hover .game-list-svg-title {
transition: visibility 0.3s, opacity 0.3s ease;
visibility: visible;
opacity: 1;
}
.medium{
grid-row: span 2;
grid-column: span 2;
}
.large{
grid-row: span 3;
grid-column: span 3;
}
.search-game-list {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(73px, 1fr));
grid-auto-rows: minmax(73px, 73px);
grid-auto-flow: dense;
justify-content: center;
grid-gap: 0.5rem;
margin: 15px;
}

.search_page_box {
grid-row: span 1;
grid-column: span 2;	
background: var(--thumb-bgcolor);
border-radius: 8px;
overflow: hidden;
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
border: none;
transition: transform 0.2s;
display: flex;
justify-content: center;
align-items: center;
padding-top: 16px;
}

.search_page_box button {
background: none;
border: none;
cursor: pointer;
}

.category-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(212px, 212px));
grid-auto-rows: minmax(100px, 100px);
grid-auto-flow: dense;
justify-content: center;
grid-gap: 0.8rem;
margin-top: 25px;
}
.category-game-list {
grid-row: span 1;
grid-column: span 2;	
background: var(--thumb-bgcolor);
border-radius: 8px;
overflow: hidden;
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
border: none;
transition: transform 0.2s;
}
.category-game-list:hover {
transform: scale(1.09);
}
.category-game-list a {
display: flex;
align-items: center;
text-decoration: none;
}
.category-game-list img {
width: 100px;
height: 100px;
object-fit: cover;
border-radius: 8px 0 0 8px;
}
.text-category {
width: 100%;
padding: 5px 1px;
text-align: center;
flex-grow: 1;
font-size: 16px;
font-weight: bold;
color: var(--linkcolor);
word-wrap: break-word; 
overflow-wrap: break-word;
min-width: 0;
}
@media (max-width: 600px) {
    .category-game-list {
        grid-column: span 1;
        grid-row: span 2;
    }

    .category-game-list a {
        display: flex;
        flex-direction: column; /* YAZIYI alta alır */
        align-items: center;
    }

    .category-game-list img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 8px 8px 0 0;
    }
    .category-game-list .text-category {
        padding: 10px 2px;
    }
}
.menu-list-class{
grid-row: span 1;
grid-column: span 1;	
}
.category-name {
grid-row: span 1;
grid-column: span 1;	
background: #fff;
border-radius: 8px;
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
border: none;
transition: transform 0.2s;
display: flex;
justify-content: center;
align-items: center;
}
.category-name-title {
width: 100%;
padding: 5px 1px;
text-align: center;
flex-grow: 1;
font-size: 15px;
font-weight: bold;
color: var(--textcolor);
word-wrap: break-word; 
overflow-wrap: break-word;
}
.category-name:hover {
transform: scale(1.09);
}
.other-name {
grid-row: span 1;
grid-column: span 1;	
background: #fff;
border-radius: 8px;
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
border: none;
transition: transform 0.2s;
display: flex;
justify-content: center;
align-items: center;
}
.other-name-title {
width: 100%;
padding: 5px 0;
text-align: center;
flex-grow: 1;
font-size: 16px;
font-weight: bold;
color: var(--textcolor);
}
.other-name:hover {
transform: scale(1.09);
}
.thumb {
position: relative;
border: none;
border-radius: 8px;
overflow: hidden;
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
background: var(--thumb-bgcolor);
transition: transform 0.2s;
}
.thumb:hover {
transform: scale(1.09);
}
.thumb img {
width: 100%;
height: 100%;
object-fit: cover;
}
.list_game_title {
position: absolute;
bottom: 0;
width: 100%;
padding: 5px 0;
text-align: center;
font-size: 14px;
font-weight: normal;
background-color: rgba(0, 0, 0, 0.6);
color: var(--gametitle-color);
visibility: hidden;
opacity: 0;
transition: visibility 0.3s, opacity 0.3s ease;
}
.thumb:hover .list_game_title {
visibility: visible;
opacity: 1;
}
@media screen and (max-width: 600px) {
.list_game_title {
font-size: 14px;
}
}
@media screen and (max-width: 400px) {
.thumb img {
object-fit: cover;
}
.list_game_title {
padding: 5px 0;
font-size: 12px;
}
}
.search-box {
position: fixed;
top: 0;
left: -200%;
width: 360px;
height: 100%;
background-color: var(--searchbox-bg-color);
box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3);
transition: 0.3s;
z-index: 1000;
}
.searchbox-header-logo {
display: flex;
align-items: center;
justify-content: center;
height: 50px;
}
.search-box h3{
color: var(--textcolor);
}
.close-btn {
position: absolute;
top: 0;
right: 0;
cursor: pointer;
background-color: var(--close-btn-bg-color);
width: 50px;
height: 50px;
display: flex;
justify-content: center;
align-items: center;
border-radius: 0 0 0 100px;
box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.3);
transition: background-color 0.3s;
z-index: 1100;
}
.close-btn:hover {opacity: 0.8;}
.close-btn svg{
margin: 0 0 10px 10px;
}
.search-box.open {
left: 0;
}
.search-input {
position: relative;
max-width: 360px;
margin: 10px;
}
.search-input input {
width: 100%;
outline: none;
padding: 15px;
border: none;
border-radius: 10px;
transition: background-color 0.3s;
box-shadow: 2px 2px 4px rgba(0, 0, 0, .4);
text-decoration: none;
font-size: 18px;
color: var(--textcolor);
}
.search-input .search-icon {
position: absolute;
right: 5px;
top: 10px;
width: 30px;
height: 34px;
}
.sc-area {
padding-bottom: 120px;
height: 100%;
overflow-y: auto;
-ms-overflow-style: none;
scrollbar-width: none;
}
.sc-area::-webkit-scrollbar{
display: none;
}
.top-games {
padding: 10px;
}
.top-games ul {
list-style-type: none;
padding: 0;
}
.top-games li {
margin: 10px 0;
}
.categories {
  margin: 10px;
}

.categories ul {
  display: flex; /* Yan yana sıralama için */
  flex-wrap: wrap; /* Elemanlar alanı aşarsa bir alt satıra geçsin */
  padding: 0;
  list-style-type: none;
  gap: 10px; /* Elemanlar arası boşluk */
}

.categories li {
  display: flex;
  align-items: center;
  background-color: var(--categories-bg-color);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
  width: calc(50% - 5px); /* Yan yana iki eleman için genişlik */
}
.categories ul li.hotcolor,
.categories ul li:last-child {     /* Son öğe */
	background-color: var(--categories-bg-5color);
}

.categories a {
  padding: 10px 0 10px 5px;
  text-decoration: none;
  font-size: 15px;
  color: var(--categories-linkcolor);
  font-weight: bold;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.categories li:hover {
  opacity: 0.8;
}

.language-select {
  display: block;
  width: 100%;
  background-color: var(--categories-bg-color);
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 10px;
  font-size: 15px;
  font-weight: bold;
  color: var(--categories-linkcolor);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.language-select:hover {
  background-color: var(--categories-bg-5color);
}

.language-select:focus {
  outline: none;
  box-shadow: 0 0 5px var(--categories-bg-5color);
}

.language-select option {
  background-color: var(--categories-bg-color);
  color: var(--categories-linkcolor);
  font-weight: bold;
  padding: 10px;
}

.language-select option:checked {
  background-color: var(--categories-bg-5color);
}
.medium {display: inline-block;}
@-webkit-keyframes medium {
26% {
transform: rotate(0) scale(1);
}
28% {
transform: rotate(-2deg) scale(1.04);
}
32% {
transform: rotate(1deg) scale(1.01);
}
34% {
transform: rotate(-2deg) scale(1.02);
}
36% {
transform: rotate(3deg) scale(1);
}
39% {
transform: rotate(-1deg) scale(1);
}
44% {
transform: rotate(0) scale(1);
}
}
@keyframes medium {
26% {
transform: rotate(0) scale(1);
}
28% {
transform: rotate(-2deg) scale(1.04);
}
32% {
transform: rotate(1deg) scale(1.01);
}
34% {
transform: rotate(-2deg) scale(1.02);
}
36% {
transform: rotate(3deg) scale(1);
}
39% {
transform: rotate(-1deg) scale(1);
}
44% {
transform: rotate(0) scale(1);
}
}
.game-container-column {
max-width: 100%; /* Genel genişliği sınırla */
}
@media screen and (max-width: 212px) {
.medium{
grid-row: span 1;
grid-column: span 1;
}
}
@media screen and (max-width: 325px) {
.large{
grid-row: span 2;
grid-column: span 2;
}
}
.game-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;
}

.ads_game_right {
    grid-row: span 6;
    grid-column: span 2;
    display: table;
    width: 100%;
    height: 100%;
	max-width: 100%;
    text-align: center;
	overflow: hidden;
	background: var(--thumb-bgcolor);
}
.ads_game_bottom {
    grid-row: span 1;
    grid-column: span 7;
    display: flex; /* Changed to flex */
    align-items: center; /* Centers content vertically */
    justify-content: center; /* Centers content horizontally */
    width: 100%;
    height: 100%;
    max-width: 100%;
    text-align: center;
    overflow: hidden;
    background: var(--thumb-bgcolor);
}

.ads_content_1 {
    display: flex; /* Changed to flex */
    align-items: center; /* Centers content vertically */
    justify-content: center; /* Centers content horizontally */
}

.advert-vertical {
    font-size: 12px;
    font-weight: normal;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    margin-right: 10px;
}
.ads_content_2{
    display: table-cell;
    vertical-align: middle;
}
.advert-label {
    font-size: 12px;
    color: #999;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 4px;
    display: block;
}
/* Mobil varsayılan (0 - 639px arası) */
.game-container-column {
    max-width: 100%;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    grid-row: span 5;
    grid-column: span 4;
}
@media (min-width: 200px) {
    .game-container-column {
		grid-row: span 4;
        grid-column: span 3;
    }		
}
/* Tablet - min-width: 640px */
@media (min-width: 640px) {
    .game-container-column {
		grid-row: span 4;
        grid-column: span 3;
    }	
}
/* Küçük Masaüstü - min-width: 768px */
@media (min-width: 768px) {
    .game-container-column {
		grid-row: span 4;
        grid-column: span 4;
    }
    .ads_game_mobile {
        display: none;
    }	
}
/* Mobil: 768px altı */
@media (max-width: 768px) {
    .ads_game_bottom,
    .ads_game_right {
        display: none !important;
    }

    .ads_game_mobile {
    grid-row: span 6;
    grid-column: span 3;
    display: table;
    width: 100%;
    height: 100%;
	max-width: 100%;
    text-align: center;
	overflow: hidden;
	background: var(--thumb-bgcolor);
    }
}
/* Orta Masaüstü - min-width: 1024px */
@media (min-width: 1024px) {
    .game-container-column {
        grid-row: span 5;
        grid-column: span 8;
    }	
}

/* Büyük Ekran - min-width: 1280px */
@media (min-width: 1280px) {
    .game-container-column {
        grid-column: span 8;
    }
}

/* Daha Büyük Ekran - min-width: 1440px */
@media (min-width: 1440px) {
    .game-container-column {
        grid-row: span 5;
        grid-column: span 9;
    }
}

/* 2K Ekranlar - min-width: 1536px */
@media (min-width: 1536px) {
    .game-container-column {
		grid-row: span 6;
        grid-column: span 9;
    }
}

/* Ultra Geniş - min-width: 1920px */
@media (min-width: 1920px) {
    .game-container-column {
		grid-row: span 7;
        grid-column: span 10;
    }
}

.game-container {
display: flex;
flex-direction: row; /* Yatay düzen */
width: 100%;
height: 100%;
border: none;
overflow: hidden; /* Taşmaları gizle */
background-color: #fff;
text-align: center;
}
.game-container #gameplayMbtn {
background: linear-gradient(135deg, #4b79a1, #283e51);
margin: 5px; /* Dış boşluk */
padding: 10px; /* İç boşluk */
flex: 1; /* Kalan alanı kapla */
display: flex; /* Flex kullanarak içerikleri ortala */
flex-direction: column; /* Dikey hizalama */
align-items: center; /* Yatayda ortala */
justify-content: center; /* Dikeyde ortala */
}
.game-container #gameplayMbtn img {
border-radius: 8px;
}
.game-container #gameplayMbtn h2 {
color: var(--gametitle-color);
font-size: 20px;
font-weight:bold;
}
.game-container #gameplayMbtn .game-average-total-votes {
margin-bottom: 10px;
color: var(--gametitle-color);
}
.game-container #gameplayMbtn .btn-play-game {
padding: 10px 5px; /* İç boşluk */
background-color: #ffffff;
color: var(--textcolor);
border: none; /* Kenarlık yok */
border-radius: 8px; /* Yuvarlak buton */
width: 200px; /* Buton genişliği */
height: 50px; /* Buton yüksekliği */
font-size: 18px; /* Font boyutu */
font-weight:bold;
cursor: pointer; /* İmleç değişimi */
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); /* Gölge efekti */
transition: transform 0.3s, background 0.3s; /* Animasyon */
}
.game-container #gameplayMbtn .btn-play-game:hover {
transform: scale(1.09);
}
.game-container #iframe-container {
flex: 2; /* Kalan alanı kapla, daha fazla yer kaplasın */
padding: 0;
margin: 0;
width: 100%;
display: none;
position: relative;
}
#iframe-container .move-btn {
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
z-index: 10;
border: none;
touch-action: none; /* Dokunma olaylarını etkinleştir */
cursor: pointer;
background-color: var(--close-btn-bg-color);
width: 36px;
height: 36px;
padding: 2px;
display: flex;
justify-content: center;
align-items: center;
border-radius: 0 8px 8px 0;
box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.3);
transition: background-color 0.3s;
}
#iframe-container .move-btn #moveButtonSvg path {
fill: var(--iconsvg-color);
border: none;
}
#iframe-container .move-btn #moveButtonSvg:hover {
opacity: 0.5;
transition: visibility 0.3s, opacity 0.3s ease;
}
.game-container .game-actions-bar {
display: flex;
flex-direction: column;
align-items: center;
padding: 5px;
background-color: #fff;
border-left: 1px solid #B0B6ED;
height: 100%;
width: 60px; /* Dikey oyun kontrollerinin genişliği */
}
.game-container .game-actions-bar button {
background: none;
border: none;
cursor: pointer;
color: #6C6F8E;
margin: 8px 0;
}
.game-container .game-actions-bar button svg {
width: 32px;
height: 32px;
}
#like-btn.active {
    border: 1px solid var(--game-list-svg-color);
	border-radius: 8px;
}

#dislike-btn.active {
    border: 1px solid var(--game-list-svg-color);
	border-radius: 8px;
}

#favorite-btn.active {
	border: 1px solid var(--game-list-svg-color);
	border-radius: 8px;
}
#hataForm {
position: fixed;
bottom: 0px;
right: -300px;
width: 300px;
background-color: white;
border-radius: 8px 0 0 0;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
padding: 20px;
transition: right 0.3s ease;
z-index: 1000;
font-size: 15px;
font-weight:normal;
color: var(--textcolor);
}
#hataForm.visible {
right: 0; /* Görünür hale getir */
display: block;
}
#hataForm .hidden {
display: none; /* Başlangıçta gizle */
}
#hataForm h4 {
margin: 0 0 5px;
font-size: 18px;
}
#hataForm textarea {
width: 100%;
height: 60px;
border: 1px solid #ccc;
border-radius: 5px;
padding: 5px;
resize: none;
transition: border-color 0.3s;
}
#hataForm textarea:focus {
border-color: #ccc;
outline: none;
}
#hataForm .select-group, #hataForm .textarea-group {
  margin-bottom: 10px;
}
#hataForm .select-group label, #hataForm .textarea-group label{
  display: block;
  margin-bottom: 10px;
  cursor: pointer;
}

#hataForm .select-group select {
  width: 100%;
  padding: 8px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: white;
  cursor: pointer;
}

#hataForm .select-group select:focus {
  outline: none;
  border-color: #ccc;
}
#hataForm button {
color: var(--linkcolor);
background-color: var(--categories-bg-5color);
font-weight:bold;
border: none;
border-radius: 5px;
padding: 10px 15px;
cursor: pointer;
transition: background-color 0.3s;
}
#hataForm button:hover {
opacity: 0.8;
}
#shareMenu {
position: fixed;
bottom: 0px;
right: -250px; /* Başlangıçta görünmez */
width: 250px;
background-color: white;
border-radius: 8px 0 0 0;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
padding: 10px;
transition: right 0.3s ease;
z-index: 1000;
}
#shareMenu.show {
right: 0; /* Slide in */
}
.share-link {
display: flex;
align-items: center;
margin: 5px 0; /* Space between links */
padding: 10px 15px; /* Padding for touch targets */
border-radius: 5px; /* Rounded corners */
text-decoration: none; /* No underline */
color: var(--linkcolor);
background-color: var(--categories-bg-5color);
transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transitions */
}
.share-link:hover {
opacity: 0.8;
}
#copyLink {
background-color: var(--categories-bg-5color);
color: var(--linkcolor);
font-weight:bold;
}
#copyLink:hover {
opacity: 0.8;
}
@keyframes blink {
0% { opacity: 1; }
50% { opacity: 0; }
100% { opacity: 1; }
}
.blink {
animation: blink 1s infinite;
}
.breadcrumb {
  list-style-type: none;
  list-style: none;
  padding: 0 0 10px 0;
  display: flex;
  flex-wrap: wrap; /* Eklendi: küçük ekranlarda satır kaydırma */
}
.breadcrumb li {
  display: inline;
  white-space: nowrap; /* Satır sonuna gelince linkler bölünmesin */
  margin-bottom: 5px; /* Kayarsa biraz boşluk bıraksın */
}
.breadcrumb li::after {
content: '›';
margin: 0 5px;
}
.breadcrumb li:last-child::after {
content: '';
}
.game-meta {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 12px 16px;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #333;
    max-width: 300px;
    margin: 16px 0;
}
.game-meta p {
    margin: 6px 0;
}
.game-meta strong {
    color: #555;
}
.game-meta time {
    color: #000;
}
section a, footer a {
position: relative;
color: var(--linkcolor);
text-decoration: underline !important;
transition: color 0.3s, transform 0.3s;
}
section a:hover, footer a:hover {
opacity: 0.8;
transform: scale(1.1) !important;
}
section.game{
color: var(--textcolor);
margin: 40px 0 0 0;
font-size: 16px;
box-sizing: border-box;
position: relative;
text-decoration: none;
}

section .game-description {
background-color: var(--game-description-bg-color);
margin-bottom: 40px;
padding: 20px;
}
section .game-description h1 {
font-size: 24px;
margin-bottom: 15px;
}
section .game-description h2 {
font-size: 20px;
margin-bottom: 15px;
}
section .game-description p {
line-height: 1.6;
margin-bottom: 15px;
}
section.home{
color: var(--textcolor);
margin: 40px 0 0 0;
font-size: 16px;
box-sizing: border-box;
position: relative;
text-decoration: none;
}
section .home-description {
background-color: var(--home-description-bg-color);
margin-bottom: 40px;
padding: 20px;
}
section .home-description h1 {
font-size: 24px;
margin-bottom: 15px;
}
section .home-description h2 {
font-size: 20px;
margin-bottom: 15px;
}
section .home-description p {
line-height: 1.6;
margin-bottom: 15px;
}
section .home-description ul.top-10-game-list {
list-style-type: none;
margin-left: 0;
padding-left: 0;
}
section .home-game-lists {
margin-top: 10px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
section .home-game-lists .top-10-game-list {
list-style-type: none;
padding: 0;
margin: 10px;
flex: 1;
min-width: 300px;
}
@media (max-width: 768px) {
section .home-game-lists {
flex-direction: column;
}
section .home-game-lists .top-10-game-list {
min-width: auto;
}
}
section .home-game-lists .top-10-game-list li {
display: flex;
counter-increment: list-counter;
margin-bottom: 5px;
}
section .home-game-lists .top-10-game-list li::before {
content: counter(list-counter) ". ";
}

footer .footer-copy {
background-color: var(--footer-copy-bg-color);
text-align: center;
padding: 25px 20px;
display: flex;
justify-content: space-between;
align-items: center;
}
footer .footer-copy-link {
display: flex;
gap: 10px;
}
@media (max-width: 768px) {
.footer-copy {
flex-direction: column;
align-items: flex-start;
}
.footer-copy-link {
margin-top: 10px;
flex-direction: column;
gap: 5px;
}
}
footer {
max-width: 1920px;
margin: 0 auto;
}

.page-large {
color: var(--textcolor);
margin: 40px 15px 0 15px;
font-size: 16px;
box-sizing: border-box;
position: relative;
text-decoration: none;
min-height: 100vh;
}

.page-description {
background-color: var(--game-description-bg-color);
margin-bottom: 40px;
padding: 20px;
color: var(--textcolor);
font-size: 16px;
text-decoration: none;

}
.page-description h1 {
font-size: 24px;
margin-bottom: 15px;
}
.page-description h2 {
font-size: 20px;
margin-bottom: 15px;
}
.page-description p {
line-height: 1.6;
margin-bottom: 15px;
}