/* General Styles */
body {
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 0;
    background: #2e2e2e;
    color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

a {
    color: red;
    text-decoration: dashed;
}

.container {
    max-width: 800px;
    width: 100%;
}

.header {
    text-align: center;
    margin-bottom: 20px;
}

.header h1 {
    font-size: 4rem;
    margin: 0;
    color: #4caf50;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.8);
}

.header p {
    font-size: 1.5rem;
    color: #9e9e9e;
    margin: 0;
}

.main-content {
    background: #1e1e1e;
    border-radius: 10px;
    padding: 20px;
}

.command h2 {
    font-size: 2rem;
    border-bottom: 2px solid #4caf50;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.terminal {
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.terminal-header {
    display: flex;
    justify-content: flex-start;
    padding: 10px;
    background: #333;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 5px;
}

.red {
    background: #ff5f57;
}

.yellow {
    background: #ffbd2e;
}

.green {
    background: #27c93f;
}

.terminal-body {
    padding: 20px;
    font-size: 1.2rem;
    color: #c6c6c6;
}

pre {
    margin: 0;
    font-family: 'Courier New', Courier, monospace;
}

.footer {
    text-align: center;
    margin-top: 20px;
    color: #9e9e9e;
}

.discord-logo {
    width: 50px;
    height: 50px;
    margin-top: 10px;
}
