@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@700;800;900&display=swap');

/* Digitalway Jogos - Frontend v1.0.0 */
.dwj-wrap{width:100%;font-family:inherit;box-sizing:border-box}
.dwj-wrap *{box-sizing:border-box}

/* Top bar */
.dwj-topbar{
    display:flex;align-items:center;justify-content:space-between;
    gap:16px;margin-bottom:20px;flex-wrap:wrap
}
.dwj-search-wrap{
    display:flex;align-items:center;gap:10px;
    border:2px solid #ddd;border-radius:40px;
    padding:8px 18px;flex:1;max-width:360px;background:#fff
}
.dwj-search-icon{font-size:1rem;color:#999}
.dwj-search{
    border:none;outline:none;background:transparent;
    font-size:.9rem;color:#333;width:100%
}
.dwj-search::placeholder{color:#aaa}

/* View toggle */
.dwj-view-toggle{display:flex;gap:4px}
.dwj-view-btn{
    width:38px;height:38px;border-radius:8px;border:2px solid #ddd;
    background:#fff;color:#999;cursor:pointer;
    display:flex;align-items:center;justify-content:center;
    transition:border-color .15s,color .15s,background .15s
}
.dwj-view-btn:hover,.dwj-view-btn.active{
    border-color:#3b82f6;color:#3b82f6;background:rgba(59,130,246,.07)
}

/* Category tabs */
.dwj-tabs{
    display:flex;gap:0;border-bottom:2px solid #eee;
    margin-bottom:14px;flex-wrap:wrap
}
.dwj-tab{
    padding:10px 20px;border:none;background:transparent;
    color:#888;font-size:.85rem;font-weight:700;letter-spacing:.5px;
    text-transform:uppercase;cursor:pointer;position:relative;
    transition:color .18s;white-space:nowrap
}
.dwj-tab::after{
    content:'';position:absolute;bottom:-2px;left:0;right:0;
    height:2px;background:#3b82f6;transform:scaleX(0);
    transition:transform .18s
}
.dwj-tab:hover{color:#333}
.dwj-tab.active{color:#3b82f6}
.dwj-tab.active::after{transform:scaleX(1)}

/* Players filter */
.dwj-players-row{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:24px}
.dwj-pbtn{
    padding:6px 16px;border-radius:20px;border:2px solid #ddd;
    background:#fff;color:#666;cursor:pointer;
    font-size:.8rem;font-weight:700;
    transition:border-color .15s,color .15s,background .15s
}
.dwj-pbtn:hover,.dwj-pbtn.active{
    border-color:#f59e0b;color:#d97706;background:rgba(245,158,11,.08)
}

/* Grid - large */
.dwj-wrap[data-view="grid-lg"] .dwj-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);gap:16px
}
@media(max-width:720px){
    .dwj-wrap[data-view="grid-lg"] .dwj-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:480px){
    .dwj-wrap[data-view="grid-lg"] .dwj-grid{grid-template-columns:1fr}
}

/* Grid - small */
.dwj-wrap[data-view="grid-sm"] .dwj-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);gap:10px
}
@media(max-width:900px){
    .dwj-wrap[data-view="grid-sm"] .dwj-grid{grid-template-columns:repeat(4,1fr)}
}
@media(max-width:600px){
    .dwj-wrap[data-view="grid-sm"] .dwj-grid{grid-template-columns:repeat(3,1fr)}
}

/* List */
.dwj-wrap[data-view="list"] .dwj-grid{
    display:flex;flex-direction:column;gap:10px
}

/* ---- Card base ---- */
.dwj-card{
    display:block;text-decoration:none!important;
    border-radius:10px;overflow:hidden;background:#fff;
    border:1px solid #eee;
    transition:box-shadow .2s,transform .2s;color:inherit
}
.dwj-card:hover{
    box-shadow:0 6px 22px rgba(0,0,0,.14);transform:translateY(-3px)
}

