/* Global */
body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  background: #0d0d0d; /* dark background */
  color: #333;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 0 20px rgba(0,0,0,.5);
}

/* Header */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #eee;
  background: #111;
  color: #fff;
}

header .logo {
  font-size: 32px;
  font-weight: bold;
  color: #e91e63;
}

header .search {
  flex: 1;
  text-align: center;
}

header .search input {
  width: 60%;
  padding: 10px 15px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  outline: none;
  box-shadow: inset 0 0 5px rgba(0,0,0,.3);
}

header .social {
  display: flex;
  gap: 12px;
}

header .social a {
  font-size: 22px;
  text-decoration: none;
  color: #e91e63;
  transition: 0.3s;
}

header .social a:hover {
  color: #fff;
}

/* Navigation */
nav {
  background: #222;
  text-align: center;
  padding: 12px 0;
}

nav a {
  color: #fff;
  margin: 0 18px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

nav a:hover {
  color: #e91e63;
}

/* Main Layout */
main {
  display: grid;
  grid-template-columns: 25% 50% 25%;
  gap: 20px;
  padding: 25px;
}

.column {
  background: #fafafa;
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,.1);
}

/* Top Girls */
.top-girls h3 {
  margin-bottom: 15px;
  border-bottom: 2px solid #e91e63;
  padding-bottom: 8px;
  color: #e91e63;
}

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

.top-girls li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
  font-size: 15px;
}

.top-girls img {
  width: 40px;
  height: 50px;
  object-fit: cover;
  border-radius: 6px;
  margin-left: 10px;
}

/* Last Added */
.last-added h3 {
  margin-bottom: 15px;
  border-bottom: 2px solid #e91e63;
  padding-bottom: 8px;
  color: #e91e63;
}

.last-added article {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 12px;
  border-radius: 8px;
  transition: background .3s;
}

.last-added article:hover {
  background: #f0f0f0;
}

.last-added img {
  width: 90px;
  height: 110px;
  object-fit: cover;
  margin-right: 15px;
  border-radius: 8px;
}

.last-added h2 {
  font-size: 18px;
  margin: 0 0 5px;
}

.last-added a {
  text-decoration: none;
  color: #e91e63;
}

.last-added p {
  margin: 0;
  font-size: 14px;
  color: #555;
}

/* Tabs */
.tabs {
  display: flex;
  gap: 10px;
  margin: 15px 0 25px;
  flex-wrap: wrap;
}

.tabs a {
  padding: 10px 18px;
  border-radius: 25px;
  background: #eee;
  text-decoration: none;
  color: #555;
  font-weight: 500;
  font-size: 15px;
  transition: .3s;
}

.tabs a:hover {
  background: #e91e63;
  color: #fff;
}

.tabs a.active {
  background: #e91e63;
  color: #fff;
}

/* Ads */
.ads h3 {
  color: #e91e63;
  margin-bottom: 15px;
}

.ads div {
  abackground: #ddd;
  aborder-radius: 10px;
  apadding: 50px 0;
  amargin-bottom: 20px;
  text-align: center;
}

/* Footer */
footer {
  background: #111;
  color: #bbb;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 40px 20px;
}

footer h4 {
  color: #fff;
  margin-bottom: 12px;
}

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

footer ul li {
  margin: 6px 0;
}

footer ul li a {
  color: #bbb;
  text-decoration: none;
  transition: 0.3s;
}

footer ul li a:hover {
  color: #e91e63;
}

/* Responsive */
@media (max-width: 900px) {
  main {
    grid-template-columns: 1fr;
  }
  .top-girls li {
    font-size: 14px;
  }
  .top-girls img {
    width: 30px;
    height: 40px;
  }
  nav {
    display: none;
  }
  header {
    flex-wrap: wrap;
    text-align: center;
  }
}






/* Tag Cloud */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}
.tag-cloud a {
  padding: 6px 12px;
  background: #eee;
  border-radius: 20px;
  text-decoration: none;
  color: #555;
  font-size: 14px;
  transition: 0.3s;
}
.tag-cloud a:hover {
  background: #e91e63;
  color: #fff;
}

/* Tag Description */
.tag-description {
  margin: 15px 0 25px;
  font-size: 15px;
  line-height: 1.6;
}

