:root {
    --bg-color: #0b0c10;
    --text-color: #c5c6c7;
    --accent-color: #66fcf1;
    --accent-dark: #45a29e;
}

body {
    margin: 0;
    font-family: 'Jura', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Навигация */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(11, 12, 16, 0.9);
    border-bottom: 1px solid var(--accent-dark);
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(102, 252, 241, 0.5);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent-color);
}

/* Контейнер */
.container {
    flex: 1;
    padding: 50px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

/* Главная страница */
.hero {
    text-align: center;
    margin-bottom: 60px;
}

.hero h1 {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
}

.btn {
    padding: 15px 30px;
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background-color: var(--accent-color);
    color: var(--bg-color);
    box-shadow: 0 0 20px var(--accent-color);
}

/* Карточки */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: #1f2833;
    padding: 30px;
    border-radius: 10px;
    border-top: 3px solid var(--accent-dark);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(102, 252, 241, 0.2);
}

.card h3 {
    color: var(--accent-color);
}

/* Страница About */
.highlight {
    color: var(--accent-color);
    text-shadow: 0 0 5px var(--accent-color);
}

.explanation-box {
    background: #1f2833;
    padding: 30px;
    border-left: 5px solid var(--accent-color);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Терминал */
.interactive-terminal {
    background: #000;
    border-radius: 10px;
    border: 1px solid #333;
    overflow: hidden;
    font-family: monospace;
}

.terminal-header {
    background: #1f2833;
    padding: 10px;
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.terminal-body {
    padding: 20px;
    color: #0f0;
    min-height: 150px;
    font-size: 1.2rem;
}

/* Футер */
footer {
    text-align: center;
    padding: 20px;
    background: #1f2833;
    font-size: 0.9rem;
}