/* General Reset */
body {
    background-color: #000; /* Full black background */
    color: #e0e0e0;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100vh; /* Full viewport height */
}

/* Container */
.container {
    display: flex;
    flex-direction: column;
    height: 100%;
    max-width: 1200px;
    width: 80%;
    margin: 0 auto;
}

/* Header Section */
.main-header {
    text-align: center;
    background-color: #1e1e1e;
    padding: 40px 20px;
    border-bottom: 2px solid #00b0f0;
    position: sticky;
    top: 0;
    z-index: 10;
}

.site-logo {
    width: 80px;
    height: auto;
    margin-bottom: 15px;
}

.main-header h1 {
    color: #00b0f0;
    font-size: 3rem;
    margin: 0;
}

.main-header h2 {
    color: #e0e0e0;
    font-size: 1.8rem;
    margin: 5px 0;
}

.main-header .slogan {
    color: #b0b0b0;
    font-style: italic;
    margin-top: 10px;
}

/* Navigation Bar */
.navbar {
    background-color: #1e1e1e;
    padding: 10px 20px;
    border-bottom: 2px solid #00b0f0;
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0;
}

.navbar ul li {
    position: relative;
}

.navbar ul li a.nav-link {
    color: #80cfff; /* Lighter blue for navigation links */
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 3px;
    transition: background-color 0.3s, color 0.3s;
}

.navbar ul li a.nav-link:hover {
    color: #00b0f0;
    background-color: #252525;
    text-decoration: underline;
}

/* Dropdown Menu */
.navbar ul li ul.dropdown {
    display: none;
    position: absolute;
    background-color: #252525;
    list-style: none;
    padding: 10px;
    border: 1px solid #00b0f0;
    border-radius: 5px;
    top: 100%;
    left: 0;
    z-index: 20;
}

.navbar ul li ul.dropdown li {
    margin-bottom: 5px;
}

.navbar ul li ul.dropdown li:last-child {
    margin-bottom: 0;
}

.navbar ul li ul.dropdown li a {
    color: #80cfff; /* Lighter blue for dropdown links */
    text-decoration: none;
    padding: 5px;
    display: block;
    border-radius: 3px;
    transition: background-color 0.3s, color 0.3s;
}

.navbar ul li ul.dropdown li a:hover {
    background-color: #005f99;
    color: #ffffff; /* White text for better visibility on hover */
}

.navbar ul li:hover > ul.dropdown {
    display: block;
}

/* Content */
.content {
    flex: 1;
    overflow-y: auto;
    padding: 20px 0;
}

.post-feed {
    background-color: #1e1e1e;
    padding: 20px;
    border: 2px solid #00b0f0;
    border-radius: 10px;
    max-height: calc(100vh - 240px); /* Adjust for header, footer, and margins */
    overflow-y: auto;
}

.post h3 {
    color: #00b0f0;
}

/* Buttons */
.fancy-button {
    background-color: #00b0f0;
    color: #000;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    margin: 10px 0;
    font-size: 1rem;
}

.fancy-button:hover {
    background-color: #005f99;
}

/* Highlighted Names */
.highlight-name {
    color: #00b0f0; /* Bright blue for visibility */
    font-weight: bold; /* Bold styling for emphasis */
    text-decoration: underline; /* Optional for added distinction */
}

/* Footer */
.footer {
    text-align: center;
    padding: 10px 0;
    background-color: #1e1e1e;
    border-top: 2px solid #00b0f0;
}

/* Classified Warning */
.classified-warning {
    text-align: center;
    background-color: #2e2e2e; /* Dark background for contrast */
    color: #e0e0e0; /* Light text for readability */
    padding: 20px;
    margin-bottom: 20px;
    border: 3px solid #ff0000; /* Red border for a warning effect */
    border-radius: 10px;
}

.classified-warning p {
    font-size: 1.2rem;
    margin: 10px 0;
}

.classified-warning .classified {
    font-size: 2rem;
    font-weight: bold;
    background: repeating-linear-gradient(
        -45deg,
        #000,
        #000 10px,
        #fff 10px,
        #fff 20px
    ); /* Black and white striped effect */
    color: #ff0000; /* Red text color for urgency */
    padding: 10px;
    display: inline-block;
    text-transform: uppercase;
    border: 2px solid #ff0000; /* Matching red border */
}

.classified-warning ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.classified-warning ul li {
    color: #ff0000; /* Red text for danger */
    font-weight: bold;
    margin: 5px 0;
}

.warning-button {
    background-color: #ff0000;
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    border: 2px solid #ff0000;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.warning-button:hover {
    background-color: #cc0000;
    border-color: #cc0000;
}

.classified-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff0000;
    text-transform: uppercase;
    background: repeating-linear-gradient(
        -45deg,
        #000000,
        #000000 10px,
        #ffffff 10px,
        #ffffff 20px
    );
    padding: 5px;
    border: 2px solid #ff0000;
    display: inline-block;
}

/* Modal Styling */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background-color: #1e1e1e;
    color: #e0e0e0;
    padding: 20px;
    border: 3px solid #ff0000;
    border-radius: 10px;
    text-align: center;
    width: 80%;
    max-width: 600px;
}

.modal-content h2 {
    color: #ff0000;
    margin-bottom: 20px;
}

.modal-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.modal-content ul li {
    margin: 10px 0;
    color: #ff8080;
    font-weight: bold;
}
