/* Header Logo Shine Effect Animation */
@keyframes shine {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: 200px 0;
    }
}

/* Global Styles (LIGHT UI) */
body {
    font-family: Arial, sans-serif; 
    margin: 0; 
    padding: 0; 
    /* 💥 Background ကို ပိုဖြူအောင် ပြောင်းလဲလိုက်သည် */
    background-color: #FFFFFF; 
    color: #333;
    /* Fixed Header ကြောင့် နေရာချန်ထားခြင်း */
    padding-top: 50px; 
}

/* 1. Header (Fixed) - LIGHT UI */
.header {
    /* 💥 အရောင်ကို ပိုဖျော့စေသည် */
    background-color: #FFFFFF; 
    padding: 5px 8px; 
    /* 💥 Shadow ကို လျှော့ချလိုက်သည် */
    box-shadow: 0 1px 4px rgba(0,0,0,0.08); 
    display: flex; justify-content: space-between; align-items: center; 
    width: 100%; box-sizing: border-box; 
    height: 50px; 
    z-index: 1000; 
    position: fixed; 
    top: 0; 
    left: 0;
    border-bottom: 1px solid #eee; /* ခပ်ပါးပါး border ထည့်လိုက်သည် */
}
.header-logo {
    position: relative; overflow: hidden; display: inline-block;
}
.header-logo img { height: 42px; width: auto; object-fit: contain; }
.header-logo::after {
    content: '';
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0) 100%);
    opacity: 0.5; animation: shine 2s infinite linear; transform: skewX(-20deg);
}
.header-actions { 
    display: flex; justify-content: flex-end; align-items: center; gap: 8px; 
}
/* 💡 အကောင့်ဖွင့်ရန်/ဝင်ရောက်ရန် လင့်ခ်များ၏ မျဉ်းကြောင်းကို ဖျက်ခြင်း */
.header-actions a {
    text-decoration: none; 
    display: flex;
}
.header-actions button {
    border: none; cursor: pointer; font-weight: bold; font-size: 13px; 
    height: 35px; padding: 0 10px; border-radius: 6px; 
    white-space: nowrap; transition: all 0.2s ease;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0); 
    display: flex; align-items: center; justify-content: center;
}
.login-btn { 
    background-color: #D81B60; color: white; border: 1px solid #D81B60;
    box-shadow: 0 4px 6px rgba(216, 27, 96, 0.3); width: 80px; 
}
.signup-btn { 
    background-color: #4CAF50; color: white; border: 1px solid #4CAF50;
    box-shadow: 0 4px 6px rgba(76, 175, 80, 0.3); width: 95px; 
}


/* 2. Banner & Slider */
.slider-container {
    background-color: #F8F8F8; 
    width: 100%; height: 0; padding-bottom: 33.33%; overflow: hidden; position: relative;
    margin-bottom: 0; 
}
.banner-slider { 
    display: flex; width: 300%; height: 100%; position: absolute; top: 0; left: 0; 
    transition: transform 0.5s ease-in-out; 
}
.banner-slider img { 
    width: calc(100% / 3); height: 100%; object-fit: cover; flex-shrink: 0; 
}

/* 3. MARQUEE (LIGHT UI) */
.marquee-bar {
    /* 💥 အရောင်ကို ပိုဖျော့စေသည် */
    background-color: #FFF3F3; 
    color: #d9534f; 
    padding: 6px 8px; font-size: 12px; font-weight: bold;
    /* 💥 Shadow ကို လျှော့ချလိုက်သည် */
    box-shadow: 0 1px 3px rgba(0,0,0,0.08); 
    margin-bottom: 0; 
    display: flex; align-items: center; 
}
.marquee-icon { width: 18px; height: 18px; margin-right: 6px; flex-shrink: 0; }
.marquee-content { flex-grow: 1; overflow: hidden; display: flex; align-items: center; }
.marquee-content marquee { width: 100%; margin: 0; padding: 0; color: inherit; }


/* 4. Navigation Tabs (LIGHT UI) */
.nav-tabs-container {
    background-color: #FFFFFF; 
    padding: 8px 0 8px; 
}
.nav-tabs {
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 8px; 
    max-width: 95%; 
    margin: auto; 
}
.nav-tab {
    padding: 8px 4px; 
    background-color: #F9F9F9; 
    border-radius: 10px; 
    /* 💥 Shadow နဲ့ Border ကို လျှော့ချသည် */
    box-shadow: 0 1px 2px rgba(0,0,0,0.05); 
    border: none; 
    transition: all 0.2s ease; 
    display: flex; align-items: center; justify-content: center; min-height: 30px; 
    cursor: pointer; position: relative;
}

.nav-tab.active { 
    /* Active အရောင်ကို ပိုဖျော့လိုက်သည် */
    background-color: #FFEDED; 
    color: #D81B60; 
    border: 1px solid #FFC9C9 !important; 
    box-shadow: 0 1px 4px rgba(216, 27, 96, 0.1); 
}
.nav-tab img { width: 22px; height: 22px; margin-right: 6px; object-fit: contain; flex-shrink: 0; }
.nav-tab p { 
    margin: 0; font-size: 13px; font-weight: bold; color: #444; 
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis; 
}
.nav-tab.active p { color: #D81B60 !important; } 


/* 5. Game Content Sections (LIGHT UI) */
.content-wrapper { 
    background-color: #FFFFFF; 
    padding-bottom: 10px; 
    margin-top: -1px; 
} 
/* Tab ပြောင်းသည့်အခါ အသုံးပြုရန် (JS ဖြင့် ထိန်းချုပ်သည်) */
.game-content-section { display: none; padding: 0; } 
.game-content-section.active { display: block; }

.game-section { padding: 0 0 10px; } 

h2 { 
    font-size: 15px; 
    margin: 15px 8px 8px 8px; 
    font-weight: bold; 
    color: #D81B60; 
    /* 💥 Border ကို ပိုသေးလိုက်သည် */
    border-left: 3px solid #D81B60;
    padding-left: 10px;
}

.game-grid.four-col {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; padding: 0 8px; 
}
.game-item {
    display: block; text-align: center; overflow: hidden; 
    border-radius: 8px; 
    position: relative; padding-bottom: 125%; height: 0; 
    /* 💥 Border နဲ့ Shadow ကို ဖျက်ပြီး ပေါ့ပါးစေသည် */
    background-color: #FFFFFF; 
    border: 1px solid #F0F0F0; 
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    text-decoration: none; color: #333;
}
.game-item img {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; border-radius: 8px;
}

/* 6. Footer Section (LIGHT UI) */
.footer {
    background-color: #F8F8F8; 
    padding: 15px 8px 20px; 
    margin-top: 0; 
    border-top: none; 
    color: #666; 
    font-size: 13px;
    text-align: center;
    z-index: 500;
}
/* မူရင်း copyright ကို ဖျက်ထားသည် */
.copyright {
    display: none; 
}