
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Press Start 2P', monospace; 
    
}

/* Body text should be Helvetica */
body, p, .window-content, .article-content, .book-content, .message-text {
    font-family: 'Helvetica', Arial, sans-serif;
}

body {
    background-image: url('hintergrundpeo.png');
    background-position: top center;
    font-size: 16px;
    color: #000;
    padding-top: 100px; 
    overflow-y: auto; 
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Main content area - centered between sidebars */
.main-content {
    margin-left: 250px; /* Space for left sidebar */
    margin-right: 250px; /* Space for right sidebar */
    min-width: 400px;
    transition: all 0.3s ease;
    padding: 0 30px;
}
.comingsoon {
    font-size: medium;
    text-align: center;
    margin-top: 50px;

}

.main-title {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    text-align: left;
    background-color: #fff;
    padding: 20px;
    z-index: 1000;
    font-size: 5vw; 
    white-space: nowrap; 
}
.main-title  a {
 text-decoration: none;
    color: #000;   
}
.main-title a:hover {
    color: #5f72bd;
}

.sidebar {
    position: fixed; /* Sidebar is fixed on the left */
    width: 220px;
    padding: 30px;
    top: 120px;
    left: 0;
    height: calc(100% - 120px);
    background-color: transparent;
    border-right: 3px solid #000;
    margin-top: 20px;
    overflow-y: auto; 
    scrollbar-width: thin; 
}

.menu li {
    list-style-type: none;
    margin-bottom: 15px;
}
.menu a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    border: 3px solid #000; 
    padding: 10px;
    display: block;
    font-size: 13px;
    word-wrap: break-word;
    white-space: normal;
    overflow-wrap: break-word;
    hyphens: auto;
    background-color: #FFF;
    box-shadow: 3px 3px 0 #000; 
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.menu a:hover {
    transform: scale(1.02);
    box-shadow: 5px 5px 0 #000; 
}
.menu a:active {
    transform: scale(1); 
    box-shadow: 1px 1px 0 #000; 
}


.right-sidebar {
    width: 220px;
    padding: 20px;
    position: fixed;
    top: 120px;
    right: 0;
    height: calc(100% - 120px);
    background-color: transparent;
    border-left: 3px solid #000;
    margin-top: 20px;
    overflow-y: auto;
    scrollbar-width: thin; 
}
.right-sidebar h2 {
    font-size: 18px;
    color: #5f72bd;
    margin-bottom: 30px;
    margin-top: 10px;
}

.right-menu .subcategory {
    color: black;
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: bold;
}
.right-menu a {
    text-decoration: none;
    color: #5f72bd;
    font-size: 11px;
    padding: 5px;
    display: block;
    margin-bottom: 5px;
}
.right-menu a:hover {
    text-decoration: underline;
}


.sidebar::-webkit-scrollbar,
.right-sidebar::-webkit-scrollbar {
    width: 8px; 
}
.sidebar::-webkit-scrollbar-track,
.right-sidebar::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
.sidebar::-webkit-scrollbar-thumb,
.right-sidebar::-webkit-scrollbar-thumb {
    background: #888; 
    border-radius: 10px; 
}
.sidebar::-webkit-scrollbar-thumb:hover,
.right-sidebar::-webkit-scrollbar-thumb:hover {
    background: #555; 
}


.centered-post-window {
    background-color: #FFF;
    padding: 20px;
    border: 3px solid #000;
    box-shadow: 3px 3px 0 #000;
    position: relative;
    margin: 40px auto 30px auto;
    overflow-y: auto; 
    box-sizing: border-box;
    width: calc(100vw - 500px - 40px);
    max-width: calc(100vw - 500px - 40px);
}

.mac-window {
    background-color: #FFF;
    padding: 20px;
    border: 3px solid #000;
    height: 400px; 
    box-shadow: 3px 3px 0 #000;
    position: relative;
    margin: 30px auto 30px auto; 
    overflow-y: auto;
    box-sizing: border-box;
    width: calc(100vw - 500px - 40px);
    max-width: calc(100vw - 500px - 40px);
}

.window-header {
    text-align: center;
    background-color: #f2f2f2;
    padding: 5px;
    font-size: 22px;
    border: 2px solid #000;
    margin-bottom: 5px;
    font-family: 'Press Start 2P', monospace;
    position: sticky; 
    top: 0; 
    z-index: 1000;
}
.window-title {
    text-align: center;
    font-size: 18px;
    margin-bottom: 5px;
    margin-top: 5px;
}

.mac-window:hover {
    transform: scale(1.02); 
    box-shadow: 5px 5px 0 #000;
}
.mac-window:active {
    transform: scale(1); 
    box-shadow: 1px 1px 0 #000;
}

.window-content {
    font-size: 14px;
    line-height: 1.5;
    padding: 10px;
}
.window-content em {
    font-size: 11px;
    position: absolute;
    bottom: 5px;
    left: 20px;
}

.main-footer {
    background-color: #000;
    color: #FFF;
    padding: 20px;
    border-top: 3px solid #FFF;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 1000;
    
}

.read-more-button {
    display: block;
    width: 120px;
    text-align: center;
    padding: 8px;
    font-size: 10px;
    color: #FFF;
    background-color: #000;
    border: 3px solid #000;
    margin: 10px auto 0 auto;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 3px 3px 0 #000;
    position: relative;
    grid-column: 1 / -1;
}
.read-more-button:hover {
    transform: scale(1.02);
    box-shadow: 5px 5px 0 #000;
}
.read-more-button:active {
    transform: scale(1);
    box-shadow: 1px 1px 0 #000;
}

.main-taskbar {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f2f2f2;
    padding: 7px;
    border-bottom: 3px solid #000;
    border-top: 3px solid #000;
}
.taskbar-content {
    display: flex;
    justify-content: center;
    width: 100%;
}
.taskbar-item {
    font-size: 20px;
    font-family: 'Press Start 2P', monospace;
    color: #000;
    text-align: center;
}
.taskbar-item a {
    text-decoration: none;
    color: #000;
}

.impressum-link {
    margin-top: auto;
    padding-top: 20px;
}
.impressum-link a {
    text-decoration: none;
    color: #FFF;
    font-weight: bold;
    border: 3px solid #000; 
    padding: 10px;
    display: block;
    font-size: 11px;
    text-align: center;
    background-color: #000;
    box-shadow: 3px 3px 0 #000; 
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.impressum-link a:hover {
    transform: scale(1.02); 
    box-shadow: 5px 5px 0 #000; 
}
.impressum-link a:active {
    transform: scale(1); 
    box-shadow: 1px 1px 0 #000;
}
.article-image {
    width: 80%;
}
.newsletter-link a {
    text-decoration: none;
    color: #5f72bd;
    font-weight: bold;
    border: 3px solid #5f72bd; 
    padding: 10px;
    display: block;
    font-size: 11px;
    text-align: center;
    background-color: #fff;
    box-shadow: 3px 3px 0 #5f72bd; 
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    margin-top: 100px;
}
.newsletter-link a:hover {
    transform: scale(1.02); 
    box-shadow: 5px 5px 0 #5f72bd; 
}

.instagram-link a:active {
    transform: scale(1);
    box-shadow: 1px 1px 0 #5f72bd; 
}
.instagram-link a {
    text-decoration: none;
    color: #5f72bd;
    font-weight: bold;
    border: 3px solid #5f72bd; 
    padding: 10px;
    display: block;
    font-size: 11px;
    text-align: center;
    background-color: #fff;
    box-shadow: 3px 3px 0 #5f72bd; 
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    margin-top: 10px;
}
.instagram-link a:hover {
    transform: scale(1.02); 
    box-shadow: 5px 5px 0 #5f72bd; 
}

.tiktok-link a {
    text-decoration: none;
    color: #5f72bd;
    font-weight: bold;
    border: 3px solid #5f72bd; 
    padding: 10px;
    display: block;
    font-size: 11px;
    text-align: center;
    background-color: #fff;
    box-shadow: 3px 3px 0 #5f72bd; 
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    margin-top: 10px;
}
.tiktok-link a:hover {
    transform: scale(1.02); 
    box-shadow: 5px 5px 0 #5f72bd;
}
.tiktok-link a:active {
    transform: scale(1); 
    box-shadow: 1px 1px 0 #5f72bd; 
}

.legal-content {
    max-width: 800px;
    margin: 100px auto;
    padding: 20px;
    background-color: #FFF;
    border: 3px solid #000;
    line-height: 1.8;
    font-size: 14px;
    width: calc(100% - 270px); 
}
.legal-content h1, .legal-content h2 {
    font-size: 18px;
    margin-bottom: 15px;
    margin-top: 30px;
}
.legal-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.posts-container {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 20px; 
    padding: 20px;
}
.post-box {
    padding: 20px;
    background-color: #FFF;
    border: 3px solid #000; 
    cursor: pointer;
    transition: transform 0.2s ease;
    box-shadow: 3px 3px 0 #000;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    height: fit-content;
}

.post-box:hover {
    transform: scale(1.02); 
    box-shadow: 5px 5px 0 #000;
}
.post-box h2 {
    margin-top: 5px;
    font-size: 18px;
    margin-bottom: 10px;
}
.post-box p {
    
    font-size: 14px;
}
.post-box em {
    display: block;
    margin-top: 15px;
    font-size: 12px;
    color: #555;
    margin-bottom: 10px;
}

.category-posts {
    padding: 20px;
    display: flex;
    flex-direction: column; 
    align-items: center; 
    background-color: #5f72bd; 
    border: 2px solid #000;
    box-shadow: 5px 5px 0px 0px #000;
    border-radius: 10px;
    overflow-y: auto; 
    margin: 40px auto; 
    position: relative;
    box-sizing: border-box;
    width: calc(100vw - 500px - 40px);
    max-width: calc(100vw - 500px - 40px);
}
.category-posts .blog-post-header {
    font-size: 22px;
    text-align: center;
    margin-bottom: 10px;
    margin-top: 20px;
    
}
.category-posts .blog-post-date {
    font-size: 12px;
    color: #555;
    margin-bottom: 5px;
}
.category-posts .blog-post-container {
    background-color: #FFF;
    padding: 20px;
    border: 3px solid #000;
    box-shadow: 3px 3px 0 #000;
    margin: 5px; 
    width: calc(100% - 10px); 
    position: relative;
    box-sizing: border-box;
    min-width: 0;
}
.category-posts .blog-post-container:hover {
    transform: scale(1.02);
    box-shadow: 5px 5px 0 #000;
}
.category-posts .blog-post-container:active {
    transform: scale(1);
    box-shadow: 1px 1px 0 #000;
}


.menu-button {
    display: none; 
}

.btn-click {
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}
.btn-click:active {
    transform: translateY(2px);
}

.uploadedblogpost-container {
    padding: 20px;
    background-color: #a5b2e3;
    border: 2px solid #000;
    box-shadow: 5px 5px 0px 0px #000;
    border-radius: 10px;
    height: 750px; 
    overflow-y: auto; 
    margin: 40px auto;
    box-sizing: border-box;
    width: calc(100vw - 500px - 40px);
    max-width: calc(100vw - 500px - 40px);
}
.uploadedblogpost-link {
    text-decoration: none;
    color: inherit; 
    display: block; 
}
.uploadedblogpost-window {
    background-color: #FFF;
    padding: 20px;
    border: 3px solid #000;
    box-shadow: 3px 3px 0 #000;
    margin-bottom: 40px;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    width: calc(100%);
}
.uploadedblogpost-window:hover {
    transform: scale(1.02);
    box-shadow: 5px 5px 0 #000;
}
.uploadedblogpost-header {
    font-size: 24px;
    margin-bottom: 40px; 
    text-align: center;
    margin-top: 20px;
    text-shadow: white;
}
.uploadedblogpost-date {
    font-size: 14px;
    margin-bottom: 40px; 
    text-align: center;
}
.uploadedblogpost-content {
    font-size: 20px;
    line-height: 1.8;
    margin-top: 40px; 
    margin-bottom: 50px; 
 
   
}

.window-content em {
    font-size: 12px;
    color: #666;
}

.post-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 10px auto;
    display: block;
}

.newsletter-content {
    max-width: 600px;
    margin: 100px auto; 
    padding: 30px;
    background-color: #FFF;
    border: 3px solid #000; 
    box-shadow: 5px 5px 0 #000; 
    border-radius: 10px; 
    text-align: center; 
}
.newsletter-content h2 {
    font-size: 24px; 
    margin-bottom: 20px; 
    color: #000;
}
.newsletter-content input[type="email"] {
    width: 80%; 
    padding: 15px; 
    margin-bottom: 20px; 
    border: 3px solid #000; 
    border-radius: 5px; 
    box-shadow: 3px 3px 0 #000; 
    font-size: 14px; 
    font-family: 'Press Start 2P', monospace; 
}
.newsletter-content input[type="submit"] {
    padding: 15px 30px; 
    border: 3px solid #000;
    background-color: #5f72bd;
    color: #FFF; 
    cursor: pointer; 
    box-shadow: 3px 3px 0 #000; 
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out; 
    font-size: 14px; 
    font-family: 'Press Start 2P', monospace; 
}
.newsletter-content input[type="submit"]:hover {
    transform: scale(1.02); 
    box-shadow: 5px 5px 0 #000;
}
.newsletter-content input[type="submit"]:active {
    transform: scale(1); 
    box-shadow: 1px 1px 0 #000; 
}
.newsletter-content p {
    font-size: 14px; 
    margin-top: 20px; 
    line-height: 1.6;
    color: #555; 
}

#responseMessage {
    font-size: 16px;
    font-family: 'Press Start 2P', monospace;
    color: #000;
    padding: 15px;
    border: 3px solid #000;
    background-color: #f2f2f2;
    box-shadow: 3px 3px 0 #000;
    margin-top: 20px;
    text-align: center;
    display: none;
}
#responseMessage.success {
    color: #28a745;
    background-color: #e6f9e6;
    border-color: #28a745;
    box-shadow: 3px 3px 0 #28a745;
}
#responseMessage.error {
    color: #dc3545;
    background-color: #fcebea;
    border-color: #dc3545;
    box-shadow: 3px 3px 0 #dc3545;
}

