/* =========================================================
   APS STARX
   Professional Editorial / Creator Platform Design
   ========================================================= */


/* =========================================================
   GLOBAL
   ========================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family:
        Inter,
        Arial,
        Helvetica,
        sans-serif;

    background: #f7f7f5;

    color: #171717;

    line-height: 1.5;

}


button,
input {
    font-family: inherit;
}


button {
    cursor: pointer;
}


.container {

    width: 100%;

    min-height: 100vh;

}


/* =========================================================
   HEADER
   ========================================================= */

.hero-banner {

    position: sticky;

    top: 0;

    z-index: 1000;

    background: rgba(255,255,255,0.96);

    backdrop-filter: blur(14px);

    border-bottom: 1px solid #e5e5e5;

}


.header {

    width: min(1280px, 94%);

    min-height: 76px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

}


.brand-area {

    display: flex;

    align-items: center;

    gap: 12px;

}


.brand-icon {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background: #111;

    color: #fff;

    font-size: 18px;

    box-shadow: 0 5px 15px rgba(0,0,0,0.12);

}


.logo {

    font-size: 20px;

    font-weight: 800;

    letter-spacing: -0.4px;

    color: #111;

}


.logo span {

    display: block;

    margin-top: 1px;

    font-size: 10px;

    font-weight: 500;

    color: #777;

    letter-spacing: 0.2px;

}


.channel-check-btn {

    border: 0;

    border-radius: 999px;

    padding: 11px 18px;

    background: #111;

    color: #fff;

    font-size: 13px;

    font-weight: 700;

    transition: 0.25s ease;

}


.channel-check-btn:hover {

    transform: translateY(-2px);

    background: #2b2b2b;

}


/* =========================================================
   COMMON SECTION
   ========================================================= */

.platform-section {

    width: min(1180px, 92%);

    margin: 0 auto;

    padding: 72px 0;

}


.section-label {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    margin-bottom: 12px;

    color: #777;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.4px;

}


.section-title {

    font-size: 30px;

    line-height: 1.15;

    letter-spacing: -1px;

    color: #151515;

    margin-bottom: 12px;

}


.section-description {

    max-width: 680px;

    color: #6d6d6d;

    font-size: 15px;

    line-height: 1.7;

}


/* =========================================================
   TIP OF THE DAY
   ========================================================= */

.tip-section {

    padding-top: 38px;

    padding-bottom: 35px;

}


.tip-card {

    display: flex;

    align-items: center;

    gap: 20px;

    padding: 25px 28px;

    border-radius: 18px;

    background: #fff;

    border: 1px solid #e7e7e7;

    box-shadow:
        0 8px 30px rgba(0,0,0,0.045);

}


.tip-icon {

    width: 52px;

    height: 52px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 14px;

    background: #fff7d6;

    font-size: 25px;

}


.tip-card h2 {

    font-size: 19px;

    margin-bottom: 5px;

    color: #161616;

}


.tip-card p {

    color: #707070;

    font-size: 13px;

}


/* =========================================================
   MAIN CREATOR SEARCH
   ========================================================= */

.creator-search-section {

    padding-top: 75px;

    padding-bottom: 70px;

}


.creator-search-section h1 {

    font-size: clamp(38px, 6vw, 70px);

    line-height: 0.98;

    letter-spacing: -3px;

    max-width: 800px;

    margin-bottom: 18px;

    color: #111;

}


.creator-search-section
.section-description {

    font-size: 16px;

    max-width: 650px;

}


.main-search-box {

    width: min(850px, 100%);

    margin-top: 30px;

    padding: 7px;

    display: flex;

    gap: 7px;

    border-radius: 16px;

    background: #fff;

    border: 1px solid #dedede;

    box-shadow:
        0 15px 40px rgba(0,0,0,0.07);

}


.main-search-box input {

    flex: 1;

    min-width: 0;

    border: 0;

    outline: 0;

    padding: 14px 16px;

    font-size: 14px;

    color: #222;

    background: transparent;

}


.main-search-box input::placeholder {

    color: #999;

}


.main-search-box button {

    border: 0;

    border-radius: 11px;

    padding: 0 23px;

    background: #111;

    color: #fff;

    font-size: 13px;

    font-weight: 700;

    transition: 0.25s ease;

}


.main-search-box button:hover {

    background: #333;

}


/* =========================================================
   CREATOR SEARCH RESULTS
   ========================================================= */

.creator-search-result {

    width: 100%;

    margin-top: 28px;

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(310px, 1fr));

    gap: 18px;

}


.creator-search-card {

    display: flex;

    gap: 17px;

    padding: 20px;

    border-radius: 18px;

    background: #fff;

    border: 1px solid #e5e5e5;

    box-shadow:
        0 8px 25px rgba(0,0,0,0.04);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;

}


.creator-search-card:hover {

    transform: translateY(-4px);

    box-shadow:
        0 15px 35px rgba(0,0,0,0.08);

}


.creator-search-image {

    width: 72px;

    height: 72px;

    flex-shrink: 0;

}


.creator-search-image img {

    width: 72px;

    height: 72px;

    object-fit: cover;

    border-radius: 50%;

    border: 3px solid #fff;

    box-shadow:
        0 4px 15px rgba(0,0,0,0.12);

}


.creator-search-info {

    flex: 1;

    min-width: 0;

}


.creator-search-info h3 {

    font-size: 17px;

    margin-bottom: 8px;

    color: #151515;

}


.creator-search-info p {

    margin: 3px 0;

    color: #707070;

    font-size: 12px;

}


/* =========================================================
   SEARCH MESSAGE
   ========================================================= */

.search-message {

    padding: 25px;

    border-radius: 15px;

    background: #fff;

    border: 1px solid #e5e5e5;

    color: #666;

    font-size: 14px;

}


/* =========================================================
   TRENDING TOPICS
   ========================================================= */

.trending-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 12px;

    margin-top: 25px;

}


