/* ОСНОВНЫЕ СТИЛИ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a192f;
    color: #ccd6f6;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ШАПКА */
.header {
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #233554;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: #64ffda;
    text-decoration: none;
}

.logo i {
    font-size: 28px;
}

/* НАВИГАЦИЯ */
.nav-tabs {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-tabs a {
    color: #8892b0;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-tabs a:hover,
.nav-tabs a.active {
    color: #64ffda;
}

.nav-tabs a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #64ffda;
    border-radius: 1px;
}

/* ОСНОВНОЙ КОНТЕНТ */
.main-content {
    padding: 40px 0;
    min-height: calc(100vh - 160px);
}

/* ПОДВАЛ */
.footer {
    border-top: 1px solid #233554;
    padding: 30px 0;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #8892b0;
    font-size: 14px;
}

.security-badge {
    background: rgba(100, 255, 218, 0.1);
    color: #64ffda;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ОБЩИЕ КЛАССЫ */
.page-header {
    margin-bottom: 40px;
}

.page-title {
    font-size: 36px;
    color: #ccd6f6;
    margin-bottom: 10px;
    font-weight: 700;
}

.page-subtitle {
    color: #8892b0;
    font-size: 18px;
}

/* КНОПКИ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    background: rgba(100, 255, 218, 0.1);
    color: #64ffda;
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.btn:hover {
    background: rgba(100, 255, 218, 0.2);
    transform: translateY(-2px);
}

.btn-primary {
    background: #64ffda;
    color: #0a192f;
    border: none;
}

.btn-primary:hover {
    background: #52d3b8;
    color: #0a192f;
}

.category-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    margin-right: 6px;
    margin-bottom: 6px;
}

.tag-proof {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.2);
}

.tag-encrypted {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.2);
}

.tag-confidential {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.tag-financial {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
    border: 1px solid rgba(52, 152, 219, 0.2);
}

.tag-government {
    background: rgba(155, 89, 182, 0.1);
    color: #9b59b6;
    border: 1px solid rgba(155, 89, 182, 0.2);
}

/* АДАПТИВ */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-tabs {
        gap: 20px;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* НОВОСТИ */
.news-page {
    padding: 30px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.news-card {
    background: rgba(23, 42, 69, 0.7);
    border: 1px solid #233554;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
}

.news-card:hover {
    border-color: #64ffda;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.news-card-image {
    height: 200px;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.news-card:hover .news-card-image img {
    transform: scale(1.05);
}

.news-card-content {
    padding: 20px;
}

.news-card-title {
    font-size: 18px;
    color: #ccd6f6;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-card-excerpt {
    color: #8892b0;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #495670;
}

/* МОДАЛЬНОЕ ОКНО ДЛЯ НОВОСТЕЙ */
.news-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.news-modal-content {
    background: #0a192f;
    border: 1px solid #233554;
    border-radius: 10px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.news-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #8892b0;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
}

.news-modal-body {
    padding: 40px;
}

/* УТЕЧКИ */
.leaks-page {
    padding: 30px 0;
}

.leaks-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.leak-item {
    background: rgba(23, 42, 69, 0.7);
    border: 1px solid #233554;
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s;
}

.leak-item:hover {
    border-color: #64ffda;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.leak-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #233554;
}

.leak-company {
    font-size: 24px;
    color: #ccd6f6;
    margin-bottom: 10px;
}

.leak-meta {
    display: flex;
    gap: 30px;
    color: #8892b0;
    font-size: 14px;
}

.leak-description {
    color: #a8b2d1;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 60px;
}

.leak-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #233554;
}

.leak-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* ДЕТАЛЬНАЯ СТРАНИЦА УТЕЧКИ */
.leak-detail-page {
    padding: 30px 0;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #64ffda;
    text-decoration: none;
    margin-bottom: 30px;
    font-size: 14px;
}

.back-link:hover {
    color: #52d3b8;
}

.leak-detail-header {
    background: rgba(23, 42, 69, 0.7);
    border: 1px solid #233554;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
}

.leak-detail-title {
    font-size: 36px;
    color: #ccd6f6;
    margin-bottom: 15px;
}

.leak-detail-meta {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.meta-label {
    font-size: 12px;
    color: #8892b0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-value {
    font-size: 18px;
    font-weight: 600;
    color: #64ffda;
}

.leak-detail-description {
    color: #a8b2d1;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.screenshots-section {
    margin: 30px 0;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.screenshot-item {
    border: 1px solid #233554;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

.screenshot-item:hover {
    transform: scale(1.05);
    border-color: #64ffda;
}

.screenshot-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.confidential-section {
    background: rgba(255, 107, 53, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 10px;
    padding: 25px;
    margin-top: 30px;
}

.confidential-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.confidential-title {
    font-size: 20px;
    color: #ff6b35;
    display: flex;
    align-items: center;
    gap: 10px;
}

.confidential-content {
    margin-bottom: 20px;
}

.confidential-file {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
}

.file-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.file-label {
    color: #8892b0;
}

.file-value {
    color: #ff6b35;
    font-weight: 500;
}

/* РЕПОРТЫ */
.report-page {
    padding: 30px 0;
}

.report-form {
    background: rgba(23, 42, 69, 0.7);
    border: 1px solid #233554;
    border-radius: 10px;
    padding: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: #ccd6f6;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: rgba(10, 25, 47, 0.5);
    border: 1px solid #233554;
    color: #ccd6f6;
    padding: 12px 15px;
    border-radius: 5px;
    font-size: 15px;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* УТИЛИТЫ */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: rgba(23, 42, 69, 0.3);
    border: 2px dashed #233554;
    border-radius: 10px;
}

.empty-state i {
    font-size: 60px;
    color: #233554;
    margin-bottom: 20px;
}

.empty-state h3 {
    color: #8892b0;
    margin-bottom: 10px;
}

.empty-state p {
    color: #495670;
}

/* ===== LEAKS DETAILED PAGE ===== */
.leak-detail-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    animation: fadeIn 0.5s ease-out;
}

/* Кнопка назад */
.back-to-leaks {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #64ffda;
    text-decoration: none;
    margin-bottom: 30px;
    padding: 12px 20px;
    border-radius: 8px;
    background: rgba(23, 42, 69, 0.5);
    border: 1px solid #233554;
    font-weight: 500;
    transition: all 0.3s;
}

.back-to-leaks:hover {
    background-color: rgba(100, 255, 218, 0.1);
    transform: translateX(-4px);
}

/* Основная карточка утечки */
.leak-main-card {
    background: rgba(23, 42, 69, 0.7);
    border: 1px solid #233554;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Заголовок с иконкой */
.leak-header-with-icon {
    display: flex;
    align-items: top;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #233554;
    
}

.leak-icon {
    flex-shrink: 0;
}

.leak-icon img {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    border: 2px solid #475569;
    object-fit: cover;
}

.leak-title-section {
    flex-grow: 1;
}

.leak-company-name {
    color: #ccd6f6;
    font-size: 28px;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.leak-price-section {
    flex-shrink: 0;
    text-align: right;
}

.leak-price-amount {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #64ffda, #52d3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.leak-price-label {
    font-size: 13px;
    color: #8892b0;
}

/* Категории с цветами как на leaks page */
.leak-categories-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.category-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag-proof {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.2);
}

.tag-encrypted {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.2);
}

.tag-confidential {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.tag-financial {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
    border: 1px solid rgba(52, 152, 219, 0.2);
}

.tag-government {
    background: rgba(155, 89, 182, 0.1);
    color: #9b59b6;
    border: 1px solid rgba(155, 89, 182, 0.2);
}

.tag-technology {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.tag-healthcare {
    background: rgba(236, 72, 153, 0.1);
    color: #ec4899;
    border: 1px solid rgba(236, 72, 153, 0.2);
}

.tag-education {
    background: rgba(241, 196, 15, 0.1);
    color: #f1c40f;
    border: 1px solid rgba(241, 196, 15, 0.2);
}

.tag-retail {
    background: rgba(230, 126, 34, 0.1);
    color: #e67e22;
    border: 1px solid rgba(230, 126, 34, 0.2);
}

/* Информационные карточки */
.leak-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.leak-info-card {
    background: rgba(10, 25, 47, 0.5);
    border: 1px solid #233554;
    border-radius: 8px;
    padding: 8px 10px;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.leak-info-card:hover {
    transform: translateY(-2px);
    border-color: rgba(100, 255, 218, 0.3);
    background: rgba(10, 25, 47, 0.7);
}

.leak-info-card-label {
    font-size: 11px;
    color: #8892b0;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 500;
    opacity: 0.9;
}

.leak-info-card-value {
    font-size: 15px;
    color: #ccd6f6;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Можно также сделать иконки меньше */
.leak-info-card-label i {
    font-size: 10px;
}

/* Описание */
.leak-description-section {
    margin-bottom: 25px;
}

.leak-description-title {
    color: #ccd6f6;
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.leak-description-content {
    color: #a8b2d1;
    line-height: 1.7;
    background: rgba(10, 25, 47, 0.5);
    border: 1px solid #233554;
    border-radius: 10px;
    padding: 22px;
    font-size: 15px;
}

/* Скриншоты */
.screenshots-container {
    background: rgba(23, 42, 69, 0.7);
    border: 1px solid #233554;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.screenshots-title {
    color: #ccd6f6;
    font-size: 18px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.screenshots-count {
    background: rgba(100, 255, 218, 0.2);
    color: #64ffda;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.screenshot-item {
    position: relative;
    border: 1px solid #233554;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    aspect-ratio: 4/3;
}

.screenshot-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border-color: #64ffda;
}

.screenshot-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.screenshot-index {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
}

/* Конфиденциальный раздел */
.confidential-container {
    background: rgba(23, 42, 69, 0.9);
    border: 1px solid #8b5cf6;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.confidential-decoration {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(124, 58, 237, 0.05));
    border-radius: 50%;
}

.confidential-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.confidential-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.confidential-title-section {
    flex-grow: 1;
}

.confidential-main-title {
    color: #ccd6f6;
    font-size: 22px;
    margin: 0 0 8px 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.confidential-description {
    color: #a8b2d1;
    line-height: 1.7;
    background: rgba(10, 25, 47, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 10px;
    padding: 22px;
    margin-bottom: 25px;
    font-size: 15px;
}

.confidential-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    border: none;
    padding: 16px 30px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.confidential-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.confidential-button-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.confidential-button-info {
    text-align: center;
    margin-top: 15px;
    color: #8892b0;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.confidential-placeholder {
    text-align: center;
    padding: 30px;
    background: rgba(10, 25, 47, 0.6);
    border: 1px dashed rgba(139, 92, 246, 0.2);
    border-radius: 10px;
    color: #8892b0;
}

.confidential-placeholder i {
    font-size: 32px;
    margin-bottom: 15px;
    color: #8b5cf6;
}

/* Модальное окно для скриншотов */
.screenshot-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.2s ease-out;
}

.screenshot-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    animation: zoomIn 0.3s ease-out;
}

.screenshot-modal-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.screenshot-modal-img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 12px;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Анимации */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { 
        opacity: 0;
        transform: scale(0.9);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

.leak-header {
    display: flex;
    align-items: flex-start; /* Изменили с center на flex-start */
    gap: 15px;
    margin-bottom: 15px;
    position: relative;
}

.leak-icon-wrapper {
    display: flex;
    align-items: center; /* Центрируем иконку вертикально в своем контейнере */
    height: 100%; /* Занимает всю высоту контейнера */
    margin-top: 8px; /* Легкий отступ сверху для смещения вниз */
}

.leak-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.leak-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid rgba(136, 146, 176, 0.2);
}

.leak-icon-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.1), rgba(136, 146, 176, 0.1));
    border: 1px solid rgba(136, 146, 176, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64ffda;
    font-size: 20px;
}

.leak-header-text {
    flex: 1;
}

.leak-company {
    margin: 0 0 8px 0;
    color: #ccd6f6;
    font-size: 20px;
    font-weight: 600;
}

.leak-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    color: #8892b0;
    font-size: 13px;
}

.leak-date, .leak-views {
    display: flex;
    align-items: center;
    gap: 5px;
}

.leak-date i, .leak-views i {
    color: #64ffda;
    font-size: 12px;
}

/* Для адаптивности */
@media (max-width: 768px) {
    .leak-header {
        gap: 12px;
    }
    
    .leak-icon-wrapper {
        margin-top: 2px;
    }
    
    .leak-icon, .leak-icon-placeholder {
        width: 40px;
        height: 40px;
    }
    
    .leak-icon-placeholder {
        font-size: 16px;
    }
    
    .leak-company {
        font-size: 18px;
    }
    
    .leak-meta {
        flex-direction: column;
        gap: 5px;
    }
}

