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

  body {
    background: black;
    color: white;
  }

.main {
  width: 80%;     /* stretch across 80% */
  margin: 0;      /* hug the left edge */
}
  /* Full-width sections */
  .full-width {
    width: 800px;;
    height: 200px;
    padding: 20px;
    text-align: left;
    font-family: 'overpass mono';
    font-size: 20px;
    background: #222;
  }

  #top-section { background: black; margin-bottom: 20px; text-align:justify; font-size:26px; font-style:italic; color:#898590;letter-spacing:-2px; overflow-y:auto; scrollbar-width: thin; scrollbar-color: #888 transparent;}
  #bottom-section { background: #7f8c8d; width:100%; }

  /* Flex rows */
.row {
  display: flex;
  flex-wrap: nowrap;       /* Prevent wrapping */
  gap: 10px;               /* horizontal spacing in px */
  margin-bottom: 20px;
}

  .box {
    background: #1e1e1e;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .title-bar {
    background: #000;
    padding: 2px;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    border-radius: 0;
    height:25px;
  }

  .content {
    padding: 10px;
  }

#spotify { flex: 0 0 400px;}
#updates { flex: 0 0 450px;}

#updates .content { 
  max-height: 150px;
  overflow-y: auto; }

.box ul {
list-style: none;
margin-left: 0;
padding-left: 0;
}

li {
padding-left: 5px;
padding-bottom:5px;
padding-top:5px;
text-indent: 0;
border-bottom: 1px dashed #635D66;
}

li:before {
content: "✶";
padding-right: 8px;
line-height: 18px;
font-size:13px;
}

#box3 { flex: 0 0 500px;}
#box4 { flex: 0 0 350px; padding: 0; background:#000;}

#box3 .content { 
  max-height: 350px;
  }

.responsive-img {
  width: 100%;      /* scales to the width of the box */
  height: auto;     /* keeps aspect ratio */
  display: block;   /* removes inline spacing */
  border-radius: 8px; /* optional rounded corners */
}

  /* Masonry section */
  .masonry {
    column-count: 2;      /* 2 equal columns */
    column-gap: 20px;     /* horizontal spacing in px */
  }

  .masonry .box {
    display: inline-block; /* required for multi-column layout */
    width: 100%;           /* fill column width */
    margin-bottom: 20px;   /* vertical spacing in px */
    /* Assign different heights in px */
  }

  #box5 .content { height: 150px; background: #1e1e1e; }
  #box6 .content { height: 250px; background: #1e1e1e; }
  #box7 .content { height: 200px; background: #1e1e1e; }
  #box8 .content { height: 180px; background: #1e1e1e; }

  /* Feed Reader inside Box 3 */
  #feed-reader {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    padding: 10px;
    box-sizing: border-box;
    background-color: #1e1e1e; 
  }

  /* Feed cards */
  .feed-card {
    background-color: #2a2a2a;
    border-radius: 4px;
    padding: 10px 12px;
    margin-bottom: 10px;
  }

  .feed-card .title {
    font-weight: bold;
    font-size: 13px;
    color: #DDB87C;
    margin-bottom: 4px;
    border-bottom:1px dashed;
  }

  .feed-card .content-inner {
    font-size: 20px;
    color: #B0B5AC;
    line-height: 1.4;
  }

