




.shine::after {
  content: "";
  position: absolute;
  top: -50%; 
  left: -50%; 
  width: 200%; 
  height: 200%; 
  background: linear-gradient(
    125deg, 
    transparent 40%,
    rgba(255,255,255,0.7) 50%,
    transparent 60%
  );
  transform: rotate(0deg); 
  animation: shineAnim 2s linear infinite;
  pointer-events: none;
}

@keyframes shineAnim {
  0%   { transform: translateX(-100%) translateY(0); opacity: 0; }
  5%   { opacity: 1; }
  50%  { transform: translateX(100%) translateY(0); opacity: 1; }
  55%  { opacity: 0; }
  100% { transform: translateX(100%) translateY(0); opacity: 0; }
}



/* ------------------------------------------------------------------------------------------------------------------------- */



/* ______________________________________________________________________________________________________*/
/* ______________________________________________________________________________________________________*/
/* ______________________________________________________________________________________________________*/
/* ______________________________________________________________________________________________________*/
/* ______________________________________________________________________________________________________*/
/* ______________________________________________________________________________________________________*/

* {
 outline: none;
 box-sizing: border-box;
}

:root {
 --theme-bg-color: rgba(16 18 27 / 40%);
 --border-color: rgba(113 119 144 / 25%);
 --theme-color: #f9fafb;
 --inactive-color: rgb(113 119 144 / 78%);
 --body-font: "Poppins", sans-serif;
 --hover-menu-bg: rgba(12 15 25 / 30%);
 --content-title-color: #999ba5;
 --content-bg: rgb(146 151 179 / 13%);
 --button-inactive: rgb(249 250 251 / 55%);
 --dropdown-bg: #21242d;
 --dropdown-hover: rgb(42 46 60);
 --popup-bg: rgb(22 25 37);
 --search-bg:  #14162b;
 --overlay-bg: rgba(36, 39, 59, 0.3);
 --scrollbar-bg: rgb(1 2 3 / 40%);
}


.appDD {
 top: 180px;
 left: 50px;
 background-color: rgba(0, 0, 0, 0.15);
 max-width: min(1817px, calc(100vw - 100px)); /* 50px left + 50px right TOR */
 margin-right: 50px; /* TOR */
 max-height: 960px;
 height: 74vh;
 display: flex;
 flex-direction: column;
 overflow: hidden;
 position: relative;
 width: 100%;
 border-radius: 14px;
 backdrop-filter: blur(20px);
 -webkit-backdrop-filter: blur(20px);
 font-size: 15px;
 font-weight: 500;
}

.headerDD {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: 58px;
  width: 100%;
  border-bottom: 1px solid var(--border-color);
  padding: 0 30px;
  white-space: nowrap;
}


@media screen and (max-width: 480px) {
  .headerDD {
    padding: 0 16px;
  }
}

.headerDD-menu {
  display: flex;
  align-items: center;
}

.headerDD-menu a {
  padding: 20px 30px;
  text-decoration: none;
  color: var(--inactive-color);
  border-bottom: 2px solid transparent;
  transition: 0.3s;
}


@media screen and (max-width: 610px) {
  .headerDD-menu a:not(.main-header-link) {
    display: none;
  }
}

.headerDD-menu a.is-active,
.headerDD-menu a:hover {
  color: var(--theme-color);
  border-bottom: 2px solid var(--theme-color);
}



.notifyDD {
 position: relative;
}
.notifyDD::before {
 content: "";
 position: absolute;
 background-color: #3a6df0;
 width: 6px;
 height: 6px;
 border-radius: 50%;
 right: 20px;
 top: 16px;
}

.menucircleDD {
 width: 15px;
 height: 15px;
 background-color: #000000;
 border-radius: 50%;
 box-shadow: 24px 0 0 0 #0f0f0f, 48px 0 0 0 #141414;
 margin-right: 195px;
 flex-shrink: 0;
 @media screen and (max-width: 945px) {
  display: none;
 }
}

