/*Last updated in:20250921*/
body{
    /*background: linear-gradient(185deg,var(--bg-gradient1),var(--bg-gradient2));*/
    background-color: black;
    color: white;
    box-sizing: border-box;
    padding-bottom: 40px;
    position: relative;
    z-index: 0;
}
.center{
    text-align: center;
}
.welcomer-subtitle a{
    text-decoration: none;
    color: white;
}
.welcomer-subtitle a:hover{
    text-decoration: underline;
}
.img-style{
    border-radius: 2.5px;
    border: 2px solid white;
}
#headtitle {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.2;
    word-wrap: break-word;
    hyphens: auto;
    max-width: 90%;

}
/*#headtitle::after{
    content: '';
    background: white;
    height:2px;
    width: 100%;
    position: absolute;
    bottom:0;
    left:0;
}*/
.beta-tag {
  background-color: #1e90ff; /* DodgerBlue — a bright, clean blue */
  color: white;
  font-size: 0.8em;
  padding: 2px 6px;
  border-radius: 12px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
}
.main-navbar{
    position: sticky;
    top:0;
    display:flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    background-color: var(--default-background);
    max-width: 1200px;
    margin: 0 auto;
}
.navbar-logo{
    display: flex;
    align-items: center;
}
.navbar-logo h3{
    margin-right: 10px;
}
.navbar-logo img{
    width: 67px;
    margin-right: 6px;
}
.logo h3{
    margin-left: 10px;
    color: white;
    text-decoration: none;
    font-size: 28px;
}
.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    display: block;
    padding: 10px;
    margin-top: 20px;
    color: var(--nav-text);
    text-decoration: none;
    font-size: 16px;
    border: 0.01px solid transparent;
    border-radius: 2.5px;
    margin-right: 5px;
    transition: all 0.3s ease;
}
.nav-links a:hover {
    background-color: var(--nav-hover-bg);
    color: var(--nav-hover-text);
}
.navlinks-active-page {
    position: relative;
    width: max-content;
    font-weight: 500;
}
.navlinks-active-page::after {
    content: '';
    background: var(--nav-active-indicator);
    height: 2px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: background-color 0.3s ease;
}
.centered-article{
      display: flex;
      justify-content: center;
      flex-direction: column;
      max-width: 800px;
      margin: 0 auto;
      padding: 20px;
      margin-top: 50px;
}
.search-bar {
    margin-bottom: 20px;
    padding: 10px 15px;
    border: 1px solid var(--search-border);
    border-radius: 5px;
    width: 100%;
    max-width: 800px;
    background-color: var(--articles);
    color: var(--default-text);
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}
#spacing{
    margin-top: 50px;
}
.article{
    border: 1px solid var(--articles);
    background-color: var(--articles);
    border-radius: 6.6px;
    padding: 18.6px;

    transition: all 0.1s ease;
}
.article:active{
    transform: scale(0.9615);
}
.article h2{
    font-size: 1.6em;
    color: white;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 12px;
}
.article a{
    text-decoration: none;
    color:white;
    cursor: pointer;
}
.article a footer{
    font-size: 11.7px;
    margin-top: 10px;
}
/*.article:hover {
    box-shadow: 5px 5px 5px rgba(125,125,125,1); <-- Remove this for later
    box-shadow: 4.7px 4.7px 4.7px rgb(200,200,200);
}
*/
.article-blog::after{
    content: "";
    display: table;
    clear: both;
}
.article-blog{
    background-color: #222;
    padding: 15px;
    margin-bottom: 20px;
    transition: box-shadow 0.3s ease;
    border-radius: 5px;
    box-sizing: border-box;
    width: 100%;

    transition: all 0.07s ease;
}
.article-blog:active{
    transform:scale(0.9515);
}
.article-blog-link{
    text-decoration: none;
    color: white;
    cursor: pointer;
    display: block;
}
.article-blog .article-blog-preview{
    float: none;
    margin-left: 0;
    margin-bottom: 15px;
    text-align: center;
}
.article-blog-preview img{
    border: 1px solid white;
    border-radius: 3.5px;
    width: 100%;
    max-width: 240px;
    height: auto;
}
.article-blog h2 {
    margin-top: 0;
    color: white;
    font-size: 1.5em;
}
.article-blog p {
    color: white;
    margin: 10px 0;
}
.article-blog footer {
    font-size: 11.7px;
    color: #aaa;
}
.post-meta {
  display: inline-flex;
}
.post-meta time + .author::before {
  content: "•";
  display: inline-block;
  margin:0 0.3em;
  color: white;
}
.new-tag {
    display: inline-block;
    background-color: #e63946;
    color: white;
    font-family: SFPROBOLD;
    font-size: 10px;
    text-transform: uppercase;
    padding: 4px 8px;
    padding-left: 10px;
    letter-spacing: 0.8px;
    z-index: 1;

    clip-path: polygon(
        20% 0%,
        100% 0%,
        100% 100%,
        20% 100%,
        0% 50%
    );
}
/*.article-blog:hover {
    box-shadow: 4.7px 4.7px 4.7px rgba(200, 200, 200, 0.5);
}
.article:hover {
    box-shadow: 4.7px 4.7px 4.7px rgba(200, 200, 200, 0.5);
}
*/
.changelog-container {
  display: grid;
  gap: 10px;
}
.changelog-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}
.changelog-item time {
  font-family: SFPROBOLD;
}
.footer{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--default-background);
    color: white;
    text-align: center;
    font-size: 12px;
    padding: 10px 0;
    z-index: 1000;
}
.footer::after{
    content:" © 2025 simsav ";
}
.zoomable-image {
  cursor: pointer;
  transition: transform 0.25s ease;
  display: inline-block; 
  overflow: hidden; 
}
.zoomable-image.zoomed {
  cursor: default;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: none;
}
.zoomable-image img{
    border-radius: 3.5px;
}
.zoomable-image.zoomed{
    z-index: 1100;
}
.zoomable-image.zoomed img {
  max-height: 90vh;
  max-width: 90vw;
  object-fit: contain;
  border: 1px solid white;
}
body.no-scroll {
  overflow: hidden;
}