.content-bg {
    background-image: url(../img/backgrounds/content/content-bg.jpg);
    background-size: cover;
    background-position: center;
    min-height: 100vh;
}

.content-intro {
    padding-top: 130px;
    text-align: center;
}

.content-intro h2 {
    color: white; /* Or black depending on your background */
    font-size: 4rem;
    text-shadow: -1.5px -1.5px 0 black, 1.5px -1.5px 0 black, -1.5px  1.5px 0 black, 1.5px  1.5px 0 black;
}

.content-teaser {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.content-teaser video {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.sites-header {
    padding-top: 20px;
    text-align: center;
}

.sites-header h2 {
    color: white; /* Or black depending on your background */
    font-size: 4rem;
    text-shadow: -1.5px -1.5px 0 black, 1.5px -1.5px 0 black, -1.5px  1.5px 0 black, 1.5px  1.5px 0 black;
    text-decoration: underline solid 3px;
}

.content-sites {
    background-color: rgba(0, 0, 0, 0.4); /* black with 70% opacity */
    padding: 40px;
    border-radius: 30px; /* optional: rounded corners */
    margin: 10px auto;
    max-width: 850px; /* optional: control box width */
}

.site-links-top,
.site-links-mid,
.site-links-bottom {
    display: flex;
    justify-content: center; /* centers child elements horizontally */
    align-items: center;     /* optional: centers vertically if height is set */
    margin-top: 20px;
    gap: 120px; /* space between icons */
}

.site-links-mid,
.site-links-bottom {
    margin-top: 40px;
}

.sextpanther {
    width: 500px;
    height: 100px;
    background-image: url(../img/logos/sextpanther-logo.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.loyal {
    width: 175px;
    height: 150px;
    background-image: url(../img/logos/lf-logo.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.onlyfans {
    width: 150px;
    height: 150px;
    background-image: url(../img/logos/of-logo.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.manyvids {
    width: 500px;
    height: 100px;
    background-image: url(../img/logos/manyvids-logo.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.content-customs {
    background-color: rgba(0, 0, 0, 0.7); /* semi-transparent black */
    padding: 30px;
    margin: 40px auto;
    max-width: 850px;
    border-radius: 30px;
    text-align: center;
}

.content-customs h3 {
    color: white;
    font-size: 2.9rem;
    line-height: 1.6;
    text-transform: none;
    text-shadow: -1px -1px 0 black, 1px -1px 0 black, -1px 1px 0 black, 1px 1px 0 black;
}





@media (max-width: 768px) {
  .content-intro h2, .sites-header h2 {
    font-size: 2rem;
    padding: 0 10px;
  }
  .content-teaser {
    padding: 20px 10px;
  }
  .content-customs {
    padding: 20px 15px;
    margin: 20px 10px;
  }
  .content-customs h3 {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  .content-sites {
    padding: 20px;
    margin: 20px 10px;
    border-radius: 20px;
  }
  .site-links-top, .site-links-mid, .site-links-bottom {
    flex-direction: column;
    gap: 20px;
  }
  .sextpanther, .manyvids {
    width: 90%;
    height: auto;
    aspect-ratio: 5 / 1;
  }
  .loyal, .onlyfans {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 390px) {
  .sextpanther, .manyvids {
    width: 100%;
    height: auto;
    aspect-ratio: 5 / 1;
  }

  .loyal, .onlyfans {
    width: 100px;
    height: 100px;
  }
}