           /*---- media-query ----*/ 
@media (max-width: 400px) { 
  html { 
    font-size: 62.5%; 
  } 
} 
@media (min-width: 401px) and (max-width: 600px) { 
  html { 
    font-size: 75%; 
  } 
} 
@media (min-width: 601px) and (max-width: 768px) { 
  html { 
    font-size: 87.5%; 
  } 
} 
@media (min-width: 769px) and (max-width: 999px) { 
  html { 
    font-size: 100%; 
  }
} 
@media (min-width: 1000px) { 
  html { 
    font-size: 112.5%; 
  }
}
::-webkit-scrollbar {
  display: none;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
      /*---- body ----*/ 
body {
  display: flex;
  flex-direction: column;  
  justify-content: center;
  align-items: center;
  background-color: #090909;
  color: #f8f8f5;
  user-select: none;
  overflow-x: hidden;
  font-family: Inter, sans-serif;
}
img {
  pointer-events: none;
}  
      /*---- navbar ----*/ 
.navbar { 
  display: flex;
  position: sticky;
  backround: transparent;
  background-color: rgba(9, 9, 9, 0.65);
  backdrop-filter: blur(1.4rem);
  border-bottom: .08rem solid rgba(255,255,255,0.08);
  transition: all .5s ease;
  color: white; 
  width: 100%; 
  height: 8rem; 
  padding: 0 1rem;
  top: 0;
  z-index: 999;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}
.navbar.show {
  transform: translateY(0);
}             
.logo-box {
  margin: 0;
  padding: 0;
  overflow: hidden;
}
#logo {
  display: block;
  width: 19rem;
  height: 3rem;
  margin: 0;
  padding: 0; 
  pointer-events: none;
}
.menubox {
  display: flex;
  padding: 1rem 0;  
  overflow-x: auto;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-evenly;
  background: #121212;
}
.menubox span {
  color: #cfcfcf;
  white-space: nowrap;
  flex-shrink: 0;
  text-transform: uppercase;
  transition: color .3s ease;
}
.menubox span:hover {
  color: #fff;
}
#pc-dp-box {
  display: none;
  opacity: 1;
  visibility: visible;
  border-radius: 50%; 
  overflow: hidden; 
  margin-right: 1rem;
  background: #f5f5f5;
  place-items: center;
  border: .08rem solid #fff;
  transition: opacity .5s ease, visibility .5s ease;
}
#pc-dp {
  width: 3.5rem; 
  height: 3.5rem;
  pointer-events: none;
}
#login {
  display: flex;
  color: #090909;
  padding: .5rem .8rem;
  gap: .8rem;
  font-size: 1rem;
  margin-right: .7rem;
  align-items: center;
  background: #fff;
  border: .05rem solid #fff;
  transition: all .5s ease;
}
#login:hover {
  color: #ffffff;
  background: transparent;
}





         /*------ main-body ------*/
.toastify {
  z-index: 99999;
  outline: none;
  width: fit-content;
  max-width: 75vw;
  background: #ffffff;
  border-radius: .7rem;
  padding: .8rem 1rem;
  border: .09rem solid;
  transition: all .5s ease;
  box-shadow: 0 .3rem .1rem rgba(128,128,128,0.1);
  -webkit-tap-highlight-color: transparent;
}
.toastify:hover {
  scale: 1.05;
}
.toastify.success {
  color: green;
  border-color: green;
}
.toastify.error {
  color: maroon;
  border-color: maroon;
}
.toastify.load {
  color: grey;
  border-color: grey;
}
.toastify.warn {
  color: #ffb380;
  z-index: 99995;
  border-color: #ff6700;  
  background: rgba(77,38,0,0.8);
  backdrop-filter: blur(.5rem);
}
.toastify.warn.acc {
  z-index: 99999;
}
.toastify.warn.alert {
  color: #ff3333;
  scale: 1.08;
  border-color: #ff0000;
}
.toast-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
}

         /*---- section-one ----*/