.trending-grid button {

    min-height: 58px;

    padding: 14px 17px;

    border: 1px solid #e2e2e2;

    border-radius: 12px;

    background: #fff;

    color: #222;

    text-align: left;

    font-size: 13px;

    font-weight: 650;

    transition: 0.25s ease;

}


.trending-grid button:hover {

    border-color: #111;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(0,0,0,0.06);

}


/* =========================================================
   CREATOR TOOLS
   ========================================================= */

.creator-tools-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 16px;

    margin-top: 30px;

}


.creator-tool-card {

    position: relative;

    padding: 23px;

    min-height: 235px;

    display: flex;

    flex-direction: column;

    border-radius: 17px;

    background: #fff;

    border: 1px solid #e5e5e5;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;

}


.creator-tool-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(0,0,0,0.08);

}


.creator-tool-icon {

    width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 17px;

    border-radius: 12px;

    background: #f4f4f2;

    font-size: 22px;

}


.creator-tool-card h3 {

    font-size: 16px;

    margin-bottom: 8px;

    color: #161616;

}


.creator-tool-card p {

    color: #777;

    font-size: 12px;

    line-height: 1.6;

    flex: 1;

}


.creator-tool-card button {

    margin-top: 18px;

    width: 100%;

    padding: 10px;

    border: 0;

    border-radius: 9px;

    background: #111;

    color: #fff;

    font-size: 12px;

    font-weight: 700;

}


.creator-tool-card button:hover {

    background: #333;

}


.featured-tool {

    border: 1px solid #d8bd45;

    background:
        linear-gradient(
            145deg,
            #fffdf3,
            #fff
        );

}


.ai-tool {

    border: 1px dashed #bdbdbd;

    background: #fafafa;

}


.coming-badge {

    position: absolute;

    top: 17px;

    right: 17px;

    padding: 4px 7px;

    border-radius: 999px;

    background: #eeeeee;

    color: #666;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: .5px;

}


/* =========================================================
   CHANNEL CHECKER
   ========================================================= */

#channel-check {

    padding-top: 80px;

}


.search-card {

    margin-top: 28px;

    padding: 28px;

    border-radius: 20px;

    background: #fff;

    border: 1px solid #e2e2e2;

    box-shadow:
        0 12px 35px rgba(0,0,0,0.05);

}


.search-area {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

}


.search-area input {

    flex: 1;

    min-width: 260px;

    padding: 14px 16px;

    border: 1px solid #dcdcdc;

    border-radius: 10px;

    outline: none;

    font-size: 13px;

    background: #fafafa;

}


.search-area input:focus {

    border-color: #999;

    background: #fff;

}


.check-channel-button,
.scan-button {

    border: 0;

    padding: 13px 17px;

    border-radius: 10px;

    font-size: 12px;

    font-weight: 700;

}


.check-channel-button {

    background: #111;

    color: #fff;

}


.scan-button {

    position: relative;

    background: #f0f0ee;

    color: #222;

}


.pro-mini-badge {

    margin-left: 5px;

    padding: 3px 5px;

    border-radius: 5px;

    background: #e0c84f;

    color: #171717;

    font-size: 8px;

    font-weight: 900;

}


/* =========================================================
   DASHBOARD
   ========================================================= */

.dashboard {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;

    margin-top: 25px;

}


.stat-card {

    padding: 22px;

    border-radius: 16px;

    background: #fff;

    border: 1px solid #e5e5e5;

}


.stat-icon {

    font-size: 22px;

    margin-bottom: 13px;

}


.stat-title {

    color: #777;

    font-size: 11px;

    font-weight: 600;

}


.stat-value {

    margin-top: 4px;

    font-size: 25px;

    font-weight: 800;

    color: #151515;

}


.stat-value.active {

    color: #237a45;

}


/* =========================================================
   ANALYSIS GRID
   ========================================================= */

.analysis-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;

    margin-top: 25px;

}


.analysis-card {

    padding: 21px;

    border-radius: 16px;

    background: #fff;

    border: 1px solid #e5e5e5;

}


.analysis-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    margin-bottom: 14px;

}


.analysis-name {

    font-size: 13px;

    font-weight: 750;

}


.analysis-card p {

    color: #777;

    font-size: 12px;

    line-height: 1.6;

}


.badge {

    padding: 4px 7px;

    border-radius: 999px;

    font-size: 8px;

    font-weight: 800;

}


.badge.good {

    background: #e9f7ed;

    color: #24723e;

}


.badge.review {

    background: #fff3d8;

    color: #946c00;

}


/* =========================================================
   SCORE CARD
   ========================================================= */

.score-card {

    width: min(760px, 92%);

    margin: 20px auto 70px;

    padding: 45px 30px;

    text-align: center;

    border-radius: 24px;

    background: #111;

    color: #fff;

    box-shadow:
        0 20px 50px rgba(0,0,0,0.14);

}


.score-label {

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;

    color: #cfcfcf;

}


.score {

    margin-top: 8px;

    font-size: 64px;

    line-height: 1;

    font-weight: 900;

    color: #f0d451;

}


.score span {

    font-size: 20px;

    color: #999;

}


.score-text {

    margin-top: 12px;

    font-size: 14px;

    font-weight: 700;

}


.score-note {

    max-width: 570px;

    margin: 18px auto 0;

    color: #9c9c9c;

    font-size: 11px;

    line-height: 1.6;

}


/* =========================================================
   BLOG
   ========================================================= */

.blog-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;

    margin-top: 28px;

}


.blog-card {

    overflow: hidden;

    border-radius: 17px;

    background: #fff;

    border: 1px solid #e5e5e5;

    transition: 0.25s ease;

}


.blog-card:hover {

    transform: translateY(-4px);

    box-shadow:
        0 15px 35px rgba(0,0,0,0.08);

}


.blog-image {

    height: 155px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #eeeeec;

    font-size: 48px;

}


.blog-content {

    padding: 20px;

}


.blog-content > span {

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 1px;

    font-weight: 800;

    color: #888;

}


