* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 119, 204, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 50, 100, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 20, 40, 0.3) 0%, transparent 70%),
        linear-gradient(135deg, #000000 0%, #0a0a14 25%, #00050a 50%, #0a0a14 75%, #000000 100%);
    background-attachment: fixed;
    color: #e0e0e0;
    font-family: 'Arial', 'Helvetica Neue', sans-serif;
    line-height: 1.7;
    padding: 20px;
    padding-top: 100px;
    position: relative;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 119, 204, 0.05) 2px, rgba(0, 119, 204, 0.05) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0, 119, 204, 0.05) 2px, rgba(0, 119, 204, 0.05) 4px);
    pointer-events: none;
    z-index: 1;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at top, transparent 0%, rgba(0, 0, 0, 0.4) 100%),
        radial-gradient(ellipse at bottom, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Navigation with centered logo */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(5, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 119, 204, 0.3);
    padding: 15px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.logo-link {
    display: block;
    border: none;
}

.logo {
    height: 50px;
    width: auto;
    transition: all 0.3s;
    filter: drop-shadow(0 0 10px rgba(0, 119, 204, 0.3));
}

.logo:hover {
    filter: drop-shadow(0 0 20px rgba(0, 119, 204, 0.6));
    transform: scale(1.05);
}

/* Home page layout with sidebar */
.layout {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 2;
}

.sidebar {
    position: fixed;
    left: 40px;
    top: 150px;
    width: 220px;
}

.sidebar h3 {
    color: #0077cc;
    font-size: 1.2em;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.year-group {
    margin-bottom: 30px;
}

.year-group h4 {
    color: #ffffff;
    font-size: 1.1em;
    margin-bottom: 10px;
    font-weight: 600;
}

.sidebar ul {
    list-style: none;
    margin-left: 15px;
}

.sidebar li {
    margin: 8px 0;
}

.sidebar a {
    color: #808080;
    text-decoration: none;
    font-size: 0.9em;
    transition: all 0.3s;
    display: block;
    padding: 5px 0;
}

.sidebar a:hover {
    color: #0077cc;
    text-shadow: 0 0 8px rgba(0, 119, 204, 0.5);
    padding-left: 5px;
}

.main-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Container for monthly pages */
.container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

header {
    border-bottom: 2px solid #0077cc;
    padding: 40px 0;
    margin-bottom: 60px;
    background: linear-gradient(135deg, rgba(0, 119, 204, 0.15) 0%, rgba(0, 40, 80, 0.1) 50%, transparent 100%);
    box-shadow: 0 4px 20px rgba(0, 119, 204, 0.2);
}

header h1 {
    font-size: 3.5em;
    font-weight: 700;
    letter-spacing: -3px;
    color: #ffffff;
    margin-bottom: 8px;
    text-shadow: 0 0 30px rgba(0, 119, 204, 0.8), 0 2px 4px rgba(0, 0, 0, 0.8);
}

header .subtitle {
    color: #909090;
    font-size: 0.75em;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 500;
}

/* Intro section */
.intro {
    margin-bottom: 50px;
    padding: 30px;
    background: rgba(10, 20, 30, 0.5);
}

.intro p {
    color: #b0b0b0;
    font-size: 1.05em;
    line-height: 1.8;
}

.section-title {
    color: #0077cc;
    font-size: 1.3em;
    margin: 40px 0 30px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Post widgets for homepage */
.post-widget {
    display: block;
    margin-bottom: 30px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(10, 20, 30, 0.6) 0%, rgba(5, 10, 15, 0.4) 100%);
    border-left: 3px solid #333;
    transition: all 0.3s;
    text-decoration: none;
}

.post-widget:hover {
    border-left-color: #0077cc;
    background: linear-gradient(135deg, rgba(0, 119, 204, 0.1) 0%, rgba(5, 10, 15, 0.6) 100%);
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(0, 119, 204, 0.2);
}

.widget-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.7em;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.post-widget h3 {
    color: #ffffff;
    font-size: 1.5em;
    margin-bottom: 5px;
    font-weight: 700;
}

.post-widget h4 {
    color: #0077cc;
    font-size: 1.1em;
    margin-bottom: 20px;  /* Changed from 15px to 20px */
    font-weight: 400;
}

.widget-excerpt {
    color: #909090;
    font-size: 0.9em;
    line-height: 1.6;
}

/* Full entries on monthly pages */
.entry {
    margin-bottom: 80px;
    padding: 30px;
    border-left: 3px solid #0077cc;
    background: 
        linear-gradient(135deg, rgba(0, 119, 204, 0.12) 0%, transparent 50%),
        linear-gradient(135deg, rgba(10, 20, 30, 0.7) 0%, rgba(5, 10, 15, 0.5) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 40px rgba(0, 119, 204, 0.25), 
        0 0 60px rgba(0, 119, 204, 0.15),
        inset 0 1px 0 rgba(0, 119, 204, 0.15);
    position: relative;
    scroll-margin-top: 100px;
}

.entry::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 119, 204, 0.4), transparent);
}

.meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 0.7em;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

.entry h2 {
    font-size: 2em;
    color: #ffffff;
    margin-bottom: 5px;
    font-weight: 700;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.entry h3 {
    color: #0077cc;
    font-size: 1.2em;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-shadow: 0 0 10px rgba(0, 119, 204, 0.5);
}

.entry p {
    color: #b0b0b0;
    margin-bottom: 25px;
    font-size: 0.95em;
    font-weight: 300;
}

.player {
    margin: 30px 0;
    border: 1px solid #1a3a52;
    background: #000000;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(0, 119, 204, 0.1);
}

.player iframe {
    display: block;
    width: 100%;
}

/* Month navigation */
.month-nav {
    display: flex;
    justify-content: space-between;
    margin: 60px 0;
    padding: 20px 0;
}

.month-nav a {
    color: #0077cc;
    text-decoration: none;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 20px;
    background: rgba(0, 119, 204, 0.1);
    border: 1px solid #0077cc;
    transition: all 0.3s;
}

.month-nav a:hover {
    background: rgba(0, 119, 204, 0.2);
    box-shadow: 0 0 20px rgba(0, 119, 204, 0.3);
    text-shadow: 0 0 10px rgba(0, 119, 204, 0.6);
}

footer {
    margin-top: 100px;
    padding-top: 40px;
    border-top: 1px solid #1a1a1a;
    text-align: center;
    color: #4a4a4a;
    font-size: 0.75em;
    letter-spacing: 2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

/* Responsive */
@media (max-width: 1024px) {
    .sidebar {
        position: static;
        width: 100%;
        margin-bottom: 40px;
    }
    
    .layout {
        flex-direction: column;
    }
    
    body {
        padding-top: 90px;
    }
}

/* Breadcrumb navigation */
.breadcrumb {
    margin-bottom: 30px;
    font-size: 0.85em;
    color: #666;
    letter-spacing: 1px;
}

.breadcrumb a {
    color: #0077cc;
    text-decoration: none;
    transition: all 0.3s;
}

.breadcrumb a:hover {
    text-shadow: 0 0 8px rgba(0, 119, 204, 0.6);
}

/* Post navigation */
.post-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 60px 0;
    padding: 20px 0;
}

.post-nav a {
    color: #0077cc;
    text-decoration: none;
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 20px;
    background: rgba(0, 119, 204, 0.1);
    border: 1px solid #0077cc;
    transition: all 0.3s;
}

.post-nav a:hover {
    background: rgba(0, 119, 204, 0.2);
    box-shadow: 0 0 20px rgba(0, 119, 204, 0.3);
    text-shadow: 0 0 10px rgba(0, 119, 204, 0.6);
}

.back-to-month {
    font-weight: 600;
}

/* Month entries list on monthly pages */
.month-entries {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
}

.month-entry-link {
    display: block;
    padding: 25px;
    background: linear-gradient(135deg, rgba(10, 20, 30, 0.6) 0%, rgba(5, 10, 15, 0.4) 100%);
    border-left: 3px solid #333;
    transition: all 0.3s;
    text-decoration: none;
}

.month-entry-link:hover {
    border-left-color: #0077cc;
    background: linear-gradient(135deg, rgba(0, 119, 204, 0.1) 0%, rgba(5, 10, 15, 0.6) 100%);
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(0, 119, 204, 0.2);
}

.month-entry-link .meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.7em;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.month-entry-link h3 {
    color: #ffffff !important;
    font-size: 1.5em;
    margin-bottom: 5px;
    font-weight: 700;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.month-entry-link h4 {
    color: #0077cc !important;
    font-size: 1.1em;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 20px;  /* Changed from 0 to 20px */
}

.month-entry-link .widget-excerpt {
    color: #909090;
    font-size: 0.9em;
    line-height: 1.6;
    margin: 0;
}