@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter/Inter-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter/Inter-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter/Inter-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter/Inter-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter/Inter-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter/Inter-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Inter', 'Segoe UI', sans-serif;
}
html, body {
color: var(--text-dark);
overflow-x: hidden;
width: 100%;
}
.full-width-slider-section {
width: 100%;
padding: 30px 0;
margin-bottom: 40px;
position: relative;
overflow: visible;
}
.full-width-slider-section::after {
content: "";
position: absolute;
left: 0;
right: 0;
bottom: -20px;
height: 20px;
}
.container {
padding: 0 20px;
max-width: 1400px;
margin: 0 auto;
}
.play-container {
padding: 0;
}
.mobile-only {
display: none;
}
header {
padding: 10px 20px;
display: flex;
justify-content: space-between;
align-items: center;
position: relative;
z-index: 1000;
gap: 20px;
width: 100%;
}
header::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 5px;
}
.logo a {
display: flex;
align-items: center;
text-decoration: none;
}
.site-logo {
height: 50px;
width: 250px;
display: block;
}
.search-box {
    flex-grow: 1;
    max-width: 500px;
    position: relative;
    display: flex;
    align-items: center;
}

.search-box form {
    width: 100%;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 12px 45px 12px 20px;
    border-radius: 30px;
    border: 2px solid #e4e6eb;
    background-color: #f3f4f6;
    font-size: 16px;
    transition: all var(--transition-speed);
    outline: none;
    color: var(--text-dark);
}

.search-box input:focus {
    border-color: var(--primary-color);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(0, 166, 255, 0.1);
}

.search-btn {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.search-btn:hover {
    color: var(--primary-color);
}

.search-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}
.nav-menus {
display: flex;
gap: 15px;
}
.dropbtn {
background-color: #f3f4f6;
color: var(--text-dark);
padding: 12px 20px;
font-size: 15px;
font-weight: 600;
border: none;
cursor: pointer;
border-radius: 20px;
transition: background-color var(--transition-speed);
display: flex;
align-items: center;
gap: 8px;
}
.dropbtn:hover {
background-color: #e4e6eb;
}
.btn-icon {
width: 22px;
height: 22px;
fill: var(--primary-color);
transition: transform var(--transition-speed);
}
.dropbtn:hover .btn-icon {
color: var(--text-light);
}
.mobile-menu-btn {
display: none;
background: none;
border: none;
cursor: pointer;
color: var(--text-dark);
transition: color 0.2s;
}
.mobile-menu-btn svg {
width: 28px;
height: 28px;
fill: var(--primary-color);
}
.mobile-menu-btn svg:hover {
fill: var(--text-light);
}
.category-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
margin-top: 40px;
}
.container .category-header:first-child {
margin-top: 0;
}
.section-title {
margin-bottom: 0;
font-size: 24px;
color: var(--text-dark);
font-weight: 800;
}
.more-btn {
background-color: var(--primary-color);
color: white;
border: none;
padding: 8px 16px;
border-radius: 8px;
text-decoration: none;
font-size: 14px;
font-weight: 700;
transition: all 0.2s ease;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.more-btn:hover {
filter: brightness(0.85);
transform: translateY(-2px);
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}
.game-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
gap: 20px;
width: 100%;
}
.game-card {
position: relative;
border-radius: var(--border-radius-lg);
overflow: hidden;
box-shadow: var(--card-shadow);
text-decoration: none;
display: block;
background-color: #fff;
transition: box-shadow var(--transition-speed);
}
.game-card::after {
content: "";
position: absolute;
top: 120%;
left: -120%;
width: 200%;
height: 200%;
background: linear-gradient(
45deg,
transparent 45%,
rgba(255,255,255,0.6) 48%,
rgba(255,255,255,0.9) 50%,
rgba(255,255,255,0.6) 52%,
transparent 55%
);
transform: rotate(0deg);
transition: top 1s cubic-bezier(.25,.8,.25,1), left 1s cubic-bezier(.25,.8,.25,1);
pointer-events: none;
z-index: 10;
}
.game-card:hover::after {
top: -120%;
left: 120%;
}
.game-card img {
width: 100%;
aspect-ratio: 1 / 1;
object-fit: cover;
display: block;
}
.game-overlay {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 40%;
background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
display: flex;
align-items: flex-end;
padding: 10px;
opacity: 0;
transition: opacity var(--transition-speed);
z-index: 5;
}
.game-card:hover .game-overlay {
opacity: 1;
}
.game-overlay span {
color: #fff;
font-weight: bold;
font-size: 14px;
text-shadow: 0 2px 4px rgba(0,0,0,0.5);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
text-align: center;
width: 100%;
}

/* --- FEATURED GAMES İÇİN KUSURSUZ MASONRY GRID (Senin Yöntemin) --- */

.featured-grid {
    display: grid;
    /* Senin kodundaki gibi kesin kare sınırları koyuyoruz */
    grid-template-columns: repeat(auto-fill, minmax(100px, 100px));
    grid-auto-rows: minmax(100px, 100px);
    grid-auto-flow: dense; /* Boşlukları otomatik doldurur */
    justify-content: center;
    gap: 15px;
    width: 100%;
}

.featured-card {
    position: relative;
    border: none;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    background: transparent;
    display: block;
    text-decoration: none;
    /* Senin eklediğin donanım hızlandırma kodları (Animasyon pürüzsüzlüğü için) */
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
}

/* Boyut Sınıfları (PHP'den gelen sınıflar) */
.featured-card.size-small {
    grid-column: span 1;
    grid-row: span 1;
}

.featured-card.size-medium {
    grid-column: span 2;
    grid-row: span 2;
}

.featured-card.size-large {
    grid-column: span 3;
    grid-row: span 3;
}

/* Resim Ayarları */
.featured-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--border-radius-sm);
}

