
body {
    margin: 0;
    background: #f5f5f5;
    color: #333;
}
header {
    background: #fafafa;
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
    text-align: center;
    color: #333;
}
header a{
     color: #666;
}
header > div:first-child {
    font-size: 22px;
    font-weight: normal;
}
header > div:last-child {
    font-size: 14px;
    color: #666;
    margin-top: 6px;
    line-height: 1.6;
}
header > div:last-child {
    font-size: 14px;
    color: #eef3ff;
    margin-top: 10px;
    line-height: 1.8;
}
.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 15px;
}
.search-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}
.search-bar input {
    flex: 1;
    padding: 12px 14px;
    font-size: 14px;
    border: 1px solid #d0d7e2;
    border-radius: 6px;
    outline: none;
}
.search-bar input:focus {
    border-color: #2f80ed;
    box-shadow: 0 0 0 2px rgba(47,128,237,0.15);
}
.search-bar a {
    padding: 10px 18px;
    background: #2f80ed;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
}
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.card-header {
    background: #eaeaea;
    padding: 15px;
    font-weight: bold;
    text-align: center;
    font-size: 14px;
}
.card-body {
    padding: 15px;
}
.card-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.card-body li {
    margin: 8px 0;
}
.card-body li a {
    display: block;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #d0d0d0;
    background: #fafafa;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
    text-align: center;
    text-decoration: none;
    
}
.card-body li a:hover {
    background: #2f80ed;
    color: #fff;
}
.card-body li a:hover {
    background: #eef4ff;
    border-color: #2f80ed;
    color: #2f80ed;
}
.card-body li a:hover {
    background: #2f80ed;
    color: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

  
.header-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:10px;
}

.search-box{
    flex:1;
}

.search-box input{
    width:90%;
    height:42px;
    border:1px solid #ccc;
    border-radius:8px;
    padding:0 12px;
    outline:none;
}

.btn2{
    border:none;
    border-radius:8px;
    padding:10px 16px;
    cursor:pointer;
    white-space:nowrap;
    font-size:14px;
    text-decoration: none;
}

.support-btn{
    background:#28a745;
    color:#fff;
}

.invoice-btn{
    background:#007bff;
    color:#fff;
}


/* Mobile */
@media (max-width: 600px){
    .header-container{
        flex-wrap:wrap;
    }

    .search-box{
        width:100%;
        order:1;
    }

    .support-btn,
    .invoice-btn{
        flex:1;
        order:2;
    }
}

.ecfRules-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.55);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
    padding:20px;
}

.ecfRules-modal.ecfRules-hide{
    display:none;
}

.ecfRules-box{
    width:100%;
    max-width:480px;
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.2);
    animation:ecfRulesPopup .25s ease;
}

@keyframes ecfRulesPopup{
    from{
        opacity:0;
        transform:scale(.9);
    }
    to{
        opacity:1;
        transform:scale(1);
    }
}

.ecfRules-header{
    background:#2563eb;
    color:#fff;
    padding:18px;
    font-size:20px;
    font-weight:bold;
}

.ecfRules-body{
    padding:25px;
    line-height:2;
    color:#444;
}

.ecfRules-link{
    display:inline-block;
    margin-top:15px;
    color:#2563eb;
    text-decoration:none;
    font-weight:bold;
}

.ecfRules-link:hover{
    text-decoration:underline;
}

.ecfRules-footer{
    padding:20px;
    border-top:1px solid #eee;
    text-align:left;
}

#ecfRulesAcceptBtn{
    border:none;
    background:#2563eb;
    color:#fff;
    padding:12px 22px;
    border-radius:8px;
    cursor:pointer;
    font-family:inherit;
    transition:.2s;
}

#ecfRulesAcceptBtn:hover{
    background:#1d4ed8;
}
.card-header{
    display:flex;
    align-items:center;
    gap:8px;
}

.favorite{
    cursor:pointer;
    color:#999;
    font-size:18px;
}

.favorite.active{
    color:#f5b301;
}