



*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  padding: 0;
  background: var(--fb-cream);
  color: var(--fb-ink);
  font-family: var(--fb-font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

a { color: var(--fb-pink-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

ul { list-style: none; margin: 0; padding: 0; }

h1, h2, h3, h4, h5 {
  font-family: var(--fb-font-display);
  color: var(--fb-plum);
  line-height: 1.15;
  margin: 0 0 .5em;
}



:root {
  --fb-pink:        #ff3d7f;
  --fb-pink-dark:   #c8175c;
  --fb-pink-deep:   #9c0f47;
  --fb-cyan:        #17c3d6;
  --fb-cyan-dark:   #0d9aab;
  --fb-plum:        #3a1030;
  --fb-ink:         #3a2a35;
  --fb-cream:       #fff6f2;
  --fb-cream-2:     #ffeef2;
  --fb-white:       #ffffff;
  --fb-line:        #ffd7e3;
  --fb-shadow:      0 12px 30px rgba(156, 15, 71, .14);
  --fb-shadow-sm:   0 4px 12px rgba(156, 15, 71, .10);
  --fb-radius:      18px;
  --fb-radius-sm:   10px;
  --fb-font-display: Georgia, 'Times New Roman', serif;
  --fb-font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}


h1, h2, .ha1, .promo h1 {
  font-style: italic;
  font-weight: 700;
  letter-spacing: -.01em;
}



.fb-skip {
  position: absolute; left: -999px; top: auto;
  background: var(--fb-pink-dark); color: #fff; padding: 10px 16px;
  border-radius: 0 0 8px 0; z-index: 10000;
}
.fb-skip:focus { left: 0; top: 0; }



#main {
  max-width: 1180px;
  margin: 0 auto;
  background: var(--fb-cream);
  overflow: hidden;
}


body {
  background-image:
    radial-gradient(600px 420px at 92% -10%, rgba(23, 195, 214, .16), transparent 60%),
    radial-gradient(700px 480px at -10% 0%, rgba(255, 61, 127, .14), transparent 55%);
  background-repeat: no-repeat;
}



.header-holder {
  position: relative;
  background-color: var(--fb-pink-dark);
  background-image: linear-gradient(135deg, var(--fb-pink-dark) 0%, var(--fb-pink-deep) 100%);
  padding: 0 0 0;
}

.bg-l { display: none; }

#header {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
  padding: 16px 20px;
  color: #fff;
}

#header .south-carolina {
  order: 3;
  width: 22px; height: auto;
  filter: brightness(0) invert(1);
  opacity: .85;
}

#header .logo {
  display: flex;
  align-items: baseline;
  gap: 14px;
  order: 1;
}

#header .logo a {
  display: inline-flex;
  background: #fff;
  padding: 8px 14px;
  border-radius: 12px;
  box-shadow: var(--fb-shadow-sm);
}

#header .logo img { height: 40px; width: auto; display: block; }

#header .logo h1,
#header .logo h2 {
  font-family: var(--fb-font-display);
  font-style: italic;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  opacity: .92;
  letter-spacing: .01em;
}

#header form { order: 4; flex: 1 1 100%; }

.top-nav {
  order: 4;
  width: 100%;
}
.top-nav ul { display: flex; gap: 18px; flex-wrap: wrap; }
.top-nav li.first span {
  color: #ffd7e3;
  font-size: 13px;
  cursor: default;
}
.top-nav a {
  color: var(--fb-pink-deep);
  font-size: 13px;
  font-weight: 700;
  background-color: #fff;
  padding: 5px 12px;
  border-radius: 999px;
}
.top-nav a:hover { background-color: var(--fb-cyan); color: var(--fb-plum); text-decoration: none; }


#menu {
  order: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  flex: 1 1 auto;
}
#menu > li { position: relative; }
#menu > li > a,
#menu > li > span {
  display: block;
  padding: 10px 14px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border-radius: 999px;
  cursor: default;
}
#menu > li > a { cursor: pointer; }
#menu > li.active > a,
#menu > li > a:hover {
  background: var(--fb-cyan);
  color: var(--fb-plum);
  text-decoration: none;
}
#menu > li > span:hover { background: rgba(255, 255, 255, .14); }


#menu > li > ul {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  min-width: 220px;
  background: #fff;
  color: var(--fb-ink);
  border-radius: var(--fb-radius-sm);
  box-shadow: var(--fb-shadow);
  padding: 8px;
  z-index: 40;
  max-height: 320px;
  overflow-y: auto;
}
#menu > li:hover > ul { display: block; }
#menu > li > ul li {
  padding: 7px 10px;
  border-radius: 6px;
  font-size: 13px;
  color: var(--fb-ink);
}
#menu > li > ul li:hover { background: var(--fb-cream-2); }

