/***** BOARD STATISTICS *****/

.board-stats-container {
    display: grid;
    grid-template-columns: 1fr 240px 1fr; /* widened center */
    gap: 40px;
    background: hsl(280, 13%, 5%, 0.85);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px #000;
    font-family: 'Crimson Text', serif;
    letter-spacing: 2px;
    color: #888;
    text-transform: uppercase;
	    margin-top: 80px;  /* creates space above stats */

}

/* Titles */
.board-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #987070;
    margin-bottom: 15px;
    border-bottom: 1px solid #987070;
    padding-bottom: 10px;
    text-align: center;
}

/* Tiny metadata line */
.board-meta {
    margin-top: 5px;
    font-size: 9px;
    opacity: 0.4;
    text-align: center;
    letter-spacing: 4px;
    font-style: italic;
}

/* Welcome section */
.board-welcome {
    margin-top: 35px;
    font-size: 10px;
    text-align: center;
    letter-spacing: 3px;
    color: #777;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.newest-member {
    display: block;
    margin-top: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: #987070;
    letter-spacing: 5px;
    transition: 0.3s ease;
}

.newest-member:hover {
    color: #fff;
    letter-spacing: 6px;
}

/* CENTER USERGROUP STACK */
.board-center {
    display: flex;
    flex-direction: column;
    height: 300px;
    background: hsl(300, 8%, 7%, 0.8);
    border-radius: 8px;
    overflow: hidden;
}

/* Base bar */
.group-bar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Group name text */
.group-name {
    font-family: 'Playfair Display', serif;
    font-size: 12px;
    letter-spacing: 3px;
    color: #fff;
    opacity: 0.85;
}

/* Group colors + proportions */
.pack1 {
    background: #FF4747;
    height: 20%;
}

.pack2 {
    background: #484684;
    height: 20%;
}

.pack3 {
    background: #5D7D64;
    height: 20%;
}

.pack4 {
    background: #D6C570;
    height: 20%;
}

.rogues {
  background:#949191;
    height: 20%;
}


/* Right threads */
.board-right {
    text-align: center;
}

.recent-thread {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 13px;
    transition: 0.3s ease;
}

.recent-thread:hover {
    color: #fff;
    letter-spacing: 3px;
}

/* Online Section */
.board-online {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.online-title {
    font-size: 9px;
    letter-spacing: 4px;
    opacity: 0.5;
    margin-bottom: 8px;
    font-style: italic;
}

.online-users {
    font-family: 'Playfair Display', serif;
    font-size: 12px;
    letter-spacing: 3px;
}

.online-users a {
    color: #987070;
    text-decoration: none;
    transition: 0.3s ease;
}

.online-users a:hover {
    color: #fff;
    letter-spacing: 4px;
}