.searchbarDD {
 height: 40px;
 display: flex;
 width: 100%;
 max-width: 400px;

 border-radius: 4px;
 input {
  width: 100%;
  height: 100%;
  border: none;
  background: rgba(20, 20, 20, 0.45); 
  backdrop-filter: blur(15px);          
  -webkit-backdrop-filter: blur(15px);  
  border-radius: 4px;
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 500;
  padding: 0 20px 0 40px;
  box-shadow: 0 0px 5px rgba(0,0,0,0.3);  
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 56.966 56.966' fill='%23717790c7'%3e%3cpath d='M55.146 51.887L41.588 37.786A22.926 22.926 0 0046.984 23c0-12.682-10.318-23-23-23s-23 10.318-23 23 10.318 23 23 23c4.761 0 9.298-1.436 13.177-4.162l13.661 14.208c.571.593 1.339.92 2.162.92.779 0 1.518-.297 2.079-.837a3.004 3.004 0 00.083-4.242zM23.984 6c9.374 0 17 7.626 17 17s-7.626 17-17 17-17-7.626-17-17 7.626-17 17-17z'/%3e%3c/svg%3e");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: 16px 48%;
  color: var(--theme-color);
  &::placeholder {
   font-family: var(--body-font);
   color: var(--inactive-color);
   font-size: 15px;
   font-weight: 500;
  }
 }
}



.headerprofileDD {
 display: flex;
 align-items: center;
 padding: 0 16px 0 40px;
 margin-left: auto;
 flex-shrink: 0;
 svg {
  width: 22px;
  color: #f9fafb;
  flex-shrink: 0;
 }
}

.notificationDD {
 position: relative;
}
.notificationDD-number {
 position: absolute;
 background-color: #3a6df0;
 width: 16px;
 height: 16px;
 border-radius: 50%;
 font-size: 10px;
 display: flex;
 align-items: center;
 justify-content: center;
 color: #fff;
 right: -6px;
 top: -6px;
}
.notificationDD + svg {
 margin-left: 22px;
}
@media screen and (max-width: 945px) {
 .notificationDD + svg {
  display: none;
 }
}


.notificationDD + svg,
.notificationDD + a > svg {
  margin-left: 22px;
}


.profileimgDD {
 width: 32px;
 height: 32px;
 border-radius: 50%;
 object-fit: cover;
 border: 2px solid var(--theme-color);
 margin-left: 22px;

 opacity: 100; 

 animation-delay: 0.5s; 
}

.wideDD {
 .headermenuDD,
 .headerprofileDD {
  display: none;
 }
 .searchbarDD {
  
  max-width: 600px;
  margin: auto;
  transition: 0.4s;
  box-shadow: 0 0 0 1px var(--border-color);
  padding-left: 0;
 }
 .menucircleDD {
  margin-right: 0;
 }
}

.wrapperDD {
 display: flex;
 flex-grow: 1;
 overflow: hidden;
}

.leftsideDD {
 flex-basis: 240px;
 border-right: 1px solid var(--border-color);
 padding: 26px;
 overflow: auto;
 flex-shrink: 0;
 @media screen and (max-width: 945px) {
  display: none;
 }
}

.sidewrapperDD + .sidewrapperDD {
 margin-top: 20px;
}

.sidetitleDD {
 color: var(--inactive-color);
 margin-bottom: 14px;
}

.sidemenuDD {
  display: flex;
  flex-direction: column;
  white-space: nowrap;

  a {
    text-decoration: none;
    color: var(--theme-color);
    display: flex;
    align-items: center;
    font-weight: 400;
    padding: 10px;
    font-size: 14px;
    border-radius: 6px;
    transition: 0.3s;

    &:hover {
      background-color: var(--hover-menu-bg);
    }

    &.active {
      background-color: var(--hover-menu-bg);
    }
  }

  svg {
    width: 16px;
    margin-right: 8px;
  }
}


#contactsContainer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.contactCard {
  width: 100%;
  max-width: 280px;
  height: 70px;
  background: rgba(53, 53, 53, 0.85);
  border-radius: 16px;
  display: flex;
  align-items: center;
  padding: 10px;
  backdrop-filter: blur(8px);
  transition: 0.3s ease;
}

.contactCard:hover {
  transform: scale(1.03);
  cursor: pointer;
  background: rgba(80, 80, 80, 0.9);
}