.blog-content h3 {

    margin-top: 7px;

    font-size: 18px;

}


.blog-content p {

    margin-top: 7px;

    color: #777;

    font-size: 12px;

    line-height: 1.6;

}


.blog-content button {

    margin-top: 17px;

    border: 0;

    background: transparent;

    color: #111;

    font-size: 12px;

    font-weight: 800;

}


/* =========================================================
   CREATOR OPPORTUNITIES
   ========================================================= */

.earning-section {

    padding-top: 50px;

}


.earning-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 12px;

    margin-top: 25px;

}


.earning-grid > div {

    padding: 18px;

    border-radius: 13px;

    background: #fff;

    border: 1px solid #e5e5e5;

    font-size: 13px;

}


.earning-grid strong {

    margin-left: 5px;

}


.coming-soon-large {

    margin-top: 15px;

    padding: 15px;

    text-align: center;

    border-radius: 12px;

    background: #fff;

    border: 1px dashed #d0d0d0;

    color: #777;

    font-size: 12px;

}


/* =========================================================
   ADVERTISEMENT
   ========================================================= */

.advertisement-section {

    width: min(970px, 92%);

    margin: 20px auto 60px;

}


.ad-label {

    margin-bottom: 7px;

    text-align: center;

    color: #999;

    font-size: 8px;

    letter-spacing: 1px;

}


.ad-placeholder {

    min-height: 120px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #dedede;

    border-radius: 12px;

    background: #f2f2f0;

    color: #aaa;

    font-size: 11px;

}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {

    padding: 55px 5% 30px;

    background: #111;

    color: #fff;

    text-align: center;

}


.footer-brand {

    font-size: 21px;

    font-weight: 800;

}


.footer-tagline {

    margin-top: 5px;

    color: #999;

    font-size: 11px;

}


.footer-links {

    margin-top: 25px;

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 20px;

}


.footer-links a {

    color: #cfcfcf;

    text-decoration: none;

    font-size: 11px;

}


.footer-links a:hover {

    color: #fff;

}


.footer-info {

    max-width: 800px;

    margin: 22px auto 0;

    color: #888;

    font-size: 10px;

    line-height: 1.6;

}


.footer-copyright {

    margin-top: 28px;

    padding-top: 18px;

    border-top: 1px solid #292929;

    color: #666;

    font-size: 10px;

}


/* =========================================================
   APS SCORE - CREATOR SEARCH
   ========================================================= */

.aps-score-box {

    margin-top: 15px;

    padding: 16px;

    border-radius: 15px;

    background: #fafaf7;

    border: 1px solid #e5e2cf;

}


.aps-score-title {

    font-size: 11px;

    font-weight: 800;

    color: #777;

}


.aps-score-number {

    margin-top: 3px;

    font-size: 31px;

    line-height: 1.1;

    font-weight: 900;

    color: #b08b00;

}


.aps-score-number span {

    font-size: 14px;

    color: #999;

    font-weight: 600;

}


.aps-score-status {

    margin-top: 5px;

    font-size: 12px;

    font-weight: 800;

}


.aps-score-status[data-score-level="excellent"] {

    color: #268447;

}


.aps-score-status[data-score-level="good"] {

    color: #9a7600;

}


.aps-score-status[data-score-level="average"] {

    color: #b36a00;

}


.aps-score-status[data-score-level="weak"] {

    color: #b23a3a;

}


/* =========================================================
   CREATOR ANALYSIS
   ========================================================= */

.aps-analysis-section {

    margin-top: 13px;

}


.aps-analysis-heading {

    margin-bottom: 6px;

    color: #333;

    font-size: 11px;

    font-weight: 800;

}


.aps-score-row {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    color: #777;

    font-size: 10px;

}


.aps-score-row strong {

    color: #8c6e00;

}


.aps-score-bar {

    width: 100%;

    height: 4px;

    margin-top: 5px;

    overflow: hidden;

    border-radius: 10px;

    background: #e8e8e5;

}


.aps-score-fill {

    height: 100%;

    border-radius: 10px;

    background: #d2b32d;

    transition: width .5s ease;

}


/* =========================================================
   WHY SCORE
   ========================================================= */

.aps-why-box {

    margin-top: 15px;

    padding: 11px;

    border-radius: 10px;

    background: #f5f5f2;

    border: 1px solid #e6e6e2;

}


.aps-why-title {

    margin-bottom: 5px;

    color: #333;

    font-size: 11px;

    font-weight: 800;

}


.aps-why-text {

    color: #777;

    font-size: 10px;

    line-height: 1.5;

}


/* =========================================================
   IMPROVEMENT TIPS
   ========================================================= */

.aps-tips-box {

    margin-top: 12px;

    padding: 11px;

    border-radius: 10px;

    background: #fffaf0;

    border: 1px solid #eee2bd;

}


.aps-tips-title {

    margin-bottom: 5px;

    color: #444;

    font-size: 11px;

    font-weight: 800;

}


.aps-tip-item {

    padding: 4px 0;

    color: #777;

    font-size: 10px;

    line-height: 1.45;

}


.aps-tip-item + .aps-tip-item {

    border-top: 1px solid #eee7d2;

}


/* =========================================================
   DATA AVAILABILITY
   ========================================================= */

.aps-data-box {

    margin-top: 11px;

    padding: 10px;

    border-radius: 10px;

    background: #f8f8f7;

    border: 1px solid #e7e7e5;

}


.aps-data-title {

    margin-bottom: 4px;

    color: #444;

    font-size: 10px;

    font-weight: 800;

}


.aps-data-text {

    color: #888;

    font-size: 9px;

    line-height: 1.5;

}


.aps-score-note {

    margin-top: 8px;

    color: #999;

    font-size: 9px;

    line-height: 1.4;

}


/* =========================================================
   UPGRADE MODAL
   ========================================================= */

.upgrade-modal {

    position: fixed;

    inset: 0;

    z-index: 5000;

    display: none;

    align-items: center;

    justify-content: center;

    padding: 20px;

    background:
        rgba(0,0,0,0.58);

    backdrop-filter: blur(5px);

}


