/* RESET & BASICS */
body {
    margin: 0;
    padding: 0;
    /* Vista/Aero-inspired layered background: deep teal to bright green with a warm lower-left sheen */
    background-color: #043a3f;
    background-image:
        radial-gradient(1200px 600px at 15% 85%, rgba(255,250,210,0.85), rgba(255,250,210,0.15) 8%, transparent 28%),
        linear-gradient(135deg, #083842 0%, #0d6b6a 28%, #0fb8c1 52%, #7fe7c7 72%, #d9f27f 100%);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    font-family: "Trebuchet MS", "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Tahoma, sans-serif;
    color: #333;
    font-size: 13px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Bright lower-left sheen to mimic the sun-glow in the Vista wallpaper */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(600px 250px at 12% 82%, rgba(255,255,230,0.9) 0%, rgba(220,255,200,0.45) 12%, rgba(180,245,200,0.12) 28%, transparent 45%);
    mix-blend-mode: screen;
    filter: blur(18px) saturate(120%);
    opacity: 0.95;
}

/* Soft diagonal beams and subtle streaks (the "Aero" ribbons) */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: repeating-linear-gradient(-25deg, rgba(255,255,255,0.06) 0px, rgba(255,255,255,0.06) 2px, transparent 14px, transparent 34px);
    mix-blend-mode: overlay;
    opacity: 0.55;
    filter: blur(8px);
    transform: translateZ(0);
}

a { text-decoration: none; color: #0056b3; }
a:hover { text-decoration: underline; color: #007bff; }

/* MAIN CONTAINER - The "Glass" Wrapper */
#container {
    width: 960px; /* The standard width of the 2000s */
    margin: 20px auto;
    background: rgba(255, 255, 255, 0.85); /* Milky glass effect */
    border: 1px solid #fff;
    border-radius: 10px; /* CSS3 - degrades gracefully in old browsers */
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
    padding: 10px;
}

/* HEADER */
#header {
    height: 120px;
    background: linear-gradient(to bottom, #1e5799 0%,#2989d8 50%,#207cca 51%,#7db9e8 100%); /* W3C */
    /* Fallback for old IE */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#7db9e8',GradientType=0 ); 
    border-radius: 8px 8px 0 0;
    border: 1px solid #0d4680;
    position: relative;
    margin-bottom: 10px;
    overflow: hidden;
}

#header h1 {
    color: white;
    margin: 0;
    padding: 20px 0 0 20px;
    font-size: 32px;
    text-shadow: 2px 2px 2px #000;
    font-family: "Arial Black", "Arial", sans-serif;
}

#header .slogan {
    color: #e0f0ff;
    padding-left: 22px;
    font-style: italic;
    font-size: 14px;
}

/* Glossy reflection overlay for header */
#header-glass {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.1) 100%);
}

/* LAYOUT: SIDEBAR & CONTENT (Using Floats) */
#sidebar {
    width: 220px;
    float: left;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px;
}

#content {
    width: 710px; /* 960 - 220 - padding/margins */
    float: right;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    min-height: 400px;
}

/* SIDEBAR STYLES */
.widget {
    margin-bottom: 10px;
    border: 1px solid #999;
    border-radius: 4px;
    overflow: hidden;
}

.widget-title {
    background: linear-gradient(to bottom, #4c4c4c 0%,#2c2c2c 50%,#000000 51%,#131313 100%);
    color: white;
    font-weight: bold;
    padding: 6px 10px;
    text-shadow: 1px 1px 0 #000;
    border-bottom: 1px solid #000;
}

.widget-content {
    background: #e6e6e6;
    padding: 5px;
}

/* Navigation Menu Buttons */
ul.nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.nav li {
    margin-bottom: 2px;
}

ul.nav li a {
    display: block;
    padding: 6px 10px;
    background: linear-gradient(to bottom, #ffffff 0%,#f1f1f1 50%,#e1e1e1 51%,#f6f6f6 100%);
    border: 1px solid #ccc;
    border-radius: 3px;
    color: #333;
    font-weight: bold;
    text-decoration: none;
}

ul.nav li a:hover {
    background: linear-gradient(to bottom, #dff4ff 0%,#c2e3fa 50%,#a3d4f5 51%,#cceeff 100%);
    border-color: #6ab5e6;
}

/* MAIN CONTENT STYLES */
.post {
    padding: 15px;
    border-bottom: 1px dashed #ccc;
}

.post h2 {
    color: #4b8a0c; /* Frutiger Green */
    margin-top: 0;
    border-bottom: 2px solid #7bc043;
    display: inline-block;
}

.post-meta {
    font-size: 10px;
    color: #888;
    background: #f9f9f9;
    padding: 3px;
    border: 1px solid #eee;
    margin-bottom: 10px;
}

.post-img {
    float: left;
    margin: 0 15px 10px 0;
    border: 4px solid #fff;
    box-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}

/* FOOTER */
#footer {
    clear: both; /* Crucial for clearing floats */
    margin-top: 10px;
    background: linear-gradient(to bottom, #4c4c4c 0%,#131313 100%);
    color: #ccc;
    text-align: center;
    padding: 15px;
    border-radius: 0 0 8px 8px;
    font-size: 11px;
}

/* UTILITY */
.clear { clear: both; }

/* BLINK TAG SIMULATION */
.blink { animation: blinker 1s linear infinite; }
@keyframes blinker { 50% { opacity: 0; } }