html,
body {
  height: 100%;
}

body {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #0e0b1f;
  font-family: "Segoe UI", sans-serif;
  color: #fff;
  overflow-x: hidden;
  z-index: 0;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(https://cdn.wallpapersafari.com/76/14/OBrDtd.jpg) center center / cover no-repeat;
  z-index: -1;
  filter: blur(6px);
  transform: scale(1.05);
  /* Kenarlarda kesilmemesi için hafif büyütme */
}

/* === NAVBAR === */
.navbar {
  /* background: rgba(36, 25, 70, 0.55); */
  background: rgba(255, 255, 255, 0.2);
  color: white;
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar .container {
  max-width: 1300px;
}

.navbar-brand {
  font-weight: 700;
}

/* === MAIN WRAPPER === */
main {
  flex: 1 0 auto;
}

/* === BLUR CONTAINER === */
.blur-box {
  backdrop-filter: blur(20px);
  background: rgba(45, 34, 83, 0.45);
  border-radius: 16px;
  padding: 40px;
  max-width: 1300px;
  margin: 60px auto;
  overflow: hidden;
}

/* === HEADLINE === */
.section-title {
  position: relative;
  font-size: 1.6rem;
  font-weight: 700;
  padding-left: 20px;
  margin-bottom: 12px;
}

.section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 100%;
  background: #ae7bff;
  border-radius: 4px;
}

/* === FILTER BUTTON === */
.filters .btn {
  background: #352a65;
  color: #fff;
  border: 0;
  margin: 4px;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.8rem;
  transition: 0.25s;
}

.filters .btn:hover,
.filters .btn.active {
  background: #7b5dfc;
  color: #fff;
}

/* === CARD === */
.guide-card {
  background: linear-gradient(145deg, #4a3794 0%, #5e3fd0 100%);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.guide-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
}

.guide-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #0009;
  color: #fff;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  text-transform: uppercase;
  z-index: 2;
}

.card-body {
  padding: 1rem 1rem 0.5rem;
  display: flex;
  flex-direction: column;
  /* gap: 0.4rem; */
}

.card-body h5 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25em;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  /* min-height: 2.5em; */
}

.card-body p {
  font-size: 0.83rem;
  color: #dcdcdc;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 6.2em;
  margin-bottom: 0;
}

.card-footer {
  padding: 0.65rem 1rem;
  background: #0003;
  font-size: 0.8rem;
  color: #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === FOOTER === */
footer {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  backdrop-filter: blur(15px);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

/* PAGINATION */
.page-link {
  color: white;
  background-color: #21252980 !important;
  border: none !important;
}

.active>.page-link,
.page-link.active {
  color: white;
  background-color: #161a1fad !important;
  border: none !important;
}

.page-link:hover {
  color: white;
  background-color: #161a1fad !important;
  border: none !important;
}

.disabled>.page-link,
.page-link.disabled {
  color: #acabab !important;
}

.page-link:focus {
  color: white;
  box-shadow: none !important;
}

/* === MINECRAFTSERVER DUZELTMELERI === */
.proxy_new_server {
  background: #00000066 !important;
}

.proxy_new_server::placeholder {
  color: grey;
  opacity: 1;
  /* bazı tarayıcılarda şeffaflık olabilir, bu yüzden tam görünürlük için eklenir */
}

.country-options input[type="radio"] {
  display: none;
}

.country-options label {
  display: inline-block;
  border: 2px solid #ffffff22;
  cursor: pointer;
  margin-right: 10px;
  transition: 0.3s;
  background: #00000066;
  color: #fff;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
  text-transform: uppercase;
  z-index: 2;
}

.country-options input[type="radio"]:checked+label {
  background: #fff;
  color: #000;
}

.proxy_tag {
  top: 10px;
  left: 10px;
  background: #00000066;
  color: #fff;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
  text-transform: uppercase;
  z-index: 2;
}

.proxy_tag.active {
  background: #fff;
  color: #000;
}

.proxy_tag2 {
  top: 10px;
  left: 10px;
  background: #ffffff66;
  color: #fff;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  text-transform: uppercase;
  z-index: 2;
}

.proxy_tag2.active {
  background: #fff;
  color: #000;
}

.proxy_tag2:hover {
  background: #fff;
  color: #000;
}

.proxy_tag2:focus {
  background: #fff;
  color: #000;
}

.proxy_tag2:active {
  background: #fff;
  color: #000;
}

.proxy_tag2:focus-visible {
  background: #fff;
  color: #000;
}

.proxy_tag2:focus-within {
  background: #fff;
  color: #000;
}

.bee {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 250px !important;
  height: 250px !important;
  transform: translate(-50%, -50%);
  object-fit: contain;
  z-index: 10;
  pointer-events: none;
}

.vignette-wrapper {
  position: relative;
  display: inline-block;
  margin-top: -55px;
}

.vignette-wrapper img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 0.5rem;
}

.vignette-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: radial-gradient(ellipse at center,
      rgba(0, 0, 0, 0) 40%,
      rgba(0, 0, 0, 1.5) 100%);
}

