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

header {
    background: #000;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    font-size: 26px;
    font-weight: bold;
    color: #fff;
}

header .logo span {
    color: #ffea00;
}

header .login-btn {
    background: #f5a623;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

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

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

.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-btn {
    display: inline-block;
    background: #d60000;
    color: #fff;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 10px;
}

.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: hidden;
    background: #000;
    padding: 10px 0;
}

.profiles .scrolling {
    display: flex;
    width: 200%;
    animation: scroll 15s linear infinite;
    will-change: transform;
    /* GPU boost for smoother animation */
}

.profiles .scrolling:hover {
    animation-play-state: paused;
    cursor: pointer;
    /* gives feedback when hovering */
}

.profiles img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 12px;
    border: 3px solid #ffea00;
    flex-shrink: 0;
}

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

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

.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 {
    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 {
    display: none;
    margin-top: 8px;
}

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

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

.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;
    }
}