.upgrade-modal.show {

    display: flex;

}


body.modal-open {

    overflow: hidden;

}


.upgrade-box {

    position: relative;

    width: min(500px, 100%);

    max-height: 90vh;

    overflow-y: auto;

    padding: 32px;

    border-radius: 22px;

    background: #fff;

    box-shadow:
        0 30px 80px rgba(0,0,0,0.25);

}


.upgrade-close {

    position: absolute;

    top: 15px;

    right: 15px;

    width: 32px;

    height: 32px;

    border: 0;

    border-radius: 50%;

    background: #f2f2f2;

    color: #555;

}


.upgrade-icon {

    font-size: 36px;

}


.upgrade-label {

    margin-top: 10px;

    color: #9a7a00;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1.2px;

}


.upgrade-box h2 {

    margin-top: 8px;

    font-size: 25px;

}


.upgrade-intro {

    margin-top: 8px;

    color: #777;

    font-size: 13px;

}


.upgrade-features {

    margin-top: 20px;

    display: grid;

    gap: 9px;

}


.upgrade-feature {

    color: #555;

    font-size: 12px;

}


.upgrade-feature span {

    margin-right: 7px;

    color: #32824d;

    font-weight: 800;

}


.pro-plan {

    margin-top: 22px;

    padding: 15px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    border-radius: 12px;

    background: #f7f7f4;

}


.pro-plan-title {

    font-size: 13px;

    font-weight: 800;

}


.pro-plan-subtitle {

    margin-top: 2px;

    color: #888;

    font-size: 10px;

}


.pro-price {

    color: #9a7a00;

    font-size: 12px;

    font-weight: 800;

}


.upgrade-button {

    width: 100%;

    margin-top: 17px;

    padding: 13px;

    border: 0;

    border-radius: 10px;

    background: #111;

    color: #fff;

    font-size: 13px;

    font-weight: 800;

}


.upgrade-status {

    margin-top: 10px;

    text-align: center;

    font-size: 11px;

}


.upgrade-note {

    margin-top: 12px;

    text-align: center;

    color: #999;

    font-size: 9px;

}


.upgrade-disclaimer {

    margin-top: 15px;

    padding-top: 12px;

    border-top: 1px solid #eee;

    color: #999;

    font-size: 9px;

    line-height: 1.5;

    text-align: center;

}


/* =========================================================
   RESPONSIVE - TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .creator-tools-grid {

        grid-template-columns:
            repeat(3, 1fr);

    }


    .dashboard {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .analysis-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .blog-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .earning-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* =========================================================
   RESPONSIVE - MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .header {

        min-height: 68px;

    }


    .brand-icon {

        width: 37px;

        height: 37px;

        border-radius: 10px;

    }


    .logo {

        font-size: 17px;

    }


    .logo span {

        font-size: 8px;

    }


    .channel-check-btn {

        padding: 9px 12px;

        font-size: 10px;

    }


    .platform-section {

        padding: 48px 0;

    }


    .creator-search-section h1 {

        letter-spacing: -2px;

    }


    .main-search-box {

        flex-direction: column;

        padding: 7px;

    }


    .main-search-box button {

        min-height: 45px;

    }


    .trending-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .creator-tools-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .analysis-grid {

        grid-template-columns:
            1fr;

    }


    .blog-grid {

        grid-template-columns:
            1fr;

    }


    .earning-grid {

        grid-template-columns:
            1fr;

    }


    .search-area {

        flex-direction: column;

    }


    .search-area input {

        min-width: 0;

        width: 100%;

    }


    .check-channel-button,
    .scan-button {

        width: 100%;

    }


    .score {

        font-size: 52px;

    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .header {

        gap: 10px;

    }


    .logo span {

        display: none;

    }


    .channel-check-btn {

        font-size: 9px;

        padding: 8px 10px;

    }


    .tip-card {

        align-items: flex-start;

        padding: 18px;

    }


    .tip-icon {

        width: 43px;

        height: 43px;

        font-size: 20px;

    }


    .tip-card h2 {

        font-size: 16px;

    }


    .tip-card p {

        font-size: 11px;

    }


    .trending-grid {

        grid-template-columns:
            1fr;

    }


    .creator-tools-grid {

        grid-template-columns:
            1fr;

    }


    .creator-search-card {

        flex-direction: column;

    }


    .creator-search-image {

        width: 65px;

        height: 65px;

    }


    .creator-search-image img {

        width: 65px;

        height: 65px;

    }


    .search-card {

        padding: 18px;

    }


    .dashboard {

        grid-template-columns:
            1fr;

    }


    .footer-links {

        flex-direction: column;

        gap: 10px;

    }

}

/* =========================================================
   APS STARX HEADING COLORS
   ========================================================= */

/* MAIN HEADER */
.hero-banner {
    background: #e40000;
}


/* ALL SECTION HEADINGS */
.section-title,
.platform-section h1,
.platform-section h2 {
    color: #00897b;
}


/* SECTION LABELS */
.section-label {
    color: #00897b;
}


/* IMPORTANT MAIN PAGE HEADINGS */
.creator-search-section h1 {
    color: #00897b;
}


/* CHANNEL SCORE HEADING */
.yellow-title {
    color: #00897b !important;
}


/* TOOL CARD HEADINGS */
.creator-tool-card h3 {
    color: #00897b;
}


/* BLOG HEADINGS */
.blog-card h3 {
    color: #00897b;
}


/* OPPORTUNITY HEADINGS */
.earning-section .section-title {
    color: #00897b;
}
/* =========================================
   APS StarX - Full Scan Thumbnail
   ========================================= */

.video-thumbnail-wrap {
    width: 280px;
    flex: 0 0 280px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #eee;
}

.video-thumbnail {
    display: block;
    width: 100%;
    height: 158px;
    object-fit: cover;
    border-radius: 12px;
}

