@charset "UTF-8";

/* =========================================================
  Camruf.com – FINAL CSS
  Stabil, ruhig, mobil optimiert – NUR cr-* Klassen
  ========================================================= */

/* =========================================================
  FARB- & TYPO-VARIABLEN (aus dem CamRuf Design)
  ========================================================= */

:root{
  --cr-text:        #e6e6e6;
  --cr-text-soft:  #bdbdbd;

  --cr-head:        #ffffff;
  --cr-title:      #e00000;

  --cr-card:        #161616;
  --cr-card-strong: #1f1f1f;
  --cr-border:      #2a2a2a;

  --cr-shadow:      rgba(0,0,0,.65);
  --cr-check:      #e00000;

  --cr-strong:      #ff3b3b;
}

/* =========================================================
  HERO
  ========================================================= */

.cr-hero{
  background: var(--cr-card);
  border: 1px solid var(--cr-border);
  border-radius: 10px;
  margin: 16px 0 20px;
  padding: 20px;
  text-align: center;
  color: var(--cr-text);
  box-shadow: 0 3px 10px var(--cr-shadow);
}

.cr-h1{
  color: var(--cr-head);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 14px;
}

.cr-benefits{
  list-style: none;
  padding: 0;
  margin: 12px 0 16px;
}

.cr-benefits li{
  display: inline-block;
  background: var(--cr-card-strong);
  color: var(--cr-text);
  border-radius: 6px;
  padding: 6px 10px;
  margin: 4px;
  font-size: .9rem;
  line-height: 1.2;
  box-shadow: 0 1px 4px var(--cr-shadow);
}

.cr-benefits li::before{
  content:"✓";
  font-weight:800;
  color:var(--cr-check);
  margin-right:6px;
}

.cr-h2{
  color: var(--cr-head);
  font-size: 1.05rem;
  margin: 14px 0 8px;
  font-weight: 600;
}

.cr-sub{
  font-size: .95rem;
  line-height: 1.5;
  color: var(--cr-text-soft);
  margin: 8px auto 0;
  max-width: 920px;
}

@media (max-width:768px){
  .cr-hero{
    margin: 10px 0 14px;
    padding: 16px 16px 18px;
  }
  .cr-h1{ font-size:1.08rem; margin-bottom:12px; }
  .cr-h2{ font-size:.96rem; }
  .cr-benefits li{ font-size:.88rem; }
  .cr-sub{ font-size:.9rem; }
}

/* =========================================================
  PROFILE LISTE
  ========================================================= */

.cr-wrap{
  max-width: 980px;
  margin: 26px auto 40px;
  padding: 0 10px;
}

.cr-title{
  text-align: center;
  color: var(--cr-title);
  font-size: 1.32rem;
  font-weight: 600;
  margin: 0 0 18px;
}

.cr-list{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cr-profile{
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--cr-card);
  border: 1px solid var(--cr-border);
  border-radius: 10px;
  padding: 14px;
  box-shadow: 0 3px 10px var(--cr-shadow);
}

.cr-profile-img{
  width: 190px;
  flex-shrink: 0;
}

.cr-profile-img img{
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}

.cr-profile-text{
  flex: 1;
}

.cr-profile-text h3{
  margin: 2px 0 8px;
  font-size: 1rem;
  color: var(--cr-head);
  font-weight: 600;
}

.cr-profile-text p{
  margin: 0;
  font-size: .95rem;
  line-height: 1.5;
  color: var(--cr-text);
}

/* Engeres Textlayout */
.cr-profile-text br{ display:none !important; }
.cr-profile-text p{ margin:0 !important; line-height:1.45 !important; }
.cr-profile-text p + p{ margin-top:6px !important; }

/* Links */
.cr-profile a,
.cr-profile a:visited{
  color: var(--cr-head);
  font-weight: 600;
  text-decoration: none;
}
.cr-profile a:hover{
  color: var(--cr-title);
}