.sec-one {
  width: 100%;
}
.top-decors {
  position: relative;
  padding: 2rem;
}
.top-decors img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  z-index: -1; 
  -webkit-mask-image: linear-gradient(
    to bottom,
    black 70%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    black 70%,
    transparent 100%
  );
}
.decor-texts {
  display: flex;
  gap: 2.5rem;
  padding: 1rem 1rem 2.5rem 1rem;
  flex-direction: column;
  border-botom: .08rem solid rgba(255,255,255,0.25);
}
.subtle-line {
  color: #ccc;
  font-size: 1rem;
  letter-spacing: .3rem;
  font-weight: 800;
  width: fit-content;
  transition: color .3s ease;
  padding: 0 .5rem .5rem .5rem;
  font-family: "Gugi", sans-serif;
  border-bottom: .08rem solid #999;
}
.subtle-line:hover {
  color: #f2f2f2;
}
.bold-line {
  text-align: left;
  width: fit-content;
}
.bold-line h1 {
  font-size: 2rem;
  line-height: 1.5;  
  font-family: Georgia, serif;
}
.bold-line h1 em {
  font-style: italic;
  font-weight: 400;
}
.desc-line {
  color: #ccc;
  width: 30rem;
  line-height: 1.5;
  letter-spacing: .05rem;
  font-family: "Ubuntu", sans-serif;
}
#explore-btn {
  display: flex;
  padding: .8rem;
  gap: 1.2rem;
  font-size: .9rem;
  margin-top: .8rem;
  width: fit-content;
  background: #f5f5f5;
  border: none;
  border-radius: .5rem;
  align-items: center;
  transition: all .5s ease;
}
#explore-btn:hover {
  scale: 1.05;
  background: #bfbfbf;
}
          /*---- section-two ----*/
             /*-- featured --*/
.sec-two {
  width: 100%;
  scroll-margin-top: 9rem;
}
.articles {
  display: flex;
  padding: 1rem 2rem;
  flex-direction: column;
}
.feat-title {
  display: flex;
  gap: 1.2rem;
  color: #ffebcc;
  letter-spacing: .2rem;
  align-items: center;
}
.featured {
  width: 100%;
  margin: 3rem auto;
}
.featured::-webkit-scrollbar {
  display: none;
}
.featured .swiper-pagination {
  font-size: .8rem;
  color: rgba(255,235,204,.8);
}
#feat-arts.loading, .lat-sk {
  opacity: 0.5;
  padding: 9.5rem 0;
  border-radius: 1.5rem;
  background: linear-gradient(90deg, #242a35 25%, #303745 50%, #242a35 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
}
@keyframes skeleton-loading {
  from {
    background-position: 200% 0;
  }
  to {
    background-position: -200% 0;
  }
}
.lat-sk.hide {
  display: none;
}
.feat-art-card {
  display: grid;
  position: relative;
  padding: 1.7rem 2rem;
  height: auto;
  overflow: hidden;
  flex-shrink: 0;
  opacity: 0.5;
  background: #181716;
  border-radius: 1.5rem;
  place-items: center;
  scroll-snap-align: center;
  transition: all 1s ease;
  border: .1rem solid rgba(255,235,204,.3);
}
.feat-art-card.swiper-slide-active {
  opacity: 1;
}
.card-content {
  display: flex;
  gap: 2rem;
  width: 100%;
  font-family: Inter;
  font-size: .72rem;
  letter-spacing: .12em;
  z-index: 9;
  text-transform: uppercase;  
  align-items: flex-start;
  flex-direction: column;
  background: transparent;
}
.card-content h2 {
  font-family: "Cormorant Garamond";
  font-weight: 600;
  line-height: 1.5;
  font-size: 1.2rem;
  color: #f8f8f5;
}
.card-desc {
  font-size: 1rem;
  color: #9a9a94;
  font-weight: 500;
}
.card-body {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.3;
  color: #b5b5b0;
  font-size: 1rem;
  text-transform: none;
}
.card-author {
  font-size: 1rem;
  color: #d8d8d2;
}
.card-content img {
  position: absolute;  
  width: auto;
  height: 90%;
  opacity: 0.05;
  z-index: -1;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  filter: invert(1);
  transform: translate(-50%, -50%);
}
           /*-- latests --*/