/* Grid card image */
.dwj-wrap[data-view="grid-lg"] .dwj-card-img,
.dwj-wrap[data-view="grid-sm"] .dwj-card-img{
    position:relative;width:100%;aspect-ratio:16/9;overflow:hidden
}
.dwj-wrap[data-view="grid-lg"] .dwj-card-img img,
.dwj-wrap[data-view="grid-sm"] .dwj-card-img img{
    width:100%;height:100%;object-fit:cover;display:block;
    transition:transform .3s
}
.dwj-card:hover .dwj-card-img img{transform:scale(1.06)}

/* Grid card body */
.dwj-wrap[data-view="grid-lg"] .dwj-card-body,
.dwj-wrap[data-view="grid-sm"] .dwj-card-body{
    padding:10px 12px 12px
}
.dwj-wrap[data-view="grid-sm"] .dwj-card-body{padding:7px 9px 9px}

/* List card layout */
.dwj-wrap[data-view="list"] .dwj-card{
    display:flex;align-items:center;gap:0;border-radius:10px
}
.dwj-wrap[data-view="list"] .dwj-card-img{
    width:140px;min-width:140px;height:90px;overflow:hidden;flex-shrink:0
}
.dwj-wrap[data-view="list"] .dwj-card-img img{
    width:100%;height:100%;object-fit:cover;display:block;transition:transform .3s
}
.dwj-wrap[data-view="list"] .dwj-card-body{
    padding:14px 18px;display:flex;align-items:center;
    justify-content:space-between;flex:1;gap:16px
}
.dwj-wrap[data-view="list"] .dwj-card-info{
    flex:1;min-width:0;display:flex;flex-direction:column;gap:5px
}

/* No image placeholder */
.dwj-no-img{
    width:100%;height:100%;display:flex;align-items:center;
    justify-content:center;font-size:2.5rem;background:#f3f4f6;
    color:#9ca3af
}
.dwj-wrap[data-view="list"] .dwj-no-img{font-size:1.8rem}

/* Card title */
.dwj-card-title{
    font-weight:700;font-size:.92rem;color:#111;
    line-height:1.35;margin-bottom:8px
}
.dwj-wrap[data-view="grid-sm"] .dwj-card-title{font-size:.8rem;margin-bottom:5px}
.dwj-wrap[data-view="list"] .dwj-card-title{font-size:1rem;margin-bottom:0}