.category-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); 
    gap: 20px; 
    padding: 20px;
    margin-left: 220px; 
    margin-right: 50px; 
    width: calc(100% - 270px);
    box-sizing: border-box; 
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid #000; 
    box-shadow: 3px 3px 0 #000; 
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    background-color: #fff; 
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%; 
    height: 200px; 
    background-color: #ffffff; 
}
.gallery-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover; 
}
.gallery-item:hover {
    transform: scale(1.05); 
    box-shadow: 5px 5px 0 #000; 
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); 
    display: none; 
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.popup-window {
    background-color: #FFF;
    width: 1080px; 
    height: calc(100vh - 200px); 
    padding: 20px;
    border: 3px solid #000;
    box-shadow: 5px 5px 0 #000; 
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.popup-window img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; 
}
.close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
    background-color: #000;
    color: #FFF;
    padding: 5px 10px;
    border: none;
    transition: background-color 0.2s;
}
.close-popup:hover {
    background-color: #444;
}


.message {
    display: none;
    padding: 10px;
    margin-top: 15px;
    font-size: 14px;
    border: 2px solid;
    border-radius: 5px;
}
.message.success {
    border-color: green;
    color: green;
    background-color: #e7f9e7;
}
.message.error {
    border-color: red;
    color: red;
    background-color: #f9e7e7;
}


/* ===== RESPONSIVE DESIGN - PROPER BREAKPOINTS ===== */

/* Large screens - keep original layout */
@media (min-width: 1100px) {
    .main-title {
        font-size: 50px; 
    }
}



/* Hide right sidebar when screen is less than 50% of typical desktop width (960px) */
@media (max-width: 960px) {
    .main-title {
        font-size: 4.2vw; 
        text-align: center; 
    }
    .right-sidebar {
        display: none; 
    }
    .main-content {
        margin-right: 0;
        padding: 0 30px;
    }
    .category-posts, .uploadedblogpost-container {
        margin: 40px 20px 30px auto;
        width: calc(100vw - 250px - 20px);
        max-width: calc(100vw - 250px - 20px);
    }
    
    .latest-posts-container {
        margin: 20px 20px 30px 240px;
    }
    
    /* Books layout at 50% screen width */
    .books-container {
        margin: 40px 20px 30px 240px !important;
        padding: 20px !important;
        width: calc(100vw - 500px - 40px) !important;
        max-width: calc(100vw - 500px - 40px) !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .book-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }
    
}

/* Tiny Screen Message */
.tiny-screen-message {
        display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    color: #FFF;
    font-family: 'Press Start 2P', monospace;
    font-size: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
    box-sizing: border-box;
}

.tiny-screen-message h1 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #FFF;
}