.lat-title-box {
  display: flex;
  margin-top: 2rem;
  align-items: center;
  justify-content: space-between;
}
.lat-title, .about-title {
  display: flex;
  gap: 1.2rem;
  color: #f5f5f5;
  letter-spacing: .2rem;
  align-items: center;
}
#view-lats {
  display: flex;
  gap: .9rem;
  color: #cfcfcf;
  font-size: .9rem;
  align-items: center;
  letter-spacing: .1rem;
  padding: 0 .5rem .5rem .5rem;
  transition: color .3s ease, border-color .3s ease;
  border-bottom: .08rem solid #cfcfcf;
}
#view-lats:hover {
  color: #fff;
  border-color: #fff;
}
#lat-arts {
  display: grid;
  gap: 2rem;
  margin: 3rem auto;
  width: 100%;
  grid-template-columns: 1fr;
}
.lat-art-card {
  display: grid;
  position: relative;
  padding: 1.7rem 2rem;
  height: auto;
  overflow: hidden;
  background: #111111;
  border-radius: 1.5rem;
  place-items: center;
  transition: all .5s ease;
  border: .1rem solid rgba(255,255,255,.24);
}
.lat-art-card:hover {
  transition-duration: 0.3s;
  transform: translateY(-0.5rem);
  border-color: rgba(255,255,255,.12);
}



.sec-three {
  width: 100%;
  scroll-margin-top: 12rem;
}
.about-area {
  display: flex;
  padding: 1rem 2rem;
  flex-direction: column;
}
.about-text {
  display: flex;
  gap: 1rem;
  line-height: 1.9;
  color: #f5f5f3;
  padding: 0 1rem;
  letter-spacing: 0.02em;
  font-size: 1.15rem;
  margin: 2.5rem 0 3rem 0;
  background: 
    radial-gradient(
      circle at center,
      rgba(255,255,255,.025),
      transparent 70%
    );
  flex-direction: column;
  font-family: Inter, sans-serif;
}








            /*---- footer ----*/
footer {
  display: grid;
  padding: 2rem;
  width: 100%;
  gap: 2rem;
  margin-top: 3rem;
  place-items: center;
  background: #080808;
  text-transform: uppercase;
  grid-template-columns: 1fr;
  border-top: .1rem solid rgba(255,255,255,.06);
}
footer div {
  width: 100%;
  max-width: 72rem;
}
.foot-hero {
  display: flex;
  gap: 2.5rem;
  margin: 0 auto;
  align-items: center;
  flex-direction: column;
  padding-bottom: 2rem;
  border-bottom: .08rem solid rgba(255,255,255,.1);
}
.foot-hero img {
  width: 7rem;
  height: 7rem;
  filter: invert(1);
  border-radius: 50%;
}
.foot-hero h3 {
  font-weight: 400;
  letter-spacing: .075rem;
  font-family: "Cormorant Garamond";
}
.foot-subs {
  display: flex;
  gap: 1.2rem;
  margin: 0 auto;
  width: fit-content;
  text-align: center;
  align-items: center;
  flex-direction: column;  
}
.foot-subs button {
  display: flex;
  padding: 1rem 2.25rem;
  gap: 1.2rem;
  font-size: .9rem;
  background: #f5f5f5;
  border: none;
  border-radius: .5rem;
  align-items: center;
  transition: all .5s ease;
}
.foot-subs p {
  text-transform: none;
  line-height: 1.5rem;
  font-family: "Ubuntu", sans-serif;
}
.foot-subs button:hover {
  scale: 1.05;
  background: #bfbfbf;
}
.foot-links {
  display: grid;
  gap: 1.8rem;
  padding: 1.8rem;
  grid-template-columns: 1fr;
}
.foot-menu {
  display: flex;
  gap: 1.5rem;
  flex-direction: column;
}
.foot-menu h2 {
  color:#F8F8F5;
  font-size: 1.1rem;
  line-height: 2rem;
  font-fmily:"Cormorant Garamond";
  font-family: "Inter", sans-serif;
}
.foot-menu span {
  display: flex;
  color: #c8c8c3;
  gap: 1rem;
  font-size: .9rem;
  margin-left: 1.5rem;
  width: fit-content;
  align-items: center;
  transition: color .3s ease;
}
.foot-menu span:hover {
  color: #fff;
}
.foot-menu span i {
  opacity: .65;
}
.copyright {
  display: flex;
  align-items: center;
  line-height: 2rem;  
  flex-direction: column;
  text-transform: none;
  padding-top: 1.5rem;
  font-family: "Inter", sans-serif;
  border-top: .08rem solid rgba(255,255,255,.1);
}
.cr-text {
  letter-spacing: .05rem;
}
.foot-dev {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  align-items: center;
  width: fit-content;
}
.developer {
  display: flex;
  gap: .5rem;
  font-size: .8rem;
  align-items: center;
  padding: .2rem .8rem;
  border-radius: .7rem;
  background: #262626;
  border: .05rem solid #262626;
  transition: border-color .3s ease, background .3s ease;
}
.developer:hover {
  border-color: #fff; 
  background: transparent;
}