.login-block {
  background: var(--fb-plum);
  color: #fff;
  padding: 12px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 14px;
}
.login-block h2 {
  color: #fff;
  font-size: 14px;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  opacity: .9;
}
.login-block .submit-holder .submit {
  display: inline-block;
  background: var(--fb-cyan);
  color: var(--fb-plum);
  font-weight: 700;
  padding: 8px 22px;
  border-radius: 999px;
  letter-spacing: .04em;
}
.login-block .submit-holder .submit:hover { background: #37d6e6; text-decoration: none; }



#content {
  margin: 0;
  padding: 28px 20px 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}


.content-text {
  float: none; clear: none;
  flex: 1 1 560px; min-width: 0; max-width: 100%; width: auto; margin-right: 0;
}
.right-col {
  float: none; clear: none;
  flex: 1 1 260px; min-width: 0; max-width: 340px; width: auto; margin-right: 0; padding-left: 0;
}


.content-text table,
.right-col table { display: block; width: auto !important; }
.content-text tr,
.right-col tr { display: block; }
.content-text td,
.right-col td { display: block; width: auto !important; padding: 0; }

@media (min-width: 860px) {
  #content { flex-wrap: nowrap; clear: none; margin-right: 0; }
  .content-text { flex: 1 1 0%; min-width: 0; max-width: none; width: auto; }
  .right-col { flex: 0 0 300px; min-width: 0; max-width: 300px; width: auto; }
}



.promo-holder {
  background-color: var(--fb-pink-dark);
  background-image: linear-gradient(150deg, var(--fb-pink) 0%, var(--fb-pink-dark) 55%, var(--fb-plum) 130%);
  border-radius: var(--fb-radius);
  padding: 40px 30px;
  margin-bottom: 26px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--fb-shadow);
}
.promo-holder::before {
  content: "";
  position: absolute;
  right: -40px; top: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(23, 195, 214, .28);
}
.promo-holder::after {
  content: "";
  position: absolute;
  left: -30px; bottom: -50px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .10);
}
.promo { position: relative; z-index: 1; min-height: unset !important; }
.promo h5 {
  color: #ffd7e3;
  font-family: var(--fb-font-body);
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.promo h1 {
  width: auto !important;
  color: #fff;
  font-size: clamp(28px, 5vw, 44px);
  max-width: 20ch;
}


.ha1 { font-size: 30px; color: var(--fb-plum); }



.modernbricksmenu2 ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.modernbricksmenu2 li span {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: #fff;
  border: 2px solid var(--fb-line);
  color: var(--fb-pink-dark);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}
.modernbricksmenu2 li span.selected {
  background: var(--fb-pink-dark);
  border-color: var(--fb-pink-dark);
  color: #fff;
}

.userpics-space,
#tab1, #tab2, #tab3, #tab4 { margin-bottom: 4px; }



.new-users .row:first-child p {
  font-weight: 700;
  color: var(--fb-plum);
  background: var(--fb-cream-2);
  border: 1px dashed var(--fb-line);
  border-radius: var(--fb-radius-sm);
  padding: 10px 16px;
  display: inline-block;
  margin-bottom: 16px;
}
.new-users .row { display: flex; gap: 20px; flex-wrap: wrap; }
.mens ul, .womens ul { display: flex; flex-wrap: wrap; gap: 10px; }
.mens li, .womens li {
  width: 64px; height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: var(--fb-shadow-sm);
}
.mens li img, .womens li img {
  width: 100%; height: 100%; object-fit: cover;
}



.testimonials .holder {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 24px 0;
}
@media (min-width: 640px) {
  .testimonials .holder { grid-template-columns: 1fr 1fr; }
}
.testimonials blockquote {
  margin: 0;
  background: #fff;
  border: 1px solid var(--fb-line);
  border-left: 5px solid var(--fb-cyan);
  border-radius: var(--fb-radius-sm);
  padding: 18px 20px;
  box-shadow: var(--fb-shadow-sm);
}
.testimonials .blue {
  color: var(--fb-pink-dark);
  font-weight: 700;
  font-family: var(--fb-font-display);
  font-style: italic;
  font-size: 17px;
  margin-bottom: 6px;
}
.testimonials cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-size: 13px;
  color: #8a7080;
}

.qa-users h2 {
  margin-top: 28px;
  font-size: 21px;
  border-bottom: 2px solid var(--fb-line);
  padding-bottom: 6px;
}
.qa-users .lead { font-weight: 700; color: var(--fb-plum); }