.tiny-screen-message p {
    font-size: 14px;
    line-height: 1.6;
    max-width: 400px;
    margin-bottom: 20px;
}

.tiny-screen-message .resize-hint {
    font-size: 12px;
    color: #888;
    margin-top: 20px;
}

/* Hide content when screen is less than 50% of typical desktop width */
/* For 1920px desktop: 50% = 960px */
/* For 1366px laptop: 50% = 683px */
/* For 1024px tablet: 50% = 512px */
@media (max-width: 960px) {
    .desktop-container {
        display: none !important;
    }
    
    .mobile-container {
        display: block !important;
    }
    
    .tiny-screen-message {
        display: flex !important;
    }
}

/* Hide left sidebar when screen is less than 25% of typical desktop width (480px) */
@media (max-width: 480px) {
    .main-title {
        font-size: 3.5vw; 
        text-align: center; 
    }
    .sidebar {
        display: none !important; 
    }
    .right-sidebar {
        display: none !important; 
    }
    .main-content {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 30px !important;
    }
    
    .category-posts, .uploadedblogpost-container, .centered-post-window, .mac-window {
        margin: 20px 30px 50px 30px !important;
        padding: 15px !important;
        width: calc(100vw - 60px) !important;
        min-width: calc(100vw - 60px) !important;
        max-width: calc(100vw - 60px) !important;
    }
    .books-container {
        margin: 20px auto !important;
        padding: 15px !important;
        width: 80vw !important;
        min-width: 80vw !important;
        max-width: 80vw !important;
    }
    
    .guestbook-container {
        margin: 20px auto !important;
        padding: 15px !important;
        width: 80vw !important;
        min-width: 80vw !important;
        max-width: 80vw !important;
    }
    .about-section {
        width: 100% !important;
        margin: 20px 0 !important;
        padding: 15px !important;
    }
    .legal-content, .newsletter-content {
        width: 100% !important;
        margin: 20px 0 !important;
        padding: 15px !important;
    }
    
    /* Show mobile navigation on all pages */
    .mobile-nav {
        display: block !important;
        position: fixed;
        top: 100px;
        left: 0; 
        right: 0; 
        background-color: #fff;
        border-bottom: 3px solid #000;
        padding: 10px 20px;
        z-index: 999;
    }
    
    .mobile-nav ul {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        list-style: none;
        margin: 0;
        padding: 10px;
    }
    
    .mobile-nav a {
        background-color: #fff;
        color: #000;
        padding: 8px 12px;
        text-decoration: none;
        font-size: 10px;
        font-family: 'Press Start 2P', monospace;
        border: 2px solid #000;
        transition: all 0.2s ease;
        box-shadow: 2px 2px 0 #000;
        margin: 5px;
    }
    
    .mobile-nav a:hover {
        background-color: #f0f0f0;
        transform: translate(1px, 1px);
        box-shadow: 1px 1px 0 #000;
    }
    
    /* Mobile Quick Thoughts styling */
    .thought-log-window {
        margin: 20px 0 !important;
        width: 100% !important;
    }
    
    .thought-item {
        padding: 15px !important;
        margin-bottom: 15px !important;
    }
    
    .thought-text {
        font-size: 12px !important;
    }
    
    .thought-author {
        font-size: 9px !important;
    }
    
    .thought-date {
        font-size: 8px !important;
    }
}

.window-content, 
.uploadedblogpost-content, 
.category-posts .blog-post-container p, 
.posts-container .post-box p { 
    font-family: 'Noto Sans', sans-serif; 
    font-size: 18px; 
    line-height: 1.8; 
    font-weight: 400; 
}

