/* Общие стили для страницы */
body {
    /* Градиент (фиолетовый фон) */
    background: linear-gradient(
        135deg,
        #4a4ab1 0%, /* синий */
        #7b68ee 50%, /* фиолетовый */
        #b19cd9 100% /* светло-фиолетовый */
    );
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "SF Pro Display", "Helvetica", sans-serif;
}

/* Окно терминала */
.terminal-window {
    width: 1000px; 
    height: auto; 
    max-width: 97%;
    max-height: 80%;
    background-color: #1E1E1E; /* тёмный фон терминала */
    border-radius: 10px; /* скругленные углы */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* тень окна */
    /* overflow: hidden; */
    overflow-y: auto;
}

/* Верхняя панель */
.title-bar {
    background: linear-gradient(to bottom, #333333, #2D2D2D); /* градиент тёмной темы */
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-family: "SF Pro Display", "Helvetica", sans-serif;
    font-size: 13px;
    color: #FFFFFF;
}

/* Кнопки в верхней панели */
.mac-buttons {
    position: absolute;
    left: 10px;
    display: flex;
    gap: 8px;

    align-items: center;
    justify-content: center;

    height: 100%;
}

.mac-buttons button {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.2);
    cursor: pointer;
    outline: none;
    transition: background-color 0.2s;
}

.close {
    background-color: #ff5c5c; /* красный */
}

.minimize {
    background-color: #ffbd4c; /* жёлтый */
}

.maximize {
    background-color: #00ca56; /* зелёный */
}

.mac-buttons button:hover {
    filter: brightness(85%);
}

.mac-buttons button:active {
    filter: brightness(70%);
}

/* Заголовок в верхней панели */
.title {
    text-align: center;
}

/* Тело терминала */
.terminal-body {
    height: calc(100% - 24px);
    background-color: #1E1E1E;
    color: #DCDCDC;
    font-family: "Menlo", "Monaco", monospace;
    font-size: 14px;
    padding: 2px 5px 0px 10px;
    overflow-y: auto;

    line-height: 1.3;
}

/* Стили для содержимого */
.terminal-body p {
    margin: 0px 0px;
}

/* Командная строка (prompt) */
.prompt {
    color: #00A627;
    font-weight: bold;
    margin-right: 10px;
}

/* Вывод команд */
p.output {
    margin-left: 20px;
}

/* Эмодзи */
.emoji {
    margin-right: 4px;
}

/* Статусы */
.status-done {
    color: #00A627;
}

.status-progress {
    color: #A68A00;
}

.status-planned {
    color: #C23621;
}

/* Контакты */
.contact-label {
    color: #2D5BD9;
}

/* Эмодзи для контактов */
.contact-emoji {
    margin-right: 4px;
}

/* Адреса */
.address-label {
    color: #963D7F;
    margin-right: 5px;
}

/* Приветственное сообщение */
.welcome {
    color: #A68A00;
    font-style: italic;
    margin-bottom: 15px;
}

p.command {

    margin-top: 20px;
    margin-bottom: 8px;
}




.address {
    color: rgb(184, 184, 252);
}





a {
    text-decoration: none;
    color: #3e6be7;


    transition: all 0.3s ease;
    display: inline-block;
}

a:hover {
    color: #ffffff;
    background-color: #6c5ce7;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}




















@media (max-width: 800px) {
    .mac-buttons button {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        border: 1px solid rgba(0, 0, 0, 0.2);
        cursor: pointer;
        outline: none;
        transition: background-color 0.2s;
    }
}


@media (max-width: 480px) {
    .terminal-window {
        max-height: 90%;

    }

    .terminal-body {
        font-size: 12px;
    }
}