.weitere,
.flirt-box-info,
.schnellsuche-search,
.top-5-frauen, .top-5-manner {
  background: #fff;
  border: 1px solid var(--fb-line);
  border-radius: var(--fb-radius);
  margin-bottom: 18px;
  box-shadow: var(--fb-shadow-sm);
  overflow: hidden;
}
.weitere h5,
.flirt-box-info h5,
.schnellsuche h5,
.top-5-frauen h4, .top-5-manner h4 {
  background: var(--fb-cream-2);
  color: var(--fb-pink-dark);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-style: normal;
  font-weight: 700;
  margin: 0;
  padding: 12px 16px;
  border-bottom: 1px solid var(--fb-line);
}
.weitere .box, .flirt-box-info .hidden-box, .schnellsuche .box { padding: 14px 16px; }
.weitere .box p { margin: 0; font-size: 14px; }

.bottom-bg, .top-bg { display: none; } 

.details { padding: 4px 0 0; }
.tabset { display: flex; gap: 6px; margin-bottom: 14px; flex-wrap: wrap; }
.tabset .tab {
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--fb-cream-2);
  color: var(--fb-pink-dark);
  font-weight: 700;
  font-size: 13px;
}
.tabset .tab.active { background: var(--fb-pink-dark); color: #fff; }

.events-list { display: grid; gap: 20px; }
@media (min-width: 760px) {
  .events-list { grid-template-columns: 1fr 1fr; }
}
.events-list h4 {
  font-size: 16px;
  color: var(--fb-plum);
  border-bottom: 2px solid var(--fb-line);
  padding-bottom: 6px;
  margin-bottom: 12px;
}
.bubble {
  background: var(--fb-cream);
  border: 1px solid var(--fb-line);
  border-radius: var(--fb-radius-sm);
  padding: 12px 14px;
  margin-bottom: 10px;
}
.bubble blockquote { margin: 0 0 6px; font-size: 14px; }
.bubble cite { font-size: 12px; color: #8a7080; font-style: normal; }



.schnellsuche .box p { margin: 0 0 12px; }
.schnellsuche label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--fb-plum);
  margin-bottom: 4px;
}
.schnellsuche select,
.schnellsuche input[type="text"],
.text-input-field {
  width: 100%;
  padding: 9px 10px;
  border: 1px solid var(--fb-line);
  border-radius: 8px;
  background: var(--fb-cream);
  font-size: 14px;
  color: var(--fb-ink);
}
.schnellsuche select:focus,
.schnellsuche input:focus { outline: 2px solid var(--fb-cyan); outline-offset: 1px; }

.button-go, input.button-go {
  display: block;
  width: 100%;
  margin-top: 10px;
  background: var(--fb-pink-dark);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  cursor: pointer;
}
.button-go:hover { background: var(--fb-pink-deep); }

.button-open, .botton-user-open, .button-holder a {
  color: var(--fb-cyan-dark);
  font-size: 12px;
  font-weight: 700;
}