#acc-box-bg {
  display: grid;
  position: fixed;
  z-index: 99998;
  left: 0;
  right: 0;
  bottom: 0;
  top: 8rem;
  width: 100%;
  height: calc(100vh - 6.04rem);
  place-items: center;
  backdrop-filter: blur(1rem);
  transition: all .5s ease;
  transform: translateX(100vw);
  background-color: rgba(42, 48, 58, 0.8);
}
#acc-box-bg.show {
  transform: translateX(0);
}
#acc-box {
  display: flex;
  position: relative;
  background: transparent;
  color: #ffffff;
  margin: 0;
  padding: 0;  
  overflow: hidden;
  border: .08rem solid #fff;
  border-left: none;
  border-radius: 2rem;
  align-items: centre;
  justify-content: center;
  transition: all .6s ease;
}
#front-box {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 20rem;
  z-index: 99;
  padding: 0 4rem;
  text-align: center;
  background: #8367da;
  place-items: center;
  box-sizing: border-box;
  transition: all .6s ease-in-out;
  border-radius: 0 5rem 5rem 0;
  box-shadow: .2rem 0 .4 rgba(0, 0, 0, 0.5);
}
#front-box.move {
  left: calc(100% - 20rem);
  border-radius: 5rem 0 0 5rem;
}
#acc-box:has(#front-box.move) {
  border-right: none;
  border-left: .08rem solid #fff;
}
#front-box h1 {
  font-weight: 500;
  font-size: 1.5rem;
}
#toggle-form {
  width: 10rem;
  padding: .5rem;
  color: #8367da;
  background: #ffffff;
  border-radius: .6rem;
  pointer-events: auto;
  transition: all .3s ease;
  border: .1rem solid #fff;
}
#toggle-form.disable {
  pointer-events: none;
}
#toggle-form:hover {
  color: #ffffff;
  background: transparent;
}
#login-box {
  display: grid;
  opacity: 1;
  z-index: 9;
  padding: 2rem;
  visibility: visible;
  place-items: center;
  transition: all .6s ease;
}
#login-box.hide {
  opacity: 0;
  visibility: hidden;
}

#google-btn {
  display: flex;
  gap: .7rem;
  align-items: center;
  width: fit-content;
  padding: .8rem 1rem;
  border-radius: .2rem;
  border: none;
  margin: 0 auto;
  font-size: 1.1rem;
  font-weight: 500;  
  color: #555;
  transition: all 0.3s ease;
  box-shadow: 0 .4rem .6rem rgba(255, 255, 255, 0.1);
  background: linear-gradient(to right, #ffffff, #f8f9fa);
}

#google-btn img {
  width: 1.5rem;
  height: 1.5rem;
}

#google-btn:hover {
  background: #f1f3f4;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

