/*
Theme Name: FF TOP UP APP
Theme URI: https://yourdomain.com
Author: Your Name
Description: Custom Gaming Topup WordPress Theme
Version: 1.0
Text Domain: ff-topup-app
*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#edf1f7;
    font-family:Arial, sans-serif;
}


.container{
    width:1200px;
    margin:auto;
}

.main-header{
    background:#ffffff;
    padding:20px 0;
}

.main-header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.main-menu{
    display:flex;
    gap:30px;
}

.main-menu a{
    text-decoration:none;
    color:#111;
    font-weight:bold;
}

.hero-section{
    padding:100px 0;
    text-align:center;
}

.hero-section h1{
    font-size:60px;
    margin-bottom:20px;
}

.hero-section p{
    font-size:20px;
    color:#666;
}

.main-footer{
    background:#07115b;
    color:#fff;
    padding:30px 0;
    text-align:center;
}







.wallet-balance-box{
    background:#111827;
    border:1px solid #1f2937;
    border-radius:12px;
    padding:14px;
    margin-bottom:15px;
    text-align:center;
}

.wallet-balance-box p{
    color:#9ca3af;
    font-size:14px;
    margin-bottom:5px;
}

.wallet-balance-box strong{
    color:#22c55e;
    font-size:24px;
    font-weight:700;
}