/* style.css - Dark Mode Only */
body {
    background-color: #121212;
    color: #e0e0e0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 600px;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #ff0055, #ff9900);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

textarea {
    width: 100%;
    height: 150px;
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 12px;
    color: #fff;
    padding: 15px;
    font-size: 16px;
    resize: vertical;
    margin-bottom: 20px;
    box-sizing: border-box; /* Важно чтобы не вылезало */
}

textarea:focus {
    outline: 2px solid #ff0055;
    border-color: transparent;
}

button {
    background: #ff0055;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.1s, background 0.2s;
    width: 100%;
}

button:hover {
    background: #ff2266;
    transform: scale(1.02);
}

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

button:disabled {
    background: #555;
    cursor: not-allowed;
}

/* Карточка результата */
.result-card {
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 20px;
    margin-top: 30px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: fadeIn 0.3s ease;
}

.result-card h3 {
    margin-top: 0;
    color: #fff;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.stats {
    display: flex;
    gap: 15px;
    color: #aaa;
    font-size: 0.9em;
    margin-bottom: 15px;
}

.desc-preview {
    background: #121212;
    padding: 10px;
    border-radius: 6px;
    color: #ccc;
    font-size: 14px;
    max-height: 100px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.download-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #28a745; /* Зеленая кнопка скачать */
    color: white;
    padding: 12px 0;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    box-sizing: border-box;
}

.download-btn:hover {
    background: #218838;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
