
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-top: #1a1c2c;
    --color-bottom: #4a1919;
    --accent: #c0392b;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.7;
    color: #333;
    background: linear-gradient(180deg, var(--color-top), var(--color-bottom));
    background-attachment: fixed;
    min-height: 100vh;
    transition: background 0.5s ease;
}

#header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: #1a1c2c;
    padding: 3rem 1rem;
    border-bottom: 3px solid var(--accent);
    top: 0;
    z-index: 1000;
}

#header h1 {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 2rem;
    text-align: center;
}


.container {
    display: flex;
    max-width: 1400px;
    margin: 40px auto;
    gap: 40px;
    padding: 0 20px;
}

#sidebar {
    width: 200px;
    position: sticky;
    top: 150px;
    height: fit-content;
}

#sidebar ul { list-style: none; }

#sidebar a {
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    border-left: 2px solid transparent;
    transition: all 0.3s ease;
}

#sidebar a:hover, #sidebar a.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--accent);
    padding-left: 20px;
}


.content-wrapper {
    flex: 2;
    background: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    animation: fadeInUp 0.8s ease-out;
}

.titleText {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border-left: 6px solid var(--accent);
    padding-left: 20px;
}

h3 {
    color: #d35400;
    margin: 1.5rem 0 0.5rem 0;
    font-size: 1.3rem;
}

p { margin-bottom: 1.5rem; 
    line-height: 2.5;
}


ul { margin: 1rem 0 2rem 1.5rem; }

li { margin-bottom: 10px; }

.img-container {
    overflow: hidden;
    border-radius: 8px;
    margin: 2rem 0;
}

img {
    width: 100%;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

img:hover {
    transform: scale(1.05);
}

hr {
    border: 0;
    height: 1px;
    background: #eee;
    margin: 3rem 0;
}


@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}


@media (max-width: 768px) {
    .container { flex-direction: column; }
    #sidebar {
        width: 100%;
        position: relative;
        top: 0;
        display: flex;
        justify-content: center;
        background: rgba(0,0,0,0.2);
        border-radius: 8px;
    }
    #sidebar ul { display: flex; gap: 10px; }
    .content-wrapper { padding: 25px; }
}


.article-box {
    background: #fdf2f0;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid var(--accent);
}

.article-box em {
    display: block;
    color: #7f8c8d;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

#HumanRights h3 {
    margin-top: 0;
}

.timeline-container {
    position: relative;
    padding-left: 30px;
    margin-top: 2rem;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: #eee;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}


.timeline-item::before {
    content: '';
    position: absolute;
    left: -37px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent);
    border: 4px solid white;
    z-index: 1;
}

.timeline-date {
    font-weight: bold;
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.timeline-content h3 {
    margin: 0 0 10px 0;
    color: #2c3e50;
    font-size: 1.1rem;
}

.timeline-item.current::before {
    background: #27ae60;
    box-shadow: 0 0 10px rgba(39, 174, 96, 0.5);
}