.flirt-box-info-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  font-size: 13px;
  border-bottom: 1px solid var(--fb-cream-2);
}
.flirt-box-info-list li:last-child { border-bottom: 0; }
.sex-male, .sex-female, .online-on, .icon-photo, .icon-chat {
  display: inline-block;
  width: 9px; height: 9px;
  border-radius: 50%;
  flex: none;
}
.sex-male { background: var(--fb-cyan); }
.sex-female { background: var(--fb-pink); }
.online-on { width: 7px; height: 7px; background: #2ecc71; }
.icon-photo, .icon-chat {
  width: auto; height: auto; border-radius: 999px;
  background: var(--fb-cream-2); color: var(--fb-pink-dark);
  font-size: 10px; padding: 1px 7px; text-transform: uppercase; letter-spacing: .04em;
}
.closed .flirt-box-info-list { max-height: 260px; overflow-y: auto; }
.font13 { font-size: 13px; color: #8a7080; }



.user-info {
  background: #fff;
  border: 1px solid var(--fb-line);
  border-radius: var(--fb-radius);
  box-shadow: var(--fb-shadow-sm);
  padding: 20px;
  margin-bottom: 20px;
}
.user-info > h3 {
  font-family: var(--fb-font-display);
  font-style: italic;
  color: var(--fb-plum);
  font-size: 22px;
  margin-bottom: 16px;
}
.user-info .prevoris, .user-info .next { display: none; }

.outer-outer-user-photo { margin-bottom: 18px; }
.outer-user-photo { display: flex; gap: 18px; flex-wrap: wrap; }
.leftside { flex: 0 0 auto; }
.user-photo {
  width: 155px; height: 155px;
  border-radius: var(--fb-radius-sm);
  background: var(--fb-cream-2) url(/images/no-picture.png) center/60% no-repeat;
  border: 3px solid var(--fb-line);
  position: relative;
}
.user-photo .flag {
  position: absolute; right: 6px; bottom: 6px;
  border-radius: 2px;
  box-shadow: 0 0 0 2px #fff;
}
.user-contacts { margin-top: 10px; }
.user-contacts ul { display: flex; flex-direction: column; gap: 6px; }
.user-contacts li a, .user-contacts li span.demo-btn {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
}
.nachricht-senden a { background: var(--fb-pink-dark); color: #fff; }
.missbrauch-melden span { background: var(--fb-cream-2); color: var(--fb-pink-dark); }
.kontakt-loschen a { background: var(--fb-cream-2); color: var(--fb-ink); }

.google-right { flex: 1 1 240px; min-width: 220px; }
.meetme {
  background: var(--fb-cream-2);
  border-radius: var(--fb-radius-sm);
  padding: 14px;
  margin-bottom: 12px;
}
.meetme-question { font-weight: 700; color: var(--fb-plum); margin-bottom: 8px; font-size: 14px; }
.meetme_english { display: flex; gap: 8px; }
.meetme_english .yes span, .meetme_english .no span {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--fb-line);
  font-size: 12px;
  font-weight: 700;
  color: var(--fb-pink-dark);
}
.google250 { display: none; } 

.user-text-holder { margin-top: 6px; }
.user-text {
  position: relative;
  padding: 14px 16px;
  background: var(--fb-cream);
  border: 1px solid var(--fb-line);
  border-radius: var(--fb-radius-sm);
}
.user-text h5 {
  font-style: normal;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--fb-pink-dark);
  margin-bottom: 8px;
}
.separator-block { display: block; height: 0; border: 0; }

.user-details .general,
.user-details .mein.aussehen,
.user-details .mein-leben,
.user-details .meine-interessen {
  padding: 14px 0;
  border-bottom: 1px dashed var(--fb-line);
}
.user-details h5 {
  font-style: normal;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--fb-cyan-dark);
  margin-bottom: 8px;
}
.user-details ul.hidden-box li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 5px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--fb-cream-2);
}
.user-details ul.hidden-box li:last-child { border-bottom: 0; }
.user-details ul.hidden-box li strong {
  color: #8a7080;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.photos { display: flex; gap: 10px; flex-wrap: wrap; }
.photos .frame {
  width: 90px; height: 90px;
  border-radius: 8px;
  background: var(--fb-cream-2);
  border: 1px dashed var(--fb-line);
}



#content > h1,
.content-text > h1:first-child {
  font-size: 26px;
  margin-bottom: 14px;
}
#content > ul,
.content-text > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 4px 0 0;
}
#content > ul > li > a,
.content-text > ul > li > a {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--fb-line);
  border-radius: 999px;
  padding: 8px 18px;
  font-weight: 700;
  color: var(--fb-pink-dark);
  box-shadow: var(--fb-shadow-sm);
}
#content > ul > li > a:hover,
.content-text > ul > li > a:hover {
  background: var(--fb-pink-dark);
  color: #fff;
  text-decoration: none;
}


#content > p, .content-text > p { font-size: 15px; }


.archived-video-notice {
  display: inline-block;
  background: var(--fb-cream-2);
  color: var(--fb-pink-dark);
  border: 1px dashed var(--fb-line);
  border-radius: var(--fb-radius-sm);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
}



#footer {
  background: var(--fb-plum);
  color: #ffe3ec;
  margin-top: 30px;
  padding: 34px 20px 20px;
}
#footer .holder {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 640px) {
  #footer .holder { grid-template-columns: repeat(3, 1fr); }
}
#footer h5 {
  color: var(--fb-cyan);
  font-style: normal;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 12px;
}
#footer ul li { padding: 4px 0; font-size: 14px; color: #f0d6e0; }
#footer a { color: #fff; }
#footer a:hover { color: var(--fb-cyan); }

.footer-nav {
  max-width: 1140px;
  margin: 26px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .15);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 12px;
}
.footer-nav a, .footer-nav span { color: #f0d6e0; }
.footer-nav a:hover { color: var(--fb-cyan); }

/* ---- 17. Burger nav polish (extends flirtbox-burger-pack v1, no override) */

#fb-burger {
  box-shadow: var(--fb-shadow-sm);
  font-size: 20px !important;
}
#fb-mobnav {
  font-family: var(--fb-font-body);
}
#fb-mobnav a:first-child { margin-top: 4px; }
#fb-mobnav a, #fb-mobnav span {
  font-size: 15px;
}
#fb-mobnav span {
  display: block;
  padding: 10px 0;
  color: #8a5a68 !important;
  border-bottom: 1px solid #f3e3ea;
}



@media (max-width: 768px) {
  #header { padding: 12px 16px; }
  #header .logo img { height: 34px; }
  .login-block { padding: 10px 16px; font-size: 13px; }
  .promo-holder { padding: 26px 20px; border-radius: 14px; }
  #content { padding: 20px 14px 30px; gap: 20px; }
  .outer-user-photo { flex-direction: column; }
  .user-photo { width: 130px; height: 130px; }
  .events-list { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .promo h1 { font-size: 26px; }
  .mens li, .womens li { width: 52px; height: 52px; }
}
