*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
html{
    scroll-behavior:smooth;
}
html,body{
    width:100%;
    min-height:100%;
    overflow-x:hidden;
    font-family:Arial,sans-serif;
    background:#000;
    color:#fff;
}
a{text-decoration:none;color:#fff}
img{
    max-width:100%;
    display:block;
    height:auto;
}
body{
    padding-bottom:80px;
}
.top-header{
    position:sticky;
    top:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 15px;
    background:#111;
    border-bottom:2px solid gold;
    z-index:9999;
}
.logo-wrap img{height:40px}
.rtp-btn{
    background:linear-gradient(45deg,#ffd700,#ff9900);
    color:#000;
    font-weight:bold;
    padding:8px 16px;
    border-radius:20px;
    font-size:13px;
}
.container{
    width:100%;
    max-width:1200px;
    margin:auto;
}
.hero img{
    width:100%;
}
.btn-row{
    display:flex;
    gap:8px;
    padding:8px;
}
.btn,.telegram{
    flex:1;
    text-align:center;
    background:#111;
    border:2px solid gold;
    padding:12px;
    border-radius:20px;
    font-weight:bold;
    font-size:14px;
    transition:.2s;
}
.telegram{
    display:block;
    margin:8px;
}
.btn:hover,.telegram:hover{
    background:gold;
    color:#000;
}
.clicked{
    transform:scale(.95);
}
.jackpot,.marquee,.info,.features{
    margin:10px;
}
.jackpot{
    border:3px solid gold;
    border-radius:10px;
    padding:5px;
}
.marquee{
    border:1px solid gold;
    padding:8px;
    overflow:hidden;
    white-space:nowrap;
}
.marquee-text{
    display:inline-block;
    animation:marqueeMove 12s linear infinite;
    color:gold;
}
@keyframes marqueeMove{
    from{transform:translateX(100%)}
    to{transform:translateX(-100%)}
}
.section-title{
    background:#b99700;
    padding:12px;
    color:#000;
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.games{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(140px,1fr));
    gap:10px;
    padding:10px;
}
.game-card{
    background:#111;
    border:2px solid gold;
    border-radius:15px;
    padding:8px;
    text-align:center;
    font-size:12px;
}
.game-card img{
    border-radius:10px;
    margin-bottom:5px;
}
table{
    width:100%;
    border-collapse:collapse;
    background:#fff;
    color:#000;
    font-size:13px;
}
td{
    border:1px solid #333;
    padding:8px;
}
.features img{
    border-radius:10px;
}
.footer{
    text-align:center;
    font-size:12px;
    padding:15px;
    color:#aaa;
}
.fixed-footer{
    position:fixed;
    bottom:0;
    width:100%;
    display:flex;
    justify-content:space-around;
    align-items:center;
    background:#111;
    border-top:2px solid gold;
    padding:10px 0;
}
.fixed-footer a{
    flex:1;
    text-align:center;
    font-size:12px;
}
.fixed-footer img{
    width:25px;
    margin:auto auto 3px;
}
@media(max-width:768px){
    .games{
        grid-template-columns:repeat(3,1fr);
    }
}
