/* GLOBAL */
body {
    margin: 0;
    background: #ffffff;
    font-family: system-ui, Arial, sans-serif;
    color: #222;
}

h1, h2, h3 {
    margin: 0;
    font-weight: 700;
}

/* TITLE BAR (4/4) */
.title-bar {
    background: #008B8B;
    color: #fff;
    padding: 18px 0;
    text-align: center;
    border-bottom: 3px solid #006f6f;
}

.title-bar h1 {
    font-size: 26px;
    letter-spacing: 0.5px;
}

/* MAIN GRID (3/4 + 1/4) */
.main-layout {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 20px;
    padding: 20px;
}

/* LEFT COLUMN */
.left { }

/* STATS BOX */
.stats-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #f8f8f8;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    margin-bottom: 20px;
    text-align: center;
    font-size: 14px;
}

.stats-box span {
    font-weight: 700;
    color: #008B8B;
}

/* TABLE BOX */
.table-box h2 {
    margin-bottom: 10px;
    color: #008B8B;
}

.rank-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.rank-table th {
    background: #008B8B;
    color: #fff;
    padding: 8px;
    text-align: left;
}

.rank-table td {
    padding: 6px 8px;
    border-bottom: 1px solid #eee;
}

.rank-table tr:hover {
    background: #f0f0f0;
}

/* RIGHT COLUMN (1/4) */
.right { }

.side-box {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 14px;
    margin-bottom: 15px;
}

/* BUTTONS */
.btn {
    display: block;
    padding: 10px;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
}

.btn.join { background: #008B8B; }
.btn.join:hover { background: #006f6f; }

.btn.dots { background: #ff9900; }
.btn.dots:hover { background: #cc7a00; }

.btn.countries { background: #333; }
.btn.countries:hover { background: #111; }

/* NEWLY JOINED LIST */
.newly-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.newly-list li {
    padding: 6px 0;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
    display: block;
}
