:root {
    --blurple: #5865F2;
    --background: #36393F;
    --card-bg: #2F3136;
    --text-primary: #FFFFFF;
    --text-muted: #B9BBBE;
}

body {
    background-color: var(--background);
    color: var(--text-primary);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    padding-top: 50px;
}

.container {
    width: 100%;
    max-width: 500px;
    text-align: center;
}

.blurple-text { color: var(--blurple); }

.card {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

input {
    width: 80%;
    padding: 10px;
    border-radius: 4px;
    border: none;
    background: #202225;
    color: white;
    margin-bottom: 10px;
}

.btn-blurple {
    background: var(--blurple);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.vps-card { text-align: left; }
.status-badge {
    background: #43B581;
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8em;
    margin-bottom: 10px;
}

.actions { display: flex; gap: 10px; margin-top: 15px; }
.btn-action {
    background: #4F545C;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
}
.tabs { display: flex; justify-content: center; gap: 10px; margin-top: 20px; }
.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
    border-bottom: 2px solid transparent;
}
.tab-btn.active {
    color: var(--blurple);
    border-bottom: 2px solid var(--blurple);
}
.tab-content { display: none; }
.tab-content.active { display: block; }
.text-left { text-align: left; }
.muted-text { color: var(--text-muted); font-size: 0.9em; margin-bottom: 15px; }
.small-text { font-size: 0.8em; color: var(--text-muted); margin-bottom: 15px; }
.specs-list { list-style: none; padding: 0; margin: 15px 0; }
.specs-list li { margin-bottom: 5px; font-size: 0.95em; }
.block-btn { display: block; text-decoration: none; margin-top: 10px; }
hr { border: 0; border-top: 1px solid #4F545C; margin: 15px 0; }
