/* General Styles */
body {
    font-family: 'Georgia', serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    color: #333;
}

/* Header */
header {
    background: linear-gradient(135deg, #a40000, #7a0000);
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Navigation */
nav {
    background-color: #ddd;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
    gap: 20px;
}
nav ul li {
    transition: transform 0.2s ease-in-out;
}
nav ul li:hover {
    transform: scale(1.1);
}
nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 16px;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}
nav ul li a:hover {
    background: #a40000;
    color: white;
}

/* Main Content */
main {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: transform 0.2s ease-in-out;
}
main:hover {
    transform: scale(1.02);
}

#headline h2 {
    color: darkred;
    text-transform: uppercase;
    border-bottom: 2px solid darkred;
    padding-bottom: 5px;
    letter-spacing: 1px;
}

/* Fake News Section */
#fake-news ul {
    list-style-type: none;
    padding: 0;
}
#fake-news ul li {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    transition: background 0.3s ease-in-out;
}
#fake-news ul li:hover {
    background: #f0e0e0;
}

/* Comments Section */
.comment {
    display: flex;
    align-items: flex-start;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    background: #fafafa;
    border-radius: 5px;
    transition: box-shadow 0.3s ease-in-out;
}
.comment:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.comment img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    border: 2px solid #a40000;
}
.comment a {
    text-decoration: none;
    color: black;
    font-weight: normal;
}

/* Footer */
footer {
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, #a40000, #7a0000);
    color: white;
    font-size: 14px;
    margin-top: 20px;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.2);
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.3s ease-in-out;
}
.cookie-notice button {
    background: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 3px;
    transition: background 0.3s ease-in-out;
}
.cookie-notice button:hover {
    background: #ddd;
}

/* Hover Effects */
a {
    transition: color 0.3s ease-in-out;
}
a:hover {
    color: darkred;
}