/* Full Scan video card */
.video-card-top {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* Mobile */
@media (max-width: 700px) {

    .video-card-top {
        flex-direction: column;
    }

    .video-thumbnail-wrap {
        width: 100%;
        flex: none;
    }

    .video-thumbnail {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        object-fit: cover;
    }
}
/* =========================================================
   APS STARX - PREMIUM FULL SCAN VIDEO CARDS
   ========================================================= */

.video-analysis-card {
    margin-top: 18px;
    padding: 18px;
    border: 1px solid #e4e4e1;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 6px 22px rgba(0,0,0,0.045);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.video-analysis-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}


/* VIDEO TOP AREA */

.video-card-top {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}


/* THUMBNAIL */

.video-thumbnail-wrap {
    width: 280px;
    min-width: 280px;
    height: 158px;
    flex: 0 0 280px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #eeeeec;
}

.video-thumbnail {
    display: block;
    width: 100%;
    height: 158px;
    object-fit: cover;
    border-radius: 12px;
}


/* WATCH BUTTON */

.watch-video-button {
    position: absolute;
    left: 10px;
    bottom: 10px;

    padding: 7px 11px;

    border-radius: 8px;

    background: rgba(0,0,0,0.82);
    color: #fff;

    text-decoration: none;

    font-size: 10px;
    font-weight: 800;

    transition: 0.2s ease;
}

.watch-video-button:hover {
    background: #e40000;
    transform: translateY(-1px);
}


/* VIDEO INFORMATION */

.video-card-info {
    flex: 1;
    min-width: 0;
}

.video-card-info h3 {
    margin: 0 0 8px;

    font-size: 17px;
    line-height: 1.35;

    color: #171717;
}

.video-card-info p {
    margin: 4px 0;

    color: #777;

    font-size: 11px;
    line-height: 1.5;
}


/* BADGES */

.video-card-info .badge,
.video-analysis-card .badge {
    display: inline-block;

    margin-top: 6px;

    padding: 5px 9px;

    border-radius: 999px;

    font-size: 9px;
    font-weight: 800;
}


/* VIDEO DETAILS AREA */

.video-analysis-card hr {
    margin: 15px 0;

    border: 0;
    border-top: 1px solid #eeeeeb;
}


/* ANALYSIS TEXT */

.video-analysis-card strong {
    color: #333;
}


/* =========================================================
   FULL SCAN FILTER BUTTONS
   ========================================================= */

.scan-filter,
.scan-filters button {
    border: 1px solid #dededb;

    border-radius: 999px;

    padding: 7px 12px;

    background: #fff;

    color: #555;

    font-size: 10px;
    font-weight: 700;

    transition: 0.2s ease;
}

.scan-filter:hover,
.scan-filters button:hover {
    border-color: #00897b;
    color: #00897b;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .video-card-top {
        flex-direction: column;
    }

    .video-thumbnail-wrap {
        width: 100%;
        min-width: 0;
        height: auto;
        flex: none;
    }

    .video-thumbnail {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        object-fit: cover;
    }

    .video-card-info {
        width: 100%;
    }

    .video-card-info h3 {
        font-size: 15px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .video-analysis-card {
        padding: 14px;
        border-radius: 14px;
    }

    .video-thumbnail-wrap {
        border-radius: 10px;
    }

    .video-thumbnail {
        border-radius: 10px;
    }

    .watch-video-button {
        left: 8px;
        bottom: 8px;
        padding: 6px 9px;
        font-size: 9px;
    }

}
/* =========================================================
   APS STARX - PREMIUM SCAN SUMMARY
   ========================================================= */

.full-scan-report {
    margin-top: 25px;
    padding: 26px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #e3e3e0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.055);
}

.full-scan-report h3 {
    margin-bottom: 6px;
    color: #00897b;
    font-size: 21px;
    font-weight: 800;
}

.full-scan-report > p {
    color: #777;
    font-size: 12px;
    margin-top: 5px;
}


/* SUMMARY BOXES */

.scan-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 22px;
}

.scan-summary-item {
    padding: 16px;
    border-radius: 14px;
    background: #f8f8f6;
    border: 1px solid #e7e7e4;
}

.scan-summary-icon {
    font-size: 20px;
    margin-bottom: 7px;
}

.scan-summary-label {
    color: #777;
    font-size: 10px;
    font-weight: 700;
}

.scan-summary-value {
    margin-top: 2px;
    color: #171717;
    font-size: 23px;
    font-weight: 900;
}


/* OVERALL RESULT */

.scan-overall-box {
    margin-top: 18px;
    padding: 18px;
    text-align: center;
    border-radius: 14px;
    background: #f5faf8;
    border: 1px solid #dcece6;
}

.scan-overall-label {
    color: #777;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.scan-overall-value {
    margin-top: 5px;
    color: #00897b;
    font-size: 25px;
    font-weight: 900;
}


/* MOBILE */

@media (max-width: 700px) {

    .scan-summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .full-scan-report {
        padding: 20px;
    }

}

@media (max-width: 480px) {

    .scan-summary-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .scan-summary-item {
        padding: 13px;
    }

    .scan-summary-value {
        font-size: 20px;
    }

}
/* =========================================================
   APS STARX - SAFE PREMIUM FULL SCAN REPORT
   DESIGN ONLY - NO JS CHANGE
   ========================================================= */

.full-scan-report {
    margin-top: 25px;
    padding: 28px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #e2e2df;
    box-shadow: 0 12px 35px rgba(0,0,0,0.055);
}

.full-scan-report h3 {
    color: #00897b;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
}

.full-scan-report p {
    color: #666;
    font-size: 12px;
    line-height: 1.6;
}

.full-scan-report strong {
    color: #222;
}


/* Scan information rows */

.full-scan-report p strong {
    font-weight: 800;
}


/* Divider */

.full-scan-report hr {
    margin: 20px 0;
    border: 0;
    border-top: 1px solid #eeeeeb;
}


/* Analysis status area */

.full-scan-report p:has(strong) {
    margin-bottom: 5px;
}


/* Disclaimer */

.full-scan-report small {
    display: block;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid #eeeeeb;

    color: #999;
    font-size: 9px;
    line-height: 1.6;
}


/* Loading */

.scan-loading {
    margin-top: 25px;
    padding: 28px;
    text-align: center;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #e5e5e2;
    box-shadow: 0 8px 25px rgba(0,0,0,0.04);
}

.scan-loading h3 {
    color: #00897b;
    font-size: 18px;
    margin-bottom: 8px;
}

.scan-loading p {
    color: #777;
    font-size: 12px;
}


/* Error */

.scan-error {
    margin-top: 25px;
    padding: 24px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #eadede;
}

.scan-error h3 {
    color: #c62828;
    font-size: 18px;
    margin-bottom: 8px;
}

.scan-error p {
    color: #777;
    font-size: 12px;
}


/* Mobile */

@media (max-width: 700px) {

    .full-scan-report {
        padding: 20px;
        border-radius: 17px;
    }

    .full-scan-report h3 {
        font-size: 19px;
    }

}

@media (max-width: 480px) {

    .full-scan-report {
        padding: 16px;
    }

    .full-scan-report h3 {
        font-size: 17px;
    }

}
/* =========================================================
   APS STARX - SCAN FILTER BUTTONS SIZE
   ========================================================= */

.scan-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px !important;
    margin-top: 22px !important;
}

