/* ==========================================================
   App Category Grid
   LiveNetTV.tools
========================================================== */

.app-category-grid{
    display:grid;
    grid-template-columns:repeat(6,minmax(0,1fr));
    gap:22px;
    margin:40px 0;
}

.app-category-card{
    position:relative;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    min-height:170px;
    padding:22px 15px;
    background:#fff;
    border:1px solid #e8edf2;
    border-radius:16px;
    text-decoration:none;
    color:#1f2937;
    overflow:hidden;
    transition:.3s ease;
    box-sizing:border-box;
}

.app-category-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    border-color:#00bcd4;
}

.app-icon{
    width:68px;
    height:68px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#e9fbfd;
    border-radius:50%;
    margin-bottom:16px;
    transition:.3s;
}

.app-icon i{
    font-size:28px;
    color:#00bcd4;
    transition:.3s;
}

.app-category-card:hover .app-icon{
    background:#00bcd4;
}

.app-category-card:hover .app-icon i{
    color:#fff;
    transform:scale(1.1);
}

.app-title{
    position: relative;
    z-index: 3;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: #1f2937;
    margin-bottom: 6px;
}

.app-count{
    font-size:13px;
    color:#6b7280;
}

/* NEW Badge */

.new-badge{
    position:absolute;
    top:12px;
    right:12px;
    background:#ff1744;
    color:#fff;
    font-size:11px;
    font-weight:700;
    padding:5px 10px;
    border-radius:30px;
    text-transform:uppercase;
    letter-spacing:.4px;
    z-index:5;
}

/* Locked Card */

.app-category-card.locked{
    cursor:default;
    pointer-events:none;
}

.app-category-card.locked .app-icon{
    background:#f3f4f6;
}

.app-category-card.locked .app-icon i{
    color:#b0b7c3;
}

.app-category-card.locked .app-title{
    color:#7b8591;
}

/* Locked Card */

.app-category-card.locked{
    cursor:not-allowed;
    pointer-events:none;
    opacity:.85;
}

.app-category-card.locked .app-icon{
    background:#f3f4f6;
}

.app-category-card.locked .app-icon i{
    color:#9ca3af;
}

.coming-soon-badge{
    display:inline-flex;
    align-items:center;
    gap:6px;
    background:#fff4e5;
    color:#d97706;
    border:1px solid #fcd34d;
    border-radius:30px;
    padding:5px 10px;
    font-size:11px;
    font-weight:700;
    margin-bottom:10px;
    line-height:1;
}

.coming-soon-badge i{
    font-size:11px;
    color:#d97706;
}

.app-category-card.locked .app-title{
    color:#374151;
}

.app-category-card.locked:hover{
    transform:none;
    box-shadow:none;
    border-color:#e8edf2;
}
/* Hover Disabled */

.app-category-card.locked:hover{
    transform:none;
    box-shadow:none;
    border-color:#e8edf2;
}

/* ===========================
      Tablet
=========================== */

@media (max-width:1024px){

.app-category-grid{
    grid-template-columns:repeat(4,1fr);
}

}

/* ===========================
      Mobile
=========================== */

@media (max-width:768px){

.app-category-grid{
    grid-template-columns:repeat(3,1fr);
    gap:16px;
}

.app-category-card{
    min-height:150px;
    padding:18px 10px;
}

.app-icon{
    width:58px;
    height:58px;
}

.app-icon i{
    font-size:24px;
}

.app-title{
    font-size:13px;
}

.app-count{
    font-size:12px;
}

.new-badge{
    font-size:10px;
    padding:4px 8px;
}

}

/* ===========================
      Small Mobile
=========================== */

@media (max-width:480px){

.app-category-grid{
    grid-template-columns:repeat(2,1fr);
    gap:14px;
}

.app-category-card{
    min-height:145px;
}

.app-icon{
    width:54px;
    height:54px;
}

.app-icon i{
    font-size:22px;
}

}