body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0d0d0d;
    color: #fff;
}

/* HEADER */
header {
    background: #000;
    padding: 15px 30px;
    display: flex;
    justify-content: center;
    /* center the logo */
    align-items: center;
}

/* Sex Text Chat Logo */
.stc-logo {
    display: inline-block;
    text-align: center;
    font-family: Arial, sans-serif;
    font-weight: 900;
    letter-spacing: 1px;
    line-height: 1.1;
}

.stc-main {
    background: #000;
    padding: 8px 25px;
    font-size: 42px;
    text-transform: uppercase;
}

.stc-main .white {
    color: #fff;
    margin-right: 5px;
}

.stc-main .yellow {
    color: #ffea00;
}

.stc-tagline {
    background: #d60000;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    padding: 6px 20px;
    text-transform: uppercase;
}

.stc-tagline .yellow {
    color: #ffea00;
}

/* Mobile logo adjustments */
@media (max-width: 768px) {
    .stc-main {
        font-size: 28px;
        padding: 6px 15px;
    }

    .stc-tagline {
        font-size: 14px;
        padding: 6px 12px;
        line-height: 1.3;
        white-space: normal;
        /* allow wrapping */
        text-align: center;
    }
}

/* HERO */
.hero {
    text-align: center;
    padding: 2px 20px 20px;
    background: #111;
}

.hero h1 {
    font-size: 35px;
    color: #ffea00;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    margin: 10px 0 20px;
}

.free-note {
    font-size: 20px;
    color: #ffea00;
    margin: 10px 0 20px;
    font-weight: bold;
    text-shadow: 0 0 8px #000;
}

/* CTA BUTTONS */
.cta-btn {
    display: inline-block;
    background: #d60000;
    color: #fff;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    margin: 20px auto;
    /* center horizontally */
    text-align: center;
}

.seo-text .cta-btn {
    display: block;
    max-width: 300px;
    margin: 20px auto;
    /* center horizontally */
}

/* PROFILES */
.profiles-section {
    text-align: center;
    background: #000;
    padding: 20px 0 10px;
}

.profiles-heading {
    color: #ffea00;
    font-size: 26px;
    margin: 0 0 15px;
    font-weight: bold;
    text-shadow: 0 0 10px #ffea00, 0 0 20px #ffea00;
    animation: pulseGlow 2s infinite alternate;
}

@keyframes pulseGlow {
    from {
        text-shadow: 0 0 5px #ffea00, 0 0 10px #ffea00;
    }

    to {
        text-shadow: 0 0 20px #ffea00, 0 0 40px #ffea00;
    }
}

.profiles {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    background: #000;
    padding: 10px 0;
    scrollbar-width: none;
    /* Firefox */
}

.profiles::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari */
}

.profiles .scrolling {
    display: inline-flex;
    width: auto;
    /* let the content size itself */
    animation: none;
    /* disable auto-scroll on touch devices */
}

.profiles img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 12px;
    border: 3px solid #ffea00;
    flex-shrink: 0;
}
@media (min-width: 769px) {
    .profiles .scrolling {
        display: flex;
        width: 200%;
        animation: scroll 15s linear infinite;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* SEO TEXT */
.seo-text {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: left;
}

.seo-text h2 {
    color: #ffea00;
    margin-top: 30px;
    margin-bottom: 10px;
}

/* FAQ */
.faq {
    background: #111;
    padding: 30px 20px;
    max-width: 900px;
    margin: 30px auto;
}

.faq h2 {
    color: #ffea00;
    text-align: center;
    margin-bottom: 20px;
}

.faq-item {
    margin: 15px 0;
}

.faq-item h3 {
    color: #f5a623;
    cursor: pointer;
    margin: 0;
}

.faq-item p {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    margin: 0;
}

.faq-item p.open {
    max-height: 500px;
    /* enough to show answer */
    margin-top: 8px;
}

/* FOOTER */
footer {
    background: #000;
    padding: 20px;
    text-align: center;
    font-size: 14px;
}

footer a {
    color: #f5a623;
    margin: 0 10px;
    text-decoration: none;
}

/* STICKY CTA MOBILE */
.sticky-cta {
    display: none;
}

@media (max-width:768px) {
    .sticky-cta {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #d60000;
        text-align: center;
        padding: 15px;
        z-index: 1000;
    }

    .sticky-cta a {
        color: #fff;
        font-size: 18px;
        font-weight: bold;
        text-decoration: none;
    }
}