.scan-filter,
.scan-filters button {
    min-height: 40px !important;
    padding: 9px 16px !important;

    border: 1px solid #dcdcd8 !important;
    border-radius: 999px !important;

    background: #fff !important;
    color: #333 !important;

    font-size: 12px !important;
    font-weight: 750 !important;

    white-space: nowrap;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.scan-filter:hover,
.scan-filters button:hover {
    border-color: #00897b !important;
    color: #00897b !important;
    transform: translateY(-1px);
}


/* MOBILE */

@media (max-width: 700px) {

    .scan-filter,
    .scan-filters button {
        min-height: 42px !important;
        padding: 10px 15px !important;
        font-size: 12px !important;
    }

}
/* =========================================================
   APS STARX
   PREMIUM COLORFUL HOMEPAGE + CREATOR TOOLS
   ========================================================= */

/* ---------- PREMIUM PAGE BACKGROUND ---------- */

body {
    background:
        radial-gradient(circle at 5% 5%, rgba(0, 137, 123, 0.06), transparent 25%),
        radial-gradient(circle at 95% 18%, rgba(108, 99, 255, 0.06), transparent 25%),
        #f7f7f5;
}


/* ---------- PREMIUM HEADER ---------- */

.hero-banner {
    background:
        linear-gradient(135deg, #e40000 0%, #d50000 55%, #b80000 100%) !important;
    position: relative;
    overflow: hidden;
}

.hero-banner::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -160px;
    top: -220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
    pointer-events: none;
}

.header {
    position: relative;
    z-index: 2;
}


/* ---------- BRAND ---------- */

.brand-icon {
    background: rgba(255, 255, 255, 0.18) !important;
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.logo {
    color: #ffffff !important;
}

.logo span {
    color: rgba(255, 255, 255, 0.88) !important;
}


/* ---------- HEADER BUTTON ---------- */

.channel-check-btn {
    background: #ffffff !important;
    color: #d40000 !important;
    border: none !important;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
    transition: all 0.25s ease;
}

.channel-check-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}


/* ---------- SECTION LABEL ---------- */

.section-label {
    color: #00897b !important;
    font-weight: 800;
    letter-spacing: 0.08em;
}


/* ---------- SECTION TITLE ---------- */

.section-title {
    color: #171717;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 48px;
    height: 4px;
    margin-top: 10px;
    border-radius: 10px;
    background: linear-gradient(
        90deg,
        #00897b,
        #00bfa5
    );
}


/* ---------- CREATOR SEARCH ---------- */

.creator-search-section {
    position: relative;
}

.main-search-box {
    background: #ffffff !important;
    border: 1px solid #e7e7e2;
    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.07),
        0 2px 8px rgba(0, 137, 123, 0.05);
    border-radius: 18px !important;
    padding: 8px !important;
}

.main-search-box input {
    border: none !important;
    background: transparent !important;
    outline: none !important;
}

.main-search-box button {
    background: linear-gradient(
        135deg,
        #00897b,
        #00695c
    ) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 7px 18px rgba(0, 137, 123, 0.22);
    transition: all 0.25s ease;
}

.main-search-box button:hover {
    transform: translateY(-2px);
}


/* =========================================================
   TRENDING TOPICS
   ========================================================= */

.trending-grid {
    gap: 14px !important;
}

.trending-grid button {
    background: #ffffff !important;
    border: 1px solid #e4e4df !important;
    border-radius: 14px !important;
    padding: 15px 18px !important;
    font-weight: 700;
    color: #333 !important;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.045);
    transition: all 0.25s ease;
}

.trending-grid button:nth-child(1):hover {
    border-color: #e53935 !important;
    color: #d32f2f !important;
}

.trending-grid button:nth-child(2):hover {
    border-color: #f9a825 !important;
    color: #c77800 !important;
}

.trending-grid button:nth-child(3):hover {
    border-color: #3949ab !important;
    color: #303f9f !important;
}

.trending-grid button:nth-child(4):hover {
    border-color: #8e44ad !important;
    color: #7b1fa2 !important;
}

.trending-grid button:nth-child(5):hover {
    border-color: #00897b !important;
    color: #00695c !important;
}

.trending-grid button:nth-child(6):hover {
    border-color: #1565c0 !important;
    color: #0d47a1 !important;
}

.trending-grid button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.09);
}


/* =========================================================
   CREATOR TOOLS - PREMIUM COLORFUL CARDS
   ========================================================= */

.creator-tools-grid {
    gap: 20px !important;
}

