body {
    font-family: 'Courier New', monospace;
    background-color: #0a0a0a;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-image: url('Paranoia-background.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: rgba(20, 20, 20, 0.9);
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

h1, h2, h3 {
    color: #ff0000;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

h1 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
}

#progress-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
    background-color: #1a1a1a;
    border-radius: 5px;
    overflow: hidden;
}

.step {
    flex: 1 1 calc(20% - 10px);
    padding: 10px;
    text-align: center;
    background-color: #2a2a2a;
    color: #888;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 5px;
}

.step.active {
    background-color: #8B0000;
    color: #fff;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.step-content {
    display: none;
}

.step-content.active {
    display: block;
}

.dg-box {
    background-color: rgba(139, 0, 0, 0.2);
    border: 1px solid #8B0000;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

th, td {
    border: 1px solid #8B0000;
    padding: 8px;
    text-align: left;
}

th {
    background-color: rgba(139, 0, 0, 0.5);
    color: #ffffff;
}

tr:nth-child(even) {
    background-color: rgba(139, 0, 0, 0.1);
}

button {
    background-color: #8B0000;
    color: #ffffff;
    border: none;
    padding: 10px 15px;
    margin: 5px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #A52A2A;
}

#npc-result, #mission-result {
    margin-top: 15px;
    padding: 10px;
    background-color: rgba(139, 0, 0, 0.1);
    border: 1px solid #8B0000;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .step {
        flex-basis: calc(33.33% - 10px);
    }
}

@media (max-width: 480px) {
    .step {
        flex-basis: calc(50% - 10px);
    }
}