/* Основные цвета из pywal */
:root {
    --background: #14111C;
    --foreground: #E7DAF6;
    --accent1: #680DEC;  /* Фиолетовый */
    --accent2: #296FFA;  /* Синий */
    --accent3: #0C6144;  /* Зелёный */
    --cursor: #779BB4;
}

body {
    margin: 0;
    padding: 0;
    background: var(--background) url('images/arch.jpg') no-repeat center center fixed;
    background-size: cover;
    color: var(--foreground);
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    text-align: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-shadow: 0 0 8px rgba(231, 218, 246, 0.3);
}

.container {
    max-width: 800px;
    padding: 2rem;
    background-color: rgba(20, 17, 28, 0.8);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(104, 13, 236, 0.5);
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--accent1);
}

p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--foreground);
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

a {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--accent1);
    color: var(--foreground);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
}

a:hover {
    background-color: var(--accent2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(41, 111, 250, 0.4);
}

.terminal {
    background-color: rgba(60, 57, 69, 0.7);
    border: 1px solid var(--accent1);
    border-radius: 5px;
    padding: 1rem;
    font-family: 'JetBrains Mono', monospace;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.terminal pre {
    margin: 0;
}

code {
    color: var(--foreground);
}