.contactCard img {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  margin-right: 10px;
}

.contactInfo {
  display: flex;
  flex-direction: column;
  color: white;
  font-family: 'Poppins', sans-serif;
}

.contactName {
  font-weight: 600;
  font-size: 14px;
}

.contactBio {
  font-size: 11px;
  opacity: 0.8;
}





.updatesDD {
 position: relative;
 top: 0;
 right: 0;
 margin-left: auto;
 width: 18px;
 height: 18px;
 font-size: 11px;
}

.mainheaderDD {
 display: flex;
 align-items: center;
 border-bottom: 1px solid var(--border-color);
 height: 58px;
 flex-shrink: 0;
 .headermenuDD {
  margin-left: 150px;
  @media screen and (max-width: 1055px) {
   margin: auto;
  }
  a {
   padding: 20px 24px;
  }
 }
}

.maincontainerDD {
 display: flex;
 flex-direction: column;
 flex-grow: 1;
}

.menulinkmainDD,
.mainheaderlinkDD {
  text-decoration: none;
  color: var(--inactive-color);   
  padding: 20px 24px;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
}

.menulinkmainDD.is-active,
.mainheaderlinkDD.is-active {
  color: var(--theme-color);             
  border-bottom: 2px solid var(--theme-color);
}

.menulinkmainDD:hover,
.mainheaderlinkDD:hover {
  color: var(--theme-color);
}


.contentwrapperDD {
  display: flex;
  flex-direction: column;
  color: var(--theme-color);
  padding: 20px 40px;
  height: 100%;
  overflow: auto;
  background-color: var(--theme-bg-color);
}


@media screen and (max-width: 510px) {
  .contentwrapperDD {
    padding: 20px;
  }
}


.contentwrapperDD-headerDD {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  background-image: url("https://www.transparenttextures.com/patterns/cubes.png"),    
    linear-gradient(
      to right top,
      #000000,
      #1d1c1d,
      #000000,
      #252424,
      #2e2d2d,
      #5c5758,
      #80797a,
      #80797a,
      rgb(158, 153, 151),
      #c4c1be,
      #cfceca,
      #e9e8e4
    );
  border-radius: 14px;
  padding: 20px 40px;
}

@media screen and (max-width: 415px) {
  .contentwrapperDD-headerDD {
    padding: 20px;
  }
}


.contentwrapperDD.overlay {
  pointer-events: none;
  transition: 0.3s;
  background-color: var(--overlay-bg);
}


.overlayappDD {
 width: 100%;
 height: 100%;
 position: fixed;
 left: 0;
 top: 0;
 pointer-events: all;
 background-color: rgba(36, 39, 59, 0.8);
 opacity: 0;
 visibility: hidden;
 transition: 0.3s;
 &.is-active {
  visibility: visible;
  opacity: 1;
 }
}

/* ADD CONTACT CSS FRIEND REQ ----------------------------------------------------- */


/* ---------------------------------------------------------------------------------*/

.imgcontentDD {
 position: absolute;
 top: 7px;
 left: 22px;
 font-weight: 500;
 font-size: 17px;
 display: flex;
 align-items: center;
}

.mainiconDD {
  width: 60px;   
  height: 60px;
  margin-right: 8px;
}


.contenttextDD {
 font-weight: 400;
 font-size: 14px;
 margin-top: 24px;
 line-height: 1.7em;
 color: #ebecec;
 display: -webkit-box;
 -webkit-line-clamp: 4;   
 line-clamp: 4;           
 -webkit-box-orient: vertical;
 overflow: hidden;
 text-overflow: ellipsis;
}

.contentwrappercontextDD {
 max-width: 350px;
}

.contentbuttonDD {
background-color: #1d1e24;
background-image: linear-gradient(
  43deg,
    #222329 0%,
    #839ba5 46%,
    #202125 100%
);
 border: none;
 padding: 8px 26px;
 color: #fff;
 border-radius: 20px;
 margin-top: 16px;
 cursor: pointer;
 transition: 0.3s;
 white-space: nowrap;
}

