body{
    font-family: "Quicksand", sans-serif;
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: #000000;
    overflow-x: hidden;
    line-height: 28px;
    font-weight: 500;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.page-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}
img {
    max-width: 100%;
    border: 0;
}
a:hover {
    text-decoration: none;
}
a {
    color: #000;
    text-decoration: none;
    outline: 0;
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
button{
    outline: 0;
    cursor: pointer;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.main-header {
    line-height: 0;
}
.main-header .main-header-center img {
    width: 100%;
}
header {
    background: #362c35;
    border-bottom: solid 1px #2c222d;
    border-top: solid 1px #2c222d;
}
.full-wrapper {
    width: 100%;
    padding: 0 15px;
}
.header-nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.login-Colm a {
    color: #968a9e;
    border-right: solid 1px #504358;
    padding: 10px 15px 10px 0;
    display: inline-block;
}
.login-Colm span {
    color: #968a9e;
    padding-left: 15px;
}
.themeColm a {
    border: solid 1px #968a9e;
    color: #968a9e;
    padding: 5px 10px;
    font-size: 13px;
}
.themeColm a:hover {
    border: solid 1px #fff;
    color: #fff;
}
.charactercreation-bg {
    background-color: #3d3544;
/*    background-image: url(../img/main-bg.png);
    background-position: center bottom;
    background-size: cover;*/
/*    padding-bottom: 248px;*/
}
.main-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}
.center-charater-message {
    text-align: center;
    color: #ffe3c3;
    font-style: italic;
    padding: 30px 0;
}
.org-request-flex {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
    align-items: stretch;
}

.whowe-arecolm,
.resting-workimgcolm,
.requesting-colm {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 0 10px;
}
.whowe-arecolm {
    width: 40%;
    padding: 0 10px;
}
.resting-workimgcolm {
    width: 20%;
    flex: 0 0 20%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.requesting-colm {
    width: 40%;
    padding: 0 10px;
}
.maroon-panel-bx {
    min-height: 100%;
    background-color: #29232d;
    border-radius: 5px;
    padding: 20px;
    color: #968a9e;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.maroon-panel-bx h3 {
    text-align: center;
    margin: 0 0 10px;
    color: #ffe3c3;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.2rem;
}
.maroon-panel-bx ul li {
    color: #968a9e;
}
.maroon-panel-bx ul li::before {
    background-image: url(../img/star-ylw.jpg);
    width: 12px;
    height: 12px;
    display: inline-block;
    content: '';
    margin-right: 10px;
}
.maroon-panel-bx {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.request-center {
    max-width: 270px;
    margin: 0 auto;
    text-align: center;
}
.request-center p {
    margin: 0 0 20px;
    line-height: 25px;
}
a.br-email-anchor {
    display: block;
    border: solid 1px #655a6b;
    border-radius: 5px;
    background: #342e38;
    color: #655a6b;
    font-weight: 700;
    padding: 5px 10px;
}
a.rqat-anchor, button.rqat-anchor{
    background-color: #b798c4;
    padding: 5px 10px;
    display: inline-block;
    border-radius: 5px;
    margin-top: 18px;
    font-weight: 600;
    color: #29232d;
}
.beta-center-resting {
    padding: 0 10px;
}
.beta-center-resting p {
    margin: 0 0 30px;
    line-height: 24px;
    color: #968a9e;
}
.beta-center-resting {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; /* 👈 vertical centering */
}

/* Navigation */

nav {
}

.nav-container {
    /* max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center; */
}
.menu {
    display: flex;
    list-style: none;
    gap: 10px;
}

.menu li {
    position: relative;
}
.menu li a {
    text-decoration: none;
    padding: 10px;
    display: block;
    font-size: 14px;
    color: #968a9e;
    position: relative;
}
.menu li a:hover{
    color: #fff;
}
.menu li a::after {
    content: "|";
    position: absolute;
    right: -5px;
    margin: 0;
}
.menu li a:hover:after {
    color: #968a9e;
}
.menu li:last-child a::after {
    display: none;
}
.dropdown {
    position: absolute;
    background: #444;
    display: none;
    top: 100%;
    left: 0;
    min-width: 150px;
}

.dropdown a {
    padding: 10px 15px;
}

/* Desktop dropdown on hover */
@media (min-width: 1024px) {
    .menu li:hover .dropdown {
        display: block;
    }
}

/* Hamburger styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    height: 2px;
    background: white;
    margin: 2px 0;
    width: 25px;
}

/* Mobile styles */
@media (max-width: 1023px) {
    .hamburger {
        display: flex;
    }

    .menu {
        display: none;
        flex-direction: column;
        background: #362c35;
        width: 100%;position: absolute;
        top: 141px;
        left: 0;
    }

    .menu.active {
        display: flex;
    }

    .menu li {
        border-top: 1px solid #444;
    }

    .menu li .dropdown {
        display: none;
        position: static;
        background: #444;
    }

    .menu li.open .dropdown {
        display: block;
    }
}

/* Navigation */

.profileSection{
    background-color: #1e1b28;
    padding: 80px 0;
}
.profile-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.profile-leftColm-left {
    width: 70%;
    padding: 0 10px;
}
.profile-leftColm-right {
    width: 30%;
    padding: 0 10px;
}
.cover-bgProfile {
    background-color: #1e1b28;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    background-size: cover;
    background-image: url(../img/header_banner_img.png);
    background-repeat: no-repeat;
}
.Profile-information {
    text-align: center;
    margin-bottom: 30px;
}
.profile-photo {
    width: 150px;
    height: 150px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: solid 2px #fff;
}
.Profile-information .plsch-message {
    color: #a081a7;
}
.Usrname {
    color: #ffe3c3;
    text-transform: uppercase;
    font-weight: 600;
}
.Usrname sup {
    background-color: #f7a8ac;
    color: #1e1b28;
    padding: 2px 3px;
    font-size: 9px;
    margin-left: 5px;
    border-radius: 3px;
    text-transform: capitalize;
}
.ageverified {
    color: #49d05f;
}
.displayname {
    color: #ffe3c3;
}
.quaotemessage {
    color: #ffe3c3;
    font-size: 12px;
    font-style: italic;
}
.bioStat-row {
    display: flex;
    margin: 0 -10px 30px;
    text-align: left;
}
.bioStat-row .rw-col-common {
    width: 50%;
    padding: 0 10px;
}
.box-panel {
    border: solid 1px #342e3d;
    background: #231e2e;
    border-radius: 10px;
    padding: 20px;
    color: #ffe3c3;
    min-height: 330px;
}
.box-panel h2 {
    color: #ffe3c3;
    font-size: 18px;
    margin: 0 0 5px;
    font-weight: 600;
}
.Bio-list li {
    display: flex;
    align-items: center;
}
.Bio-list li span.liststart {
    width: 60%;
}
.Bio-list li span.listend {
    width: 40%;
}
.colm-rhColm {
    margin-bottom: 20px;
}
.box-panel-comment {
    border: solid 1px #342e3d;
    background: #231e2e;
    border-radius: 10px;
    padding: 15px 15px;
    color: #ffe3c3;
    margin-bottom: 15px;
}
.comment-box-panel h3{
    font-size: 16px;
    font-weight: 600;
}
.box-panel-comment.sm-box-panel-comment {
    margin-bottom: 10px;
}
.box-panel-comment.sm-box-panel-comment:last-child {
    margin-bottom: 0;
}
.box-panel-comment.sm-box-panel-comment h5 {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
}
.box-panel-comment.sm-box-panel-comment p {
    font-size: 14px;
    line-height: 22px;
    color: #a081a7;
}
.character-panel h3 {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 600;
}
.character-rw {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.character-rw .colm-charat {
    width: 30%;
    padding-right: 10px;
    line-height: 0;
}
.character-rw .colm-charat img {
    border-radius: 7px;
}
.character-rw .character-descp {
    width: 70%;
}
.character-rw .character-descp h4 {
    font-size: 16px;
}
.character-rw .character-descp p {
    font-size: 12px;
    color: #a081a7;
    line-height: 20px;
    margin: 0;
}
.box-panel-comment p {
    color: #fff;
    margin: 0;
}
.box-panel p {
    color: #ffffff;
    margin: 0;
}


/* Gallerry */
.gallery {
  background: #29232d;
  display: flex;
  gap: 50px;
  justify-content: space-between;
}
.gallery-sidebar {
  width: 20%;
}
.gallery-detail {
  width: 100%;
  flex: 1;
}
.sidebar {
  width: 100%;
  min-height: 100%;
  color: #e6c6f0;
  border-right: 1px solid #b798c2;
}

.gallery-nav-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.gallery-nav-list li {
  border-bottom: 1px solid #b798c2;

}
.gallery-nav-list li a{ display:block; color: #b798c2;padding: 8px 12px;transition: background 0.3s, border 0.3s;}

.gallery-nav-list li.active a, .gallery-nav-list li a:hover {
  background-color: #b798c2;
  color: #29232d;
  font-weight: bold;
}
.pro-section {
  margin-top: 20px;
  text-align: center;
}
.join-btn {
  background-color: #b798c2;
  color: #1c1122;
  padding: 8px 12px;
  border: none;
  font-weight: bold;
  margin: 8px 0;
  width: 150px;
  border-radius: 5px;
}
.or {
  margin: 5px 0;
  font-size: 14px;
  color: #ccc;
}
.editor-link {
  color: #b798c2;
  padding: 10px 0;
  border-top: 1px solid #b798c2;
}
.quote {
  font-size: 12px;
  margin-top: 10px;
  color: #b798c2;
}
.title-top{color: #b798c2; text-align: center;}
.gallery-upload {
  max-width: 400px;
  padding: 20px;
  margin: auto;
}
.gallery-upload h2 {
  font-size: 20px;
  color: #8f8095;
  margin-bottom: 20px;
  text-align: center;
}
.gallery-upload .input-group {
  margin-bottom: 15px;
  flex-wrap: nowrap;
  align-items: center;
}
.gallery-upload .input-group label {
  display: block;
  font-size: 14px;
  color: #8f8095;
  width: 100px;
}
.gallery-upload .input-group input {
  width: 100%;
  padding: 8px;
  background-color: #342e38;
  border: 1px solid #48414d;
  color: #fff;
  border-radius: 4px !important;
  flex: 1;
  height: 36px;
}
.add-btn {
  background-color: #caa7df;
  border: none;
  padding: 8px 12px;
  color: #1c1122;
  font-weight: bold;
  border-radius: 4px !important;
  width: 180px;
  margin: 0 auto;
  display: inherit;
}
.upload-wrapper {
  margin-top: 20px;
}
.upload-input {
  display: none;
}
.gallery-upload .input-group .upload-label {
  display: inline-block;
  background-color: #c6a2d8;
  color: #1c1122;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 200px;
  text-align: center;
}
.gallery-container {
  max-width: calc(100% - 50px);
  margin: 50px auto auto 0;
  text-align: center;
}
.gallery-container h2 {
  font-size: 20px;
  color: #8f8095;
  margin-bottom: 20px;
  text-align: center;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
  max-height: 490px;
  overflow-y: auto;
  padding-right: 10px;
  scrollbar-color: #c59adb #1c1122;
  scrollbar-width: thin;
}

/* For Webkit browsers */
.gallery-grid::-webkit-scrollbar {
  width: 8px;
}
.gallery-grid::-webkit-scrollbar-track {
  background: #1c1122;
}
.gallery-grid::-webkit-scrollbar-thumb {
  background-color: #c59adb;
  border-radius: 10px;
}

.gallery-item {
  background-color: #c59adb;
  aspect-ratio: 1 / 1;
  border-radius: 4px;
}

.footer-note {
  margin-top: 10px;
  font-size: 12px;
  color: #b24e6f;
}

.site-footer {
    background-image: url(../img/main-bg.png);
    background-color: #3d3544;
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    color: #ffe3c3;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    margin-top: auto;
}

.py-5 {
  padding-top: 0rem !important;
  padding-bottom: 0rem !important;
  margin-top: 230px;
}

@media (max-width:1199px) and (min-width:980px) {

}

@media (max-width:979px) and (min-width:768px) {
    .profile-row {
        display: block;
        margin: 0;
    }
    .profile-leftColm-left {
        width: 100%;
    }
    .profile-leftColm-right {
        width: 100%;
    }
    .bioStat-row {
        display: block;
        margin: 0 0 30px;
    }
    .bioStat-row .rw-col-common {
        width: 100%;
    }
    .profileSection {
        padding: 50px 0;
    }
    .character-rw .colm-charat{
        width: 20%;
    }
}

.promo-image {
    margin-top: 20px;
    text-align: center;
}
.promo-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
}
.whowe-arecolm .maroon-panel-bx {
    text-align: center;
}
.whowe-arecolm .maroon-panel-bx p {
    margin: 0 auto;
    max-width: 90%;
}

@media (max-width:767px) {
    .header li a::after{
        display: none;
    }
    .header .menu-icon {
        cursor: pointer;
        display: inline-block;
        float: right;
        padding: 28px 20px;
        user-select: none;
        position: absolute;
        top: 37px;
        right: 120px;
    }
    .themeColm a {
        padding: 2px 10px;
        font-size: 12px;
        display: inline-block;
    }
    .whowe-arecolm {
        width: 40%;
        padding: 0 10px;
    }
    .resting-workimgcolm {
        width: 20%;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .requesting-colm {
        width: 40%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .maroon-panel-bx ul li {
        color: #968a9e;
        display: flex;
        align-items: center;
        line-height: 22px;
        margin: 0 0 10px;
    }
    .requesting-colm .maroon-panel-bx {
    width: 100%;
    max-width: 400px;
}

    .center-charater-message {
        padding: 20px 0;
        font-size: 14px;
        line-height: 22px;
    }
    .menu li a {
        padding: 5px 10px;
    }
    .menu {
        top: 91px;
    }
    .profile-row {
        display: block;
        margin: 0;
    }
    .profile-leftColm-left {
        width: 100%;
    }
    .profile-leftColm-right {
        width: 100%;
    }
    .bioStat-row {
        display: block;
        margin: 0 0 30px;
    }
    .bioStat-row .rw-col-common {
        width: 100%;
    }
    .profileSection {
        padding: 50px 0;
    }
    .cover-bgProfile {
        height: 250px;
    }
    .quaotemessage {
        font-size: 11px;
    }

.gallery {
  flex-wrap: wrap;
}

.gallery-sidebar {
  width: 100%;
}
.sidebar {
  border: 1px solid #b798c2;
}
.gallery-container {
  max-width: 100%;
}

}

@media (max-width: 767px) {
  .org-request-flex {
    flex-direction: column;
    align-items: center;
  }

  .whowe-arecolm,
  .resting-workimgcolm,
  .requesting-colm {
    width: 100% !important;
    max-width: 600px;
    padding: 10px 15px;
  }

  .resting-workimgcolm {
    order: 2;
  }

  .whowe-arecolm {
    order: 1;
  }

  .requesting-colm {
    order: 3;
  }
}

body {
    background-color: #3d3544;
}