.window:before { 
        background-color: var(--saturate-color) !important;
}

.searchbox button {
    filter: invert(1) grayscale(1) !important;
}

.comment-like-container {
    position: absolute;
    bottom: 5px; /* Positions the like button 5px from the bottom */
    right: 0; /* Positions the like button at the far right */
    display: flex;
    align-items: center;
    gap: 5px; /* Space between the like count and button */
    margin-bottom: 10px;
}



.comment-like-count {
    font-size: 14px;
    color: #d8d8d8;
    margin-right: 5px;
}

.comment-like-icon {
    width: 25px;
    height: 25px;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
        filter: grayscale(25%);
}

.comment-like-icon:hover {
    transform: scale(1.1);
        filter: grayscale(0%);
}

.comment {
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    justify-content: flex-start; /* Align content to the top */
    margin-bottom: 0; /* Adds spacing between comments */
    position: relative; /* Allow positioning of like button inside comment */
}
.comment-content {
    display: flex;
    align-items: flex-start; /* Align avatar and text to the top */
    flex-grow: 1; /* Allow the content to take up available space */
    margin-bottom: 10px; /* Space between the comment text and the like button */
}

.comment {
    padding-top: 17px;
    padding-bottom: 5px;
    border-bottom: 1px solid #2d2d2d;
    color: #d8d8d8;
}

.social-links .tags strong {
    color: #d8d8d8;
    font-size:18px;
}

.comment-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.login-prompt {
    color: #d8d8d8;
    margin-bottom: 0;
    text-align: right;
}

.comment-info {
    flex-grow: 1;
    text-align: left;
}

.comment-form {
    margin-bottom: 0px;
}

.comment-info .username {
    font-weight: bold;
    color: #ffffff; /* White for username */
}

.comment-info .comment-date {
    font-size: 11px;
    color: gray;
}

.comment-info p {
    margin-top: 5px;
    color: #d8d8d8;
    font-size: 15px;
}

.avatar-comment-section {
    margin-right: 10px;
}

.comment-username {
    font-weight: bold;
    margin-right: 7px;
    color: #ffffff; /* White for username */
    font-family: 'Positions';
    font-size: 18px;
}

.comment-username:hover {
    color: var(--saturate-color) !important;
}


.comment-avatar {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    margin-right: 5px;
}


@media (max-width: 600px) {
    .comment-content {
        flex-direction: row; /* Keep row layout to prevent avatar from stretching */
        align-items: center;
    }

    .avatar-comment-section {
        margin-right: 10px; /* Ensure spacing stays consistent */
    }

    .comment-avatar {
        width: 35px;  /* Adjust avatar size for mobile */
        height: 35px;
        max-width: 35px;
        max-height:35px;
    }

    .comment-info {
        flex-grow: 1;
    }
}



.comments-container {
    margin-top: 40px;
    padding-top: 0;
}

.comment {
    border-bottom: 1px solid #2d2d2d;
    color: #d8d8d8;
}

.comment strong {
    color: #d8d8d8;
    font-family: positions;
    font-size: 16px;
}

.comment p {
    margin: 5px 40px 0 0 !important;
}

.comment-date {
    font-size: 12px;
    color: gray;
}

.no-comments {
    font-style: italic;
    color: gray;
}

field-row-stacked {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.comment-form textarea {
    width: 100%;
    height: 60px;
    padding: 5px;
}

.comment-form button {
    background-color: var(--saturate-color);
    color: white;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    margin-top: 5px;
}

.login-prompt a {
    color: var(--window-background-color);
    font-size: 14px;
}

.login-prompt a:hover {
    color: var(--saturate-color);
}

/* General page styling */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
    padding: 20px;
    background-color: #000000; /* Black background */
    color: #ffffff; /* White text */
  text-shadow: 2px 2px #00000;
  margin: 0;
  overflow: hidden;
}

.width {
    max-width: 700px;
        margin: 0 auto;
        overflow: hidden;
}


.blog-all {
    max-width: 100%;
    padding-top: 20px;
}

/* Textarea input styling */
textarea {
    width: 100%;
    height: 150px;
    background-color: #333333; /* Dark gray background */
    color: #ffffff; /* White text */
    border: 1px solid #555555; /* Lighter gray border */
}

/* Submit button styling */
input[type="submit"] {
    padding: 10px 20px;
    background-color: var(--window-background-color); /* Neon green */
    color: #000000; /* Black text */
    border: none;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: var(--saturate-color); /* Darker green on hover */
}

/* Headers */
h2, h3 {
    color: #ffffff; /* White text for headers */
}

/* Form styling */
form {
    margin-bottom: 20px;
}

/* General image styling */
img {
    vertical-align: middle;
}

/* Tags styling */
.tags {
    margin-top: 10px;
    font-size: 14px;
    color: #888888; /* Light gray for tags */
}

.tags strong {
    font-weight: bold;
    color: #aaaaaa; /* White for "Tags:" text */
}