/* Badges */
.dwj-card-badges{display:flex;gap:5px;flex-wrap:wrap;align-items:center}
.dwj-wrap[data-view="list"] .dwj-card-badges{justify-content:flex-end;flex-shrink:0}
.dwj-badge{
    padding:3px 10px;border-radius:12px;
    font-size:.7rem;font-weight:800;letter-spacing:.2px;line-height:1.6;
    white-space:nowrap
}
.dwj-wrap[data-view="grid-sm"] .dwj-badge{font-size:.62rem;padding:2px 7px}
.dwj-badge-t{background:#fef3c7;color:#92400e}
.dwj-badge-p{background:#dbeafe;color:#1e40af}

/* Empty state */
.dwj-empty{
    color:#999;text-align:center;padding:48px 0;
    font-size:.95rem;grid-column:1/-1
}

/* View button CSS mask icons */
.dwj-view-btn::before{
    content:'';display:block;
    width:16px;height:16px;
    background-color:#999;
    transition:background-color .15s;
    flex-shrink:0
}
.dwj-view-btn:hover::before,.dwj-view-btn.active::before{background-color:#3b82f6}
.dwj-view-btn[data-view="grid-lg"]::before{
    -webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Crect x='1' y='1' width='7' height='7' rx='1.5'/%3E%3Crect x='10' y='1' width='7' height='7' rx='1.5'/%3E%3Crect x='1' y='10' width='7' height='7' rx='1.5'/%3E%3Crect x='10' y='10' width='7' height='7' rx='1.5'/%3E%3C/svg%3E") no-repeat center/contain;
    mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Crect x='1' y='1' width='7' height='7' rx='1.5'/%3E%3Crect x='10' y='1' width='7' height='7' rx='1.5'/%3E%3Crect x='1' y='10' width='7' height='7' rx='1.5'/%3E%3Crect x='10' y='10' width='7' height='7' rx='1.5'/%3E%3C/svg%3E") no-repeat center/contain
}
.dwj-view-btn[data-view="grid-sm"]::before{
    -webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Crect x='1' y='1' width='4' height='4' rx='1'/%3E%3Crect x='7' y='1' width='4' height='4' rx='1'/%3E%3Crect x='13' y='1' width='4' height='4' rx='1'/%3E%3Crect x='1' y='7' width='4' height='4' rx='1'/%3E%3Crect x='7' y='7' width='4' height='4' rx='1'/%3E%3Crect x='13' y='7' width='4' height='4' rx='1'/%3E%3Crect x='1' y='13' width='4' height='4' rx='1'/%3E%3Crect x='7' y='13' width='4' height='4' rx='1'/%3E%3Crect x='13' y='13' width='4' height='4' rx='1'/%3E%3C/svg%3E") no-repeat center/contain;
    mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Crect x='1' y='1' width='4' height='4' rx='1'/%3E%3Crect x='7' y='1' width='4' height='4' rx='1'/%3E%3Crect x='13' y='1' width='4' height='4' rx='1'/%3E%3Crect x='1' y='7' width='4' height='4' rx='1'/%3E%3Crect x='7' y='7' width='4' height='4' rx='1'/%3E%3Crect x='13' y='7' width='4' height='4' rx='1'/%3E%3Crect x='1' y='13' width='4' height='4' rx='1'/%3E%3Crect x='7' y='13' width='4' height='4' rx='1'/%3E%3Crect x='13' y='13' width='4' height='4' rx='1'/%3E%3C/svg%3E") no-repeat center/contain
}
.dwj-view-btn[data-view="list"]::before{
    -webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Crect x='1' y='2' width='16' height='4' rx='1.5'/%3E%3Crect x='1' y='8' width='16' height='4' rx='1.5'/%3E%3Crect x='1' y='14' width='16' height='4' rx='1.5'/%3E%3C/svg%3E") no-repeat center/contain;
    mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Crect x='1' y='2' width='16' height='4' rx='1.5'/%3E%3Crect x='1' y='8' width='16' height='4' rx='1.5'/%3E%3Crect x='1' y='14' width='16' height='4' rx='1.5'/%3E%3C/svg%3E") no-repeat center/contain
}

/* Description (list view only) */
.dwj-wrap[data-view="list"] .dwj-card-desc{
    font-size:.82rem;color:#888;line-height:1.5;
    display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden
}
.dwj-wrap[data-view="grid-lg"] .dwj-card-desc,
.dwj-wrap[data-view="grid-sm"] .dwj-card-desc{display:none}

/* Floating tooltip (grid views, shown via JS) */
.dwj-floating-tip{
    position:absolute;
    transform:translate(-50%,-100%);
    background:linear-gradient(135deg,#f093fb 0%,#f5576c 100%);
    color:#fff;
    padding:12px 18px;
    border-radius:20px;
    font-family:'Nunito',system-ui,sans-serif;
    font-size:.88rem;
    font-weight:800;
    max-width:230px;
    min-width:120px;
    text-align:center;
    line-height:1.55;
    box-shadow:0 10px 30px rgba(245,87,108,.45),0 0 0 3px rgba(255,255,255,.25);
    pointer-events:none;
    z-index:9999;
    animation:dwj-tip-pop .18s cubic-bezier(.34,1.56,.64,1) both
}
.dwj-floating-tip::after{
    content:'';
    position:absolute;
    top:100%;left:50%;
    transform:translateX(-50%);
    border:9px solid transparent;
    border-top-color:#f5576c
}
@keyframes dwj-tip-pop{
    from{opacity:0;transform:translate(-50%,-90%) scale(.85)}
    to{opacity:1;transform:translate(-50%,-100%) scale(1)}
}
