/*
Theme Name: CoinBoom Pro
Theme URI: https://example.com
Author: Mas Ilham
Author URI: https://example.com
Description: Coin Listing WordPress Theme
Version: 1.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 8.1
Text Domain: coinboom-pro
*/

:root{
    --primary:#3861fb;
    --success:#16c784;
    --danger:#ea3943;
    --bg:#f8fafd;
    --card:#ffffff;
    --text:#222531;
    --border:#e5e7eb;
}

body{
    font-family: Inter,sans-serif;
    background:var(--bg);
    color:var(--text);
}

a{
    text-decoration:none;
}

.site-header{
    background:#fff;
    border-bottom:1px solid var(--border);
    position:sticky;
    top:0;
    z-index:999;
}

.logo{
    font-size:24px;
    font-weight:700;
    color:var(--primary);
}

.navbar-nav .nav-link{
    color:#222;
    font-weight:500;
}

.hero{
    padding:80px 0;
    background:#fff;
}

.hero h1{
    font-size:48px;
    font-weight:800;
}

.hero p{
    color:#666;
}

.token-card{
    background:#fff;
    border-radius:12px;
    padding:20px;
    border:1px solid var(--border);
    margin-bottom:15px;
    transition:.3s;
}

.token-card:hover{
    transform:translateY(-3px);
}

.token-logo{
    width:50px;
    height:50px;
    border-radius:50%;
}

.section-title{
    font-size:28px;
    font-weight:700;
    margin-bottom:20px;
}

.sidebar-widget{
    background:#fff;
    border-radius:12px;
    padding:20px;
    border:1px solid var(--border);
    margin-bottom:20px;
}

.site-footer{
    background:#fff;
    padding:50px 0;
    border-top:1px solid var(--border);
    margin-top:50px;
}

.search-box{
    max-width:700px;
    margin:auto;
}

.search-box input{
    height:60px;
    border-radius:12px;
}

.token-table{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    border:1px solid var(--border);
}

.token-table table{
    margin-bottom:0;
}

.vote-btn{
    background:var(--primary);
    color:#fff;
    border:none;
    padding:8px 15px;
    border-radius:8px;
}

.badge-verified{
    background:var(--success);
}

.badge-featured{
    background:#f59e0b;
}

.badge-sponsored{
    background:#8b5cf6;
}

#cb-search-results{

    border-radius:14px;

    overflow:hidden;

    border:1px solid #e5e7eb;

    background:#fff;

}

#cb-search-results .list-group-item{

    border:0;

    padding:12px 15px;

}

#cb-search-results .list-group-item:hover{

    background:#f8fafc;

}

#cb-search-results img{

    object-fit:cover;

}

.cb-hero{

background:
linear-gradient(
135deg,
#3861fb,
#5b7cff
);

padding:90px 0;

border-radius:30px;

margin-bottom:60px;

color:#fff;

}

.cb-hero h1{

font-size:54px;

font-weight:800;

}

.cb-hero p{

font-size:20px;

opacity:.9;

}

.cb-hero-search{

max-width:650px;

margin:auto;

margin-top:35px;

position:relative;

}

.cb-hero-search input{

height:64px;

border-radius:50px;

padding-left:25px;

}

@media(max-width:768px){

.cb-hero h1{

font-size:34px;

}

}