*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, sans-serif;
}

body{
background-image: url("image/background.jpeg");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
background-attachment: fixed;
}

.header{
width:100%;
background:#fff;
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 20px;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.logo{
display:flex;
align-items:center;
gap:10px;
}

.logo img{
width:50px;
height:50px;
border-radius:10px;
}

.logo h2{
color:#222;
}

.logo span{
color:#ff9800;
}

.menu{
font-size:30px;
cursor:pointer;
}

.hero{
text-align:center;
padding:40px 20px;
}

.app-logo{
width:140px;
border-radius:20px;
}

.safe-box{
margin:20px auto;
background:#e8fff0;
color:green;
padding:10px;
border-radius:10px;
max-width:400px;
font-weight:bold;
}

.hero h1{
font-size:36px;
margin:20px 0;
}

.hero h1 span{
color:#ff9800;
}

.hero p{
color:#555;
font-size:18px;
max-width:700px;
margin:auto;
}

.download-btn{
display:inline-block;
margin-top:30px;
background:#ff9800;
color:#fff;
padding:15px 35px;
text-decoration:none;
border-radius:8px;
font-size:20px;
font-weight:bold;
}

.download-btn:hover{
background:#e68900;
}
.stats{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
padding:40px 20px;
background:transparent;
}

.stat-box{
text-align:center;
border-right:1px solid #333;
padding:20px;
}

.stat-box h2{
color:#ffb400;
font-size:48px;
font-weight:800;
}

.stat-box p{
color:#bdbdbd;
font-size:22px;
font-weight:bold;
margin-top:10px;
}

.game-section{
background:transparent;
text-align:center;
padding:60px 20px;
}

.game-section h1{
color:#fff;
font-size:58px;
font-weight:800;
}

.game-section span{
color:#ffb400;
}

.game-section p{
color:#bdbdbd;
font-size:26px;
line-height:1.7;
max-width:900px;
margin:25px auto;
}
.game-card{
max-width:500px;
margin:40px auto;
padding:40px;
border-radius:30px;
background:url("image/classic.jpeg") center/cover no-repeat;
position:relative;
overflow:hidden;
color:#fff;
}

.game-card::before{
content:"";
position:absolute;
inset:0;
background:rgba(0,0,0,0.55);
}

.game-card>*{
position:relative;
z-index:1;
}

.badge{
display:inline-block;
background:#ffb400;
color:#000;
padding:10px 22px;
border-radius:30px;
font-weight:bold;
font-size:18px;
}

.game-card h2{
font-size:55px;
margin:20px 0;
}

.game-card p{
font-size:26px;
line-height:1.6;
max-width:700px;
}

.play-btn{
display:inline-block;
margin-top:25px;
padding:15px 40px;
border:2px solid #ffb400;
border-radius:40px;
color:#ffb400;
text-decoration:none;
font-size:24px;
font-weight:bold;
}
.dragon-card{
background: url("image/dragon.jpeg") center center/cover no-repeat;
}

.purple{
background:#7b2cff;
color:#fff;
}
.game-card{
transition: all 0.4s ease;
animation: fadeUp 0.8s ease;
}

.game-card:hover{
transform: translateY(-10px) scale(1.02);
box-shadow: 0 15px 40px rgba(255,180,0,0.35);
}

.play-btn{
transition: all 0.3s ease;
}

.play-btn:hover{
background:#ffb400;
color:#111;
transform: scale(1.08);
}

@keyframes fadeUp{
from{
opacity:0;
transform:translateY(40px);
}
to{
opacity:1;
transform:translateY(0);
}
}
.rummy-card{
background:url("image/rummy.jpeg") center center/cover no-repeat;
}

.green{
background:#16a34a;
color:#fff;
}
.games-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
padding:40px 20px;
}

.game-item{
background:rgba(20,20,30,.85);
border:2px solid rgba(255,255,255,.08);
border-radius:25px;
padding:25px 15px;
text-align:center;
transition:.35s;
cursor:pointer;
}

.game-item:hover{
transform:translateY(-10px) scale(1.05);
box-shadow:0 0 30px rgba(255,180,0,.45);
}

.game-item:active{
transform:scale(.96);
}

.icon{
width:80px;
height:80px;
margin:auto;
border-radius:50%;
background:#19192b;
display:flex;
align-items:center;
justify-content:center;
font-size:40px;
color:#ffb400;
animation:pulse 2s infinite;
}

.game-item h3{
color:#fff;
margin-top:20px;
font-size:30px;
}

.game-item p{
color:#aaa;
margin-top:10px;
font-size:18px;
}

@keyframes pulse{
0%{transform:scale(1);}
50%{transform:scale(1.12);}
100%{transform:scale(1);}
}
.download-btn{
display:inline-block;
margin-top:30px;
background:#ff9800;
color:#fff;
padding:15px 35px;
text-decoration:none;
border-radius:10px;
font-size:20px;
font-weight:bold;
transition:0.3s;
animation:glow 1.5s infinite;
}

