/* ใช้พื้นหลัง Dark Mode เหมือนเกม */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #282c34;
    color: #ffffff;
    margin: 0;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 40px;
}
header h1 {
    color: #61dafb; /* สีฟ้าเดียวกับเกม */
    text-shadow: 0 0 5px #61dafb;
}

/* ตัวจัดการแสดงผล Icon (Grid) */
.hub-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

/* การ์ดของแต่ละเกม */
.game-card {
    background-color: #3a3f4b;
    border: 2px solid #555;
    border-radius: 12px;
    width: 200px;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    transition: all 0.2s ease-in-out;
}
.game-card:hover {
    transform: translateY(-10px);
    border-color: #61dafb;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.game-icon {
    font-size: 4rem; /* 4 เท่าของขนาดตัวอักษรปกติ */
    margin-bottom: 15px;
}

/* ไอคอนเกม (คุณสามารถเปลี่ยนเป็นรูปภาพได้) */
.decoder-icon {
    filter: grayscale(0.5); /* ทำให้ไอคอนสีจางลงเล็กน้อย */
}
.game-card:hover .decoder-icon {
    filter: grayscale(0);
    text-shadow: 0 0 15px #fff;
}

.game-card h2 {
    margin: 10px 0 5px 0;
    color: #61dafb;
}
.game-card p {
    font-size: 0.9em;
    color: #ccc;
    margin: 0;
}

/* --- [เพิ่มใหม่] สไตล์สำหรับ Common Header --- */
.common-header {
    background-color: #1c1e22; /* สีเข้มกว่าพื้นหลังเล็กน้อย */
    border-bottom: 2px solid #61dafb;
    padding: 10px 20px;
    width: 100%;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.header-back-button {
    font-size: 1em;
    color: #fff;
    text-decoration: none;
    background-color: #444;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background-color 0.2s;
}
.header-back-button:hover {
    background-color: #61dafb;
    color: #1c1e22;
}

.header-title {
    font-size: 1.2em;
    font-weight: bold;
    color: #61dafb;
    text-shadow: 0 0 5px #61dafb;
}