@media (max-width: 650px) {
    .window-content,
    .uploadedblogpost-content,
    .category-posts .blog-post-container p,
    .posts-container .post-box p {
        font-size: 16px; 
}
}
/* Style the like button 
.like-button {
    display: inline-block;
    background-color: transparent;
    border: none;
    color: #ffffff;
    font-family: 'Press Start 2P', cursive;
    font-size: 16px;
    cursor: pointer;
   padding: 5px 10px;
    margin-right: 10px;
    vertical-align: top; 
    align-self: center;
}

.like-button:hover {
    color: #f00;
}

.like-button:before {
    content: "♡"; 
    font-size: 30px; 
    vertical-align: top; 
    margin-right: 5px;
    transition: color 0.3s ease;
    vertical-align: top; 
    align-self: center;
}

.like-button.liked:before {
    content: "♥"; 
    color: #f00; 
}

.like-count {
    font-family: 'Press Start 2P', cursive;
    color: #fff;
    font-size: 14px;
    vertical-align: middle;
    margin-left: 5px;
}


.comment-section {
    margin-top: 20px;
    font-family: 'Press Start 2P', cursive;
}

.comment-section input[type="text"] {
    width: 80%;
    padding: 8px;
    margin-bottom: 10px;
    font-family: 'Press Start 2P', cursive;
    font-size: 12px;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #e0e0e0;
    box-sizing: border-box; 
    vertical-align: middle; 
}

.comment-section input[type="submit"] {
    padding: 8px 16px;
    font-family: 'Press Start 2P', cursive;
    font-size: 12px;
    background-color: #0078c8;
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 4px;
    height: 36px; 
    vertical-align: middle; 
    margin-left: 10px; 
}

.comment-section input[type="submit"]:hover {
    background-color: #005a9c;
}


.comment {
    background-color: #333;
    color: #fff;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-size: 12px;
}

.comment-username {
    font-weight: bold;
    color: #64c8dc;
}

.comment-text {
    margin-top: 5px;
} */
/* Mobile-specific styling */
@media (max-width: 600px) {
    body {
        margin: 0;
        padding: 0;
        font-family: 'Press Start 2P', monospace;
        background-position: top center;
        font-size: 16px;
        color: #000;
        align-self: center;
    }

    .mobile-title, .grid-item a, .mobile-posts-container, .main-footer, .comment, .like-button, .comment-section input[type="text"], .comment-section input[type="submit"], .comment-username {
        font-family: 'Press Start 2P', monospace;
    }

    .mobile-title {
        position: fixed;
        top: 0;
        left: 0;
        width: calc(100%);
        text-align: center;
        background-color: #fff;
        padding: 30px;
        z-index: 1001;
        font-size: 8vw;
        border-bottom: 3px #000;
    }

    .mobile-title a {
        text-decoration: none;
        color: #5f72bd;
        transition: color 0.3s ease;
    }

    .mobile-title a:hover {
        color: black;
    }

    .grid-header {
        margin-top: 40px;
        background-color: transparent;
    }

    .grid-container {
        margin-top: 90px;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 10px;
        text-align: center;
    }

    /* Mobile responsive grid adjustments */
    @media (max-width: 400px) {
        .grid-container {
            grid-template-columns: 1fr;
            gap: 8px;
            padding: 8px;
        }
        
        .mobile-title {
            font-size: 6vw;
            padding: 20px;
        }
        
        .mobile-posts-container,
        .mobile-books-container,
        .mobile-guestbook-container,
        .mobile-quick-thoughts-container {
            width: 95%;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 80px;
            padding: 10px;
        }
        
        .grid-item a {
            font-size: 10px;
            padding: 8px;
        }
    }

    /* Very small screens */
    @media (max-width: 320px) {
        .mobile-title {
            font-size: 5vw;
            padding: 15px;
        }
        
        .grid-container {
            margin-top: 70px;
        }
        
        .mobile-posts-container h2,
        .mobile-books-container h2,
        .mobile-guestbook-container h2 {
            font-size: 14px;
        }
    }

    .grid-item a {
        text-decoration: none;
        color: #000;
        display: block;
        padding: 5px;
        font-size: 12px;
        word-wrap: normal;
        border: 3px solid #000;
        background-color: #FFF;
        box-shadow: 3px 3px 0 #000;
        transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
        margin-top: 10px;
    }

    .grid-item a:hover {
        transform: scale(1.02);
        box-shadow: 5px 5px 0 #000;
    }

    .tiktok-button a,
    .insta-button a,
    .subscribe-button a {
        color: #5f72bd;
        border-color: #5f72bd;
        box-shadow: 3px 3px 0 #5f72bd;
    }

    .tiktok-button a:hover,
    .insta-button a:hover,
    .subscribe-button a:hover {
        transform: scale(1.02);
        box-shadow: 5px 5px 0 #5f72bd;
    }

    .mobile-posts-container {
        margin-top: 30px;
        width: 90%;
        padding: 15px;
        border: 3px solid #000;
        background-color: #fff;
        box-shadow: 3px 3px 0 #000;
        border-radius: 5px;
        margin-left: auto;
        margin-right: auto;
        align-self: auto;
        max-width: 500px;
    }

    /* Mobile posts content styling */
    .mobile-posts-container h2 {
        font-size: 16px;
        margin-bottom: 15px;
        color: #000;
        text-align: center;
    }

    .mobile-posts-container p {
        font-size: 12px;
        line-height: 1.4;
        color: #333;
        margin-bottom: 10px;
    }

    .mobile-posts-container .post-meta {
        font-size: 10px;
        color: #666;
        margin-top: 10px;
        border-top: 1px solid #ddd;
        padding-top: 10px;
    }

    .post-box {
        background-color: #fff;
        padding: 15px;
        width: 100%;
        
        cursor: pointer;
        margin-bottom: 15px;
        margin-left: auto;
        margin-right: auto;
        align-self: center;
    }

    .main-footer {
        background-color: #000;
        color: #fff;
        padding: 20px;
        text-align: center;
        font-size: 10px;
        border-top: 3px solid #FFF;
        margin-top: 50px; /* Reduced margin, extra space comes from container padding */
        position: relative; /* Not fixed, so it doesn't block content */
    }

    .mobileimpressumlink {
        color: #fff;
    }

    .comment-section {
        margin-top: 20px;
        font-family: 'Press Start 2P', cursive;
    }

    .like-button {
        display: inline-block;
        background-color: transparent;
        border: none;
        color: #fff;
        font-family: 'Press Start 2P', cursive;
        font-size: 16px;
        cursor: pointer;
        padding: 5px 10px;
        margin-right: 10px;
        vertical-align: middle;
    }

    .like-button:before {
        content: "♡";
        font-size: 30px;
        transition: color 0.3s ease;
    }

    .like-button.liked:before {
        content: "♥";
        color: #f00;
    }

    .comment {
        background-color: #333;
        color: #fff;
        padding: 10px;
        margin-bottom: 10px;
        border-radius: 5px;
        font-size: 12px;
    }

    .comment-username {
        font-weight: bold;
        color: #64c8dc;
    }

    .comment-text {
        margin-top: 5px;
    }

    /* Single Blog Post Styles */
    .mobile-blogpost-container {
        margin-top: 80px;
        width: 90%;
        margin: 30px auto;
        padding: 15px;
        border: 3px solid #fff;
        background-color: #fff;
        box-shadow: 3px 3px 0 #fff;
        border-radius: 5px;
        text-align: center;
    }

    /* Mobile Page Specific Styles */
    .mobile-quick-thoughts-container {
        margin-top: 30px;
        width: 90%;
        padding: 15px;
        border: 3px solid #000;
        background-color: #fff;
        box-shadow: 3px 3px 0 #000;
        border-radius: 5px;
        margin-left: 20px;
    }

    .mobile-quick-thoughts-container .feed-header {
        text-align: center;
        margin-bottom: 20px;
        padding: 15px;
        background-color: #5f72bd;
        border: 3px solid #000;
        box-shadow: 3px 3px 0 #000;
    }

    .mobile-quick-thoughts-container .feed-header h1 {
        color: #fff;
        font-size: 16px;
        margin: 0;
    }

    .mobile-quick-thoughts-container .feed-header p {
        color: #fff;
        font-size: 10px;
        margin: 5px 0 0 0;
    }

    .mobile-thoughts-container {
        margin-top: 20px;
    }

    .mobile-thought-item {
        background-color: #5f72bd;
        border: 3px solid #000;
        box-shadow: 3px 3px 0 #000;
        margin-bottom: 15px;
        padding: 15px;
    }

    .mobile-thought-text {
        color: #fff;
        font-size: 12px;
        line-height: 1.4;
        margin-bottom: 10px;
    }

    .mobile-thought-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 10px;
        color: #fff;
        opacity: 0.8;
    }

    .mobile-thought-author {
        font-family: 'Press Start 2P', monospace;
        font-size: 8px;
    }

    .mobile-thought-date {
        font-size: 8px;
    }

    /* Mobile Books Container */
    .mobile-books-container {
        margin-top: 30px;
        width: 90%;
        padding: 15px;
        border: 3px solid #000;
        background-color: #fff;
        box-shadow: 3px 3px 0 #000;
        border-radius: 5px;
        margin-left: 20px;
    }

    .mobile-book-card {
        background-color: #fff;
        border: 3px solid #000;
        box-shadow: 3px 3px 0 #000;
        margin-bottom: 20px;
        padding: 15px;
        border-radius: 5px;
    }

    .mobile-book-content {
        display: flex;
        gap: 15px;
        align-items: flex-start;
    }

    .mobile-book-cover {
        width: 80px;
        height: 80px;
        background-color: #f0f0f0;
        border: 2px solid #000;
        flex-shrink: 0;
    }

    .mobile-book-info h3 {
        font-size: 14px;
        margin: 0 0 5px 0;
        color: #000;
    }

    .mobile-book-info p {
        font-size: 10px;
        margin: 2px 0;
        color: #666;
    }

    .mobile-book-rating {
        color: #ffd700;
        font-size: 12px;
    }

    /* Mobile Guestbook Container */
    .mobile-guestbook-container {
        margin-top: 30px;
        margin-bottom: 80px;
        width: 90%;
        padding: 15px;
        border: 3px solid #000;
        background-color: #fff;
        box-shadow: 3px 3px 0 #000;
        border-radius: 5px;
        margin-left: 20px;
    }

    .mobile-guestbook-form {
        margin-bottom: 20px;
    }

    .mobile-form-group {
        margin-bottom: 15px;
    }

    .mobile-form-group label {
        display: block;
        font-size: 12px;
        margin-bottom: 5px;
        color: #000;
    }

    .mobile-form-group input,
    .mobile-form-group textarea {
        width: 100%;
        padding: 8px;
        border: 2px solid #000;
        font-size: 12px;
        font-family: 'Press Start 2P', monospace;
        box-sizing: border-box;
    }

    .mobile-form-group textarea {
        height: 80px;
        resize: vertical;
    }

    .mobile-submit-button {
        background-color: #5f72bd;
        color: #fff;
        border: 3px solid #000;
        padding: 10px 20px;
        font-size: 12px;
        font-family: 'Press Start 2P', monospace;
        cursor: pointer;
        box-shadow: 3px 3px 0 #000;
        transition: all 0.2s ease;
    }

    .mobile-submit-button:hover {
        background-color: #4a5ba3;
        transform: translate(1px, 1px);
        box-shadow: 2px 2px 0 #000;
    }

    /* Mobile Footer */
    .mobile-footer {
        margin-top: 30px;
        padding: 20px;
        text-align: center;
        background-color: #000;
        color: #fff;
    }

    .mobile-footer a {
        color: #fff;
        text-decoration: none;
        font-size: 10px;
    }

    .mobile-footer a:hover {
        color: #5f72bd;
    }

    /* Main Footer for mobile pages */
    .main-footer {
        margin-top: 50px; /* Reduced margin, extra space comes from container padding */
        padding: 20px;
        text-align: center;
        background-color: #000;
        color: #fff;
        width: 100%;
        box-sizing: border-box;
        position: relative; /* Not fixed, so it doesn't block content */
    }

    .main-footer a {
        color: #fff;
        text-decoration: none;
        font-size: 10px;
        font-family: 'Press Start 2P', monospace;
    }

    .main-footer a:hover {
        color: #5f72bd;
    }

    /* Mobile modal styles */
    .mobile-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 1000;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mobile-modal-content {
        background-color: #fff;
        border: 3px solid #000;
        box-shadow: 3px 3px 0 #000;
        padding: 20px;
        max-width: 90%;
        max-height: 80%;
        overflow-y: auto;
    }

    .mobile-modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
        padding-bottom: 10px;
        border-bottom: 2px solid #000;
    }

    .mobile-modal-header h3 {
        margin: 0;
        font-size: 14px;
    }

    .close-modal {
        font-size: 20px;
        cursor: pointer;
        color: #000;
    }

    .close-modal:hover {
        color: #5f72bd;
    }

    /* Mobile form elements */
    .mobile-form-group input,
    .mobile-form-group textarea {
        font-family: 'Press Start 2P', monospace;
        font-size: 10px;
    }

    /* Mobile button styles */
    .mobile-submit-button,
    .thought-submit {
        font-family: 'Press Start 2P', monospace;
        font-size: 10px;
    }

    /* Mobile posts grid for books */
    .mobile-books-container .book-card {
        margin-bottom: 15px;
    }

    /* Mobile guestbook messages */
    .mobile-guestbook-message {
        background-color: #f9f9f9;
        border: 2px solid #000;
        margin-bottom: 10px;
        padding: 10px;
        border-radius: 3px;
    }

    .mobile-guestbook-message .message-author {
        font-weight: bold;
        font-size: 10px;
        color: #5f72bd;
        margin-bottom: 5px;
    }

    .mobile-guestbook-message .message-text {
        font-size: 11px;
        line-height: 1.4;
        color: #333;
    }

    .mobile-guestbook-message .message-date {
        font-size: 8px;
        color: #666;
        margin-top: 5px;
    }

    .uploadedblogpost-header {
        margin-top: 100px;
        font-size: 18px;
        margin-bottom: 15px;
        color: #000;
    }

    .uploadedblogpost-date {
        font-size: 12px;
        color: #555;
        margin-bottom: 10px;
    }

    .uploadedblogpost-content {
        font-size: 14px;
        color: #000;
        text-align: left;
        margin-bottom: 140px;
       
    }

    .post-image {
        width: 100%;
        max-width: 250px;
        height: auto;
        margin: 15px auto;
        display: block;
        border-radius: 5px;
    }

    /* Category Post Styles */
    .category-posts-container {
        width: 90%;
        margin: 30px auto;
        padding: 15px;
        border: 3px solid #000;
        background-color: #fff;
        box-shadow: 3px 3px 0 #000;
        border-radius: 5px;
        text-align: center;
    }

    .category-posts-container h2 {
        font-size: 18px;
        color: #000;
        margin-bottom: 10px;
    }

    .category-post {
        background-color: #fff;
        padding: 15px;
        border: 3px solid #000;
        cursor: pointer;
        margin-bottom: 15px;
        width: 100%;
        box-shadow: 3px 3px 0 #000;
        transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    }

    .category-post:hover {
        transform: scale(1.02);
        box-shadow: 5px 5px 0 #000;
    }

    .category-post h2 {
        font-size: 16px;
        color: #000;
        margin-bottom: 10px;
    }

    .category-post p {
        font-size: 12px;
        color: #333;
        margin-bottom: 5px;
    }

    .category-post em {
        display: block;
        font-size: 10px;
        color: #555;
    }

    .category-post img.post-image {
        width: 100%;
        max-width: 250px;
        height: auto;
        margin: 10px auto;
        display: block;
        border-radius: 5px;
    }

    /* Centered Post Window Styles */
    .centered-post-window {
        background-color: #FFF;
        padding: 20px;
        border: 3px solid #000;
        box-shadow: 3px 3px 0 #000;
        position: relative;
        width: calc(100%);
        margin-bottom: 10px;
        margin-top: 10px;
        align-self: center;
    }

    .centered-post-window:hover {
        transform: scale(1.02);
        box-shadow: 5px 5px 0 #000;
    }

    .blog-post-header {
        font-size: 18px;
        margin-top: 5px;
        margin-bottom: 15px;
    }

    .blog-post-container p {
        margin-top: 15px;
        font-size: 13px;
        margin-bottom: 15px;
    }

    .post-image {
        max-height: 150px;
    }
    .uploadedblogpost-container {
        
        background-color: #a5b2e3;
       
      
        margin-top: 40px;
        margin-bottom: 40px;

        width: calc(100% ); 
    }
    
}