.download-btn:hover{
transform:scale(1.08);
}

@keyframes glow{
0%{
box-shadow:0 0 5px #ff9800;
}
50%{
box-shadow:0 0 20px #ff9800,
0 0 40px #ff9800,
0 0 60px #ff9800;
}
100%{
box-shadow:0 0 5px #ff9800;
}
}
.popup{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.8);
justify-content:center;
align-items:center;
z-index:9999;
}

.popup-box{
width:90%;
max-width:500px;
background:#1b1b2f;
color:#fff;
padding:30px;
border-radius:20px;
text-align:center;
animation:popup .3s ease;
}

.popup-box h2{
color:#ffb400;
margin-bottom:15px;
}

.popup-box p{
line-height:1.7;
margin-bottom:25px;
}

.close{
float:right;
font-size:32px;
cursor:pointer;
color:#fff;
}

@keyframes popup{
from{
transform:scale(.7);
opacity:0;
}
to{
transform:scale(1);
opacity:1;
}
}
.download-count{
text-align:center;
margin:25px 0;
font-size:22px;
font-weight:bold;
color:#ffb400;
animation:pulse 1.5s infinite;
}
.about-section{
max-width:900px;
margin:60px auto;
padding:20px;
text-align:center;
}

.about-section h1{
color:#fff;
font-size:55px;
font-weight:800;
text-align:center;
}

.about-section h1 span{
color:#ffb400;
}

.about-section p{
color:#bdbdbd;
font-size:24px;
line-height:1.8;
text-align:center;
max-width:850px;
margin:25px auto;
}
/* =========================
   MOBILE RESPONSIVE
   ========================= */

@media (max-width: 600px){

    body{
        overflow-x:hidden;
    }

    .header{
        padding:10px 12px;
    }

    .logo img{
        width:38px;
        height:38px;
    }

    .logo h2{
        font-size:20px;
    }

    .menu{
        font-size:25px;
    }

    /* Hero */
    .hero{
        padding:25px 15px;
    }

    .app-logo{
        width:80px;
        height:80px;
    }

    .safe-box{
        font-size:13px;
        padding:8px;
        margin:15px auto;
    }

    .hero h1{
        font-size:28px;
        line-height:1.2;
    }

    .hero p{
        font-size:15px;
        line-height:1.5;
    }

    .download-btn{
        font-size:16px;
        padding:12px 25px;
    }

    .download-count{
        font-size:16px;
    }

    /* Stats */
    .stats{
        grid-template-columns:repeat(2,1fr);
        gap:10px;
        padding:25px 12px;
    }

    .stat-box{
        padding:12px 5px;
        border-right:1px solid #333;
    }

    .stat-box h2{
        font-size:28px;
    }

    .stat-box p{
        font-size:12px;
        margin-top:5px;
    }

    /* Choose Game */
    .game-section{
        padding:35px 15px;
    }

    .game-section h1{
        font-size:32px;
    }

    .game-section p{
        font-size:15px;
        line-height:1.5;
    }

    /* Big Game Cards */
    .game-card{
        width:90%;
        max-width:400px;
        margin:20px auto;
        padding:25px 18px;
        border-radius:20px;
    }

    .game-card h2{
        font-size:30px;
        margin:15px 0;
    }

    .game-card p{
        font-size:15px;
        line-height:1.5;
    }

    .badge{
        font-size:12px;
        padding:7px 14px;
    }

    .play-btn{
        font-size:16px;
        padding:10px 25px;
    }

    /* Small Game Cards */
    .games-grid{
        grid-template-columns:repeat(2,1fr);
        gap:12px;
        padding:25px 12px;
    }

    .game-item{
        padding:20px 8px;
        border-radius:16px;
    }

    .icon{
        width:50px;
        height:50px;
        font-size:25px;
    }

    .game-item h3{
        font-size:18px;
        margin-top:10px;
    }

    .game-item p{
        font-size:12px;
        margin-top:5px;
    }

    /* About */
    .about-section{
        width:90%;
        margin:35px auto;
        padding:10px;
    }

    .about-section h1{
        font-size:30px;
        line-height:1.2;
    }

    .about-section p{
        font-size:15px;
        line-height:1.6;
        margin:15px auto;
    }
}
.steps-section{
    max-width:1100px;
    margin:80px auto;
    padding:60px 30px;
    text-align:center;
    background:rgba(10,10,25,.88);
    border:1px solid rgba(255,180,0,.25);
    border-radius:30px;
}

.steps-section h1{
    color:#fff;
    font-size:48px;
    font-weight:800;
}

.steps-section h1 span{
    color:#ffb400;
}

.steps-subtitle{
    color:#aaa;
    font-size:20px;
    margin:20px auto 50px;
}

.steps-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

.step{
    position:relative;
    padding:10px 20px;
}

