* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto Mono', monospace;
    background-color: #2b2b2b; /* графитовый цвет */
    color: #ffffff;
    line-height: 1.6;
    padding: 20px;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    border-bottom: 2px solid #555;
    position: relative;
}

.company-name {
    font-size: 2.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 10px;
}

.last-update {
    font-size: 0.9rem;
    color: #aaa;
    position: absolute;
    top: 20px;
    right: 20px;
}

.main-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    flex: 1;
}

.section {
    background-color: #363636;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 8px;
    border-left: 4px solid #666;
}

h2 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 400;
    letter-spacing: 1px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.content-block {
    min-height: 120px;
    padding: 15px;
    background-color: #404040;
    border: 1px solid #555;
    border-radius: 4px;
    white-space: pre-wrap;
    line-height: 1.8;
}

.download-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    border-bottom: 1px dashed #888;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.download-link:hover {
    color: #cccccc;
    border-bottom: 1px solid #ffffff;
}

.small-text {
    font-size: 0.85rem;
    color: #aaa;
    margin-top: 10px;
    line-height: 1.4;
}

code {
    background-color: #2b2b2b;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Roboto Mono', monospace;
    font-size: 0.9em;
    color: #ffcc00;
}

.news-column {
    position: relative;
}

.news-item {
    background-color: #404040;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 4px;
    border-left: 3px solid #777;
    position: relative;
}

.news-date {
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 10px;
#    display: flex;
	display: block;
#    justify-content: space-between;
}

.news-filename {
    display: none;
#    color: #888;
#    font-size: 0.7rem;
}

.news-text {
    line-height: 1.6;
}

.news-count {
    background-color: #555;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.9rem;
    color: #ccc;
}

.footer {
    margin-top: 40px;
    padding: 20px;
    border-top: 2px solid #555;
    text-align: center;
}

.update-info {
    max-width: 800px;
    margin: 0 auto;
    padding: 15px;
    background-color: #363636;
    border-radius: 8px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .main-content {
        grid-template-columns: 1fr;
    }
    
    .company-name {
        font-size: 2rem;
    }
    
    .last-update {
        position: static;
        margin-top: 10px;
    }
}