/* Book Recommendations Styles - FRESH FROM SCRATCH */
.books-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    padding: 20px;
    margin: 40px auto;
    max-width: calc(100vw - 500px - 40px);
    width: calc(100vw - 500px - 40px);
    box-sizing: border-box;
    justify-content: center;
}

.book-card {
    background-color: #FFF;
    border: 3px solid #000;
    box-shadow: 3px 3px 0 #000;
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    height: fit-content;
    min-height: 400px;
    width: 100%;
    box-sizing: border-box;
}

.book-card:hover {
    transform: scale(1.02);
    box-shadow: 5px 5px 0 #000;
}

.book-content {
    display: flex;
    gap: 15px;
    padding: 15px;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
}

.book-cover {
    flex-shrink: 0;
}

.book-cover-img {
    width: 80px;
    height: 120px;
    object-fit: cover;
    border: 2px solid #000;
}

.book-info {
    flex: 1;
}

.book-title {
    font-size: 16px;
    margin-bottom: 5px;
    font-family: 'Press Start 2P', monospace;
}

.book-author {
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
}

.book-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.stars {
    color: #ffd700;
    font-size: 14px;
}

.rating-text {
    font-size: 12px;
    color: #666;
}

.book-review {
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 8px;
}

.book-date {
    font-size: 10px;
    color: #888;
    margin-bottom: 8px;
}

.purchase-hint {
    font-size: 10px;
    color: #5f72bd;
    margin-top: 8px;
    margin-bottom: 0;
    font-style: italic;
}

.book-card:hover {
    transform: translate(2px, 2px);
    box-shadow: 1px 1px 0 #000;
}

.book-card:hover .purchase-hint {
    color: #4a5ba3;
}

/* Guestbook Styles */
.guestbook-container {
    margin: 20px auto;
    padding: 20px;
    max-width: 800px;
    width: calc(100vw - 500px - 40px);
    box-sizing: border-box;
}

