
.info-page-wrapper {
    background: var(--bg-body);
    min-height: 100vh;
    padding-bottom: 80px;
}


.info-hero {
    position: relative;
    padding: 100px 20px 60px;
    text-align: center;
    color: white;
    overflow: hidden;
    background: #0f172a;
}
.info-hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, #1e293b 0%, #0f172a 100%);
    z-index: 1;
}
.info-hero-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
    z-index: 2;
}
.info-hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
}
.info-logo-wrapper {
    margin-bottom: 20px;
}
.info-logo {
    max-height: 80px;
    width: auto;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}
.info-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #f8fafc;
    letter-spacing: -1px;
}
.info-subtitle {
    font-size: 1.2rem;
    color: #94a3b8;
    font-weight: 400;
}


.info-message-section {
    margin-top: -30px;
    position: relative;
    z-index: 10;
}
.info-message-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    gap: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
    border-left: 6px solid var(--accent);
}
.info-message-icon {
    font-size: 3rem;
    line-height: 1;
    flex-shrink: 0;
}
.info-message-text h2 {
    margin: 0 0 10px 0;
    font-size: 1.5rem;
    color: var(--primary);
}
.info-message-text p {
    margin: 0;
    color: var(--text-main);
    line-height: 1.7;
    font-size: 1.05rem;
}


.info-section-header {
    text-align: center;
    margin: 60px 0 30px;
}
.info-section-header h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 5px;
}
.info-section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}


.info-tactical-map {
    height: 450px;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 2px solid #1e293b;
    background: #0f172a;
}
.tactical-marker {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tactical-dot {
    width: 12px;
    height: 12px;
    background: #ef4444;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 10px #ef4444;
}
.tactical-pulse {
    position: absolute;
    width: 30px;
    height: 30px;
    background: rgba(239, 68, 68, 0.4);
    border-radius: 50%;
    z-index: 1;
    animation: tacticalPulse 2s infinite;
}
@keyframes tacticalPulse {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}


.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
}
.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: #cbd5e1;
    transform: translateX(-50%);
    border-radius: 2px;
}
.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box;
}
.timeline-item.left {
    left: 0;
    text-align: right;
}
.timeline-item.right {
    left: 50%;
    text-align: left;
}
.timeline-dot {
    position: absolute;
    top: 30px;
    width: 20px;
    height: 20px;
    background: var(--accent);
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
    z-index: 2;
}
.timeline-item.left .timeline-dot {
    right: -10px;
}
.timeline-item.right .timeline-dot {
    left: -10px;
}
.timeline-content {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}
.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: var(--accent);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 28px;
    width: 0;
    height: 0;
    border-style: solid;
}
.timeline-item.left .timeline-content::before {
    right: -10px;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent white;
    filter: drop-shadow(2px 0 1px rgba(0,0,0,0.05));
}
.timeline-item.right .timeline-content::before {
    left: -10px;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
    filter: drop-shadow(-2px 0 1px rgba(0,0,0,0.05));
}

.timeline-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f1f5f9;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}
.timeline-date .time {
    color: var(--text-muted);
    font-weight: 500;
    border-left: 1px solid #cbd5e1;
    padding-left: 8px;
}
.timeline-item-title {
    font-size: 1.3rem;
    color: var(--primary);
    margin: 0 0 10px 0;
    line-height: 1.3;
}
.timeline-item-desc {
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}
.timeline-item-desc p {
    margin-top: 0;
}
.timeline-source {
    font-size: 0.85rem;
    color: var(--text-muted);
    border-top: 1px solid #f1f5f9;
    padding-top: 12px;
}
.timeline-source a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}
.timeline-source a:hover {
    text-decoration: underline;
}


@media (max-width: 768px) {
    .info-message-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .info-message-icon {
        margin: 0 auto;
    }
    .timeline-line {
        left: 20px;
    }
    .timeline-item {
        width: 100%;
        padding: 20px 0 20px 50px;
    }
    .timeline-item.left, .timeline-item.right {
        left: 0;
        text-align: left;
    }
    .timeline-item.left .timeline-dot, .timeline-item.right .timeline-dot {
        left: 10px;
        right: auto;
    }
    .timeline-item.left .timeline-content::before, .timeline-item.right .timeline-content::before {
        left: -10px;
        right: auto;
        border-width: 10px 10px 10px 0;
        border-color: transparent white transparent transparent;
        filter: drop-shadow(-2px 0 1px rgba(0,0,0,0.05));
    }
}