*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}

h1 {
    font-size: 16px;
}
h2 {
    font-size: 15px;
}
h3 {
    font-size: 14px;
}
h4 {
    font-size: 13px;
}
h5{
    font-size: 12px;
}

p {
    margin: 3px 0 3px 0;
    font-size: 11px;
    line-height: 13px;
    text-align: justify;
}

body{
    background:#111;
    color:#fff;
}

.mobile{
    max-width:480px;
    margin:auto;
    min-height:100vh;
    background:#440202;
    padding-bottom:90px;
}

.header{
    height:60px;
    background:#670314;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 20px;
}

.logo{
    font-size:28px;
    font-weight:bold;
}

.logo a{
    text-decoration: none;
    color:#d4a248;
}

.menu {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.lang {
    border-radius: 5px;
    cursor: pointer;
}

.menu-btn{
    background:none;
    border:none;
    color:#fff;
    font-size:24px;
    cursor: pointer;
}

.category{
    display:flex;
    overflow-x:auto;
    background:#670314;
    justify-content: center;
}

.category a{
    text-decoration: none;
}

.category a:hover{
    color:#ffae00;
}

.category::-webkit-scrollbar{
    display:none;
}

.cat{
    min-width:80px;
    padding:15px 10px;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:5px;
    color:#aaa;
}

.cat span{
    font-size: 10px;
}

.cat.active {
    color: #ffae00;
}

.marquee{
    font-size: 10px;
    margin:10px;
    background:#670314;
    padding:10px;
    border-radius:20px;
}

.slider{
    padding:10px;
}

.slider img{
    width:100%;
    border-radius:15px;
}

.dots{
    display:flex;
    justify-content:center;
    gap:8px;
    margin-bottom:15px;
}

.dots span{
    width:8px;
    height:8px;
    border-radius:50%;
    background:#666;
}

.dots span.active{
    background:#ff4b4b;
}

.jackpot{
    margin:10px;
    border:3px solid #b97218;
    border-radius:18px;
    display:flex;
    justify-content:space-evenly;
    align-items:center;
    padding:15px;
}

.jackpot-logo {
    font-size: 16px;
}

.jackpot-value{
    display: flex;
    gap: 5px;
    justify-content: space-between;
    font-size: 28px;
    color:#ffb400;
    font-weight:bold;
}

.section{
    padding:10px;
}

.section-title{
    display:flex;
    justify-content:space-between;
    margin-bottom:15px;
}

.section-title a{
    color:#ffb400;
    text-decoration:none;
}

.games{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
}

.card{
    background:#670314;
    border-radius:15px;
    overflow:hidden;
    cursor:pointer;
    transition:.2s;
}

.card a{
    text-decoration: none;
    color: white;
}

.card:hover{
    transform:translateY(-5px);
}

.card img{
    width:100%;
    aspect-ratio:1/1.2;
    object-fit:cover;
}

.card p{
    text-align: center;
    padding:10px;
    font-size:11px;
}

.article {
    margin: 10px 0 0 0;
}

.article h1, h2, h3, h4, h5 {
    text-align: center;
}

.internal {
    padding: 0 28px 10px 28px;
}

.internal li a{
    font-size: 10px;
    color: white;
    text-decoration: none;
}

.internal li a:hover{
    color: #ffae00;
}

.external {
    padding: 0 10px 10px 28px;
}

.external li p{
    color: white;
    font-size: 10px;
}

.bottom-nav{
    position:fixed;
    bottom:0;
    left:0;
    right:0;

    max-width:480px;
    margin:auto;

    background:#670314;

    display:flex;
    justify-content:space-around;

    padding:10px 0;
}

.bottom-nav a{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:5px;
    color:#bbb;
    text-decoration:none;
    font-size:12px;
}

.bottom-nav a:hover{
    color:#ffae00;
}

.bottom-nav .active{
    color:#ffae00;
}

.login-btn{
    width:60px;
    height:60px;
    margin-top:-20px;
    background:#c7861f;
    border-radius:20px;
    display:flex;
    justify-content:center;
    align-items:center;
}