@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* General */
body, button, input, textarea, .selectboxit-container * {
  font-family: 'Inter', sans-serif !important;
  font-weight: 400;
}
html {
  scroll-behavior: smooth;
}
.external_wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}
.main_content {
  display: flex;
  flex-direction: column;
}
.main_content .section {
  flex-shrink: 0;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 70px;
  padding: 0 15px;
}
.header_logo {
  flex-basis: 152px;
}
.header_logo img {
  display: block;
  width: auto;
  height: 45px;
}
/* Header Menu */
.header_nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.header_nav_item {
  position: relative;
  padding: 10px;
  text-decoration: none;
  font-weight: 500;
  border-radius: 10px;
  transition: .3s ease-in;
}
/* Header Mobile Menu */
.header_navmobile {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 101;
  width: 250px;
  padding: 15px;
  margin: 5px;
  border-radius: 10px;
}
.header_navmobile::before {
  content: '';
  position: absolute;
  bottom: 100%;
  right: 22px;
  border-top: 10px solid transparent;
  border-bottom: 25px solid;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}
.header_navmobile_item {
  display: block;
  position: relative;
  width: 100%;
  padding: 10px 12px;
  text-decoration: none;
  font-weight: 500;
}
.header_navmobile_toggler {
  padding: 10px 12px;
  font-size: 20px;
  border-radius: 8px;
}

/* Home */
.home {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 70px 0 0 0 !important;
  background: url('https://www.girlschat.co/control/login/Default_Modern/images/Background_Girls_Chatting.jpg'); 
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.home_box {
  position: relative;
  width: 600px;
  max-width: 94%;
  padding: 15px;
}
.home_title {
  font-size: 40px;
  font-weight: 900;
  color: #00f7ff;  /* Teal heading text */
  text-shadow: 
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000,
    -1px  0   0 #000,
     1px  0   0 #000,
     0  -1px 0 #000,
     0   1px 0 #000;  /* thin black outline via shadow */
}
.home_desc {
  font-size: 20px;
  font-weight: 400;
  color: #00f7ff;  /* Teal paragraph text */
  text-shadow: 
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000,
    -1px  0   0 #000,
     1px  0   0 #000,
     0  -1px 0 #000,
     0   1px 0 #000;   /* thin black outline via shadow */
    /* background-color: rgba(72, 0, 72, 0.50); /* semi-transparent box */
    /* padding: 10px 15px; /* spacing inside the box */
    /* border-radius: 8px; /* rounded corners */
    /* display: inline-block; /* ensures background only wraps text */
    
}

/* Controls the "New Here" text */
.text_xsmall {
	-webkit-font-smoothing: antialiased;
	font-size: 15px;
	color: #00f7ff;
	text-align: center;
	text-shadow:
		-1px -1px 0 #000,
		 1px -1px 0 #000,
		-1px  1px 0 #000,
		 1px  1px 0 #000;
}

/* Controls the "Register now" text */
.text_med {
	-webkit-font-smoothing: antialiased;
	font-size: 20px;
	color: #00f7ff;
	text-align: center;
	text-decoration: underline;
	cursor: pointer;
	text-shadow:
		-1px -1px 0 #000,
		 1px -1px 0 #000,
		-1px  1px 0 #000,
		 1px  1px 0 #000;
}

.text_med:hover {
	color: #ffffff;
	text-shadow:
		0 0 4px #00f7ff,
		-1px -1px 0 #000,
		 1px -1px 0 #000,
		-1px  1px 0 #000,
		 1px  1px 0 #000;
}


/* Section */
.section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 40px 10px;
}
.section_content {
  max-width: 100%;
  width: 1000px;
  margin: 0 auto;
}



.section_element {
  padding: 20px;
  margin-bottom: 5px;
  border-radius: 10px;
}

/* Login Rooms */
.login_rlist {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-gap: 20px;
  align-items: stretch;
}
.login_room {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
}
.login_room_icon {
  position: relative;
  width: 36px;
}
.login_room_icon img {
  width: auto;
  height: 36px;
  border-radius: 50px;
}
.login_room_name {
  flex: 1;
  font-weight: 500;
  font-size: 16px;
}
.login_room_count {
  position: absolute;
  top: -10px;
  right: -12px;
  padding: 5px 8px;
  border-radius: 50px;
  font-weight: 500;
}