/* Blog post structure */
.blog-post {
    background-color: #090909; /* Dark gray background for blog posts */
    padding: 15px;
    border-radius: 5px; /* Rounded corners */
}

/* Post container with flexbox */
.post-container {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

/* Avatar section */
.avatar-section {
    margin-right: 15px;
}

.avatar {
    width: 65px;
    height: 65px;
    border-radius: 8px;

    
}

/* Content section */
.content-section {
    flex-grow: 1;
}

/* Username and date */
.post-header {
    margin-bottom: 10px;
    font-size: 14px;
    color: #ffffff; /* White username and date */
}

.username {
    font-weight: bold;
    margin-right: 10px;
    color: #ffffff; /* White for username */
}

.post-date {
    color: #888888; /* Gray for date */
    font-size: 12px;
}

/* Post text */
.post-text {
    font-size: 16px;
    margin-bottom: 10px;
    margin-top: 10px;
    color: #d8d8d8; /* light gray for post text */
}

/* Blog images */
.blog-images {
    margin-top: 10px;
    margin-bottom: 10px;
}

.blog-image {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    max-height: 500px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.blog-image:hover {
    transform: scale(1.05);
}

/* Social links */
.social-links {
    margin-top: 0px;
}

.social-icon {
    width: 32px;
    margin-right: 0px;
    filter: grayscale(25%); /* Monochrome icons */
}

.social-icon:hover {
    filter: grayscale(0%) /* Return color on hover */
}

/* Horizontal line with neon green color */
    hr {
  border: 0;
  border-top: 1px solid var(--window-background-color) !important;
  margin: 20px 0;
  box-shadow: 0 0 10px #fff, 0 0 20px #fff,
              0 0 30px var(--saturate-color), 0 0 40px var(--saturate-color),
              0 0 50px var(--saturate-color), 0 0 60px var(--saturate-color),
              0 0 70px var(--saturate-color) !important;
}
[role=progressbar] {
    margin: 20px 0 !important;
    filter: invert(1) hue-rotate(180deg) brightness(1.9);
}

.searchbox button {
    filter: invert(1) hue-rotate(90deg);
}
input[type=text] {
    filter: invert(1) hue-rotate(180deg);
}

input[type=url] {
    filter: invert(1) hue-rotate(180deg);
}

.searchbox [type=search] {
   filter: invert(1) hue-rotate(180deg) !important; 
   width: 100%;
}

.searchbox {
    width: 100%;
}

/* Share button styling */
.share-button {
    background-color: var(--saturate-color); /* Neon green */
    color: #000000; /* Black text */
    padding: 8px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
}

.share-button:hover {
    background-color: #006600; /* Darker green on hover */
}

/* Highlighted post */
.highlighted {
    border: 1px solid var(--window-background-color) !important; /* Neon green border */
    padding: 10px;
    background-color: #0c0c0c; /* Dark gray background for highlighted posts */
  box-shadow: 0 0 10px #fff, 0 0 20px #fff,
              0 0 30px var(--saturate-color), 0 0 40px var(--saturate-color),
              0 0 50px var(--saturate-color), 0 0 60px var(--saturate-color),
              0 0 70px var(--saturate-color) !important;
}


/* Responsive design tweaks */
@media (max-width: 600px) {
    .post-container {
        flex-direction: column;
    }

    .avatar-section {
        margin-bottom: 10px;
    }

    .content-section {
        width: 100%;
    }
}

/* Tags and social links container */
.tags-social-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    margin-bottom: -20px;
}

/* Ensure social links are aligned right, even if tags are empty */
.tags-social-container .tags {
    flex-grow: 1; /* Pushes social links to the right */
}

.tags {
    margin: 0;
}

.social-links {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-left: auto; /* Ensures the social links are pushed to the far right */
}


article {
  max-width: 100%;
  overflow: hidden;
  position: relative;
  min-height: 4em;
}

.example-left {
  white-space: nowrap;
  position: absolute;
  text-transform: uppercase;
}

.example-left {
  -webkit-animation: mymove 8s linear infinite; /* Safari 4.0 - 8.0 */
  white-space: nowrap;
  animation: mymove 8s linear infinite alternate;
}

/* Safari 4.0 - 8.0 */
@-webkit-keyframes mymove {
  from {
    left: 0;
  }
  to {
    left: -140px;
  }
}

@keyframes mymove {
  from {
    left: 0;
  }
  to {
    left: -140px;
  }
}


.example-right {
  white-space: nowrap;
  position: absolute;
  top:1.9em;
  opacity: .4;
  text-transform: uppercase;
}

.example-right {
  -webkit-animation: urmove 8s linear infinite; /* Safari 4.0 - 8.0 */
  white-space: nowrap;
  animation: urmove 8s linear infinite alternate;
}

/* Safari 4.0 - 8.0 */
@-webkit-keyframes urmove {
  from {
    right: 0;
  }
  to {
    right: -140px;
  }
}

@keyframes urmove {
  from {
    right: 0;
  }
  to {
    right: -140px;
  }
}


@keyframes early 
{ from { opacity:1; } to { opacity:0; } }

.early {
    animation:fadeIn ease-in 1; /* call our keyframe named fadeIn, use animation ease-in and repeat it only 1 time */

    animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/

    animation-duration:1s;
    animation-delay: 1.5s
}
    
    html {
	font-size: 16px;
}
.blog-upper {
  overflow: hidden;
  background-color: #000000;
  margin-top: -15px;
}
svg defs {
  clip: rect(0px, 0px, 0px, 0px);
}
h1 {
  color: var(--window-background-color);
  font-size: 5em !important;
  text-align: center;
  font-family: sans-serif;
  lini-height: 1;
  letter-spacing: 0.1em;
  transform-origin: left 0.5em;
  -webkit-filter:url("#shadowed-goo");
  filter:url("#shadowed-goo");
  animation: 13s infinite sta ease-in both;
}
@keyframes sta {
	0% {
    transform: scaleY(1) translateY(0);
    opacity: 0;
	}
	10%,40% {
    transform: scaleY(1) translateY(0);
    opacity: 1;
	}
	100% {
    transform: scaleY(8) translateY(0.5em);
    opacity: 0;
	}
}

.blog-upper {
    position: relative; /* Contains absolutely positioned children */
    overflow: hidden;   /* Prevents content from leaking out */
    width: 100%;
    height: 100%;       /* Adjust as needed */
    margin-bottom: 20px;
}

/* Position the blog-background-container relatively */
.blog-background-container {
    position: relative;
    width: 100%;
    height: 100%; /* Adjust the height as necessary */
    background-color: #000; 
    color: var(--window-background-color);
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px var(--saturate-color), 0 0 40px var(--saturate-color), 0 0 50px var(--saturate-color), 0 0 60px var(--saturate-color), 0 0 70px var(--saturate-color);
}

/* Position the blog-text-container absolutely on top of the background */
.blog-text-container {
    position: absolute;
    top: 0; /* Aligns to the top */
    left: 0; /* Aligns to the left */
    width: 100%; /* Full width */
    z-index: 1; /* Ensure it appears above the background */
    color: #fff; /* Text color */
    text-align: center; /* Center align text */
    pointer-events: none; /* Prevent interaction if necessary */
    color: var(--saturate-color);
    top: -10px;
}

/* Optional: Ensure the blog-background-container content stays behind the text */
.early {
    z-index: 0;
}


/* Gallery grid layout */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 5px;
    margin-top: 5px;
}