a.proxy_color.btn.btn-primary {
  background: rgba(36, 25, 70, 0.55);
  backdrop-filter: blur(15px);
  display: inline;
  border: 0;
}

a.proxy_color.btn.btn-secondary {
  background: rgba(36, 25, 70, 0.3);
  backdrop-filter: blur(15px);
  display: inline;
  border: 0;
}

a.proxy_color2.btn.btn-primary {
  background: rgb(36 25 70);
  backdrop-filter: blur(15px);
  display: inline;
  border: 0;
}

.proxytest {
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  color: white;
  font-size: 13px;
  font-weight: bold;
  text-shadow: 1px 1px 3px #000;
  width: 100%;
  height: 49px;
  padding: 0 8px;
  text-align: center;
  overflow: hidden;

  display: block;
  position: relative;
}

.proxy-bg-color {
  background: rgb(255 255 255 / 56%);
  backdrop-filter: blur(15px);
  display: inline;
  border: 0;
}

.proxy-bg-color:focus {
  background: rgba(255, 255, 255, 0.685);
  backdrop-filter: blur(15px);
  display: inline;
  border: 0;
}

.proxytest>span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1.2em;
  width: 100%;
  padding: 0 8px;
}

.proxy_color.alert.alert-danger.mt-3 {
  background: rgb(203 31 31 / 30%);
  backdrop-filter: blur(15px);
  border: 1px solid #ffffff33;
  box-shadow: 0 4px 12px rgb(0 0 0 / 11%);
  color: white;
}

.proxy_color.alert.alert-success.mt-3 {
  background: rgb(31 203 31 / 30%);
  backdrop-filter: blur(15px);
  border: 1px solid #ffffff33;
  box-shadow: 0 4px 12px rgb(0 0 0 / 11%);
  color: white;
}

.proxy_text_color {
  color: #7e7e7e;
  font-size: 13px;
  position: relative;
  bottom: 1px;
}

.proxy_text_color2 {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}

.proxy_color.badge.bg-success {
  background: rgba(36, 25, 70, 0.3) !important;
  backdrop-filter: blur(15px);
  color: #00ca1bda;
}

.proxy_color.badge.bg-danger {
  background: rgba(36, 25, 70, 0.3) !important;
  backdrop-filter: blur(15px);
  color: #ff2323;
}

.proxy_color2.badge.bg-success {
  background: rgba(36, 25, 70, 0.3) !important;
  backdrop-filter: blur(15px);
  font-size: 14px;
  color: #00ca1bda;
}

button.btn.btn-success.btn-sm.proxy_color {
  background: rgba(36, 25, 70, 0.55);
  backdrop-filter: blur(15px);
  display: inline;
  border: 0;
}

/* === MINECRAFTSERVER DUZELTMELERI === */

/* BREADCRUMB */
.breadcrumb {
  --bs-breadcrumb-divider: ">";
  margin-bottom: 1rem;
}

.breadcrumb .breadcrumb-item a {
  color: #7b5dfc;
}

.breadcrumb-item.active {
  color: #bbb;
}

/* ARTICLE WRAPPER */
.article-box {
  background: rgba(45, 34, 83, 0.45);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 40px;
  margin: 60px auto;
  max-width: 1200px;
}

.article-box img.hero {
  width: 100%;
  border-radius: 8px;
  margin: 20px 0;
}

/* h1{font-size:2rem;font-weight:700;margin-bottom:.5rem}
    h2{font-size:1.5rem;font-weight:700;margin-top:2rem;margin-bottom:1rem}
    p{font-size:1rem;line-height:1.6} */
blockquote {
  border-left: 4px solid #ae7bff;
  padding: 10px 15px;
  margin: 1.5rem 0;
  background: rgba(255, 255, 255, 0.05);
  font-style: italic;
}

code {
  background: #241946;
  padding: 2px 4px;
  border-radius: 4px;
  font-size: 0.9rem;
}