@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

body {
    background-color: #0a0a0f;
    color: #DE7356;
    font-family: 'Rethink Sans', 'Courier New', monospace;
    font-size: 18px;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-header {
    border-bottom: 2px solid #00b4d8;
    padding: 20px;
    text-align: center;
}

.site-header h1 {
    color: #00b4d8;
    font-size: 2.5rem;
    margin: 0;
}

.main-wrapper {
    display: flex;
    flex: 1;
}

.sidebar {
    width: 200px;
    border-right: 1px solid #00b4d8;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar h3 {
    color: #00b4d8;
    margin: 0;
}

.sidebar a {
    color: #a8d8ea;
    text-decoration: none;
    display: block;
    padding: 5px;
}

.sidebar a:hover {
    background: #00b4d8;
    color: #0a0a0f;
}

.content-block {
    flex: 1;
    padding: 40px;
    max-width: 800px;
    line-height: 1.6;
}

a {
    color: #00b4d8;
}

p.ai {
  color: #00b4d8 !important;
}


/* --- Mood/Intensity Styles --- */


.mild { 
    color: #888888; 
}
.annoyed { 
    color: #ffb703; 
}
.rage { 
    color: #ff0000; 
    font-weight: bold;
    text-shadow: 0 0 8px #ff0000;
    animation: flicker 0.15s infinite; /* Uses your existing flicker! */
}
/* This makes any bold text in your rants blue */
strong {
    color: #00b4d8;
}




@media (max-width: 600px) {
    .main-wrapper {
        flex-direction: column;
    }
    .sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #00b4d8;
    }
    .content-block {
    }
    strong {
    color: #00b4d8;
}
}
      
      
      
      