/* Parlama Efekti */
.featured-card::after {
    content: "";
    position: absolute;
    top: 120%;
    left: -120%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 45%,
        rgba(255,255,255,0.6) 48%,
        rgba(255,255,255,0.9) 50%,
        rgba(255,255,255,0.6) 52%,
        transparent 55%
    );
    transform: rotate(0deg);
    transition: top 1s cubic-bezier(.25,.8,.25,1), left 1s cubic-bezier(.25,.8,.25,1);
    pointer-events: none;
    z-index: 10;
}

.featured-card:hover::after {
    top: -120%;
    left: 120%;
}

/* Oyun İsmi Katmanı */
.featured-card .game-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 5px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s, opacity 0.3s ease;
    z-index: 5;
}

.featured-card:hover .game-overlay {
    visibility: visible;
    opacity: 1;
}

.featured-card .game-overlay span {
    color: #fff;
    font-weight: normal;
    font-size: 14px;
    text-align: center;
    width: 100%;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --- KORUMA KURALLARI (Senin eklediğin harika mobil kurallar) --- */

/* Çok küçük ekranlarda medium kartı küçült */
@media screen and (max-width: 250px) {
    .featured-card.size-medium {
        grid-row: span 1;
        grid-column: span 1;
    }
}

/* Küçük ekranlarda large kartı küçült */
@media screen and (max-width: 350px) {
    .featured-card.size-large {
        grid-row: span 2;
        grid-column: span 2;
    }
    .featured-card .game-overlay span {
        font-size: 12px;
    }
}

.sidebar-title {
font-size: 18px;
font-weight: 800;
margin-bottom: 15px;
color: var(--text-dark);
}
.sidebar-vertical-list {
display: flex;
flex-direction: column;
gap: 12px;
}
.all-categories-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 20px;
}
.all-category-card {
display: flex;
flex-direction: row;
align-items: center;
background-color: var(--header-bg);
border-radius: var(--border-radius-sm);
text-decoration: none;
color: var(--text-dark);
box-shadow: var(--card-shadow);
transition: all 0.2s ease;
height: 100px;
overflow: hidden;
}
.all-category-card img {
width: 100px;
height: 100px;
min-width: 100px;
object-fit: cover;
display: block;
border-right: 1px solid #f0f2f5;
}
.all-category-card span {
font-size: 14px;
font-weight: 800;
padding: 0 10px;
line-height: 1.3;
transition: color 0.2s;
}
.all-category-card:hover span {
color: var(--primary-color);
}
.game-wrapper {
position: relative;
width: 100%;
aspect-ratio: 16 / 9;
background-color: #000;
overflow: hidden;
box-shadow: var(--card-shadow);
}
#game-iframe {
width: 100%;
height: 100%;
display: none;
}
.game-splash {
position: absolute;
inset: 0;
z-index: 10;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
.splash-bg {
position: absolute;
inset: -20px;
background-size: cover;
background-position: center;
filter: blur(20px) brightness(0.4);
transform: scale(1.1);
z-index: 1;
}
.splash-content {
position: relative;
z-index: 2;
display: flex;
flex-direction: column;
align-items: center;
gap: 15px;
color: #fff;
text-align: center;
}
.game-splash__img {
width: 120px;
height: 120px;
border-radius: 20px;
box-shadow: 0 10px 25px rgba(0,0,0,0.5);
border: 3px solid rgba(255,255,255,0.2);
}
.game-splash__title {
font-size: 24px;
font-weight: 900;
text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}
.play-now-btn {
background-color: var(--accent-pink);
color: #fff;
border: none;
padding: 15px 40px;
font-size: 20px;
font-weight: 900;
border-radius: 30px;
cursor: pointer;
display: flex;
align-items: center;
gap: 10px;
box-shadow: 0 5px 15px rgba(239, 71, 111, 0.5);
transition: all var(--transition-speed);
}
.play-now-btn:hover {
transform: scale(1.05) translateY(-3px);
box-shadow: 0 8px 25px rgba(239, 71, 111, 0.7);
}
.game-bar {
display: flex;
justify-content: space-between;
align-items: center;
background-color: var(--header-bg);
padding: 5px 10px;
box-shadow: var(--card-shadow);
margin-bottom: 30px;
}
.game-bar__actions {
display: flex;
gap: 10px;
align-items: center;
}
.vote-box {
display: flex;
align-items: center;
background-color: #f3f4f6;
border-radius: 8px;
padding: 10px;
gap: 10px;
}
.vote-btn {
background: none;
border: none;
display: flex;
align-items: center;
gap: 5px;
cursor: pointer;
font-weight: 700;
font-size: 14px;
color: var(--text-dark);
transition: color 0.2s;
}
.vdislike-btn span { display: none; }
.vlike-btn:hover { color: #06D6A0; }
.vdislike-btn:hover { color: #EF476F; }
.vote-divider {
width: 2px;
height: 15px;
background-color: #cbd5e1;
}
.game-btn {
background-color: #f3f4f6;
border: none;
width: 40px;
height: 40px;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
color: var(--text-dark);
transition: all 0.2s;
}
.game-btn:hover {
background-color: #e4e6eb;
}
#favorite-btn.active .icon,#favorite-btn.active svg{fill:red!important;color:red!important}.

.ad-container {
background-color: #e2e8f0;
display: flex;
align-items: center;
justify-content: center;
color: #94a3b8;
text-align: center;
overflow: hidden;
}
.ad-dynamic-bottom {
width: 100%;
max-width: 728px;
height: 90px;
margin: 33px auto;
}
.ad-dynamic-right {
width: 300px;
height: 600px;
margin: 0 auto;
text-align: center;
}
.play-section {
margin-top: 0;
margin-bottom: 0;
}
.play-grid {
display: grid;
grid-template-columns: 100px 1fr 320px;
gap: 25px;
align-items: start;
padding-left: 20px;
padding-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
margin-top: 0;
}
.play-game-grid {
display: grid;
grid-template-columns: repeat(auto-fit, 200px);
justify-content: center;
grid-auto-rows: 90px;
gap: 20px;
grid-auto-flow: dense;
padding-left: 20px;
padding-right: 20px;
padding-top: 40px;
padding-bottom: 40px;
border-bottom: 5px solid transparent;
margin-bottom: 20px;
}
.play-game-grid .related-category-card {
grid-column: 1;
grid-row: span 1;
display: flex;
flex-direction: row;
align-items: center;
background-color: var(--header-bg);
border-radius: var(--border-radius-sm);
text-decoration: none;
color: var(--text-dark);
box-shadow: var(--card-shadow);
transition: all 0.2s ease;
overflow: hidden;
}
.play-game-grid .related-category-card img {
width: 90px;
height: 90px;
min-width: 90px;
object-fit: cover;
display: block;
border-right: 1px solid #f0f2f5;
}
.play-game-grid .related-category-card span {
font-size: 14px;
font-weight: 800;
padding: 0 10px;
line-height: 1.3;
transition: color 0.2s;
}
.play-game-grid .related-category-card:hover span {
color: var(--primary-color);
}
.play-game-grid .related-game-card {
grid-row: span 2;
position: relative;
border-radius: var(--border-radius-lg);
overflow: hidden;
box-shadow: var(--card-shadow);
text-decoration: none;
display: block;
background-color: #fff;
transition: box-shadow var(--transition-speed);
}
.play-game-grid .related-game-card:hover {
box-shadow: var(--hover-shadow);
z-index: 2;
}
.play-game-grid .related-game-card::after {
content: "";
position: absolute;
top: 120%;
left: -120%;
width: 200%;
height: 200%;
background: linear-gradient(45deg, transparent 45%, rgba(255,255,255,0.6) 48%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.6) 52%, transparent 55%);
transform: rotate(0deg);
transition: top 1s cubic-bezier(.25,.8,.25,1), left 1s cubic-bezier(.25,.8,.25,1);
pointer-events: none;
z-index: 10;
}
.play-game-grid .related-game-card:hover::after {
top: -120%;
left: 120%;
}
.play-game-grid .related-game-card img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.play-game-grid .game-overlay {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 40%;
background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
display: flex;
align-items: flex-end;
padding: 10px;
opacity: 0;
transition: opacity var(--transition-speed);
z-index: 5;
}
.play-game-grid .related-game-card:hover .game-overlay {
opacity: 1;
}
.play-game-grid .game-overlay span {
color: #fff;
font-weight: bold;
font-size: 14px;
text-shadow: 0 2px 4px rgba(0,0,0,0.5);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
text-align: center;
width: 100%;
}
@media (max-width: 850px) {
.play-game-grid {
grid-template-columns: repeat(4, 1fr);
grid-auto-rows: auto;
gap: 15px;
}
.play-game-grid .related-category-card {
grid-column: span 2;
grid-row: span 1;
height: 70px;
}
.play-game-grid .related-category-card img {
width: 70px;
height: 70px;
min-width: 70px;
}
.play-game-grid .related-game-card {
grid-column: span 1;
grid-row: span 1;
aspect-ratio: 1 / 1;
}
}
@media (max-width: 500px) {
.play-game-grid {
grid-template-columns: repeat(3, 1fr);
}
.play-game-grid .related-game-card {
grid-column: span 1;
}
.play-game-grid .related-category-card {
grid-column: span 3;
}
}
.details-section {
padding-top: 20px;
padding-bottom: 20px;
}
.details-game-section {
padding-left:20px;
padding-right: 20px;
padding-top: 20px;
padding-bottom: 20px;
margin-bottom: 20px;
border-bottom: 5px solid transparent;
}
.details-grid {
display: grid;
grid-template-columns: 1fr 325px;
gap: 30px;
}
.details-main-img {
max-width: 325px;
width: 100%;
aspect-ratio: 1 / 1 !important;
margin: 0 auto;
display: block;
height: 325px;
object-fit: cover;
border-radius: var(--border-radius-lg);
box-shadow: var(--card-shadow);
margin-bottom: 20px;
}
.info-table {
width: 100%;
border-collapse: collapse;
}
.info-table th, .info-table td {
padding: 12px 0;
border-bottom: 1px solid #f0f2f5;
font-size: 14px;
text-align: left;
}
.info-table th {
font-weight: 800;
color: var(--text-dark);
width: 40%;
}
.info-table td {
color: var(--text-light);
}
.breadcrumb {
margin: 10px 0;
font-size: 14px;
font-weight: 600;
padding: 0 15px;
}
.breadcrumb ul {
list-style: none;
display: flex;
align-items: center;
flex-wrap: wrap;
}
.breadcrumb a {
color: var(--text-light);
text-decoration: none;
display: inline-flex;
align-items: center;
transition: color 0.2s ease;
}
.breadcrumb a:hover {
color: var(--primary-color);
}
.breadcrumb .separator {
margin: 0 5px;
color: #cbd5e1;
font-size: 14px;
font-weight: 400;
}
.breadcrumb .current {
color: var(--accent-pink);
font-weight: 800;
}
.site-intro {
padding: 20px 15px;
margin-bottom: 20px;
color: var(--text-dark);
}
.site-intro::after {
content: "";
display: table;
clear: both;
}
.site-intro h1, .site-intro h2, .site-intro h3 {
margin-bottom: 15px;
color: var(--text-dark);
}
.site-intro h1 { font-size: 28px; font-weight: 800; margin-bottom: 20px;}
.site-intro h2 { font-size: 24px; font-weight: 700;}
.site-intro h3 { font-size: 20px; font-weight: 600;}
.site-intro h4 { font-size: 18px; font-weight: 500;}
.site-intro p {
font-size: 16px;
line-height: 1.6;
margin-bottom: 15px;
color: var(--text-light);
}
.site-intro ul, .site-intro ol {
margin-left: 25px;
margin-bottom: 20px;
font-size: 16px;
line-height: 1.8;
color: var(--text-light);
}
.site-intro li {
margin-bottom: 8px;
}
.site-intro a {
color: var(--primary-color);
text-decoration: underline;
font-weight: 600;
}
.intro-category-img {
float: right;
width: 325px;
height: 325px;
object-fit: cover;
border-radius: var(--border-radius-lg);
box-shadow: var(--card-shadow);
margin-left: 30px;
margin-bottom: 20px;
}
.sidebar-mini-card {
position: relative;
border-radius: var(--border-radius-sm);
overflow: hidden;
box-shadow: var(--card-shadow);
text-decoration: none;
display: block;
width: 100px;
height: 100px;
margin: 0 auto;
background-color: #fff;
transition: box-shadow var(--transition-speed), transform 0.2s;
}
.sidebar-mini-card::after {
content: "";
position: absolute;
top: 120%;
left: -120%;
width: 200%;
height: 200%;
background: linear-gradient(
45deg,
transparent 45%,
rgba(255,255,255,0.6) 48%,
rgba(255,255,255,0.9) 50%,
rgba(255,255,255,0.6) 52%,
transparent 55%
);
transform: rotate(0deg);
transition: top 1s cubic-bezier(.25,.8,.25,1), left 1s cubic-bezier(.25,.8,.25,1);
pointer-events: none;
z-index: 10;
}
.sidebar-mini-card:hover::after {
top: -120%;
left: 120%;
}
.sidebar-mini-card img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.sidebar-mini-overlay {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 50%;
background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
display: flex;
align-items: flex-end;
justify-content: center;
padding: 8px 5px;
opacity: 0;
transition: opacity var(--transition-speed);
z-index: 5;
}
.sidebar-mini-card:hover .sidebar-mini-overlay {
opacity: 1;
}
.sidebar-mini-overlay span {
color: #fff;
font-weight: 700;
font-size: 11px;
text-shadow: 0 2px 4px rgba(0,0,0,0.5);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
text-align: center;
width: 100%;
}
.pagination {
background-color: #ffffff;
border-radius: var(--border-radius-lg);
box-shadow: var(--card-shadow);
padding: 10px;
display: flex;
justify-content: center;
align-items: center;
gap: 10px;
margin: 20px 0;
flex-wrap: wrap;
}
.page-btn {
padding: 10px 18px;
background-color: #CCCDCE;
color: var(--text-dark);
text-decoration: none;
font-weight: 700;
font-size: 15px;
border-radius: var(--border-radius-sm);
box-shadow: var(--card-shadow);
transition: all var(--transition-speed);
}
.page-btn:hover {
background-color: #D3D3D3;
color: var(--primary-color);
transform: translateY(-2px);
}
.page-btn.active {
background-color: var(--primary-color);
color: #fff;
box-shadow: 0 4px 12px rgba(0, 166, 255, 0.3);
}
.page-dots {
color: var(--text-light);
font-weight: 700;
letter-spacing: 2px;
padding: 0 5px;
}
.slider-content-wrapper {
max-width: 1400px;
margin: 0 auto;
padding: 0 40px;
}
.custom-slider-container {
width: 100%;
padding: 10px 0;
}
.custom-slider-wrapper {
display: flex;
gap: 15px;
overflow-x: auto;
scroll-behavior: smooth;
cursor: grab;
-ms-overflow-style: none;
scrollbar-width: none;
}
.custom-slider-wrapper::-webkit-scrollbar {
display: none;
}
.custom-slider-wrapper:active {
cursor: grabbing;
}
.custom-slider-item {
flex: 0 0 100px;
width: 100px;
height: 100px;
}
.custom-game-card {
position: relative;
border-radius: var(--border-radius-sm);
overflow: hidden;
background-color: transparent;
display: block;
width: 100%;
height: 100%;
transition: box-shadow var(--transition-speed);
}
.custom-game-card img {
width: 100%;
height: 100%;
object-fit: contain;
background-color: transparent;
display: block;
pointer-events: none;
}
.custom-game-card::after {
content: "";
position: absolute;
top: 120%;
left: -120%;
width: 200%;
height: 200%;
background: linear-gradient(
45deg,
transparent 45%,
rgba(255,255,255,0.6) 48%,
rgba(255,255,255,0.9) 50%,
rgba(255,255,255,0.6) 52%,
transparent 55%
);
transform: rotate(0deg);
transition: top 1s cubic-bezier(.25,.8,.25,1), left 1s cubic-bezier(.25,.8,.25,1);
pointer-events: none;
z-index: 10;
}
.custom-game-card:hover::after {
top: -120%;
left: 120%;
}
.custom-overlay {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.75);
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transition: opacity var(--transition-speed);
z-index: 5;
}
.custom-game-card:hover .custom-overlay {
opacity: 1;
}
.custom-overlay span {
color: #fff;
font-size: 13px;
font-weight: 800;
text-align: center;
padding: 5px;
line-height: 1.2;
}
.fun-scrollbar-track {
width: 100%;
max-width: 400px;
height: 12px;
margin: 15px auto 0;
position: relative;
background-color: #e0e0e0;
border-radius: 6px;
}
.fun-scrollbar-thumb {
position: absolute;
top: 50%;
left: 0%;
transform: translate(-50%, -50%);
width: 28px;
height: 28px;
background-color: var(--primary-color);
border-radius: 6px;
cursor: grab;
user-select: none;
z-index: 10;
transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
box-shadow: 0 3px 8px rgba(0, 166, 255, 0.5);
animation: scrollHint 3s ease-in-out infinite;
}
.fun-scrollbar-thumb:hover {
animation: none;
transform: translate(-50%, -50%) scale(1.2);
background-color: #0088d1;
}
.fun-scrollbar-thumb:active {
animation: none;
cursor: grabbing;
transform: translate(-50%, -50%) scale(1.1);
}
.top-lists-container {
display: flex;
gap: 25px;
flex-wrap: wrap;
}
.top-list-box {
flex: 1;
padding: 25px;
border-radius: var(--border-radius-lg);
box-shadow: var(--card-shadow);
min-width: 300px;
}
.top-list-box h3 {
font-size: 20px;
font-weight: 800;
color: var(--text-dark);
margin-bottom: 20px;
border-bottom: 2px solid var(--primary-color);
padding-bottom: 10px;
}
.top-list-box ol {
padding-left: 25px;
list-style-position: outside;
color: var(--text-dark);
}
.top-list-box li {
margin-bottom: 5px;
font-size: 15px;
}
.top-list-box li a {
color: var(--text-dark);
text-decoration: none;
display: block;
padding: 12px 15px;
border-radius: var(--border-radius-sm);
transition: all 0.2s ease;
margin-left: -5px;
}
.top-list-box li a:hover {
color: var(--primary-color);
background-color: #f3f4f6;
padding-left: 20px;
}
.modal-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.4);
backdrop-filter: blur(4px);
z-index: 1999;
opacity: 0;
visibility: hidden;
transition: all var(--transition-speed);
}
.modal-overlay.active {
opacity: 1;
visibility: visible;
}
.right-modal {
position: fixed;
top: 0;
right: -550px;
width: 100%;
max-width: 500px;
height: 100vh;
background-color: var(--header-bg);
z-index: 2000;
transition: right var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
display: flex;
flex-direction: column;
}
.right-modal.active {
right: 0;
}
.modal-header {
padding: 10px 10px;
border-bottom: 1px solid #eee;
display: flex;
justify-content: space-between;
align-items: center;
gap: 15px;
}
.mobile-search-modal {
display: none !important;
margin-bottom: 0;
flex-grow: 1;
}
.mobile-search-modal input {
padding: 10px 40px 10px 15px;
font-size: 15px;
}
.close-btn {
background: none;
border: none;
font-size: 28px;
cursor: pointer;
color: var(--primary-color);
transition: color 0.2s;
line-height: 1;
}
.close-btn:hover {
color: var(--text-light);
}
.modal-content {
padding: 10px;
overflow-y: auto;
flex-grow: 1;
}
.main-modal-tabs {
display: flex;
background-color: #f3f4f6;
border-radius: var(--border-radius-sm);
padding: 5px;
margin-bottom: 25px;
}
.main-tab-btn {
flex: 1;
padding: 10px;
border: none;
background: transparent;
border-radius: 6px;
font-size: 15px;
font-weight: 700;
color: var(--text-light);
cursor: pointer;
transition: all 0.2s ease;
}
.main-tab-btn.active {
background-color: #fff;
color: var(--primary-color);
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
#kategoriModal .modal-content {
display: block;
}
.kategori-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-auto-rows: 50px;
gap: 0.8rem;
}
.category-item {
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
height: 100%;
padding: 0;
overflow: hidden;
background-color: var(--bg-color);
border-radius: var(--border-radius-sm);
text-decoration: none;
transition: all 0.2s ease;
border: 1px solid transparent;
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
transform: translate3d(0, 0, 0);
}
.category-item:hover {
background-color: #fff;
border-color: var(--primary-color);
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.category-item img {
width: 50px;
height: 100%;
min-width: 50px;
object-fit: cover;
border-radius: var(--border-radius-sm);
margin-right: 10px;
display: block;
pointer-events: none;
}
.category-item span {
font-size: 13px;
line-height: 1.2;
text-align: left;
display: block;
flex: 1;
min-width: 0;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
color: var(--text-dark);
}
.category-item:hover span {
color: var(--primary-color);
}
.tab-headers {
display: flex;
border-bottom: 1px solid #eee;
margin-bottom: 10px;
}
.tab-btn {
flex: 1;
background: transparent;
border: none;
color: var(--text-light);
padding: 5px 5px;
cursor: pointer;
font-weight: 600;
border-bottom: 3px solid transparent;
transition: all 0.2s;
}
.tab-btn:hover {
color: var(--primary-color);
}
.tab-btn.active {
color: var(--primary-color);
border-bottom-color: var(--primary-color);
}
.tab-content {
display: none;
}
.tab-content.active {
display: block;
animation: fadeIn 0.3s;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
.modal-game-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
gap: 15px;
padding-top: 10px;
}
.modal-game-card {
position: relative;
border-radius: var(--border-radius-sm);
overflow: hidden;
box-shadow: var(--card-shadow);
background-color: #fff;
transition: box-shadow var(--transition-speed);
}
.modal-game-card a {
display: block;
text-decoration: none;
color: inherit;
height: 100%;
}
.modal-game-card img {
width: 100%;
aspect-ratio: 1 / 1;
object-fit: cover;
display: block;
}
.modal-game-card::after {
content: "";
position: absolute;
top: 120%;
left: -120%;
width: 200%;
height: 200%;
background: linear-gradient(
45deg,
transparent 45%,
rgba(255,255,255,0.6) 48%,
rgba(255,255,255,0.9) 50%,
rgba(255,255,255,0.6) 52%,
transparent 55%
);
transform: rotate(0deg);
transition: top 1s cubic-bezier(.25,.8,.25,1),
left 1s cubic-bezier(.25,.8,.25,1);
pointer-events: none;
z-index: 10;
}
.modal-game-card:hover::after {
top: -120%;
left: 120%;
}
.modal-game-card .game-overlay span {
font-size: 12px;
white-space: normal;
text-align: center;
line-height: 1.2;
}
.remove-btn {
position: absolute;
top: 6px;
right: 6px;
width: 22px;
height: 22px;
background-color: rgba(0, 0, 0, 0.6);
color: #fff;
border: none;
border-radius: 50%;
font-size: 14px;
font-weight: bold;
cursor: pointer;
z-index: 20;
display: flex;
align-items: center;
justify-content: center;
transition: background-color 0.2s, transform 0.2s;
line-height: 1;
}
.remove-btn:hover {
background-color: #ff4757;
transform: scale(1.1);
}
.main-footer {
width: 100%;
background-color: #111;
padding-top: 60px;
padding-bottom: 30px;
border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-container {
max-width: 1400px;
margin: 0 auto;
padding: 0 20px;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
}
.footer-column h4 {
font-size: 18px;
font-weight: 800;
color: #fff;
margin-bottom: 25px;
text-transform: uppercase;
letter-spacing: 1px;
}
.footer-column ul {
list-style: none;
}
.footer-column li {
margin-bottom: 12px;
}
.footer-column li a {
color: #E2E2E2;
text-decoration: none;
font-size: 15px;
transition: color 0.2s, padding-left 0.2s;
}
.footer-column li a:hover {
color: var(--primary-color);
padding-left: 5px;
}
.footer-bottom {
max-width: 1400px;
margin: 0 auto;
margin-top: 50px;
padding: 0 40px;
padding-top: 30px;
border-top: 1px solid rgba(255, 255, 255, 0.05);
text-align: center;
}
.footer-bottom p {
color: #E2E2E2;
font-size: 14px;
line-height: 1.6;
}
.form-label {
display: block;
font-size: 14px;
font-weight: 700;
color: var(--text-dark);
margin-bottom: 8px;
}
.form-input {
width: 100%;
padding: 12px 15px;
margin-bottom: 20px;
border-radius: 8px;
border: 2px solid #e4e6eb;
background-color: #f3f4f6;
color: var(--text-dark);
font-size: 15px;
font-family: inherit;
transition: all 0.2s;
outline: none;
}
.form-input:focus {
border-color: var(--primary-color);
background-color: #fff;
box-shadow: 0 0 0 4px rgba(239, 71, 111, 0.1);
}
textarea.form-input {
resize: vertical;
min-height: 100px;
}
.readonly-input {
cursor: default;
color: var(--text-light);
margin-bottom: 10px;
}
.readonly-input:focus {
border-color: #e4e6eb;
box-shadow: none;
background-color: #f3f4f6;
}
.btn-primary {
background-color: var(--primary-color);
color: #fff;
border: none;
padding: 12px 20px;
font-size: 16px;
font-weight: 800;
border-radius: 8px;
cursor: pointer;
transition: all 0.2s;
}
.btn-primary:hover {
filter: brightness(0.85);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(239, 71, 111, 0.3);
}
.w-100 {
width: 100%;
}
.share-buttons {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
}
.share-btn {
display: block;
text-align: center;
padding: 10px;
border-radius: 8px;
color: #fff;
font-weight: 700;
text-decoration: none;
transition: filter 0.2s;
}
.share-btn:hover {
filter: brightness(0.85);
}
.fb-btn { background-color: #3b5998; }
.tw-btn { background-color: #1da1f2; }
.wa-btn { background-color: #25d366; }
.em-btn { background-color: #ea4335; }
.copy-url-section {
margin-top: 25px;
border-top: 1px solid #eee;
padding-top: 20px;
}
.report-status {
color: #06D6A0;
background: rgba(6, 214, 160, 0.1);
padding: 12px;
border-radius: 8px;
margin-bottom: 15px;
text-align: center;
font-weight: 700;
font-size: 14px;
}
.contact-form-wrapper {
margin: 40px auto 0 auto;
padding: 30px;
background-color: #f8fafc;
border: 1px solid #e4e6eb;
border-radius: var(--border-radius-lg);
max-width: 700px;
}
.contact-form-wrapper h2 {
margin-bottom: 20px;
font-size: 22px;
}
.error-page-wrapper {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
min-height: 60vh;
padding: 20px;
}
.error-code {
font-size: 120px;
font-weight: 900;
line-height: 1;
color: var(--primary-color);
text-shadow: 0 8px 0px #fce7f3, 0 15px 20px rgba(0,0,0,0.05);
margin-bottom: 20px;
letter-spacing: -2px;
}
.error-title {
font-size: 28px;
font-weight: 800;
color: var(--text-dark);
margin-bottom: 15px;
}
.error-message {
font-size: 16px;
line-height: 1.6;
color: var(--text-light);
max-width: 550px;
margin-bottom: 35px;
}
.error-home-btn {
text-decoration: none;
display: inline-flex;
align-items: center;
justify-content: center;
padding: 16px 35px;
font-size: 18px;
box-shadow: 0 8px 20px rgba(239, 71, 111, 0.3);
}
.error-buttons {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
margin-bottom: 10px;
}
.error-random-btn {
background-color: #118AB2;
box-shadow: 0 5px 15px rgba(17, 138, 178, 0.5);
}
.error-random-btn:hover {
background-color: #0d6e8f;
box-shadow: 0 8px 25px rgba(17, 138, 178, 0.7);
}
.error-popular-games {
width: 100%;
padding-top: 10px;
border-top: 1px dashed #cbd5e1;
}
.az-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
gap: 15px;
}
.az-card {
display: flex;
align-items: center;
justify-content: center;
height: 40px;
background-color: var(--header-bg);
border-radius: var(--border-radius-sm);
text-decoration: none;
color: var(--text-dark);
font-weight: 700;
font-size: 15px;
box-shadow: var(--card-shadow);
transition: all 0.2s ease;
padding: 0 10px;
text-align: center;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.az-card:hover {
color: var(--primary-color);
}
.search-results-list {
display: flex;
flex-direction: column;
gap: 20px;
margin-bottom: 30px;
}
.search-result-item {
display: flex;
align-items: center;
justify-content: space-between;
background-color: var(--header-bg);
padding: 20px;
border-radius: var(--border-radius-lg);
box-shadow: var(--card-shadow);
text-decoration: none;
transition: transform 0.2s, box-shadow 0.2s;
gap: 25px;
}
.search-result-item:hover .search-result-title {
color: var(--primary-color);
text-decoration: underline;
}
.search-result-content {
flex: 1;
min-width: 0;
}
.search-result-url {
font-size: 13px;
color: #4b5563;
margin-bottom: 6px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.search-result-title {
font-size: 20px;
font-weight: 800;
color: var(--text-dark);
margin-bottom: 8px;
transition: color 0.2s;
}
.search-result-desc {
font-size: 14px;
color: var(--text-light);
line-height: 1.6;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.search-result-image {
width: 100px;
height: 100px;
min-width: 100px;
object-fit: cover;
border-radius: var(--border-radius-sm);
border: 1px solid #f0f2f5;
}
.ad-label-top {
font-size: 11px;
color: #94a3b8;
text-align: center;
margin-bottom: 5px;
text-transform: uppercase;
letter-spacing: 1px;
}
.bottom-ad-wrapper {
display: flex;
justify-content: center;
align-items: center;
gap: 5px;
margin: 33px auto;
max-width: 760px;
}
.ad-label-vertical {
writing-mode: vertical-rl;
transform: rotate(180deg);
font-size: 8px;
color: #94a3b8;
text-transform: uppercase;
letter-spacing: 1px;
text-align: center;
}
.ad-label-mobile {
display: none;
justify-content: center;
align-items: center;
width: 100%;
font-size: 11px;
color: #94a3b8;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 5px;
}
.bottom-ad-wrapper .ad-dynamic-bottom {
margin: 0;
}
.intro-image-gallery {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 15px;
margin-top: 20px;
}
.intro-image-gallery img {
width: 100%;
border-radius: var(--border-radius-sm);
object-fit: cover;
aspect-ratio: 16 / 9;
box-shadow: var(--card-shadow);
}
.mobile-fs-close {
display: none;
position: fixed;
left: 0;
top: 30px;
width: 32px;
height: 32px;
background-color: var(--primary-color);
color: #fff;
border: none;
border-radius: 0 6px 6px 0;
z-index: 2147483647;
align-items: center;
justify-content: center;
cursor: grab;
padding: 0;
box-shadow: 4px 2px 12px rgba(0, 0, 0, 0.4);
}
.mobile-fs-close:active {
cursor: grabbing;
background-color: #d83a5e;
}
.mobile-fs-close svg {
width: 22px;
height: 22px;
fill: currentColor;
margin-left: -4px;
}
#fullscreen-container:fullscreen {
display: flex;
flex-direction: column;
background-color: #000;
width: 100vw;
height: 100vh;
}
#fullscreen-container:-webkit-full-screen {
display: flex;
flex-direction: column;
background-color: #000;
width: 100vw;
height: 100vh;
}
#fullscreen-container:fullscreen .game-wrapper {
flex-grow: 1;
height: auto;
}
#fullscreen-container:-webkit-full-screen .game-wrapper {
flex-grow: 1;
height: auto;
}
#fullscreen-container:fullscreen .game-bar {
margin-bottom: 0;
border-radius: 0;
}
#fullscreen-container:-webkit-full-screen .game-bar {
margin-bottom: 0;
border-radius: 0;
}
#fullscreen-container.is-fullscreen #share-btn,
#fullscreen-container.is-fullscreen #report-btn {
display: none !important;
}
.user-activity-section {
margin-bottom: 40px;
color: var(--text-dark);
}
.activity-mini-grid {
display: grid;
grid-template-columns: repeat(auto-fill, 100px);
justify-content: center;
gap: 15px;
}
.activity-mini-card {
position: relative;
border-radius: var(--border-radius-sm);
overflow: hidden;
box-shadow: var(--card-shadow);
text-decoration: none;
display: block;
width: 100%;
max-width: 100px;
aspect-ratio: 1 / 1;
background-color: #fff;
transition: box-shadow var(--transition-speed), transform 0.2s;
}
.activity-mini-card img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.activity-mini-card::after {
content: "";
position: absolute;
top: 120%;
left: -120%;
width: 200%;
height: 200%;
background: linear-gradient(45deg, transparent 45%, rgba(255,255,255,0.6) 48%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.6) 52%, transparent 55%);
transform: rotate(0deg);
transition: top 1s cubic-bezier(.25,.8,.25,1), left 1s cubic-bezier(.25,.8,.25,1);
pointer-events: none;
z-index: 10;
}
.activity-mini-card:hover::after {
top: -120%;
left: 120%;
}
.activity-mini-overlay {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 50%;
background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
display: flex;
align-items: flex-end;
justify-content: center;
padding: 8px 5px;
opacity: 0;
transition: opacity var(--transition-speed);
z-index: 5;
}
.activity-mini-card:hover .activity-mini-overlay {
opacity: 1;
}
.activity-mini-overlay span {
color: #fff;
font-weight: 700;
font-size: 11px;
text-shadow: 0 2px 4px rgba(0,0,0,0.5);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
text-align: center;
width: 100%;
}
button.activity-mini-card {
border: none;
cursor: pointer;
padding: 0;
font-family: inherit;
}
.activity-more-card {
background-color: #f3f4f6;
display: flex;
align-items: center;
justify-content: center;
color: var(--text-light);
border: 2px dashed #cbd5e1;
transition: all 0.2s ease;
}
.activity-more-card:hover {
background-color: var(--primary-color);
border-color: var(--primary-color);
color: #fff;
transform: translateY(-2px);
}
.activity-more-card span {
font-size: 16px;
font-weight: 800;
text-align: center;
line-height: 1.2;
}
.activity-more-card::after {
display: none !important;
}
.section-box {
padding: 25px;
background: var(--header-bg);
border-radius: var(--border-radius-lg);
margin-bottom: 20px;
box-shadow: var(--card-shadow);
color: var(--text-dark);
}
.section-box .category-header {
margin-top: 0;
margin-bottom: 20px;
}
.sr-only {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
overflow: hidden;
clip: rect(0 0 0 0);
border: 0;
}
:root{--pwa-bg:#ffffff;--pwa-text:#202124;--pwa-shadow:rgba(60,64,67,.3);--pwa-btn-primary:#1a73e8;--pwa-btn-text:#ffffff;--pwa-btn-secondary:#f1f3f4;--pwa-secondary-text:#5f6368}@media (prefers-color-scheme:dark){:root{--pwa-bg:#2d2e31;--pwa-text:#e8eaed;--pwa-shadow:rgba(0,0,0,.5);--pwa-btn-primary:#8ab4f8;--pwa-btn-text:#202124;--pwa-btn-secondary:#3c4043;--pwa-secondary-text:#9aa0a6}}
.pwa-banner{position:fixed;bottom:20px;left:50%;transform:translateX(-50%);width:calc(100% - 40px);max-width:450px;background:var(--pwa-bg);color:var(--pwa-text);padding:10px;border-radius:12px;box-shadow:0 4px 12px var(--pwa-shadow);z-index:9999;display:none;box-sizing:border-box}
.pwa-content{display:flex;flex-direction:column;gap:15px}
.pwa-text{font-size:1rem;font-weight:500;line-height:1.4}
.buttons-container{display:flex;justify-content:flex-end;gap:12px}
.pwa-banner button{padding:8px 20px;border:none;border-radius:6px;cursor:pointer;font-size:.9rem;font-weight:600;transition:background .2s}
.pwa-banner .btn-primary{background:var(--pwa-btn-primary);color:var(--pwa-btn-text)}
.pwa-banner .btn-secondary{background:var(--pwa-btn-secondary);color:var(--pwa-text)}
.pwa-banner .btn-primary:hover{opacity:.9}
.pwa-banner .btn-secondary:hover{filter:brightness(.9)}
@media (max-width: 1350px) {
.play-grid {
grid-template-columns: 160px 1fr 170px;
}
.ad-dynamic-right {
width: 160px;
}
}
@media (max-width: 1024px) {
.desktop-only { display: none !important; }
.mobile-only { display: flex !important; }
.play-grid { grid-template-columns: 1fr;
padding-top: 0;
padding-left: 0;
padding-right: 0;
}
.details-grid { grid-template-columns: 1fr; }
.bottom-ad-wrapper {
flex-direction: column;
gap: 5px;
margin: 20px auto;
text-align: center;
}
.mobile-menu-btn { display: flex; align-items: center; justify-content: center; }
.mobile-search-modal {
display: flex !important;
}
}
@media (max-width: 850px) {
.right-modal {
width: 100%;
max-width: 100%;
right: -100%;
}
.right-modal.active {
right: 0;
}
#kategoriModal .modal-header h3.desktop-only,
#oyunlarimModal .modal-header h3.desktop-only {
display: none !important;
}
}
@media (max-width: 768px) {
header {
padding: 5px 10px;
flex-wrap: nowrap;
position: sticky;
top: 0;
width: 100%;
max-width: 100%;
}
#fullscreen-container:fullscreen .mobile-fs-close {
display: flex !important;
}
#fullscreen-container:-webkit-full-screen .mobile-fs-close {
display: flex !important;
}	
.section-box {
padding: 15px;
border-radius: var(--border-radius-sm);
margin-bottom: 25px;
}
.pagination {
padding: 15px;
border-radius: var(--border-radius-sm);
margin-bottom: 25px;
}	
#fullscreen-container:fullscreen .game-bar {
display: none !important;
}
#fullscreen-container:-webkit-full-screen .game-bar {
display: none !important;
}
.site-logo { height: 50px; }
.container { padding: 0 10px; }
.play-container { padding: 0; width: 100%; max-width: 100%; }
.play-section { margin-top: 0; }
.game-wrapper {
border-radius: 0;
aspect-ratio: auto;
height: 300px;
width: 100%;
max-width: 100%;
overflow: hidden;
position: relative;
isolation: isolate;
-webkit-transform: translateZ(0);
transform: translateZ(0);
}
.game-splash { overflow: hidden; width: 100%; height: 100%; }
.splash-bg { -webkit-transform: translateZ(0); transform: translateZ(0); }
.game-bar {
border-radius: 0;
padding: 12px 10px;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: nowrap;
gap: 0;
width: 100%;
max-width: 100%;
box-sizing: border-box;
overflow: hidden;
}
.game-bar__left, .game-bar__actions { width: auto; display: flex; }
.game-bar__actions { gap: 6px; }
.game-btn { width: 36px; height: 36px; border-radius: 8px; }
.vote-box { padding: 6px 8px; gap: 6px; }
.game-splash__img { width: 75px; height: 75px; border-radius: 12px; }
.game-splash__title { font-size: 16px; }
.game-splash__rating { font-size: 12px; }
.play-now-btn { padding: 10px 22px; font-size: 15px; }
.category-header,
.play-game-grid,
.breadcrumb {
padding-left: 10px;
padding-right: 10px;
box-sizing: border-box;
}
.details-game-section{
padding-left: 0px;
padding-right: 0px;
box-sizing: border-box;
}
.details-wrapper {
width: calc(100% - 0px);
margin-left: auto;
margin-right: auto;
}
.search-box { order: 3; width: 100%; max-width: 100%; }
.game-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 15px; }
.game-overlay { opacity: 1; height: 35%; padding: 10px; }
.game-overlay span { font-size: 13px; }
.section-title { font-size: 20px; }
.ad-dynamic-bottom {
width: 300px;
height: 600px;
margin: 20px auto;
}
.ad-dynamic-right {
width: 160px;
height: 600px;
}
.footer-container { padding: 0 10px; gap: 30px; }
.footer-bottom { padding: 0 20px; padding-top: 20px; }
.slider-content-wrapper { padding: 0 15px; }
.intro-category-img { float: none; display: block; margin: 0 auto 20px auto; width: 100%; max-width: 325px; }
.error-buttons {
width: 100%;
flex-direction: column;
gap: 10px;
padding: 0 15px;
}
.error-home-btn, .error-random-btn {
width: 100%;
max-width: 100%;
justify-content: center;
}
.error-code {
font-size: 90px;
}
.error-title {
font-size: 22px;
}
.error-message {
font-size: 14px;
}
.search-result-item {
padding: 15px;
gap: 15px;
}
.search-result-image {
width: 80px;
height: 80px;
min-width: 80px;
}
.search-result-title {
font-size: 17px;
}
.search-result-desc {
font-size: 13px;
-webkit-line-clamp: 3;
}
.intro-image-gallery {grid-template-columns: 1fr;}
}