.contentbuttonDD:not(.open):hover {
 background-image: linear-gradient(
  43deg,
    #111111 0%,
    #4b5255 46%,
    #496b7a 100%
);
}



.contentsectionDD {
 margin-top: 1px;
 display: flex;
 flex-direction: column;
 &-title {
  color: var(--content-title-color);
  margin-bottom: 14px;
 }
 ul {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  justify-content: space-around;
  background-color: var(--content-bg);
  padding-left: 0;
  margin: 0;
  border-radius: 14px;
  border: 1px solid var(--theme-bg-color);
  cursor: pointer;
  li {
   list-style: none;
   padding: 10px 18px;
   display: flex;
   align-items: center;
   font-size: 16px;
   width: 100%;
   height: 100%;
   white-space: nowrap;
   transition: 0.3s;
   &:hover {
    background-color: var(--theme-bg-color);
    &:first-child {
     border-radius: 13px 13px 0 0;
    }
    &:last-child {
     border-radius: 0 0 13px 13px;
    }
   }
   & + li {
    border-top: 1px solid var(--border-color);
   }
  }
  svg {
   width: 28px;
   border-radius: 6px;
   margin-right: 16px;
   flex-shrink: 0;
  }
 }
}

.productsDD {
 display: flex;
 align-items: center;
 width: 150px;
 @media screen and (max-width: 480px) {
  width: 120px;
 }
}
.statusDD {
 margin-left: auto;
 width: 140px;
 font-size: 15px;
 position: relative;
 @media screen and (max-width: 700px) {
  display: none;
 }
 &-circle {
  width: 6px;
  height: 6px;
  background-color: #396df0;
  position: absolute;
  border-radius: 50%;
  top: 4px;
  left: -20px;
  &.green {
   background-color: #3bf083;
  }
 }
 &-button {
  font-size: 15px;
  margin-top: 0;
  padding: 6px 24px;
  @media screen and (max-width: 390px) {
   padding: 6px 14px;
  }
  &.open {
   background: none;
   color: var(--button-inactive);
   border: 1px solid var(--button-inactive);
  }
  &:not(.open):hover {
   color: #fff;
   border-color: #fff;
  }
 }
}


.user-category {
  white-space: nowrap;       
  overflow: hidden;          
  text-overflow: ellipsis;   
  max-width: 140px;          
  display: block;
}





@media screen and (max-width: 415px) {
 .adobe-product .menu {
  display: none;
 }
}

.dropdownDD {
 position: relative;
 height: 53px;
 width: 40px;
 top: -24px;
 display: flex;
 left: -5px;
 background: transparent;
 border: none;
 cursor: pointer;
 ul {
  position: absolute;
  background: var(--dropdown-bg);
  height: 110px;
  width: 120px;
  right: 0;
  top: 20px;
  pointer-events: none;
  opacity: 0;
  transform: translatey(10px);
  transition: all 0.4s ease;
  li a {
   text-decoration: none;
   color: var(--theme-color);
   font-size: 12px;
  }
 }
}

.dropdownDD.is-active {
 ul {
  opacity: 1;
  pointer-events: all;
  transform: translatey(25px);
  li:hover {
   background-color: var(--dropdown-hover);
  }
 }
}

.buttonwrapperDD {
 display: flex;
 align-items: center;
 justify-content: flex-end;
 width: 187px;
 margin-left: auto;
 @media screen and (max-width: 480px) {
  width: auto;
 }
}

.popupDD {
 position: absolute;
 padding: 30px 40px;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 overflow-y: auto;
 box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.4);
 transition: all 0.3s;
 z-index: 10;
 background-color: var(--popup-bg);
 width: 500px;
 visibility: hidden;
 opacity: 0;
 border-radius: 6px;
 display: flex;
 flex-direction: column;
 white-space: normal;
 @media screen and (max-width: 570px) {
  width: 100%;
 }
 &.visible {
  visibility: visible;
  opacity: 1;
 }
 &__title {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
 }
 &__subtitle {
  white-space: normal;
  margin: 20px 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8em;
  a {
   color: var(--theme-color);
  }
 }
}

.contentbuttonwrapperDD .contentbuttonDD.statusbuttonDD.open.close {
 width: auto;
}

