    body {
      font-family: 'Cinzel', sans-serif;
	  font-style: normal;
      margin: 20px;
      background: #1f1f1f;
      color: #c99420;
      transition: background 0.3s, color 0.3s;
    }

    h1 {
      font-size: 2rem;
      margin-bottom: 20px;
    }

    h2 {
      margin-top: 40px;
      font-size: 2.5rem;
	  font-weight: 400;
	  padding: 30px 0px 0px 0px;
    }
#tagCloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 10px 200px 0px 200px;
  margin-bottom: 20px;
  font-family: 'Cinzel', sans-serif;
}

@media (max-width: 600px) {
  #tagCloud {
    padding: 0px 0px 0px 0px;
    gap: 3px;
  }
}


#tagCloud .tag-button {
  background: none;
  border: 0px solid white;
  color: white;
  font-size: 0.9rem;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease;
  font-family: 'Cinzel', sans-serif;
}

#tagCloud .tag-button:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 600px) {
  #tagCloud .tag-button {
    font-size: 0.8rem;
    padding: 5px 10px;
  }
}
	
	
	
.tag-cloud {
  text-align: center;
  padding: 10px 15px;
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-direction: row;
}

.tag-cloud button {
  background: none;
  border: 1px solid #fff;
  color: white;
  font-size: 0.95rem;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.tag-cloud button:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 600px) {
  .tag-cloud {
    gap: 8px;
    padding: 8px;
  }

  .tag-cloud button {
    font-size: 0.85rem;
    padding: 5px 10px;
  }
}
    .search-container {
      display: flex;
      justify-content: center;
      margin-bottom: 1px;
      padding: 17px 78px;
    }

    #searchBar {
      padding: 10px;
      width: 100%;
      max-width: 400px;
      font-size: 1rem;
      border-radius: 5px;
      border: none;
      outline: none;
      background: #2a2a2a;
      color: white;
    }

    .album {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
      align-items: start;
    }

    .album img {
      width: 100%;
      height: auto;
      object-fit: cover;
      border-radius: 8px;
      cursor: pointer;
      display: block;
      transition: transform 0.15s, box-shadow 0.15s;
      aspect-ratio: 4 / 3;
    }

    .album img:active {
      transform: scale(0.97);
      box-shadow: 0 2px 8px #000a;
    }

    .image-wrapper {
      position: relative;
      overflow: hidden;
    }

    .image-actions {
      position: absolute;
      bottom: 8px;
      right: 8px;
      display: flex;
      gap: 6px;
      opacity: 0;
      transition: opacity 0.2s;
    }

    .image-wrapper:hover .image-actions {
      opacity: 1;
    }

    .image-actions button, .image-actions a {
      background-color: rgba(255, 255, 255, 0.1);
      color: white;
      border: 1px solid rgba(255, 255, 255, 0.3);
      padding: 4px 8px;
      border-radius: 6px;
      cursor: pointer;
      font-size: 0.75rem;
      text-decoration: none;
      transition: background 0.2s, border 0.2s;
	  font-family: 'Cinzel', sans-serif;
    }

    .image-actions button:hover, .image-actions a:hover {
      background-color: rgba(255, 255, 255, 0.25);
      border-color: rgba(255, 255, 255, 0.6);
    }

    .load-more-btn {
      margin-top: 12px;
	  text-decoration: none;
      padding: 8px 16px;
      background: transparent;
      color: #fff;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background 0.2s;
	  font-family: 'Cinzel', sans-serif;
    }

    .load-more-btn:hover {
      background: #222;
      color: #bb9238;	  
    }

    section {
      margin-bottom: 32px;
	  padding: 8px 18px;
    }

    ::-webkit-scrollbar {
      width: 0;
      background: transparent;
    }
	
@media (max-width: 600px) {
  section {
    margin-bottom: 24px;
	padding: 1px 0px;
  }
}
	

    @media (max-width: 1024px) {
      .album {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 600px) {
      body {
        margin: 8px;
      }

      h1 {
        font-size: 1.5rem;
      }

      h2 {
        font-size: 2.0rem;
        margin-top: 1px;
      }

      .album {
        gap: 6px;
        grid-template-columns: repeat(2, 1fr);
      }

      #gallery-root {
        padding-left: 2vw;
        padding-right: 2vw;
      }
    }