/* =============================================
   DOPE Roster - Frontend Styles
============================================= */

.dope-roster {
    display: grid;
    gap: 24px;
    padding: 16px 0;
}
.dope-cols-1 { grid-template-columns: 1fr; }
.dope-cols-2 { grid-template-columns: repeat(2, 1fr); }
.dope-cols-3 { grid-template-columns: repeat(3, 1fr); }
.dope-cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
    .dope-cols-3, .dope-cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .dope-cols-2, .dope-cols-3, .dope-cols-4 { grid-template-columns: 1fr; }
}

/* ---- Card ---- */
.dr-card {
    background: #1a1a1e;
    border: 1px solid #2e2e36;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 20px 20px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    color: #e0e0e0;
}
.dr-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

/* ---- Avatar ---- */
.dr-avatar-wrap {
    position: relative;
    margin-bottom: 14px;
}
.dr-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #C8A84B;
    display: block;
}
.dr-avatar-ph {
    background: #2e2e36;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dr-avatar-ph span {
    font-size: 36px;
    font-weight: 700;
    color: #C8A84B;
}
.dr-status {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #1a1a1e;
}
.dr-s-green  { background: #22c55e; }
.dr-s-grey   { background: #6b7280; }
.dr-s-yellow { background: #eab308; }
.dr-s-red    { background: #ef4444; }

/* ---- Body ---- */
.dr-body { width: 100%; }

.dr-nick {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
}
.dr-real {
    font-size: 13px;
    color: #888;
    margin-bottom: 8px;
}

/* ---- Tags ---- */
.dr-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-bottom: 10px;
}
.dr-tag {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.dr-tag-role { background: #C8A84B22; color: #C8A84B; border: 1px solid #C8A84B55; }
.dr-tag-div  { background: #6366f122; color: #818cf8; border: 1px solid #6366f155; }
.dr-tag-rank { background: #22c55e22; color: #4ade80; border: 1px solid #22c55e55; }

/* ---- Info Row ---- */
.dr-info-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 10px;
}
.dr-info-item {
    font-size: 12px;
    color: #aaa;
}

/* ---- Bio ---- */
.dr-bio {
    font-size: 13px;
    color: #999;
    line-height: 1.5;
    margin-bottom: 12px;
}

/* ---- Stats ---- */
.dr-stats {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 14px;
    padding: 10px;
    background: #12121666;
    border-radius: 10px;
}
.dr-stat-val {
    font-size: 18px;
    font-weight: 700;
    color: #C8A84B;
}
.dr-stat-lbl {
    font-size: 10px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ---- Social ---- */
.dr-socials {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 14px;
}
.dr-soc {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: opacity 0.2s;
    cursor: pointer;
}
.dr-soc:hover { opacity: 0.75; }
.dr-soc svg { width: 16px; height: 16px; }

.dr-soc-discord { background: #5865F2; color: #fff; }
.dr-soc-ig      { background: #e1306c; color: #fff; }
.dr-soc-tt      { background: #000; color: #fff; }
.dr-soc-yt      { background: #ff0000; color: #fff; }
.dr-soc-tw      { background: #9147ff; color: #fff; }
.dr-soc-x       { background: #000; color: #fff; }

/* ---- Button ---- */
.dr-btn {
    display: inline-block;
    padding: 8px 22px;
    background: #C8A84B;
    color: #111 !important;
    font-weight: 700;
    font-size: 13px;
    border-radius: 8px;
    text-decoration: none !important;
    letter-spacing: 0.5px;
    transition: background 0.2s;
}
.dr-btn:hover { background: #d4b85a; }

.dope-empty { color: #888; font-style: italic; }