.creator-tool-card {
    position: relative;
    overflow: hidden;
    background: #ffffff !important;
    border: 1px solid #e8e8e3 !important;
    border-radius: 20px !important;
    padding: 26px !important;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.055);

    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease;

    isolation: isolate;
}

.creator-tool-card::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -65px;
    top: -65px;
    border-radius: 50%;
    background: var(--tool-soft);
    z-index: -1;
    transition: transform 0.3s ease;
}

.creator-tool-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 16px 38px rgba(0, 0, 0, 0.11);
}

.creator-tool-card:hover::before {
    transform: scale(1.35);
}


/* ---------- TOOL ICON ---------- */

.creator-tool-icon {
    width: 58px !important;
    height: 58px !important;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px !important;

    font-size: 27px !important;

    background: var(--tool-soft) !important;
    border: 1px solid var(--tool-border);

    margin-bottom: 18px !important;

    box-shadow: 0 7px 18px rgba(0, 0, 0, 0.06);

    transition: transform 0.25s ease;
}

.creator-tool-card:hover .creator-tool-icon {
    transform: scale(1.08) rotate(-2deg);
}


/* ---------- TOOL TITLE ---------- */

.creator-tool-card h3 {
    color: #171717 !important;
    font-weight: 800 !important;
    margin-bottom: 9px !important;
}

.creator-tool-card p {
    color: #666 !important;
    line-height: 1.65 !important;
}


/* ---------- TOOL BUTTON ---------- */

.creator-tool-card button {
    border: none !important;
    border-radius: 10px !important;

    padding: 10px 15px !important;

    background: var(--tool-color) !important;
    color: #ffffff !important;

    font-weight: 750 !important;

    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.10);

    transition: all 0.25s ease;
}

.creator-tool-card button:hover:not(:disabled) {
    transform: translateY(-2px);
    filter: brightness(0.94);
    box-shadow: 0 9px 20px rgba(0, 0, 0, 0.14);
}


/* =========================================================
   INDIVIDUAL TOOL COLORS
   ========================================================= */

/* Thumbnail - Purple */

.creator-tool-card:nth-child(1) {
    --tool-color: #7e57c2;
    --tool-soft: #f0e8ff;
    --tool-border: #dfd0ff;
}


/* Tags - Blue */

.creator-tool-card:nth-child(2) {
    --tool-color: #1976d2;
    --tool-soft: #e7f1ff;
    --tool-border: #c9e0ff;
}


/* Video Ideas - Orange */

.creator-tool-card:nth-child(3) {
    --tool-color: #ef6c00;
    --tool-soft: #fff0df;
    --tool-border: #ffd8b2;
}


/* Trending Tags - Red */

.creator-tool-card:nth-child(4) {
    --tool-color: #e53935;
    --tool-soft: #ffebeb;
    --tool-border: #ffcaca;
}


/* Trending Topics - Gold */

.creator-tool-card:nth-child(5) {
    --tool-color: #c79100;
    --tool-soft: #fff7d9;
    --tool-border: #f3df94;
}


/* Description - Teal */

.creator-tool-card:nth-child(6) {
    --tool-color: #00897b;
    --tool-soft: #e3f7f4;
    --tool-border: #c2ebe5;
}


/* Hashtag - Pink */

.creator-tool-card:nth-child(7) {
    --tool-color: #d81b60;
    --tool-soft: #ffe8f0;
    --tool-border: #ffc6d8;
}


/* Title - Indigo */

.creator-tool-card:nth-child(8) {
    --tool-color: #3949ab;
    --tool-soft: #e9ebff;
    --tool-border: #ccd0ff;
}


/* Channel Checker - Premium Red */

.creator-tool-card:nth-child(9) {
    --tool-color: #d32f2f;
    --tool-soft: #ffebeb;
    --tool-border: #ffc8c8;

    border-color: #f0c4c4 !important;
}


/* AI - Gold / Premium */

.creator-tool-card:nth-child(10) {
    --tool-color: #8d6e00;
    --tool-soft: #fff8dc;
    --tool-border: #f0df9d;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #fffdf4
        ) !important;
}


/* ---------- COMING SOON ---------- */

.coming-badge {
    background: #fff4c2 !important;
    color: #806500 !important;
    border: 1px solid #ead58b;
    font-size: 10px !important;
    font-weight: 800 !important;
    border-radius: 999px !important;
    padding: 5px 9px !important;
}


/* ---------- DISABLED AI BUTTON ---------- */

.creator-tool-card.ai-tool button:disabled {
    opacity: 0.75;
    cursor: not-allowed;
}


/* =========================================================
   CHANNEL CHECKER PREMIUM CARD
   ========================================================= */

.search-card {
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #fbfffe
        ) !important;

    border: 1px solid #dfece9 !important;

    box-shadow:
        0 12px 35px rgba(0, 137, 123, 0.07);

    border-radius: 20px !important;
}

.check-channel-button {
    background:
        linear-gradient(
            135deg,
            #e53935,
            #c62828
        ) !important;

    box-shadow:
        0 8px 20px rgba(229, 57, 53, 0.20);

    transition: all 0.25s ease;
}

.check-channel-button:hover {
    transform: translateY(-2px);
}


/* =========================================================
   CHANNEL OVERVIEW
   ========================================================= */

.dashboard {
    gap: 18px !important;
}

.stat-card {
    background: #ffffff !important;
    border: 1px solid #e7e7e2 !important;
    border-radius: 18px !important;

    box-shadow:
        0 7px 24px rgba(0, 0, 0, 0.055);

    transition: all 0.25s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 13px 30px rgba(0, 0, 0, 0.09);
}

.stat-card:nth-child(1) {
    border-top: 4px solid #7e57c2 !important;
}

.stat-card:nth-child(2) {
    border-top: 4px solid #1976d2 !important;
}

.stat-card:nth-child(3) {
    border-top: 4px solid #00897b !important;
}

.stat-card:nth-child(4) {
    border-top: 4px solid #f9a825 !important;
}


/* =========================================================
   ANALYSIS CARDS
   ========================================================= */