.guestbook-form {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-family: 'Press Start 2P', monospace;
    font-size: 12px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 8px;
    border: 2px solid #000;
    font-family: 'Helvetica', Arial, sans-serif;
    font-size: 12px;
    background-color: #FFF;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.submit-button {
    background-color: #000;
    color: #FFF;
    border: none;
    padding: 10px 20px;
    font-family: 'Press Start 2P', monospace;
    font-size: 10px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.submit-button:hover {
    background-color: #333;
}

.guestbook-messages {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.guestbook-message {
    background-color: #FFF;
    border: 3px solid #000;
    box-shadow: 3px 3px 0 #000;
}

.message-text {
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 8px;
}

.message-date {
    font-size: 10px;
    color: #888;
}

/* PDF Collection and Currently Listening Styles */
.pdf-collection {
    margin-bottom: 30px;
}

.pdf-collection h2 {
    font-size: 14px;
    margin-bottom: 15px;
    font-family: 'Press Start 2P', monospace;
}

.pdf-collection a {
    display: block;
    color: #000;
    text-decoration: none;
    font-size: 10px;
    margin-bottom: 8px;
    padding: 5px;
    border: 1px solid #000;
    background-color: #FFF;
    transition: background-color 0.2s ease;
}

.pdf-collection a:hover {
    background-color: #f0f0f0;
}

.currently-listening {
    margin-top: 20px;
}

.currently-listening h2 {
    font-size: 14px;
    margin-bottom: 15px;
    font-family: 'Press Start 2P', monospace;
}

.listening-box {
    background-color: #FFF;
    border: 2px solid #000;
    padding: 15px;
    text-align: center;
}

.listening-box p {
    font-size: 10px;
    margin-bottom: 8px;
    font-family: 'Press Start 2P', monospace;
}

.current-track {
    color: #000;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    display: block;
    padding: 5px;
    border: 1px solid #000;
    background-color: #f0f0f0;
    transition: background-color 0.2s ease;
}

.current-track:hover {
    background-color: #e0e0e0;
}

/* About Us Section */
.about-section {
    background-color: #FFF;
    border: 3px solid #000;
    box-shadow: 3px 3px 0 #000;
    padding: 20px;
    margin: 30px 240px;
    margin-bottom: 30px;
    min-height: calc(70vh - 60px); /* 70% of viewport height minus margins */
    box-sizing: border-box;
}

.about-section h2 {
    font-size: 16px;
    margin-bottom: 15px;
    font-family: 'Press Start 2P', monospace;
}

.about-section p {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 10px;
}


/* About Subsections Styling */
.about-subsections {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-subsection {
    background: #f8f8f8;
    border: 2px solid #000;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 3px 3px 0 #000;
    position: relative;
}

.about-subsection h3 {
    font-family: 'Press Start 2P', monospace;
    font-size: 14px;
    color: #000;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-subsection p {
    margin-bottom: 10px;
    line-height: 1.5;
    color: #333;
    font-size: 12px;
}

.about-subsection p:last-child {
    margin-bottom: 0;
    font-style: italic;
    color: #666;
}

/* Mobile Book Styles */
.book-mobile-content {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.book-cover-mobile {
    width: 60px;
    height: 90px;
    object-fit: cover;
    border: 2px solid #000;
    flex-shrink: 0;
}

.book-info-mobile {
    flex: 1;
}

.book-info-mobile h2 {
    font-size: 14px;
    margin-bottom: 5px;
    font-family: 'Press Start 2P', monospace;
}

.book-info-mobile .book-author {
    font-size: 10px;
    color: #666;
    margin-bottom: 8px;
}

.book-info-mobile .book-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
}

.book-info-mobile .stars {
    color: #ffd700;
    font-size: 12px;
}

.book-info-mobile .rating-text {
    font-size: 10px;
    color: #666;
}

.book-info-mobile .book-review {
    font-size: 10px;
    line-height: 1.3;
    margin-bottom: 5px;
}

.book-info-mobile .book-date {
    font-size: 8px;
    color: #888;
}

/* Quick Thoughts Window Styles - Bomb Layout */
.thought-log-window {
    background-color: #FFF;
    border: 3px solid #000;
    box-shadow: 3px 3px 0 #000;
    margin: 20px 0;
    width: 100%;
    min-height: 400px;
    position: relative;
}

.thought-log-window .window-header {
    display: block;
    text-align: center;
    background-color: #f2f2f2;
      padding: 10px;
    font-size: 13px;
      margin-bottom: 0;
    font-family: 'Press Start 2P', monospace;
    position: sticky; 
    top: 0; 
    z-index: 1000;
    color: #000;
}

.thought-log-window .window-content {
    padding: 20px;
    background-color: #FFF;
    min-height: 350px;
}

.thoughts-feed {
    max-height: 320px;
    overflow-y: auto;
    scrollbar-width: thin;
}

.thoughts-feed::-webkit-scrollbar {
    width: 8px;
}

.thoughts-feed::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.thoughts-feed::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.thoughts-feed::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.thought-item {
    background-color: #5f72bd;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 0;
    transition: transform 0.2s ease;
    position: relative;
}

.thought-item:hover {
    transform: translate(2px, 2px);
}

.thought-text {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 20px;
    margin-bottom: 15px;
    font-family: 'Helvetica', Arial, sans-serif;
    color: #FFF;
    word-wrap: break-word;
    text-align: center;
}

.thought-author {
    font-size: 10px;
    color: #FFF;
    font-family: 'Press Start 2P', monospace;
    margin-bottom: 30px;
    text-transform: lowercase;
    text-align: center;
}

.thought-date {
    font-size: 9px;
    color: #FFF;
    font-family: 'Press Start 2P', monospace;
    margin-bottom: 0;
    opacity: 0.8;
}

.thought-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.thought-likes {
    font-size: 8px;
    color: #FFF;
    font-family: 'Press Start 2P', monospace;
}

.thought-shares {
    font-size: 8px;
    color: #FFF;
    font-family: 'Press Start 2P', monospace;
}

/* Quick Thoughts Sidebar - Clean Rebuild */
.right-sidebar .thought-log-window {
    background-color: #FFF;
    margin: 10px 0;
    min-height: 300px;
}

.right-sidebar .thought-log-window .window-header {
    background-color: #f2f2f2 !important;
    padding: 8px !important;
    text-align: center !important;
    font-family: 'Press Start 2P', monospace !important;
    font-size: 10px !important;
    font-weight: bold !important;
    color: #000 !important;
    border: none !important;
}

.right-sidebar .thoughts-feed {
    padding: 10px;
    max-height: 250px;
    overflow-y: auto;
}

.right-sidebar .thought-item {
    background-color: #5f72bd !important;
    padding: 12px !important;
    margin-bottom: 10px !important;
    border: none !important;
    box-shadow: none !important;
}

.right-sidebar .thought-text {
    font-size: 6px !important;
    color: #FFF !important;
    text-align: left !important;
    line-height: 1.3 !important;
    margin: 0 0 8px 0 !important;
    font-family: 'Noto Sans', sans-serif !important;
}

.right-sidebar .thought-author {
    font-size: 7px !important;
    color: #FFF !important;
    text-align: left !important;
    margin: 0 0 5px 0 !important;
    font-family: 'Press Start 2P', monospace !important;
}

.right-sidebar .thought-date {
    font-size: 6px !important;
    color: #FFF !important;
    text-align: left !important;
    margin: 0 !important;
    opacity: 0.8 !important;
    font-family: 'Noto Sans', sans-serif !important;
}

/* FORCE Quick Thoughts Sidebar Styles - CACHE BUST 2024-12-19 */
.right-sidebar .thought-log-window {
    background-color: #FFF !important;
    margin: 10px 0 !important;
    min-height: 300px !important;
    border: none !important;
    box-shadow: none !important;
}

.right-sidebar .thought-log-window .window-header {
    background-color: #f2f2f2 !important;
    padding: 8px !important;
    text-align: center !important;
    font-family: 'Press Start 2P', monospace !important;
    font-size: 10px !important;
    font-weight: bold !important;
    color: #000 !important;
    border: none !important;
    box-shadow: none !important;
}

.right-sidebar .thought-item {
    background-color: #5f72bd !important;
    padding: 12px !important;
    margin-bottom: 10px !important;
    border: none !important;
    box-shadow: none !important;
}

.right-sidebar .thought-text {
    font-size: 6px !important;
    color: #FFF !important;
    text-align: left !important;
    line-height: 1.3 !important;
    margin: 0 0 8px 0 !important;
    font-family: 'Noto Sans', sans-serif !important;
}

.right-sidebar .thought-author {
    font-size: 7px !important;
    color: #FFF !important;
    text-align: left !important;
    margin: 0 0 5px 0 !important;
    font-family: 'Press Start 2P', monospace !important;
}

.right-sidebar .thought-date {
    font-size: 6px !important;
    color: #FFF !important;
    text-align: left !important;
    margin: 0 !important;
    opacity: 0.8 !important;
    font-family: 'Noto Sans', sans-serif !important;
}

/* Quick Thoughts Share Button - Top Right Position */
.thought-share-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #FFF;
    color: #5f72bd;
    border: 2px solid #000;
    padding: 4px 8px;
    font-family: 'Press Start 2P', monospace;
    font-size: 7px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 2px 2px 0 #000;
    z-index: 10;
}

.thought-share-button:hover {
    background-color: #f0f0f0;
    transform: translate(1px, 1px);
    box-shadow: 1px 1px 0 #000;
}

/* Quick Thoughts Empty State */
.thoughts-empty {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-family: 'Press Start 2P', monospace;
    font-size: 10px;
}

.thoughts-empty::before {
    content: "No thoughts yet...";
    display: block;
    margin-bottom: 10px;
}

.thoughts-empty::after {
    content: "Check back soon!";
    display: block;
    font-size: 8px;
    opacity: 0.7;
}

/* Quick Thoughts Page Styles */
.quick-thoughts-feed {
    margin: 40px 30px;
}

.feed-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    background-color: #FFF;
    border: 3px solid #000;
    box-shadow: 3px 3px 0 #000;
}

.feed-header h1 {
    font-size: 24px;
    color: #000;
    margin-bottom: 10px;
    font-family: 'Press Start 2P', monospace;
}

.feed-header p {
    font-size: 14px;
    color: #666;
    font-family: 'Helvetica', Arial, sans-serif;
    line-height: 1.6;
}

.thoughts-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.thought-post {
    background-color: #5f72bd;
    padding: 20px;
    position: relative;
    transition: transform 0.2s ease;
}

.thought-post:hover {
    transform: translate(2px, 2px);
}

.thought-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.thought-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 12px;
    color: #FFF;
    font-family: 'Press Start 2P', monospace;
    margin-bottom: 2px;
}

.author-handle {
    font-size: 10px;
    color: #FFF;
    font-family: 'Press Start 2P', monospace;
    opacity: 0.8;
}

.thought-actions {
    display: flex;
    gap: 10px;
}

.thought-content {
    margin-bottom: 15px;
}

.thought-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #FFF;
    font-family: 'Helvetica', Arial, sans-serif;
    margin: 0;
}

.thought-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.thought-date {
    font-size: 10px;
    color: #FFF;
    font-family: 'Press Start 2P', monospace;
    opacity: 0.8;
}