/* Girl Cards */
.girl-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}
.girl-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 6px rgba(0,0,0,.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.girl-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,.2);
}
.girl-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.girl-photo {
  width: 100%;
  padding-top: 100%; /* square */
  background-size: cover;
  background-position: center;
}
.girl-info {
  padding: 12px;
  text-align: center;
}
.girl-info h3 {
  margin: 5px 0;
  color: #e91e63;
  font-size: 16px;
}
.girl-info p {
  margin: 2px 0;
  font-size: 14px;
  color: #555;
}





/* Force 3 columns for home latest girls */
.girl-cards.three-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}




/* Random Girls List */
.random-girls {
  list-style: none;
  padding: 0;
  margin: 0;
}

.random-girls li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.random-girls img {
  width: 60px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 12px;
}

.random-info h3 {
  margin: 0;
  font-size: 16px;
}

.random-info h3 a {
  color: #e91e63;
  text-decoration: none;
}

.random-info h3 a:hover {
  text-decoration: underline;
}

.random-info p {
  margin: 4px 0 0;
  font-size: 13px;
  color: #555;
}







/* Bio header layout */
.bio-header {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  align-items: flex-start;
  flex-wrap: nowrap;
}

.bio-header img {
  max-width: 300px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.bio-data {
  flex: 1;
  font-size: 16px;
}
.bio-data p {
  margin: 8px 0;
}
.bio-data strong {
  color: #111;
}

/* Mobile: stack image above bio-data */
@media (max-width: 900px) {
  .bio-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .bio-data {
    text-align: center;
  }
}





/* Social Links */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 20px 0;
  justify-content: center;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  padding: 10px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
}

.social-links a:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Individual platform styles */
.social.instagram { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.social.onlyfans { background: #00aff0; }
.social.pornhub { background: #000; color: #f90; }
.social.facebook { background: #3b5998; }
.social.x { background: #000; }




/* Age confirmation overlay */
#age-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.95);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.age-box {
  background: #222;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 0 20px rgba(0,0,0,0.7);
}

.age-box h2 {
  margin-top: 0;
  color: #e91e63;
}

.age-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: space-around;
}

.age-buttons button {
  background: #e91e63;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.age-buttons button:hover {
  background: #c2185b;
}




/* Sidebar Girls List */
.sidebar-girls {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-girls li {
  margin-bottom: 8px;
}

.sidebar-girls a {
  text-decoration: none;
  color: #e91e63;
  font-size: 15px;
}

.sidebar-girls a:hover {
  text-decoration: underline;
}



/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
}

.contact-form button {
  background: #e91e63;
  color: #fff;
  border: none;
  padding: 12px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #c2185b;
}




/* Next Girls Block */
.next-girls {
  margin: 40px 0 20px;
  text-align: center;
}

.next-girls h3 {
  margin-bottom: 20px;
  color: #e91e63;
}

.next-girls-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.next-girl-btn {
  display: block;
  padding: 12px;
  background: #f5f5f5;
  border-radius: 6px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.3s;
}

.next-girl-btn:hover {
  background: #e91e63;
  color: #fff;
  transform: translateY(-3px);
}

/* Mobile: fewer columns */
@media (max-width: 900px) {
  .next-girls-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}








 .all_ads {
     padding-right:0px;
 }


 .all_ads .card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.08);
      padding: 20px;
      border:2px #ddd solid;
      text-align: center;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      margin-bottom:10px;
    }
    .all_ads .card:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 14px rgba(0,0,0,0.12);
    }
    .all_ads .logo {
      width: 100px;
      height: 100px;
      margin: 0 auto 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
      background: #eee;
      font-weight: bold;
      font-size: 16px;
      color: #333;
      overflow: hidden;
    }
    .all_ads .logo img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }
    .all_ads .card h3 {
      font-size: 20px;
      margin: 10px 0 5px;
      color: #333;
    }
    .all_ads .card p {
      font-size: 15px;
      color: #555;
      margin: 5px 0 20px;
    }
    .all_ads .btn {
      display: inline-block;
      padding: 5px 10px;
      border-radius: 5px;
      background: linear-gradient(135deg, #ff6a00, #ff9900);
      color: #fff;
      font-weight: bold;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    .all_ads .btn:hover {
      background: linear-gradient(135deg, #ff9900, #ff6a00);
      box-shadow: 0 0 10px rgba(255,106,0,0.5);
    }