/* Features */
.features_list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  grid-gap: 20px;
  align-items: baseline;
}
.features_list .feature_item {
  margin-bottom: unset;
}
.feature_item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.feature_item_image {
  align-self: center;
  position: relative;
}
.feature_item_image img {
  width: 100px;
  height: 100px;
  display: block;
  object-fit: contain;
}

/* Scroll Top Btn */
.scroll_top {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 103;
  width: 50px;
  height: 50px;
  margin: 15px;
  border-radius: 100px;
  overflow: hidden;
}
.scroll_top_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 20px;
}

/* Footer */
.footer {
  align-self: flex-end;
  width: 100%;
}
#menu_main_footer li a,
#menu_main_footer li {
  font-weight: 500;
}

/* Text */
.text_title, .bold {
  font-weight: 500;
}
.text_text {
  font-size: 14px;
  color: #ffffff; /* light lavender text */
  font-weight: 300;
  line-height: 1.25;
  text-shadow: 0 0 1px #ffffff; /* optional subtle black outline */
}

/* Main Theme */
body {
  background: #480048 !important; /* main section Background color */
  color: #fff !important;
}

.header_scrolled {
  transform: translate3d(0, 0, 0);
  background: #200020de; /* Header Background color */
  color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.18);
  transition: 0.6s ease;
  backdrop-filter: blur(2px);
}
.header_nav_item {
  color: #fff;  /* Header font color */
}
.header_nav_item.active {
  background: rgba(255, 255, 255, 0.10);
}

.header_navmobile_toggler {
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.header_navmobile {
  background: #200020; /* drop down menu background color */
  color: #555;
  box-shadow: 0 2px 3px rgba(0,0,0,0.05);
  opacity: 0.96;
}
.header_navmobile::before {
  border-bottom-color: #6e5d89;
}
.header_navmobile_item {
  color: #555;
}
.header_navmobile_item.active {
  color: #aca9a9;
}
.header_navmobile_item:not(:last-child) {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.home_box {
  color: #7c758a;
}
.login_btn, .theme_btn, .cookie_button button {
  background: #00f7ff !important;
  color: #000 !important;
  border-radius: 10px;
}
.login_btn:hover, .theme_btn:hover {
  background: #00f7ff;
  color: #000;
}
.login_btn_outline {
  border: 2px solid #5d4cb2;
  color: #7c758a;
}
.login_btn_outline:hover {
  border: 2px solid #452f73;
}




.section_element {
  background: #340034de; /* Boxes within each section*/
  color: #000;
  color: #fff; /* Header Color for inside feature & About section*/
  box-shadow: 0 2px 3px rgba(0,0,0,0.05);
  opacity: 0.96;
}
.section_secondary {
  background: #eb00ff1a; /* aection background (secondary) */
}

.login_room {
  background: #e3d7ea;  /* Room Buttons */
  color: #340034; /* Room Button font color */
}
.login_room_count {
  background: #9f9f9f;  /* Room count background color */
  color: #452f73;  /* Room count font color */
}

.foot {
  background: #000 !important; /* Footer Background color */
}

.theme_color {
  color: #57467e !important;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .features_list {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

@media screen and (max-width: 480px) {
  .home_title {
    font-size: 25px;
  }
  .home_desc {
    font-size: 16px;
  }
  .feature_item {
    flex-direction: column;
    text-align: center;
  }
}

.section_title {
  font-size: 32px;
  font-weight: 900;
  text-align: center;
  margin: 30px 0 10px 0;
  color: #00f7ff;
  text-shadow:
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000;
}

.section_title::after {
  content: '';
  display: block;
  width: 100%;
  height: 5px;
  border-radius: 50px;
  margin: 0 auto;
  background: linear-gradient(to right, #009999, #00f7ff);
}
/* Force 2-column layout for medium-sized tablets (like iPad Mini) */
@media screen and (max-width: 991px) {
  .features_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* Keep mobile-friendly 1-column layout below 600px */
@media screen and (max-width: 600px) {
  .features_list {
    grid-template-columns: 1fr;
  }
}
/* Fix Features header overlapping issue on tablets */
.features_title {
  position: relative;
  z-index: 2;
  margin-bottom: 30px; /* Add spacing so it clears boxes */
  display: block;
  text-align: center;
}