.analysis-card {
    background: #ffffff !important;
    border: 1px solid #e8e8e3 !important;
    border-radius: 18px !important;

    box-shadow:
        0 7px 22px rgba(0, 0, 0, 0.045);

    transition: all 0.25s ease;
}

.analysis-card:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.075);
}


/* =========================================================
   SCORE CARD
   ========================================================= */

.score-card {
    background:
        linear-gradient(
            135deg,
            #073b37,
            #00897b
        ) !important;

    border: none !important;
    box-shadow:
        0 16px 40px rgba(0, 105, 92, 0.22);

    position: relative;
    overflow: hidden;
}

.score-card::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -100px;
    bottom: -150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}


/* =========================================================
   BLOG CARDS
   ========================================================= */

.blog-card {
    background: #ffffff !important;
    border: 1px solid #e6e6e1 !important;
    border-radius: 18px !important;

    box-shadow:
        0 7px 24px rgba(0, 0, 0, 0.05);

    transition: all 0.25s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 14px 32px rgba(0, 0, 0, 0.09);
}


/* =========================================================
   CREATOR OPPORTUNITIES
   ========================================================= */

.earning-section {
    background:
        linear-gradient(
            135deg,
            #ffffff,
            #fffaf0
        ) !important;

    border-radius: 22px;
}

.earning-grid > div {
    background: #ffffff !important;
    border: 1px solid #eee4c8 !important;
    border-radius: 15px !important;
    transition: all 0.25s ease;
}

.earning-grid > div:hover {
    transform: translateY(-3px);
    box-shadow: 0 9px 22px rgba(0, 0, 0, 0.07);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .creator-tool-card {
        padding: 22px !important;
    }

    .creator-tool-icon {
        width: 54px !important;
        height: 54px !important;
        font-size: 25px !important;
    }

    .main-search-box {
        padding: 7px !important;
    }

    .trending-grid {
        gap: 10px !important;
    }

    .trending-grid button {
        padding: 12px 14px !important;
    }

}
/* =========================================================
   APS STARX - PREMIUM SCANNING ANIMATION
   ========================================================= */

.scan-loading {
    position: relative;
    margin-top: 20px;
    padding: 28px 24px;
    text-align: center;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f4fbfa
        );

    border: 1px solid #d9ebe8;
    border-radius: 20px;

    box-shadow:
        0 12px 32px rgba(0, 137, 123, 0.08);

    overflow: hidden;
}


/* Scanning circle */

.scan-loading::before {
    content: "";
    display: block;

    width: 58px;
    height: 58px;

    margin: 0 auto 18px;

    border-radius: 50%;

    border: 5px solid #d9efec;
    border-top-color: #00897b;
    border-right-color: #e53935;

    animation:
        creatorLensSpin 0.9s linear infinite;

    box-shadow:
        0 0 0 6px rgba(0, 137, 123, 0.05);
}


/* Moving scanning line */

.scan-loading::after {
    content: "";

    position: absolute;

    left: 10%;
    right: 10%;
    top: 0;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #00a896,
            #e53935,
            transparent
        );

    animation:
        creatorLensScanLine 1.6s ease-in-out infinite;
}


/* Loading heading */

.scan-loading h3 {
    margin: 0 0 10px;

    color: #173f3b;

    font-size: 18px;
    font-weight: 800;
}


/* Loading text */

.scan-loading p {
    margin: 6px 0;

    color: #666;

    font-size: 14px;
    line-height: 1.6;
}


/* Small animated dots */

.scan-loading p:last-child::after {
    content: "...";

    display: inline-block;

    width: 18px;

    animation:
        creatorLensDots 1.2s steps(4, end) infinite;
}


/* Circle rotation */

@keyframes creatorLensSpin {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


/* Scanning line */

@keyframes creatorLensScanLine {

    0% {
        transform: translateX(-80%);
        opacity: 0;
    }

    25% {
        opacity: 1;
    }

    75% {
        opacity: 1;
    }

    100% {
        transform: translateX(80%);
        opacity: 0;
    }

}


/* Loading dots */

@keyframes creatorLensDots {

    0% {
        clip-path: inset(0 75% 0 0);
    }

    25% {
        clip-path: inset(0 50% 0 0);
    }

    50% {
        clip-path: inset(0 25% 0 0);
    }

    75%,
    100% {
        clip-path: inset(0 0 0 0);
    }

}


/* Mobile */

@media (max-width: 700px) {

    .scan-loading {
        padding: 24px 18px;
    }

    .scan-loading h3 {
        font-size: 16px;
    }

    .scan-loading p {
        font-size: 13px;
    }

}
/* Account navigation */
.header .account-link { color: inherit; font-size: 14px; font-weight: 700; text-decoration: underline; text-underline-offset: 4px; white-space: nowrap; }
.header { flex-wrap: wrap; gap: 16px; }

/* Public channel overview replaces the unavailable score panel. */
.channel-overview h2{font-size:clamp(24px,4vw,40px);line-height:1.2;color:#fff;margin:22px 0 12px;overflow-wrap:anywhere}
.channel-overview [hidden]{display:none!important}
.channel-overview>*{position:relative;z-index:1}
.overview-stats{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px;margin:30px 0}
.overview-stats div{padding:20px 12px;border:1px solid #ffffff30;border-radius:16px;background:#ffffff0c;min-width:0}
.overview-stats dt{color:#e0f3ee;font-size:14px}.overview-stats dd{margin:10px 0 0;color:#f9df62;font-size:clamp(20px,3vw,32px);font-weight:800;overflow-wrap:anywhere}
.channel-overview .score-note{color:#d0e9e5}.overview-link{display:inline-block;color:#fff;text-decoration:underline;text-underline-offset:5px;padding:10px}.overview-link:focus-visible{outline:2px solid #f9df62;outline-offset:4px}
@media(max-width:600px){.overview-stats{grid-template-columns:1fr;gap:10px}.overview-stats div{padding:14px}.overview-stats dd{margin-top:5px}}
