/* LEAKS PAGE */
.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;
}