iframe {
  max-width: 100%;
}
body {
            background-color: #050505;
            /* Creates a futuristic glowing wireframe grid */
            background-image: 
                linear-gradient(transparent 95%, rgba(141, 39, 178, 0.2) 95%), 
                linear-gradient(90deg, transparent 95%, rgba(141, 39, 178, 0.2) 95%);
            background-size: 50px 50px;
            color: #B44ED9; /* Neon Cyan */
            font-family: 'Courier New', Courier, monospace;
            margin: 0;
            padding: 20px;
        }

        /* Main Container with a glowing border */
        .system-container {
            max-width: 1200px;
            margin: 0 auto;
            margin-top: 50px;
            background: rgba(0, 0, 0, 0.85); /* Slightly transparent black */
            border: 2px solid #B44ED9; /* Neon Magenta */
            box-shadow: 0 0 15px rgba(255, 0, 255, 0.5), inset 0 0 15px rgba(255, 0, 255, 0.2);
            padding: 20px;
            /* Angled corners for that sci-fi UI look */
            clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
        }

        /* Header Area */
        header {
            border-bottom: 2px dashed #00ffff;
            padding-bottom: 20px;
            margin-bottom: 20px;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
        }

        h1 {
            color: #5F1ABA; /* Purple */
            font-size: 3.5em;
            margin: 0;
            text-transform: uppercase;
            text-shadow: 2px 2px 0px #DF87FF;
            letter-spacing: -2px;
        }

        .system-status {
            color: #00ff00; /* Hacker Green */
            font-size: 0.9em;
            text-shadow: 0 0 5px #00ff00;
        }

        /* Navigation Buttons */
        nav {
            display: flex;
            gap: 10px;
            margin-bottom: 30px;
        }

        .nav-btn {
            background-color: #000;
            color: #04D9D9;
            border: 1px solid #04D9D9;
            padding: 16px 23px;
            font-family: inherit;
            font-weight: bold;
            text-decoration: none;
            text-transform: uppercase;
            transition: 0.2s;
        }

        .nav-btn:hover {
            background-color: #04D9D9;
            color: #000;
            box-shadow: 0 0 10px #04D9D9;
        }

        /* Split Layout */
        .layout-grid {
            display: flex;
            gap: 20px;
        }

        /* Sidebar */
        .sidebar {
            width: 250px;
            flex-shrink: 0;  
            position: -webkit-sticky;
            position: sticky;
            top: 0px;
        }
        
        
        iframe.guest{
            display: block; /* iframes are inline by default */
            background: #000;
            border: none; /* Reset default border */
            height: 35vh; /* Viewport-relative units */
            width: 100vw;
        }

        .widget {
            border: 1px solid #04D9D9;
            padding: 15px;
            margin-bottom: 20px;
            background: #111;
            position: -webkit-sticky;
            position: sticky;
            top: 5vh;
        }

        .widget h3 {
            color: #04D9D9;
            margin-top: 0;
            border-bottom: 1px solid #333;
            padding-bottom: 5px;
            text-transform: uppercase;
            font-size: 1em;
        }

        .widget ul {
            list-style-type: square;
            padding-left: 15px;
            color: #fcee0a;
        }

        .widget a {
            color: #c0c0c0;
            text-decoration: none;
        }

        .widget a:hover {
            color: #fff;
            background: #04D9D9;
        }

        /* Main Content / Terminal Screen */
        .feed {
            flex-grow: 1;
        }

        .post {
            border-left: 4px solid #fcee0a;
            padding-left: 15px;
            margin-bottom: 40px;
            background: linear-gradient(90deg, rgba(252, 238, 10, 0.1) 0%, transparent 100%);
            padding-top: 5px;
            padding-bottom: 5px;
        }
        
        .mailing-list {
            border-left: 4px solid rgba(17, 125, 213, 1);
            padding-left: 15px;
            margin-bottom: 40px;
            background: linear-gradient(270deg, rgba(17, 125, 213, 0.88) 0%, transparent 100%);
            padding-top: 5px;
            padding-right: 5px;
            padding-bottom: 5px;
        }

        .caption {
            color: rgba(252, 238, 10, .8);
            font-size: 1em;
            justify-content: left;
            line-height: 1.3;
            text-indent: 100px;
        }
        
        .poems {
              color: #fff;
          font-size: 1.5em;
          justify-content: left;
          line-height: 1.6;
          padding-left: 50px;
        }
        
        .attributions {
                    color: #fff;
          font-size: 1.5em;
      
          text-align: right;
          line-height: 1.6;
          text-indent: 50px;
          padding-left: 50px;
        }

        .post-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #333;
            margin-bottom: 15px;
            padding-bottom: 5px;
        }

        .post-title {
            color: #fff;
            font-size: 1.5em;
            margin: 0;
            text-transform: uppercase;
        }

        .post-date {
            color: #ff00ff;
            font-size: 0.8em;
        }

        .post-body {
            color: #e0e0e0;
            line-height: 1.6;
        }
        
        .post-content {
          color: #fff;
          font-size: 1.5em;
          justify-content: left;
          line-height: 1.6;
          text-indent: 50px;
        }

        .read-more {
            display: inline-block;
            margin-top: 10px;
            color: #fcee0a;
            text-decoration: none;
            border-bottom: 1px dotted #fcee0a;
        }
        
        .read-more:hover {
            background: #fcee0a;
            color: #000;
        }

        /* Footer */
        footer {
            margin-top: 40px;
            border-top: 2px dashed #00ffff;
            padding-top: 15px;
            text-align: center;
            font-size: 0.8em;
            color: #555;
        }

        /* Mobile Adjustments */
        @media (max-width: 700px) {
            .layout-grid { flex-direction: column; }
            .sidebar { width: auto; }
            header { flex-direction: column; align-items: flex-start; gap: 10px; }
        }