/* Mobile Profile */
@media (max-width:768px){
  .cr-profile{
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .cr-profile-img{
    width: 88%;
    max-width: 320px;
  }

  /* Clamp NUR Profiltexte */
  .cr-profile-text p{
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: center;
  }
}

/* =========================================================
  SEO / INFO BOXEN
  ========================================================= */

.cr-textbox{
  background: var(--cr-card);
  border: 1px solid var(--cr-border);
  border-radius: 8px;
  padding: 18px 22px;
  line-height: 1.45;
  color: var(--cr-text);
  font-size: .97rem;
  box-shadow: 0 3px 10px var(--cr-shadow);
  max-width: 980px;
  margin: 22px auto;
}

.cr-textbox h2{
  color: var(--cr-head);
  font-size: 1.06rem;
  text-align: center;
  margin-top: 14px;
  margin-bottom: 16px;
}

.cr-textbox p{ margin: 0 0 8px; }
.cr-textbox p:last-child{ margin-bottom: 0; }

.cr-textbox a{
  color: var(--cr-head);
  text-decoration: underline;
  font-weight: 600;
}
.cr-textbox a:hover{
  color: var(--cr-title);
}

/* SEO Texte NIE clampen */
@media (max-width:768px){
  .cr-textbox p{
    display: block;
    overflow: visible;
  }
}

/* =========================================================
  BOLD / STRONG
  ========================================================= */

.cr-hero b, .cr-hero strong,
.cr-profile b, .cr-profile strong,
.cr-textbox b, .cr-textbox strong{
  font-weight: 600;
  color: var(--cr-strong);
}

/* =========================================================
  FOOTER MINI
  ========================================================= */

.cr-footer-mini{
  max-width: 980px;
  margin: 18px auto 30px;
  padding: 0 10px;
  text-align: center;
  color: var(--cr-text-soft);
}

.cr-footer-copy{
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--cr-text);
}

.cr-footer-links a{
  color: var(--cr-head);
  font-weight: 600;
  text-decoration: none;
}

.cr-footer-links a:hover{
  color: var(--cr-title);
  text-decoration: underline;
}

.cr-footer-links span{
  margin: 0 6px;
  color: var(--cr-text-soft);
}

.cr-profile-text strong {
  font-weight: 600;
  color: inherit;
}

.cr-profile-text h3 {
  margin: 0 0 8px;
  font-weight: 600;
}

.cr-profile-text h3 a {
  color: inherit;
  font-weight: 600;
  text-decoration: none;
}

.cr-wrap{
  display: flex;
  flex-direction: column;
  gap: 16px;
}
/* ================================
  Camruf – Beliebte Camgirls Block
  ================================ */

/* Überschrift */
.cr-popular-title{
  margin-bottom: 14px;
}

/* Liste zurücksetzen */
.cr-girl-list{
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Einzelne Camgirl-Zeile */
.cr-girl-list li{
  margin-bottom: 8px;        /* Abstand zwischen den Girls */
  line-height: 1.45;
}

/* Letzter Eintrag ohne Extra-Abstand */
.cr-girl-list li:last-child{
  margin-bottom: 0;
}

/* Name + Alter */
.cr-girl-list li strong{
  font-weight: 600;
}

/* Name als Eye-Catcher – dezent */
.cr-girl-list li strong a{
  color: var(--sr-accent, #ff5cab);  /* fallback falls Variable fehlt */
  text-decoration: none;
}

/* Hover optional */
.cr-girl-list li strong a:hover{
  text-decoration: underline;
}

/* Hinweis unter der Liste */
.cr-girl-note{
  margin-top: 14px;
  font-size: 0.9rem;
}
/* =========================================
  Camruf – Content Styling
  Gilt nur unterhalb (SEO + Profilboxen)
  Header bleibt unberührt
  Ab Zeile 366 FINAL
  ========================================= */

/* Überschriften in Content-Boxen */
.cr-textbox h2{
  font-weight:600;
  margin-bottom:18px;
}

/* Profiltexte */
.cr-textbox p{
  margin:10px 0;
  line-height:1.5;
}

/* Name + Alter */
.cr-textbox p strong{
  font-weight:600;
}

/* Links in Profilnamen */
.cr-textbox a{
  text-decoration:none;
}

.cr-textbox a:hover{
  text-decoration:underline;
}
/* ===== Header & Profil-Header: KEIN Rot bei strong ===== */

.cr-hero strong,
.cr-hero b,
.cr-profile-text h3 strong,
.cr-profile-text h3 b{
  color: inherit;
}