.step-number{
    width:100px;
    height:100px;
    margin:0 auto 25px;
    border:4px solid #ffb400;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#ffb400;
    font-size:40px;
    font-weight:800;
    box-shadow:0 0 25px rgba(255,180,0,.35);
}

.step h2{
    color:#fff;
    font-size:26px;
    margin-bottom:15px;
}

.step p{
    color:#aaa;
    font-size:17px;
    line-height:1.7;
}

.steps-download{
    display:inline-block;
    margin-top:50px;
    padding:18px 45px;
    background:#ffb400;
    color:#111;
    text-decoration:none;
    border-radius:40px;
    font-size:22px;
    font-weight:800;
    box-shadow:0 0 30px rgba(255,180,0,.4);
    transition:.3s;
}

.steps-download:hover{
    transform:scale(1.05);
}

.steps-info{
    color:#aaa;
    margin-top:20px;
    font-size:16px;
}

/* MOBILE */
@media(max-width:700px){

    .steps-section{
        margin:40px 12px;
        padding:40px 15px;
        border-radius:22px;
    }

    .steps-section h1{
        font-size:30px;
        line-height:1.25;
    }

    .steps-subtitle{
        font-size:16px;
        margin-bottom:35px;
    }

    .steps-container{
        grid-template-columns:1fr;
        gap:35px;
    }

    .step-number{
        width:75px;
        height:75px;
        font-size:30px;
    }

    .step h2{
        font-size:23px;
    }

    .step p{
        font-size:16px;
    }

    .steps-download{
        width:100%;
        padding:16px 10px;
        font-size:18px;
    }
}
/* PREMIUM ABOUT SECTION */

.premium-about{
    max-width:1200px;
    margin:80px auto 30px;
    padding:70px 50px;
    text-align:left;
    color:#fff;
}

.premium-logo{
    display:flex;
    align-items:center;
    gap:25px;
    margin-bottom:70px;
}

.premium-logo img{
    width:120px;
    height:120px;
    object-fit:cover;
    border-radius:25px;
}

.premium-logo h1{
    font-size:64px;
    margin:0;
    font-weight:800;
}

.premium-main-text{
    font-size:36px;
    line-height:1.65;
    color:#d0cedb;
    margin-bottom:55px;
}

.premium-sub-text{
    font-size:32px;
    line-height:1.6;
    color:#d0cedb;
    margin-bottom:60px;
}

.premium-download{
    display:inline-block;
    background:#ffb400;
    color:#111;
    text-decoration:none;
    padding:25px 55px;
    border-radius:60px;
    font-size:30px;
    font-weight:800;
    box-shadow:0 0 25px rgba(255,180,0,.35);
    transition:.3s;
}

.premium-download:hover{
    transform:scale(1.05);
    box-shadow:0 0 45px rgba(255,180,0,.6);
}


/* MOBILE */

@media(max-width:600px){

    .premium-about{
        margin:40px auto 20px;
        padding:35px 20px;
        text-align:center;
    }

    .premium-logo{
        justify-content:center;
        gap:12px;
        margin-bottom:35px;
    }

    .premium-logo img{
        width:60px;
        height:60px;
        border-radius:14px;
    }

    .premium-logo h1{
        font-size:28px;
    }

    .premium-main-text{
        font-size:20px;
        line-height:1.65;
        margin-bottom:30px;
    }

    .premium-sub-text{
        font-size:18px;
        line-height:1.6;
        margin-bottom:35px;
    }

    .premium-download{
        font-size:19px;
        padding:17px 28px;
        width:100%;
    }
}
.footer{
    max-width:1200px;
    margin:80px auto 0;
    padding:60px 30px 30px;
    color:#fff;
}

.footer-column{
    margin-bottom:50px;
}

.footer-column h2{
    font-size:30px;
    color:#fff;
    margin-bottom:25px;
}

.footer-column a{
    display:block;
    color:#aaa;
    text-decoration:none;
    font-size:20px;
    margin:18px 0;
}

.footer-column a:hover{
    color:#ffb400;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.15);
    padding-top:30px;
    text-align:center;
}

.footer-bottom p{
    color:#999;
    font-size:16px;
    margin:12px 0;
}

html{
    scroll-behavior:smooth;
}

@media(max-width:600px){

    .footer{
        margin-top:50px;
        padding:40px 20px 25px;
    }

    .footer-column h2{
        font-size:26px;
    }

    .footer-column a{
        font-size:18px;
        margin:16px 0;
    }

    .footer-bottom p{
        font-size:14px;
    }
}
.seo-info {
    max-width: 900px;
    margin: 40px auto;
    padding: 25px 20px;
    text-align: center;
    font-family: Arial, sans-serif;
}

.seo-info h2 {
    margin: 28px 0 10px;
    font-size: 22px;
    font-weight: 700;
    color: #ffb400;
}

.seo-info p {
    margin: 0 auto 20px;
    max-width: 750px;
    font-size: 15px;
    line-height: 1.7;
    color: #ffffff;
    opacity: 0.9;
}