#google-btn:active {
  background: #e8eaed;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}


.separator {
  display: flex;
  width: 100%;
  align-items: center;
  text-align: center;
  color: #808080;
  margin: 2.5rem 0;
}

.separator::before,
.separator::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #ccc;
  margin: 0 1rem;
}


@media (max-width: 768px) {
  #acc-box {
      heght: 45rem;
      border-top: none;
      align-items: stretch;
      justify-content: flex-start;
      flex-direction: column;
      box-sizing: border-box;
      border-left: .08rem solid #fff;
  }
  #front-box {
      left: unset;
      top: unset;
      bottom: unset;
      width: 100%;
      padding: 1rem;
      position: static;
      border-radius: 0 0 5rem 5rem;
  }
  #front-box.move {
      left: unset;
      border-radius: 0 0 5rem 5rem;
  }
  #login-box {
      height: 100%;
      visibility: unset;
      transform: translateY(0);
  }
  #login-box.hide {
      visibility: unset;
      transform: translateY(100%);
  }
}


#profile-box {
    display: none;
    position: relative;
    backround: white;
    margin: 0;
    padding: 2rem;
    overflow: hidden;
    border-radius: .8rem;
    background: rgba(230,230,230,0.3);
    border: .05rem solid #ac98e6;
    place-items: center;
    box-sizing: border-box;
}
.pf-email-box {
    position: relative;
    margin: 0;
    padding: 0;
    margin-bottom: 1rem;
}
.pf-email-box #inp_pf_email {
    margin: 0;
    padding-right: 2.8rem;
}
#pf-email-check {
    position: absolute;
    top: 50%;
    right: .8rem;
    pointer-events: none;
    color: rgba(0, 204, 0, 0.7);
    font-size: 1.2rem;
    transform: translateY(-50%);
}
#pf-email-check.fa-circle-exclamation {
    color: rgba(255,51,51,0.7);
    pointer-events: auto;
}
#pf-email-check.fa-circle-exclamation + #inp_pf_email {
    border: .08rem solid rgba(255,51,51,0.7);
}
#pf-btn {
    display: flex;
    position: relative;
    background: transparent; 
    border: .05rem solid #fff; 
    height: 3rem; 
    width: 18rem; 
    padding: .5rem;
    color: #fff;
    scale: 1;
    margin-top: 2rem;
    overflow: hidden;
    border-radius: .8rem;
    align-items: center;
    justify-content: space-around;
}
#pf-btn:active {
    transform: scale(.985);
}
#pf-btn span {
    z-index: 99;
}
#pf-btn-slider {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 9;
    width: 9.5rem;
    background: #8367da;
    border-radius: .8rem;
    transition: left .5s ease;
}
#pf-btn-slider.slide {
    left: calc(100% - 9.5rem);
}
#danger-zone {
    display: grid;
    padding: 0;
    margin-top: 3rem;
    place-items: center;
}
#logout-btn {
    width: 14rem;
    padding: .5rem;
    color: #ff6700;
    background: #ffffff;
    border-radius: .6rem;
    border: .05rem solid #ff6700;
    transition: background .5s ease;
}
#logout-btn:hover {
    background: #ffe5d6;
}





@media (max-width: 448px) {
  .menubox span {
      font-size: .9rem;
  }
}
@media (min-width: 448px) {
  .foot-subs {
      gap: 2rem;
      text-align: left;
      flex-direction: row;
  }
  .foot-links {
      grid-template-columns: repeat(2, max-content);
      justify-content: center;
      gap: 20%;
  }
}
@media (min-width: 1048px) {
  .menubox {
      width: 50%;
  }
}
@media (max-width: 1048px) {
  .navbar {
      height: 11rem; 
      padding: 0 1rem 3rem 1rem;
  }
  .menubox {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
  }
  .sec-two {
      scroll-margin-top: 12rem;
  }
}
@media (min-width: 768px) {
  .feat-art-card {
      max-width: 50vw;
  }
  #lat-arts {
      grid-template-columns: repeat(2, 1fr);
  }
}






