/* Minimalist Dark Theme */
body {
    font-family: 'Kanit', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #f0f0f0;
}
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}
/* Header & Nav */
.site-header {
    background: #1e1e1e;
    border-bottom: 1px solid #333;
}
.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}
.img-logo{
    width: 150px;
    height: auto;
}
.logo {
    font-size: 28px;
    font-weight: 700;
    text-decoration: none;
    color: #ffcc00;
}
.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}
.main-nav ul li a {
    text-decoration: none;
    color: #f0f0f0;
    padding: 10px 15px;
    transition: color 0.3s;
}
.main-nav ul li a:hover {
    color: #ffcc00;
}
/* Hero Section */
.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 20px;
    background-color: #1a1a1a;
    border-radius: 10px;
    margin-bottom: 40px;
}
.hero-text {
    flex: 1;
    padding-right: 40px;
}
.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
h1 {
    font-size: 32px;
    color: #ffcc00;
    margin-bottom: 10px;
}
.cta-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #ffcc00;
    color: #121212;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    margin-top: 20px;
    transition: transform 0.2s;
}
.cta-button:hover {
    transform: translateY(-2px);
}
/* General Sections */
section {
    padding: 40px 0;
}
h2 {
    font-size: 30px;
    color: #f0f0f0;
    border-bottom: 2px solid #ffcc00;
    padding-bottom: 10px;
    margin-bottom: 40px;
    text-align: center;
}
h3, h4 {
    color: #ffcc00;
}
/* Card Grids */
.card-grid, .game-grid, .review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}
.card, .game-item, .review-card {
    background: #1e1e1e;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.game-item img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
}
.review-card img {
    border-radius: 50%;
    margin-bottom: 15px;
}
/* FAQ Section */
details {
    background: #1e1e1e;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 10px;
}
summary {
    cursor: pointer;
    font-weight: 700;
    color: #ffcc00;
}
summary:hover {
    color: #f0f0f0;
}
details p {
    padding-top: 10px;
    margin: 0;
}
/* Footer */
.site-footer {
    text-align: center;
    padding: 20px 0;
    background: #1e1e1e;
    border-top: 1px solid #333;
    margin-top: 40px;
}
/* Responsive Design */
@media (max-width: 768px) {
    .site-header .container {
        flex-direction: row;
    }
    .main-nav ul {
        flex-direction: column;
        align-items: center;
    }
    .logo {
        margin-bottom: 10px;
    }
    .hero-section {
        flex-direction: column;
        text-align: center;
    }
    .hero-text {
        padding-right: 0;
        margin-bottom: 20px;
    }
    h1 {
        font-size: 32px;
    }
    h2 {
        font-size: 28px;
    }
}