/* Quick Thoughts Share Button */
.thought-post .share-button {
    background-color: #FFF;
    color: #5f72bd;
    padding: 4px 8px;
    font-family: 'Press Start 2P', monospace;
    font-size: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.thought-post .share-button:hover {
    background-color: #f0f0f0;
    transform: translate(1px, 1px);
}

/* Quick Thoughts RSS Feed Styles - Sidebar Only */
.sidebar .quick-thoughts-feed {
    background-color: #5f72bd;
    border: 3px solid #000;
    box-shadow: 3px 3px 0 #000;
    margin: 20px 0;
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.sidebar .quick-thoughts-feed .feed-header {
    background-color: #FFF;
    border: 3px solid #000;
    box-shadow: 3px 3px 0 #000;
    margin: 0 0 15px 0;
    padding: 10px;
    text-align: center;
}

.sidebar .quick-thoughts-feed .feed-header h3 {
    font-family: 'Press Start 2P', monospace;
    font-size: 14px;
    color: #000;
    margin: 0;
    line-height: 1.2;
}

.sidebar .thoughts-container {
    background-color: transparent;
    border: none;
    margin: 0;
    padding: 0;
    flex: 1;
    min-height: 120px;
}

.sidebar .thought-item {
    background-color: transparent;
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
}

.sidebar .thought-text {
    font-size: 11px;
    line-height: 1.4;
    color: #FFF;
    margin: 0 0 10px 0;
    font-family: 'Arial', sans-serif;
    text-align: left;
}

.sidebar .thought-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 9px;
    color: #FFF;
    margin-top: 8px;
    opacity: 0.8;
}

.sidebar .thought-author {
    font-family: 'Press Start 2P', monospace;
    font-weight: bold;
    font-size: 8px;
}

.sidebar .thought-date {
    font-family: 'Arial', sans-serif;
    font-size: 8px;
}

.sidebar .feed-footer {
    background-color: transparent;
    border: none;
    margin: 15px 0 0 0;
    padding: 0;
    text-align: center;
}

.sidebar .view-all-thoughts {
    color: #FFF;
    text-decoration: none;
    font-family: 'Press Start 2P', monospace;
    font-size: 10px;
    background-color: transparent;
    border: 2px solid #FFF;
    padding: 8px 12px;
    display: inline-block;
    transition: all 0.2s ease;
}

.sidebar .view-all-thoughts:hover {
    background-color: #FFF;
    color: #5f72bd;
    transform: translate(1px, 1px);
}

/* Guestbook Button Styles */
.guestbook-link {
    margin-top: 40px;
    margin-bottom: 20px;
    padding-top: 0;
}

.guestbook-button {
    display: block;
    background-color: #000;
    color: #FFF;
    text-decoration: none;
    padding: 12px 20px;
    border: 3px solid #000;
    font-family: 'Press Start 2P', monospace;
    font-size: 10px;
    text-align: center;
    transition: all 0.2s ease;
    box-shadow: 3px 3px 0 #5f72bd;
}

.guestbook-button:hover {
    background-color: #333;
    transform: translate(2px, 2px);
    box-shadow: 1px 1px 0 #5f72bd;
}

.guestbook-button:active {
    transform: translate(3px, 3px);
    box-shadow: 0px 0px 0 #5f72bd;
}

/* Laramzp Button Styles */
.laramzp-link {
    margin-top: 20px;
    margin-bottom: 20px;
}

.laramzp-button {
    display: block;
    background-color: #5f72bd;
    color: #FFF;
    text-decoration: none;
    padding: 12px 20px;
    border: 3px solid #000;
    font-family: 'Press Start 2P', monospace;
    font-size: 10px;
    text-align: center;
    transition: all 0.2s ease;
    box-shadow: 3px 3px 0 #000;
}

.laramzp-button:hover {
    background-color: #4a5ba3;
    transform: translate(2px, 2px);
    box-shadow: 1px 1px 0 #000;
}

.laramzp-button:active {
    transform: translate(3px, 3px);
    box-shadow: 0px 0px 0 #000;
}

/* Blogs We Love Styles */
.blogs-we-love {
    margin-top: 20px;
}

.blogs-we-love h2 {
    font-size: 14px;
    margin-bottom: 15px;
    font-family: 'Press Start 2P', monospace;
}

.blogs-we-love a {
    display: block;
    color: #000;
    text-decoration: none;
    font-size: 10px;
    margin-bottom: 8px;
    padding: 5px;
    border: 1px solid #000;
    background-color: #FFF;
    transition: background-color 0.2s ease;
}

.blogs-we-love a:hover {
    background-color: #f0f0f0;
}

/* Social Links Styles */
.social-links {
    margin-top: 10px;
    padding-top: 10px;
}

.social-links h2 {
    font-size: 14px;
    margin-bottom: 15px;
    font-family: 'Press Start 2P', monospace;
}

.social-links a {
    display: block;
    color: #FFF;
    text-decoration: none;
    font-size: 10px;
    margin-bottom: 8px;
    padding: 8px 10px;
    border: 2px solid #000;
    background-color: #5f72bd;
    transition: all 0.2s ease;
    box-shadow: 2px 2px 0 #000;
    text-align: center;
    font-family: 'Press Start 2P', monospace;
}

.social-links a:hover {
    transform: translate(1px, 1px);
    box-shadow: 1px 1px 0 #000;
    background-color: #4a5ba3;
}

/* Dynamic Guestbook Message Sizing */
.guestbook-message {
    background-color: #FFF;
    border: 3px solid #000;
    box-shadow: 3px 3px 0 #000;
    margin-bottom: 15px;
    min-height: auto;
    width: 100%;
    max-width: none;
}

.guestbook-message .window-content {
    padding: clamp(10px, 2vw, 20px);
    min-height: auto;
}

.message-text {
    font-size: clamp(11px, 1.5vw, 14px);
    line-height: 1.4;
    margin-bottom: 8px;
    word-wrap: break-word;
    white-space: pre-wrap;
}

/* Responsive guestbook form */
.guestbook-form {
    margin-bottom: 30px;
    width: 100%;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: clamp(8px, 1.5vw, 12px);
    border: 2px solid #000;
    font-family: 'Helvetica', Arial, sans-serif;
    font-size: clamp(11px, 1.5vw, 14px);
    background-color: #FFF;
    box-sizing: border-box;
}

.form-group textarea {
    resize: vertical;
    min-height: clamp(60px, 10vw, 100px);
}

/* About Us Section with Image Space */
.about-section {
    background-color: #FFF;
    border: 3px solid #000;
    box-shadow: 3px 3px 0 #000;
    padding: 20px;
    margin: 30px 0;
    margin-bottom: 50px; /* 10% gap before latest posts */
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* ===== MOBILE LAYOUT (600px and below) ===== */
@media (max-width: 600px) {
    /* Force mobile layout for very small screens */
    .sidebar {
        display: none !important;
    }
    
    .right-sidebar {
        display: none !important;
    }
    
    .main-content {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: none !important;
        padding: 0 20px !important;
    }
    
    /* Add top navigation for mobile */
    .mobile-nav {
        display: block !important;
        position: fixed;
        top: 100px;
        left: 0;
        right: 0;
        background-color: #fff;
        border-bottom: 3px solid #000;
        padding: 10px 20px;
        z-index: 999;
    }
    
    .mobile-nav ul {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        list-style: none;
        margin: 0;
        padding: 10px;
    }
    
    .mobile-nav a {
        background-color: #fff;
        color: #000;
        padding: 8px 12px;
        text-decoration: none;
        font-size: 10px;
        font-family: 'Press Start 2P', monospace;
        border: 2px solid #000;
        transition: all 0.2s ease;
        box-shadow: 2px 2px 0 #000;
        margin: 5px;
    }
    
    .mobile-nav a:hover {
        background-color: #f0f0f0;
        transform: translate(1px, 1px);
        box-shadow: 1px 1px 0 #000;
    }
    
    /* Ensure mobile content is properly sized */
    .category-posts {
        margin: 10px auto !important;
        padding: 15px !important;
        width: calc(100vw - 40px) !important;
        max-width: calc(100vw - 40px) !important;
        box-sizing: border-box !important;
    }
    
    
    .books-container {
        margin: 10px 20px !important;
        padding: 15px !important;
        width: calc(100% - 40px) !important;
    }
    
    .guestbook-container {
        margin: 10px 20px !important;
        padding: 15px !important;
        width: calc(100% - 40px) !important;
        max-width: calc(100% - 40px) !important;
    }
    
    .quick-thoughts-feed {
        margin: 20px 20px !important;
    }
    
    .feed-header {
        padding: 15px !important;
        margin-bottom: 20px !important;
    }
    
    .feed-header h1 {
        font-size: 18px !important;
    }
    
    .feed-header p {
        font-size: 12px !important;
    }
    
    .thought-post {
        padding: 15px !important;
    }
    
    .thought-content p {
        font-size: 12px !important;
    }
    
    .uploadedblogpost-container, .legal-content, .newsletter-content, .centered-post-window, .mac-window {
        width: calc(100vw - 60px) !important;
        margin: 20px 30px 50px 30px !important;
        padding: 15px !important;
    }
    
    /* Ensure poetry pages use same mobile styling as blog posts */
    .category-posts .blog-post-container {
        width: calc(100vw - 60px) !important;
        margin: 20px 30px 50px 30px !important;
        padding: 15px !important;
    }
    
    /* Fix mobile link issues */
    .uploadedblogpost-link {
        text-decoration: none;
        color: inherit;
        display: block;
    }
    
    .uploadedblogpost-link:active {
        background-color: transparent;
    }
    
    .latest-posts-container {
        margin: 20px 0 30px 0 !important;
        padding: 15px !important;
    }
    
    .posts-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }
}


/* Latest Posts Container */
.latest-posts-container {
    background-color: #5f72bd;
    border: 3px solid #000;
    box-shadow: 3px 3px 0px #000;
    margin: 20px 290px;
    margin-bottom: 30px;
    padding: 30px;
    box-sizing: border-box;
    min-height: 300px;
}

.latest-posts-title {
    font-size: 22px;
    font-family: 'Press Start 2P', monospace;
    color: #FFF;
    margin: 0 0 20px 0;
    text-align: center;
}

.posts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.post-window {
    background-color: #FFF;
    border: 2px solid #000;
    box-shadow: 2px 2px 0px #000;
    padding: 20px;
    box-sizing: border-box;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.post-window:hover {
    transform: translate(2px, 2px);
    box-shadow: 1px 1px 0px #000;
}

.post-window h3 {
    font-family: 'Press Start 2P', monospace;
    font-size: 12px;
    color: #000;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.post-window p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px;
        color: #000;
    margin: 0 0 10px 0;
    line-height: 1.5;
}

.post-window em {
    font-family: 'Noto Sans', sans-serif;
    font-size: 12px;
    color: #666;
    font-style: italic;
}

.view-all-button {
    display: block;
    background-color: #000;
    color: #FFF;
    padding: 12px 24px;
    text-decoration: none;
    font-family: 'Press Start 2P', monospace;
    font-size: 12px;
    border: 2px solid #000;
    box-shadow: 2px 2px 0 #000;
    text-align: center;
    margin: 0 auto;
    width: fit-content;
    transition: transform 0.2s ease;
}

.view-all-button:hover {
    transform: translate(1px, 1px);
    box-shadow: 1px 1px 0 #000;
}

/* Allow text selection in content areas */
.mobile-blog-window .mobile-post-content,
.guestbook-message .message-text,
.thought-content p {
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Ensure all content is accessible by allowing proper scrolling */
body {
    min-height: 100vh;
    overflow-x: hidden; /* Prevent horizontal scroll */
    overflow-y: auto; /* Allow vertical scroll */
}

.desktop-container {
    min-height: 100vh;
    padding-bottom: 200px; /* Extra space to ensure all content is scrollable */
}

/* Ensure sidebars don't get cut off */
.sidebar, .right-sidebar {
    min-height: 100vh;
    padding-bottom: 200px; /* Extra space for sidebar content */
}

/* Ensure main content area has enough space */
.main-content {
    min-height: 100vh;
    padding-bottom: 200px; /* Extra space for main content */
}

/* Mobile containers also need extra space */
.mobile-posts-container, .mobile-guestbook-container, .mobile-about-section {
    padding-bottom: 100px; /* Extra space for mobile content */
}

/* Mobile About Section */
.mobile-about-section {
    margin: 20px;
    padding: 20px;
    background-color: #f0f0f0;
    border-radius: 10px;
}

.mobile-about-section .about-subsection {
    margin-bottom: 30px;
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.mobile-about-section h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
}

.mobile-about-section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
    font-size: 14px;
}

/* Mobile Blog Post Page Styling */
.mobile-blog-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    background-color: #000;
    padding: 15px;
    z-index: 1000;
    font-size: 4vw;
    white-space: nowrap;
    overflow: hidden;
}

.mobile-blog-header a {
    color: #fff;
    text-decoration: none;
    font-family: 'Press Start 2P', monospace;
}

.mobile-blog-container {
    margin-top: 80px;
    padding: 20px;
    display: flex;
    justify-content: center;
    min-height: calc(100vh - 160px);
}

.mobile-blog-window {
    background-color: #fff;
    border: 3px solid #000;
    box-shadow: 3px 3px 0 #000;
    width: 100%;
    max-width: 600px;
    margin-bottom: 80px;
}

.mobile-blog-window .window-header {
    background-color: #5f72bd;
    padding: 10px 15px;
    border-bottom: 3px solid #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-blog-window .window-title {
    color: #fff;
    font-family: 'Press Start 2P', monospace;
    font-size: 12px;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-blog-window .window-controls {
    display: flex;
    gap: 5px;
}

.mobile-blog-window .control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #000;
}

.mobile-blog-window .control.red {
    background-color: #ff5f56;
}

.mobile-blog-window .control.yellow {
    background-color: #ffbd2e;
}

.mobile-blog-window .control.green {
    background-color: #27ca3f;
}

.mobile-blog-window .window-content {
    padding: 20px;
}

.mobile-blog-window .post-date {
    font-size: 12px;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

.mobile-blog-window .mobile-post-content {
    font-family: 'Helvetica', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.mobile-blog-window .mobile-post-content h1,
.mobile-blog-window .mobile-post-content h2,
.mobile-blog-window .mobile-post-content h3 {
    font-family: 'Press Start 2P', monospace;
    font-size: 12px;
    margin: 20px 0 10px 0;
    color: #000;
}

.mobile-blog-window .mobile-post-content p {
    margin-bottom: 15px;
}

.mobile-blog-window .mobile-post-content blockquote {
    border-left: 3px solid #5f72bd;
    padding-left: 15px;
    margin: 15px 0;
    font-style: italic;
    color: #555;
}

.mobile-blog-window .mobile-post-image,
.mobile-blog-window .article-image {
    width: 100%;
    height: auto;
    margin: 15px 0;
    border: 2px solid #000;
    display: block;
}

.mobile-blog-footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 15px;
    font-family: 'Press Start 2P', monospace;
    font-size: 8px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}

/* Share Button Styling */
.share-button-container {
    text-align: center;
    margin: 20px 0;
}

.share-button {
    display: inline-block;
    margin: 15px auto;
    padding: 8px 16px;
    background-color: #5f72bd;
    color: #FFF;
    border: 2px solid #000;
    font-family: 'Press Start 2P', monospace;
    font-size: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 2px 2px 0 #000;
    text-align: center;
}

.share-button:hover {
    background-color: #4a5ba3;
    transform: translate(1px, 1px);
    box-shadow: 1px 1px 0 #000;
}

.share-button:active {
    transform: translate(2px, 2px);
    box-shadow: 0px 0px 0 #000;
}

/* Share Popup Styling */
.share-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.share-popup {
    background-color: #FFF;
    border: 3px solid #000;
    box-shadow: 5px 5px 0 #000;
    padding: 20px;
    max-width: 400px;
    width: 90%;
}

.share-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 2px solid #000;
    padding-bottom: 10px;
}

.share-popup-header h3 {
    font-family: 'Press Start 2P', monospace;
    font-size: 12px;
    margin: 0;
}

.close-popup {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
}

.share-text {
    font-family: 'Helvetica', Arial, sans-serif;
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 15px;
    padding: 10px;
    background-color: #f0f0f0;
    border: 1px solid #000;
}

.share-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.share-option {
    padding: 10px 15px;
    background-color: #5f72bd;
    color: #FFF;
    border: 2px solid #000;
    font-family: 'Press Start 2P', monospace;
    font-size: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 2px 2px 0 #000;
}

.share-option:hover {
    background-color: #4a5ba3;
    transform: translate(1px, 1px);
    box-shadow: 1px 1px 0 #000;
}

/* Feedback Message */
.feedback-message {
        position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #5f72bd;
    color: #FFF;
    padding: 15px 25px;
    border: 2px solid #000;
    box-shadow: 3px 3px 0 #000;
    font-family: 'Press Start 2P', monospace;
    font-size: 10px;
    z-index: 1001;
    animation: fadeInOut 2s ease-in-out;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
    20% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    80% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
}


