.hero-section {
    background-color: #f8f9fa;
    padding-top: 220px;
    padding-bottom: 80px;
    margin-top: 100px;
}

.hero-title {
    font-size: 2.5rem;
}

.gradient-text {
    background: linear-gradient(90deg, #9647f7, #e957b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-buttons .btn-gradient {
    background: linear-gradient(90deg, #9647f7, #e957b3);
    color: #fff;
    border-radius: 25px;
    padding: 8px 20px;
}

.hero-description {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}

.image-wrapper {
    position: relative;
    padding: 15px;
    background-color: #e4d4f9;
    border-radius: 20px;
}

.hero-img {
    border-radius: 15px;
}

.content-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}

.creator-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    width: 100%;
}

.creator-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
}

.creator-img-wrapper {
    min-width: 100px;
}

.btn-gradient {
    background: linear-gradient(90deg, #9647f7, #e957b3);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    transition: 0.3s ease;
    border: none;
}

.btn-gradient:hover {
    opacity: 0.9;
    color: #fff;
}
@media (max-width: 767px) {
    .creator-card {
        text-align: center;
    }

    .creator-img-wrapper {
        width: 100%;
    }

    .creator-info {
        padding-left: 0 !important;
    }

    .follower-count-desktop {
        display: none !important;
    }

    .follower-count-mobile {
        display: block;
    }

    /* ✅ Stack buttons vertically with full width and smaller size */
    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px; /* space between buttons */
    }

    .hero-buttons .btn-gradient {
        width: 100%;
        max-width: 320px; /* optional – limits width so it doesn’t look too wide */
        text-align: center;
        font-size: 0.9rem; /* slightly smaller font */
        padding: 8px 14px;
    }
}