.contentsectionDD .close {
 margin-right: 0;
 width: 24px;
}

.checkboxwrapperDD {
 display: flex;
 align-items: center;
 font-size: 14px;
 font-weight: 400;
 & + .checkboxwrapperDD {
  margin: 20px 0 40px;
 }
}

.checkboxDD {
 display: none;
}

.checkboxDD + label {
 display: flex;
 align-items: center;
 &:before {
  content: "";
  margin-right: 10px;
  width: 15px;
  height: 15px;
  border: 1px solid var(--theme-color);
  border-radius: 4px;
  cursor: pointer;
  flex-shrink: 0;
 }
}

.checkboxDD:checked + label:before {
 background-color: #3a6df0;
 border-color: #3a6df0;
 background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' class='feather feather-check'%3e%3cpath d='M20 6L9 17l-5-5'/%3e%3c/svg%3e");
 background-position: 50%;
 background-size: 12px;
 background-repeat: no-repeat;
}

.contentbuttonwrapperDD {
 margin-top: auto;
 margin-left: auto;
 .open {
  margin-right: 8px;
 }
}
.appscardDD {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; 
  align-items: stretch;
  gap: 20px; 
  width: 100%;
}

.appcardDD {
  position: relative;
  height: 140px;
  flex: 1 1 calc(33.3% - 20px); 
  font-size: 16px;
  background-color: var(--content-bg);
  border-radius: 14px;
  border: 1px solid var(--theme-bg-color);
  padding: 20px;
  cursor: pointer;
  overflow: hidden;
  transition: background-size 0.6s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


.appcardDD::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.55) 60%,
    rgba(0, 0, 0, 0.75) 100%
  );
  z-index: 0;
  transition: background 0.3s ease;
}


.appcardDD > * {
  position: relative;
  z-index: 1;
}


.appcardDD:hover {
  
  background-size: 110%;
}

.appcardDD:hover::before {
  background: linear-gradient(
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.4) 60%,
    rgba(0, 0, 0, 0.6) 100%
  );
}


.appcardDD svg {
  width: 28px;
  border-radius: 6px;
  margin-right: 12px;
  flex-shrink: 0;
}

.appcardDD img {
  width: 35px;           
  height: 35px;          
  margin-right: 10px;    
 
  
}



.appcardDD span {
  display: flex;
  align-items: center;
}

.appcardsubtextDD {
  position: relative;
  top: 15px; 
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6em;
}


.appcardbuttonsDD {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-top: 16px;
}


@media screen and (max-width: 1110px) {
  .appcardDD {
    flex: 1 1 calc(50% - 20px); /
  }
}

@media screen and (max-width: 565px) {
  .appcardDD {
    flex: 1 1 100%; 
  }
}



::-webkit-scrollbar {
 width: 6px;
 border-radius: 10px;
}

::-webkit-scrollbar-thumb {
 background: var(--scrollbar-bg);
 border-radius: 10px;
}
/* FIREFOX + TOR ONLY */
@-moz-document url-prefix() {
  html {
    scrollbar-width: thin;
    scrollbar-color: var(--scrollbar-bg) transparent;
  }
}


.adobeproductDD {
  cursor: pointer;
  pointer-events: auto;
  height: 35px;
  padding: 0 8px;
  box-sizing: border-box;
}

