/* --- BASE STYLES --- */
body {
    background-color: #0d1117;
    color: #c9d1d9;
    font-family: 'Segoe UI', sans-serif;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.container {
    max-width: 850px;
    background: #161b22;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #30363d;
}

header { text-align: center; margin-bottom: 40px; }
h1 { color: #ffffff; }

.warning {
    color: #ff7b72;
    background: rgba(255, 123, 114, 0.1);
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
    display: inline-block;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.card {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #30363d;
}

.online { color: #2ecc71; font-weight: bold; }

.steps .step {
    margin-bottom: 30px;
    padding-left: 50px;
    position: relative;
}

.step-num {
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background: #58a6ff;
    color: #0d1117;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* --- THE SCRIPT BOX COLOR FIX --- */
pre {
    background: #504c4c;
    color: #f8f2f2; /* Forces text to White */
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    font-family: 'Consolas', 'Courier New', monospace;
    border: 1px solid #444;
    font-size: 14px;
    line-height: 1.5;
}

.highlight { 
    color: #58a6ff; 
    font-weight: bold; 
    background: #000;
    padding: 2px 5px;
}

footer { text-align: center; margin-top: 50px; border-top: 1px solid #30363d; padding-top: 20px; }
.discord-link { color: #58a6ff; text-decoration: none; font-weight: bold; }