body {
    background: #0f0f10;
}

.vcp-wrapper {
    display: flex;
    min-height: 100vh;
    background: #0f0f10;
    color: #fff;
    font-family: Arial, sans-serif;
}

/*
|--------------------------------------------------------------------------
| SIDEBAR
|--------------------------------------------------------------------------
*/

.vcp-sidebar {
    width: 300px;
    background: #18181b;
    border-right: 1px solid #27272a;
    padding: 20px;
    box-sizing: border-box;
}

.vcp-logo {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
}

.vcp-channel-link {
    display: block;
    padding: 14px 18px;
    border-radius: 14px;
    background: #232326;
    margin-bottom: 12px;
    color: #fff;
    text-decoration: none;
    transition: 0.2s;
}

.vcp-channel-link:hover {
    background: #34343a;
}

/*
|--------------------------------------------------------------------------
| CONTENT
|--------------------------------------------------------------------------
*/

.vcp-content {
    flex: 1;
    padding: 30px;
    box-sizing: border-box;
}

.vcp-post {
    background: #1a1a1d;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #2d2d31;
}

.vcp-image img {
    width: 100%;
    display: block;
}

.vcp-post-content {
    padding: 30px;
}

.vcp-post-content h2 {
    margin-top: 0;
    font-size: 32px;
    margin-bottom: 20px;
}

/*
|--------------------------------------------------------------------------
| LOGIN
|--------------------------------------------------------------------------
*/

.vcp-login-required {
    max-width: 500px;
    margin: 60px auto;
    background: #1a1a1d;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    color: #fff;
}

/*
|--------------------------------------------------------------------------
| WORDPRESS CONTENT
|--------------------------------------------------------------------------
*/

.vcp-post-content img {
    max-width: 100%;
    border-radius: 14px;
}

.vcp-post-content video {
    width: 100%;
    border-radius: 14px;
}

.vcp-post-content iframe {
    width: 100%;
    border-radius: 14px;
}
.vcp-success {
    background: #1e3a29;
    border: 1px solid #2ecc71;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 20px;
    color: #fff;
}

.vcp-empty {
    background: #1a1a1d;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}
.vcp-dashboard {
    max-width: 1000px;
    margin: 40px auto;
    color: #fff;
}

.vcp-dashboard h2 {
    margin-bottom: 20px;
}

.vcp-member-card {
    background: #1a1a1d;
    border: 1px solid #2d2d31;
    padding: 20px;
    border-radius: 18px;
    margin-bottom: 15px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vcp-approve-btn,
.vcp-remove-btn {

    border: none;
    padding: 12px 18px;
    border-radius: 12px;
    cursor: pointer;
    color: #fff;
}

.vcp-approve-btn {
    background: #27ae60;
}

.vcp-remove-btn {
    background: #e74c3c;
}
.vcp-feed-title {
    margin-bottom: 25px;
    font-size: 34px;
}

.vcp-post {
    margin-bottom: 30px;
}

.vcp-post-date {
    opacity: 0.6;
    margin-bottom: 15px;
    font-size: 14px;
}
.vcp-front-form {
    margin-bottom: 30px;
    background: #111;
    padding: 20px;
    border-radius: 14px;
}

.vcp-front-form input[type="text"],
.vcp-front-form textarea {
    width: 100%;
    margin-bottom: 15px;
    background: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    padding: 14px;
    border-radius: 10px;
}

.vcp-front-form textarea {
    min-height: 140px;
    resize: vertical;
}

.vcp-front-form input[type="file"] {
    margin-bottom: 15px;
    color: #fff;
}

.vcp-front-form button {
    background: #ff2d55;
    color: #fff;
    border: 0;
    padding: 14px 24px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: bold;
}
.vcp-metrics {
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
}

.vcp-metric-card {
    background: #111;
    color: #ffffff !important;
    padding: 15px;
    border-radius: 10px;
}

.vcp-metric-row {
    font-size: 14px;
    margin-top: 5px;
    opacity: 0.9;
}

/*
|--------------------------------------------------------------------------
| MOBILE
|--------------------------------------------------------------------------
*/

@media(max-width: 768px) {

    .vcp-wrapper {
        flex-direction: column;
    }

    .vcp-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #27272a;
    }

    .vcp-content {
        padding: 15px;
    }

    .vcp-post-content {
        padding: 20px;
    }

    .vcp-post-content h2 {
        font-size: 24px;
    }
}