.gallery-item {
    position: relative;
}

.gallery-thumb {
    width: 100%;
    height: auto;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.gallery-thumb:hover {
    transform: scale(1.05);
}

/* Modal for enlarged image within the gallery container */
.gallery-container {
    position: relative;
    height: 100%;
}

/* Restrict modal inside window-body */
.window-body {
    position: relative; /* Ensure the modal positions relative to this div */
    overflow: hidden;   /* Prevent the modal from overflowing outside the window-body */
}

.modal {
    display: none;
    position: absolute;  /* Constrain to window-body */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
    z-index: 10;
    overflow: auto;
    text-align: center;
    max-width: 100%; /* Constrain the modal to the container's width */
    max-height: 100%; /* Constrain the modal to the container's height */
}

.modal-content {
max-width: calc(100% - 10px);
    max-height: calc(100% - 20px);
    margin: auto;
    border-radius: 5px;
    margin-bottom: 5px;
    margin-top: 10px;
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
    z-index: 11;
}

.close-img {
    width: 30px;  /* Adjust width as needed */
    height: 30px; /* Adjust height as needed */
}

.close:hover .close-img,
.close:focus .close-img {
    opacity: 0.8; /* Slight hover effect */
}



.window-body.has-space {
    height: 100%;
    overflow: scroll;
    background-color: #000000 !important;
    padding-top: 0px !important;
    overflow-x: hidden !important;
}

.multi-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-gap: 10px;
    margin-top: 10px;
}

/* Styling for multiple images */
.blog-image-grid-item {
    width: 100%;
    max-height: 500px;
    height: auto;
    object-fit: contain;
    border-radius: 5px;
}

/* Styling for a single image */
.single-image-container {
    display: flex;
    justify-content: flex-start; /* Aligns the image to the left */
    margin-top: 10px;
}

/* Styling for single image */
.single-image {
    width: auto;
    max-height: 500px;
    height: auto;
    max-width: 100%; /* Ensures it doesn't exceed the container's width */
    border-radius: 5px; /* Apply rounded corners */
    object-fit: contain; /* Preserve aspect ratio */
}


/* Download icon styling */
.download-icon {
    position: absolute;
    top: 10px;
    right: 52px; /* Adjusted to the left of the close button */
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 11;
}

.download-icon:hover {
    opacity: 0.8;
}

/* Download icon styling */
.closer {
    position: absolute;
    top: 10px;
    right: 10px; /* Adjusted to the left of the close button */
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 11;
}

.closer:hover {
    opacity: 0.8;
}



