/* =========================================
   БАЗОВЫЙ СТИЛЬ
========================================= */

body {
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    background: #FFFFFF;
    color: #1E1E1E;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.container {
    max-width: 680px;
    margin: 0 auto;
    padding: 24px;
}


/* =========================================
   ЗАГОЛОВКИ
========================================= */

h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.subtitle {
    color: #555;
    font-size: 14px;
    margin-bottom: 20px;
}


/* =========================================
   ФОРМА И ВВОДЫ
========================================= */

.label {
    font-size: 14px;
    margin-bottom: 6px;
    display: block;
    font-weight: 500;
}

textarea {
    width: 100%;
    height: 160px;
    padding: 12px;
    border: 1px solid #DADADA;
    border-radius: 8px;
    resize: none;
    font-size: 15px;
    outline: none;
    transition: 0.2s ease;
}

textarea:focus {
    border-color: #3A6EFF;
    box-shadow: 0 0 0 3px rgba(58,110,255,0.15);
}


/* =========================================
   КНОПКИ
========================================= */

button {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    background: #3A6EFF;
    color: white;
    transition: background 0.2s ease, transform 0.1s ease;
}

button:hover {
    background: #2F57D9;
}

button:active {
    transform: scale(0.97);
}

button.secondary {
    background: white;
    color: #3A6EFF;
    border: 2px solid #3A6EFF;
}

button.secondary:hover {
    background: #F4F7FF;
}


/* =========================================
   РЕЗУЛЬТАТ БЛОК
========================================= */

.result {
    margin-top: 30px;
    padding: 20px;
    border: 1px solid #E5E5E5;
    border-radius: 10px;
    background: #FAFAFA;
}

pre {
    white-space: pre-wrap;
    font-size: 14px;
    line-height: 1.45;
}


/* =========================================
   ВСПОМОГАТЕЛЬНЫЕ КЛАССЫ
========================================= */

.hidden {
    display: none;
}


/* =========================================
   ЛОАДЕР (АНИМАЦИЯ)
========================================= */

.loader {
    width: 40px;
    height: 40px;
    border: 4px solid #E5E5E5;
    border-top-color: #3A6EFF;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}


/* =========================================
   АДАПТИВНОСТЬ
========================================= */

@media (max-width: 480px) {
    h2 {
        font-size: 20px;
    }
    textarea {
        height: 140px;
    }
    button {
        font-size: 15px;
        padding: 12px;
    }
}
