* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: #8c92ac;
    background-image: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.1) 50%), linear-gradient(90deg, rgba(255,0,0,0.06), rgba(0,255,0,0.02), rgba(0,0,255,0.06));
    background-size: 100% 2px, 3px 100%;
    font-family: "Verdana", "Tahoma", sans-serif;
    font-size: 11px;
    color: #333;
}

.main-container {
    width: 860px;
    margin: 20px auto;
    background-color: #f4f4f4;
    border: 1px solid #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.bevel-out {
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    border-right: 1px solid #888;
    border-bottom: 1px solid #888;
    background: #e1e1e1;
}

.bevel-in {
    border-top: 1px solid #666;
    border-left: 1px solid #666;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    background: #fff;
}

.accent-text {
    color: #0095ff;
    font-weight: bold;
}
.accent-bg {
    background-color: #0095ff;
    color: white;
}

.header {
    background: linear-gradient(to bottom, #ffffff 0%, #dcdcdc 100%);
    padding: 15px 20px;
    border-bottom: 1px solid #999;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.logo {
        font-family: "Arial Black", sans-serif;
    font-size: 24px;
    text-transform: uppercase;
    font-style: italic;
    letter-spacing: -1px;
    color: #333;
    text-shadow: 2px 2px 0px #fff;
}

.logo-span {
    color: #0095ff;
}

.top-search {
    display: flex;
    gap: 5px;
    align-items: center;
}

input[type="text"] {
    border: 1px solid #999;
    border-top: 1px solid #555;
    border-left: 1px solid #555;
    font-size: 10px;
    padding: 3px;
    background: #fff;
}

.btn-go {
    background: linear-gradient(to bottom, #0095ff 0%, #0078ce 100%);
    border: 1px solid #005c9e;
    color: white;
    font-weight: bold;
    font-size: 10px;
    padding: 3px 8px;
    cursor: pointer;
}

nav {
    background: #555;
    height: 30px;
    display: flex;
    align-items: flex-end;
    padding-left: 10px;
    border-top: 1px solid #fff;
    border-bottom: 2px solid #0095ff;
}

.nav-item {
    background: linear-gradient(to bottom, #eee 0%, #ccc 100%);
    padding: 6px 20px;
    margin-right: 2px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 10px;
    text-transform: uppercase;
    border-radius: 5px 5px 0 0;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    border-right: 1px solid #999;
}

.nav-item:hover {
    background: #fff;
    color: #0095ff;
}

.content-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 0; 
}

aside {
    background: #e6e6e6;
    padding: 10px;
    border-right: 1px solid #fff;
}

.sidebar-box {
    margin-bottom: 15px;
}

.sidebar-header {
    font-size: 10px;
    font-weight: bold;
    color: #555;
    text-transform: uppercase;
    border-bottom: 1px solid #999;
    margin-bottom: 5px;
    padding-bottom: 2px;
    display: flex;
    justify-content: space-between;
}

.sidebar-header::after {
    content: "[+]";
    font-size: 9px;
}

.link-list a {
    display: block;
    color: #446;
    text-decoration: none;
    padding: 3px 0;
    border-bottom: 1px dotted #ccc;
}
.link-list a:hover {
    background-color: #fff;
    color: #0095ff;
    padding-left: 5px;
}

main {
    padding: 15px;
    background: #fff;
}

.slide-banner {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #eee 0%, #fff 50%, #eee 100%);
    border: 1px solid #ccc;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.slide-banner::before {
    content: "";
    position: absolute;
    top: 20px; left: 20px; right: 20px; bottom: 20px;
    border: 1px dashed #ddd;
}

.slide-text {
    font-size: 28px;
    font-weight: bold;
    color: #ddd;
    text-transform: uppercase;
    letter-spacing: 5px;
    z-index: 2;
}

.section-title {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="4" height="4"><rect width="1" height="1" fill="%23ccc"/></svg>'); 
    background-color: #f0f0f0;
    border-left: 5px solid #0095ff;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.news-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.news-date {
    color: #0095ff;
    font-size: 9px;
    font-weight: bold;
}

.news-headline {
    font-weight: bold;
    font-size: 12px;
    color: #224;
    margin: 2px 0;
}

footer {
    background-color: #ddd;
    border-top: 1px solid #fff;
    padding: 10px;
    text-align: center;
    color: #666;
    font-size: 9px;
}

.footer-links a {
    color: #555;
    margin: 0 5px;
}

.status-bar {
    background: #333;
    color: #0f0;
    font-family: "Courier New", monospace;
    font-size: 10px;
    padding: 4px 10px;
    display: flex;
    justify-content: space-between;
}