.post-row {
  pointer-events: auto !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.post-user {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  width: 150px; 
}

.user-pfp {
  width: 25px;
  height: 25px;
  object-fit: cover;
  border-radius: 50%;
}

.post-title {
  flex: 1;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.post-category {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: flex-end;
  width: 160px; 
  flex-shrink: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 12px;
}




/* ______________________________________________________________________________________________________*/
/* ______________________________________________________________________________________________________*/
/* ______________________________________________________________________________________________________*/
/* ______________________________________________________________________________________________________*/
/* ______________________________________________________________________________________________________*/
.sidemenuDD {
  display: flex;
  flex-direction: column;
  white-space: nowrap;

  a {
    text-decoration: none;
    color: var(--theme-color);
    display: flex;
    align-items: center;
    font-weight: 400;
    padding: 10px;
    font-size: 14px;
    border-radius: 6px;
    transition: 0.3s;

    &:hover {
      background-color: var(--hover-menu-bg);
    }

    &.active {
      background-color: var(--hover-menu-bg);
    }
  }

  svg {
    width: 16px;
    margin-right: 8px;
  }
}

.sidemenuDD svg.icon-shift {
  transform: translateY(1.25px);
}

/* ____________________________________________________ */

.ui-underline {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2.3px;
  text-decoration-color: rgba(253, 253, 253, 0.7);
}
.ui-underline:hover {
  text-decoration-color: rgba(253, 253, 253, 0.9);
}

/* ________________________________________________________________________________________________________________________________________________________________________ */

/* =========================
   TOOLS frontpage UI
   ========================= */

.mpFront{
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 1100px;
}

.mpCrumb{
  color: rgba(255,255,255,0.38);
  font-size: 12px;
  letter-spacing: 0.2px;
}
.mpCrumb span{ opacity: 0.45; padding: 0 6px; }

.mpTitle{
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}
.mpTitleIcon{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  font-weight: 700;
}
.mpH1{
  font-size: 18px;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  line-height: 1.1;
}
.mpSub{
  margin-top: 2px;
  font-size: 12px;
  color: rgba(255,255,255,0.46);
}

.mpRules{
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(0,0,0,0.20);
  border: 1px solid rgba(255,255,255,0.06);
}
.mpRulesHead{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.mpRulesLabel{
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.70);
  letter-spacing: 0.18px;
}
.mpRulesLink{
  font-size: 12px;
  color: rgba(255,255,255,0.65);
}
.mpRulesList{
  margin: 0;
  padding-left: 18px;
  color: rgba(255,255,255,0.48);
  font-size: 12px;
  line-height: 1.55;
}
.mpRulesList li{ margin: 4px 0; }

.mpTips{
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
  align-items: stretch;
}
.mpTipCard{
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}
.mpTipTitle{
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.78);
}
.mpTipText{
  margin-top: 2px;
  font-size: 12px;
  color: rgba(255,255,255,0.46);
}

.mpCreateBtn{
  padding: 0 14px;
  min-width: 150px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.88);
  font-weight: 700;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
}
.mpCreateBtn:hover{
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-1px);
}

.mpSectionHead{
  display:flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
}
.mpSectionTitle{
  font-size: 12px;
  font-weight: 800;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.22px;
  text-transform: uppercase;
}

.mpList{
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.18);
}

.mpRow{
  display:flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  text-decoration: none;
  color: inherit;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.mpRow:first-child{ border-top: none; }
.mpRow:hover{
  background: rgba(255,255,255,0.04);
}

.mpRowLeft{
  min-width: 0;
  display:flex;
  flex-direction: column;
  gap: 6px;
}
.mpRowTitle{
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.90);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 740px;
}
.mpRowMeta{
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}
.mpUser{
  color: rgba(255,255,255,0.72);
}

.mpRowRight{
  display:flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}
.mpStat{
  min-width: 72px;
  text-align: right;
  font-size: 11px;
  color: rgba(255,255,255,0.42);
}
.mpStat b{
  display:block;
  font-size: 13px;
  color: rgba(255,255,255,0.86);
  font-weight: 800;
}

.mpBadge{
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18px;
  color: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
}
.mpBadge--sticky{
  color: rgba(180,255,180,0.95);
  border-color: rgba(180,255,180,0.18);
  background: rgba(80, 255, 120, 0.06);
}
.mpBadge--service{
  color: rgba(120,180,255,0.95);
  border-color: rgba(120,180,255,0.18);
  background: rgba(120,180,255,0.06);
}
.mpBadge--want{
  color: rgba(255,200,120,0.95);
  border-color: rgba(255,200,120,0.18);
  background: rgba(255,200,120,0.06);
}

.mpDivider{
  height: 10px;
  background: rgba(0,0,0,0.22);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* responsive */
@media (max-width: 980px){
  .mpTips{ grid-template-columns: 1fr; }
  .mpCreateBtn{ min-height: 42px; }
  .mpRowTitle{ max-width: 520px; }
}
