/* Full page layout */
.vb-page {
    min-height: 100vh;
    display: grid;

    /* Header / Main / Bottom */
    grid-template-rows: 100px auto 250px;

    gap: 16px;
    padding: 16px;
    box-sizing: border-box;
}

/* Top navigation frame */
.vb-top-frame {
    border: 1px solid #ff2bd6;
    border-radius: 14px;

    background-image: url('/assets/vibe-header2.jpg');
    background-size: cover;
    background-position: center 15%;
    background-repeat: no-repeat;

    height: 450px;

    padding: 20px;

    position: relative;
    overflow: hidden;
}
.vb-top-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0,0,0,0.45);

    z-index: 1;
}

/* Two-column rows */
.vb-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Basic neon panel */
.vb-panel {
    border: 1px solid #ff2bd6;
    border-radius: 14px;

    padding: 20px;

    background: rgba(10, 0, 25, 0.85);
}

/* Leaderboard table */
.leaderboard-table {
    width: 100%;
    border-collapse: collapse;
}

.leaderboard-table th,
.leaderboard-table td {
    padding: 8px;
    text-align: left;
}

/* Responsive */
@media (max-width: 1000px) {

    .vb-row {
        grid-template-columns: 1fr;
    }

    .vb-page {
        grid-template-rows: auto auto auto;
    }
}
.leaderboard-table {
    width: 100%;
    border-collapse: collapse;
}

.leaderboard-table th,
.leaderboard-table td {
    padding: 6px 12px;
    text-align: left;
}
.news-item {
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #222;
}
.roadmap-item {
    margin-bottom: 10px;
    font-size: 18px;
}
.hero-buttons {
    position: absolute;

    left: 50%;
    bottom: 30px;

    transform: translateX(-50%);

    display: flex;
    gap: 14px;

    z-index: 5;
}

.hero-btn {
    display: inline-block;

    padding: 10px 20px;

    border: 2px solid #ff2bd6;

    border-radius: 8px;

    background: rgba(0,0,0,0.75);

    color: #00e5ff;

    text-decoration: none;

    font-weight: bold;

    box-shadow: 0 0 12px #ff2bd6;

    transition: 0.2s;
}

.hero-btn:hover {
    background: #ff2bd6;

    color: white;

    box-shadow: 0 0 20px #ff2bd6;
}