/* ========================================
   PAGE
======================================== */
body.page-clan {
    visibility: hidden;
    background: #09090b;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    color: #e4e4e7;
    font-family: 'Inter', Arial, sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body.page-clan.ready {
    visibility: visible;
}

/* ========================================
   WRAPPER
======================================== */
.clan-wrapper {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    padding: 10px 10px 120px;
    box-sizing: border-box;
}

/* ========================================
   TOP INFO
======================================== */
.clan-header-section {
    background: #111113;
    border: 1px solid #27272a;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.clan-top {
    display: flex;
    align-items: center;
    gap: 15px;
}

.clan-emblem-box {
    width: 55px;
    height: 55px;
    background: #18181b;
    border: 1px solid #27272a;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
}

.clan-info {
    flex: 1;
}

.clan-name {
    font-size: 18px;
    font-weight: 800;
    color: #facc15;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

#clan-tag {
    color: #a1a1aa;
    margin-right: 4px;
}

.clan-stat-row {
    font-size: 12px;
    color: #a1a1aa;
    margin-bottom: 4px;
    font-weight: 600;
}

.clan-stat-row span {
    color: #e4e4e7;
    font-weight: bold;
}

/* ========================================
   XP BAR
======================================== */
.clan-xp-container {
    margin-top: 15px;
}

.clan-xp-bar-bg {
    width: 100%;
    height: 10px;
    background: #09090b;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #27272a;
}

.clan-xp-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #facc15, #eab308);
    width: 0%;
    transition: width 0.4s ease;
}

/* ========================================
   MENU
======================================== */
.clan-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #111113;
    border: 1px solid #27272a;
    border-radius: 10px;
    padding: 14px 15px;
    text-decoration: none;
    color: #e4e4e7;
    font-weight: bold;
    transition: transform 0.15s ease, background 0.15s ease;
}

.menu-item:active {
    transform: scale(0.98);
    background: #18181b;
}

.menu-left {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.menu-icon {
    font-size: 20px;
    filter: drop-shadow(0 0 5px rgba(250, 204, 21, 0.2));
}

.menu-right {
    color: #71717a;
    font-size: 12px;
    font-weight: 600;
}

/* ========================================
   MEMBERS
======================================== */
.section-title {
    color: #facc15;
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 12px;
    border-bottom: 1px solid #27272a;
    padding-bottom: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.member-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #111113;
    border: 1px solid #27272a;
    border-radius: 10px;
    padding: 12px 15px;
    margin-bottom: 8px;
}

.member-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.member-name {
    font-size: 14px;
    font-weight: 800;
    color: #e4e4e7;
}

.member-xp {
    font-size: 11px;
    color: #a1a1aa;
    font-family: monospace;
}

.member-role {
    font-size: 12px;
    font-weight: 800;
    color: #facc15;
    background: #18181b;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid #27272a;
    text-transform: uppercase;
}
