/* latin-ext */
@font-face {
	font-family: 'Righteous';
	font-style: normal;
	font-weight: 400;
	src: local('Righteous'), url('/assets/fonts/1cXxaUPXBpj2rGoU7C9WhnGFucE.woff2') format('woff2');
	unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
	font-display: swap;
}

/* latin */
@font-face {
	font-family: 'Righteous';
	font-style: normal;
	font-weight: 400;
	src: local('Righteous'), url('/assets/fonts/1cXxaUPXBpj2rGoU7C9WiHGF.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
	font-display: swap;
}
body {
	font-family: 'Righteous', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1a1a1a;
    justify-content: center;
	color: #fff;
}
.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}
header {
    background-image: url('/assets/img/banner-pc.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    position: relative;
}
header .content {
    position: relative;
    z-index: 2;
}
header .logo {
    margin-bottom: 20px;
}
header .logo img {
    width: 150px;
}
header h1 {
    font-size: 3.5em;
    margin: 10px 0;
    color: #ffcc00;
    text-shadow: 0px 3px red;
}
header p {
    font-size: 1.5em;
}
.search-box {
    margin: 20px auto;
    text-align: center;
}
.search-box input {
    padding: 10px;
    font-size: 16px;
    width: 50%;
    background-color: #1d1d27;
    color: #fff;
    border: 3px solid #FA9F1B;
	border-radius: 5px;
    text-align: center;
}
.search-box input::placeholder {
    color: white;
}
.search-box input:focus::placeholder {
	color: #2b3856;
}
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}
.game-card {
    background-color: #1d1d27;
    border-radius: 8px;
    margin: 10px;
    padding: 15px;
    width: 200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}
.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.5);
}
.game-card img {
    width: 100%;
    border-radius: 8px;
}
.game-card h2 {
    margin: 10px 0;
    color: #ffcc00;
}
.no-result-found-wrapper {
	text-align: center;
	font-size: 2.4em;
	display: none;
	color: #fff;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 3px;
	z-index: 50;
	margin: 80px 0 0 0;
}
.no-result-found-wrapper p {
	font-size: 0.4em;
	max-width: 600px;
	margin: 20px auto 0 auto;
	color: #999;
}
.advertisement {
    background-color: #444;
    border: 2px dashed #777;
    margin: 20px;
    padding: 20px;
    text-align: center;
    font-size: 18px;
    color: #aaa;
}
.faq {
    background-color: #333;
    border-radius: 10px;
    padding: 20px;
    margin: 20px;
    text-align: center;
}
.faq h2 {
    color: #ffcc00;
    margin-bottom: 20px;
}
.faq-item {
    margin: 10px 0;
    text-align: left;
}
.faq-item button {
    background: #444;
    color: #ffcc00;
    border: none;
    padding: 10px;
    width: 100%;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px;
    outline: none;
    transition: background 0.3s ease;
    display: block;
}
.faq-item button:hover {
    background: #555;
}
.faq-item .answer {
    display: none;
    padding: 10px;
    color: #ddd;
    font-size: 16px;
}
footer {
    background-color: #1a1a1a;
    padding: 20px;
    text-align: center;
    color: #fff;
}
footer a {
    color: #ffcc00;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}
.language-switcher {
    margin: 20px auto;
    text-align: center;
}
.language-switcher a {
    color: #ffcc00;
    margin: 0 10px;
    text-decoration: none;
    font-size: 16px;
}
.language-switcher a:hover {
    text-decoration: underline;
}
/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/
@media screen and (max-width: 769px) {
    .game-card {
        width: 25%;
    }
    .game-card h2 {
        font-size: 1em;
    }
}
@media screen and (max-width: 500px) {
    .game-card {
        width: 33%;
    }
}