body{
    font-family:'Segoe UI',Arial;
    background:#f8fafc;
    margin:0;
    padding-top:40px;
}

.domain-container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

.domain-title{
    text-align:center;
    font-size:36px;
    font-weight:800;
    margin-bottom:10px;
}

.domain-subtitle{
    text-align:center;
    margin-bottom:25px;
    color:#666;
}

.search-category-bar{
    display:flex;
    justify-content:center;
    gap:10px;
    flex-wrap:wrap;
    margin-bottom:25px;
}

.search-category-bar input{
    padding:10px;
    border-radius:8px;
    border:1px solid #ccc;
    width:250px;
}

.search-category-bar select{
    padding:10px;
    border-radius:8px;
    border:1px solid #ccc;
}

.filter-bar{
    text-align:center;
    margin-bottom:20px;
}

.filter-bar button{
    margin:5px;
    padding:8px 16px;
    border:none;
    border-radius:6px;
    background:#eee;
    cursor:pointer;
    font-weight:600;
}

.filter-bar button.active{
    background:#ff3d00;
    color:#fff;
}

.price-filter{
    margin:40px 0;
    text-align:center;
}

#priceSlider{
    max-width:450px;
    margin:auto;
}

#priceLabel{
    margin-top:10px;
    font-weight:700;
    color:#0ea5e9;
}

.noUi-target{
    border:0;
    background:#e6f6ff;
    box-shadow:none;
    border-radius:999px;
}

.noUi-connect{
    background:#8fd3ff;
}

.noUi-horizontal{
    height:10px;
}

.noUi-horizontal .noUi-handle{
    width:22px;
    height:22px;
    right:-11px;
    top:-6px;
    border-radius:999px;
    border:2px solid #8fd3ff;
    background:#fff;
    box-shadow:0 4px 10px rgba(0,0,0,0.12);
}

.noUi-handle:before,.noUi-handle:after{
    display:none;
}

.domain-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(240px,1fr));
    gap:22px;
}

.domain-card{
    background:#fff;
    border-radius:16px;
    padding:18px 18px 40px 18px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    border:1px solid #eaeaea;
    position:relative;
    transition:transform .25s,box-shadow .25s;
}

.domain-card:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 30px rgba(0,0,0,0.12);
    border-color:#28a745;
}

.domain-name{
    font-size:17px;
    font-weight:600;
    margin-top:14px;
    margin-bottom:6px;
    word-break:break-word;
}

.domain-price{
    font-size:17px;
    font-weight:700;
}

.domain-offer{
    font-size:13px;
    color:#666;
    margin-top:3px;
}

.external-link{
    display:inline-block;
    margin-top:6px;
    padding:8px 16px;
    border-radius:6px;
    background:#f3f3f3;
    font-weight:600;
    text-decoration:none;
    color:#333;
}

.external-link:hover{
    background:#e7f7eb;
    color:#28a745;
}

.domain-badge{
    position:absolute;
    color:#fff;
    font-weight:700;
    font-size:12px;
    padding:4px 8px;
}

.top-badge{
    top:0;
    right:0;
    background:#ff0000;
    border-radius:0 16px 0 16px;
}

.premium-badge{
    top:0;
    right:0;
    background:#007bff;
    border-radius:0 16px 0 16px;
}

.standard-badge{
    top:0;
    right:0;
    background:#6f42c1;
    border-radius:0 16px 0 16px;
}

.value-badge{
    top:0;
    right:0;
    background:#6c757d;
    border-radius:0 16px 0 16px;
}

.ext-badge{
    top:0;
    left:0;
    border-radius:16px 0 16px 0;
    font-size:11px;
    padding:3px 7px;
    opacity:0;
    transform:translate(-5px,-5px);
    transition:opacity .3s,transform .3s;
}

.domain-card:hover .ext-badge{
    opacity:1;
    transform:translate(0,0);
}

.ext-badge.it{background:#28a745;}
.ext-badge.com{background:#007bff;}
.ext-badge.net{background:#fd7e14;}
.ext-badge.org{background:#6f42c1;}
.ext-badge.eu{background:#0d6efd;}
.ext-badge.info{background:#20c997;}

.negotiable-badge{
    bottom:0;
    right:0;
    background:#ff9800;
    border-radius:16px 0 16px 0;
    font-size:11px;
    padding:5px 10px;
    pointer-events:none;
}

.pagination{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    flex-wrap:wrap;
    margin:35px 0 10px 0;
}

.pagination button{
    padding:10px 14px;
    border:none;
    border-radius:8px;
    background:#eee;
    cursor:pointer;
    font-weight:700;
    min-width:42px;
}

.pagination button:hover{
    background:#dfefff;
}

.pagination button.active{
    background:#0ea5e9;
    color:#fff;
}

.pagination button:disabled{
    opacity:.5;
    cursor:not-allowed;
}

.pagination span{
    padding:0 4px;
    color:#666;
    font-weight:700;
}

.site-footer{
    background-color:#11151c;
    color:#f1f1f1;
    margin-top:100px;
    padding-top:60px;
    font-size:14px;
}

.footer-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    padding:0 20px 40px 20px;
}

.footer-column{
    flex:1;
    min-width:220px;
    margin-bottom:30px;
}

.footer-column h3,
.footer-column h4{
    margin-bottom:15px;
    font-weight:600;
    color:#ffffff;
}

.footer-column p,
.footer-column li{
    margin-bottom:8px;
    color:#cccccc;
}

.footer-column ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-column a{
    color:#00c3ff;
    text-decoration:none;
}

.footer-column a:hover{
    text-decoration:underline;
}

.footer-bottom{
    border-top:1px solid #222;
    text-align:center;
    padding:20px;
    background-color:#0c0f14;
    font-size:13px;
    color:#aaaaaa;
}
.page-list .site-header {
    text-align: center;
    padding: 12px 20px 6px;
    margin-bottom: 14px;
    border-bottom: 1px solid #e5e7eb;
    background: #ffffff;
}

.page-list .site-logo {
    display: inline-block;
}

.page-list .site-logo-img {
    height: 38px;
    width: auto;
    display: block;
    margin: 0 auto;
}
