/* =========================================================
   VIRALMINT AI — ARTICLE PAGE CSS
   File: css/article.css
   Footer CSS is NOT included
========================================================= */

:root {
    --article-bg: #050507;
    --article-panel: rgba(255,255,255,0.045);
    --article-panel-soft: rgba(255,255,255,0.022);
    --article-border: rgba(255,255,255,0.085);
    --article-border-strong: rgba(255,255,255,0.14);

    --article-text: #ffffff;
    --article-text-soft: rgba(255,255,255,0.76);
    --article-muted: rgba(255,255,255,0.62);
    --article-muted-light: rgba(255,255,255,0.46);

    --article-pink: #ff0f8f;
    --article-purple: #8b5cf6;
    --article-gradient: linear-gradient(135deg, #ff0f8f, #8b5cf6);
}


/* =========================================================
   BASE
========================================================= */

html {
    scroll-behavior: smooth;
}

body {
    background: var(--article-bg);
    color: var(--article-text);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* =========================================================
   SAFE ARTICLE BACKGROUND FIX
   This keeps article background behind everything,
   without covering the footer.
========================================================= */

body {
    background:
        radial-gradient(circle at 84% 8%, rgba(255,15,143,0.12), transparent 30%),
        radial-gradient(circle at 6% 76%, rgba(139,92,246,0.10), transparent 34%),
        #050507;
    color: var(--article-text);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

main {
    position: relative;
    z-index: 1;
}

.footer {
    position: relative;
    z-index: 10;
    background: #ffffff !important;
}

a {
    color: inherit;
}

.article-content h2,
.article-content h3 {
    scroll-margin-top: 120px;
}


/* =========================================================
   ARTICLE HERO
========================================================= */

.article-hero-section {
    width: 92%;
    max-width: 1080px;

    margin: 0 auto;

    padding: 104px 0 48px;

    text-align: center;
}

.article-hero-content {
    max-width: 960px;
    margin: 0 auto;
}

.article-breadcrumb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    margin-bottom: 24px;

    color: var(--article-muted-light);

    font-size: 0.92rem;
    font-weight: 700;
}

.article-breadcrumb a {
    color: rgba(255,255,255,0.74);
    text-decoration: none;
    transition: 0.22s ease;
}

.article-breadcrumb a:hover {
    color: #ffffff;
}

.article-meta-top {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 22px;
}

.article-meta-top span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 8px 13px;

    border-radius: 999px;

    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.08);

    color: rgba(255,255,255,0.66);

    font-size: 0.78rem;
    font-weight: 850;
}

.article-hero-content h1 {
    max-width: 980px;

    margin: 0 auto 24px;

    color: #ffffff;

    font-size: clamp(3rem, 6vw, 5.8rem);
    line-height: 0.98;

    font-weight: 900;
    letter-spacing: -4px;
}

.article-hero-content > p {
    max-width: 780px;

    margin: 0 auto 34px;

    color: rgba(255,255,255,0.70);

    font-size: 1.14rem;
    line-height: 1.8;
}

.article-author {
    width: fit-content;
    max-width: 100%;

    margin: 0 auto;

    display: inline-flex;
    align-items: center;
    gap: 14px;

    padding: 12px 18px;

    border-radius: 999px;

    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.08);
}

.article-author-avatar {
    width: 42px;
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--article-gradient);

    color: #ffffff;

    font-size: 0.9rem;
    font-weight: 900;

    flex-shrink: 0;
}

.article-author div:last-child {
    text-align: left;
}

.article-author strong {
    display: block;

    color: #ffffff;

    font-size: 0.95rem;
    font-weight: 850;

    margin-bottom: 2px;
}

.article-author span {
    display: block;

    color: rgba(255,255,255,0.52);

    font-size: 0.82rem;
    line-height: 1.35;
}


/* =========================================================
   ARTICLE COVER IMAGE
========================================================= */

.article-cover-section {
    width: 92%;
    max-width: 1180px;

    margin: 0 auto;

    padding: 18px 0 68px;
}

.article-cover-image {
    width: 100%;

    aspect-ratio: 16 / 9;

    border-radius: 34px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            rgba(255,15,143,0.18),
            rgba(139,92,246,0.18)
        );

    border: 1px solid rgba(255,255,255,0.09);

    box-shadow:
        0 34px 100px rgba(0,0,0,0.42);
}

.article-cover-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* =========================================================
   ARTICLE BODY LAYOUT
========================================================= */

.article-body-section {
    width: 92%;
    max-width: 1180px;

    margin: 0 auto;

    padding: 0 0 112px;
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 42px;

    align-items: start;
}


/* =========================================================
   ARTICLE CONTENT
========================================================= */

.article-content {
    padding: 44px;

    border-radius: 34px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.052),
            rgba(255,255,255,0.018)
        );

    border: 1px solid rgba(255,255,255,0.085);

    box-shadow:
        0 30px 90px rgba(0,0,0,0.32);
}

.article-content p {
    color: var(--article-text-soft);

    font-size: 1.05rem;
    line-height: 1.9;

    margin: 0 0 24px;
}

.article-content .article-lead {
    color: rgba(255,255,255,0.88);

    font-size: 1.22rem;
    line-height: 1.85;

    margin-bottom: 28px;
}

.article-content h2 {
    color: #ffffff;

    font-size: clamp(1.85rem, 3vw, 2.55rem);
    line-height: 1.14;

    font-weight: 900;
    letter-spacing: -1.4px;

    margin: 58px 0 20px;
}

.article-content h3 {
    color: #ffffff;

    font-size: 1.35rem;
    line-height: 1.25;

    font-weight: 850;
    letter-spacing: -0.5px;

    margin: 34px 0 14px;
}

.article-content ul,
.article-content ol {
    margin: 18px 0 30px;
    padding-left: 0;

    list-style: none;
}

.article-content li {
    position: relative;

    color: var(--article-text-soft);

    font-size: 1.03rem;
    line-height: 1.75;

    margin-bottom: 14px;

    padding-left: 32px;
}

.article-content ul li::before {
    content: "";

    position: absolute;
    left: 0;
    top: 12px;

    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: var(--article-gradient);

    box-shadow:
        0 0 18px rgba(255,15,143,0.38);
}

.article-content ol {
    counter-reset: article-counter;
}

.article-content ol li {
    counter-increment: article-counter;
}

.article-content ol li::before {
    content: counter(article-counter);

    position: absolute;
    left: 0;
    top: 2px;

    width: 22px;
    height: 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,15,143,0.12);
    border: 1px solid rgba(255,15,143,0.26);

    color: #ff4dc4;

    font-size: 0.75rem;
    font-weight: 900;
}


/* =========================================================
   ARTICLE SPECIAL BLOCKS
========================================================= */

.article-callout,
.article-highlight-box,
.article-product-card,
.article-end-cta {
    position: relative;
    overflow: hidden;

    border-radius: 26px;

    border: 1px solid rgba(255,255,255,0.10);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.065),
            rgba(255,255,255,0.024)
        );

    box-shadow:
        0 24px 70px rgba(0,0,0,0.28);
}

.article-callout {
    padding: 26px;

    margin: 34px 0;

    border-color: rgba(255,15,143,0.22);

    background:
        linear-gradient(
            135deg,
            rgba(255,15,143,0.10),
            rgba(139,92,246,0.075)
        );
}

.article-callout strong {
    display: block;

    color: #ffffff;

    font-size: 1rem;
    font-weight: 900;

    margin-bottom: 8px;
}

.article-callout p {
    margin: 0;

    color: rgba(255,255,255,0.78);
}

.article-highlight-box {
    padding: 28px;

    margin: 36px 0;

    background:
        linear-gradient(
            145deg,
            rgba(139,92,246,0.11),
            rgba(255,15,143,0.065)
        );
}

.article-highlight-box h3 {
    margin: 0 0 12px;

    font-size: 1.25rem;
}

.article-highlight-box p {
    margin: 0;
}

.article-product-card {
    padding: 30px;

    margin: 40px 0;

    border-color: rgba(255,15,143,0.20);

    background:
        radial-gradient(circle at 100% 0%, rgba(255,15,143,0.16), transparent 34%),
        linear-gradient(
            145deg,
            rgba(255,255,255,0.065),
            rgba(255,255,255,0.018)
        );
}

.article-product-card span {
    display: inline-flex;

    padding: 7px 12px;

    border-radius: 999px;

    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.08);

    color: rgba(255,255,255,0.62);

    font-size: 0.74rem;
    font-weight: 900;

    text-transform: uppercase;
    letter-spacing: 0.8px;

    margin-bottom: 16px;
}

.article-product-card h3 {
    margin: 0 0 12px;

    font-size: 1.7rem;
    letter-spacing: -0.8px;
}

.article-product-card p {
    max-width: 620px;

    margin-bottom: 22px;
}

.article-product-card a,
.article-end-cta a {
    height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 22px;

    border-radius: 16px;

    background: var(--article-gradient);

    color: #ffffff;

    text-decoration: none;

    font-size: 0.95rem;
    font-weight: 900;

    box-shadow:
        0 14px 34px rgba(255,15,143,0.24);

    transition:
        transform 0.24s ease,
        box-shadow 0.24s ease;
}

.article-product-card a:hover,
.article-end-cta a:hover {
    transform: translateY(-2px);

    box-shadow:
        0 18px 44px rgba(255,15,143,0.32);
}

.article-end-cta {
    padding: 34px;

    margin-top: 48px;

    text-align: center;

    background:
        radial-gradient(circle at 50% 0%, rgba(255,15,143,0.15), transparent 36%),
        linear-gradient(
            145deg,
            rgba(255,255,255,0.065),
            rgba(255,255,255,0.018)
        );
}

.article-end-cta h3 {
    margin: 0 0 12px;

    font-size: 1.8rem;
    letter-spacing: -0.8px;
}

.article-end-cta p {
    max-width: 620px;

    margin: 0 auto 24px;
}


/* =========================================================
   ARTICLE SIDEBAR
========================================================= */

.article-sidebar {
    position: sticky;
    top: 26px;

    display: flex;
    flex-direction: column;
    gap: 18px;
}

.article-toc,
.article-side-cta {
    border-radius: 26px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.052),
            rgba(255,255,255,0.018)
        );

    border: 1px solid rgba(255,255,255,0.085);

    box-shadow:
        0 24px 70px rgba(0,0,0,0.30);
}

.article-toc {
    padding: 22px;
}

.article-toc span {
    display: block;

    color: rgba(255,255,255,0.50);

    font-size: 0.76rem;
    font-weight: 900;

    text-transform: uppercase;
    letter-spacing: 1px;

    margin-bottom: 14px;
}

.article-toc a {
    display: block;

    padding: 12px 13px;

    border-radius: 14px;

    color: rgba(255,255,255,0.66);

    text-decoration: none;

    font-size: 0.92rem;
    font-weight: 750;
    line-height: 1.35;

    transition:
        background 0.22s ease,
        color 0.22s ease,
        transform 0.22s ease;
}

.article-toc a:hover {
    color: #ffffff;

    background: rgba(255,255,255,0.055);

    transform: translateX(3px);
}

.article-side-cta {
    padding: 24px;

    overflow: hidden;

    position: relative;
}

.article-side-cta::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at 100% 0%, rgba(255,15,143,0.16), transparent 36%),
        radial-gradient(circle at 0% 100%, rgba(139,92,246,0.12), transparent 36%);

    pointer-events: none;
}

.article-side-cta > * {
    position: relative;
    z-index: 2;
}

.article-side-cta span {
    display: inline-flex;

    margin-bottom: 14px;

    padding: 7px 11px;

    border-radius: 999px;

    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.08);

    color: rgba(255,255,255,0.62);

    font-size: 0.72rem;
    font-weight: 900;

    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.article-side-cta h3 {
    color: #ffffff;

    font-size: 1.35rem;
    line-height: 1.2;

    font-weight: 900;
    letter-spacing: -0.6px;

    margin: 0 0 12px;
}

.article-side-cta p {
    color: rgba(255,255,255,0.64);

    font-size: 0.94rem;
    line-height: 1.65;

    margin-bottom: 18px;
}

.article-side-cta a {
    width: 100%;
    height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background: var(--article-gradient);

    color: #ffffff;

    text-decoration: none;

    font-size: 0.94rem;
    font-weight: 900;

    box-shadow:
        0 14px 34px rgba(255,15,143,0.22);
}


/* =========================================================
   RELATED ARTICLES
========================================================= */

.related-articles-section {
    width: 92%;
    max-width: 1180px;

    margin: 0 auto;

    padding: 0 0 120px;
}

.related-heading {
    text-align: center;

    max-width: 720px;

    margin: 0 auto 42px;
}

.related-heading .section-tag {
    margin-bottom: 18px;
}

.related-heading h2 {
    color: #ffffff;

    font-size: clamp(2.1rem, 4vw, 3.6rem);
    line-height: 1.08;

    font-weight: 900;
    letter-spacing: -2px;

    margin: 0;
}

.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.related-article-card {
    display: flex;
    flex-direction: column;

    overflow: hidden;

    border-radius: 26px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.052),
            rgba(255,255,255,0.018)
        );

    border: 1px solid rgba(255,255,255,0.085);

    text-decoration: none;

    box-shadow:
        0 24px 70px rgba(0,0,0,0.28);

    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}

.related-article-card:hover {
    transform: translateY(-6px);

    border-color: rgba(255,15,143,0.22);

    box-shadow:
        0 34px 92px rgba(0,0,0,0.42);
}

.related-article-card img {
    width: 100%;
    aspect-ratio: 16 / 10;

    object-fit: cover;

    display: block;
}

.related-article-card div {
    padding: 22px;
}

.related-article-card span {
    display: inline-flex;

    padding: 7px 12px;

    border-radius: 999px;

    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.08);

    color: rgba(255,255,255,0.58);

    font-size: 0.74rem;
    font-weight: 900;

    margin-bottom: 14px;
}

.related-article-card h3 {
    color: #ffffff;

    font-size: 1.2rem;
    line-height: 1.22;

    font-weight: 900;
    letter-spacing: -0.5px;

    margin: 0;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1080px) {

    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: relative;
        top: auto;

        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .related-articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 760px) {

    .article-hero-section {
        width: 90%;

        padding: 82px 0 38px;
    }

    .article-hero-content h1 {
        font-size: clamp(2.4rem, 12vw, 3.7rem);
        letter-spacing: -2.2px;
    }

    .article-hero-content > p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .article-author {
        border-radius: 22px;
        align-items: flex-start;
    }

    .article-cover-section,
    .article-body-section,
    .related-articles-section {
        width: 90%;
    }

    .article-cover-image {
        border-radius: 24px;
    }

    .article-content {
        padding: 26px;
        border-radius: 26px;
    }

    .article-content .article-lead {
        font-size: 1.08rem;
    }

    .article-content p,
    .article-content li {
        font-size: 0.98rem;
    }

    .article-content h2 {
        margin-top: 44px;
        letter-spacing: -1px;
    }

    .article-sidebar {
        grid-template-columns: 1fr;
    }

    .related-articles-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 520px) {

    .article-meta-top {
        gap: 8px;
    }

    .article-meta-top span {
        font-size: 0.72rem;
        padding: 7px 10px;
    }

    .article-content {
        padding: 22px;
    }

    .article-callout,
    .article-highlight-box,
    .article-product-card,
    .article-end-cta {
        padding: 22px;
        border-radius: 22px;
    }

    .article-product-card a,
    .article-end-cta a {
        width: 100%;
    }

    .related-heading h2 {
        letter-spacing: -1.2px;
    }

}

/* ===========================
   PREMIUM WHITE FOOTER
=========================== */


.footer {

    background: #ffffff;

    color: #111111;

    padding: 90px 7% 40px;

    margin-top: 120px;

}


.footer-top {

    display: grid;

    grid-template-columns: 1.3fr 2fr;

    gap: 60px;

    margin-bottom: 60px;

}


.footer-logo {

    font-size: 2rem;

    font-weight: 800;

    color: #111;

    text-decoration: none;

}


.footer-description {

    color: #555;

    margin: 25px 0;

    max-width: 420px;

}


.footer-social {

    display: flex;

    gap: 15px;

}


.footer-social a {

    color: #444;

    text-decoration: none;

    font-weight: 600;

}


.footer-grid {

    display: grid;

    grid-template-columns: repeat(5,1fr);

    gap: 35px;

}


.footer-column h4 {

    margin-bottom: 22px;

    color: #111;

}


.footer-column a {

    display: block;

    margin-bottom: 15px;

    text-decoration: none;

    color: #666;

    transition: .3s;

}


.footer-column a:hover {

    color: #ff0080;

}


.footer-trust {

    border-top: 1px solid #ddd;

    border-bottom: 1px solid #ddd;

    padding: 22px 0;

    display: flex;

    justify-content: center;

    gap: 40px;

    color: #444;

}


.footer-bottom {

    padding-top: 30px;

    display: flex;

    justify-content: space-between;

    color: #666;

}


/* ===========================
   RESPONSIVE DESIGN
=========================== */


@media(max-width: 992px) {


    .comparison-table,
    .security-cards,
    .user-grid,
    .pricing-grid,
    .footer-top,
    .footer-grid {

        grid-template-columns: 1fr 1fr;

    }


    .footer-top {

        display: block;

    }


    .footer-brand {

        margin-bottom: 40px;

    }


    .footer-bottom,
    .footer-trust {

        flex-direction: column;

        text-align: center;

        gap: 15px;

    }

}


@media(max-width: 650px) {


    .comparison-table,
    .security-cards,
    .user-grid,
    .pricing-grid,
    .footer-grid {

        grid-template-columns: 1fr;

    }


    .price-card.popular {

        transform: none;

    }


    .price-card.popular:hover {

        transform: translateY(-10px);

    }


    .footer {

        text-align: center;

    }


    .footer-social {

        justify-content: center;

    }


    .footer-bottom {

        flex-direction: column;

        gap: 12px;

    }

}

.hidden {
    display: none !important;
}

.nav-dashboard-btn,
.mobile-dashboard-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 14px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 800;
    background:
        linear-gradient(135deg, rgba(255, 20, 147, 0.95), rgba(139, 92, 246, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow:
        0 14px 34px rgba(139, 92, 246, 0.22),
        0 8px 24px rgba(255, 20, 147, 0.16);
    transition: 0.25s ease;
}

.nav-dashboard-btn:hover,
.mobile-dashboard-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 18px 44px rgba(139, 92, 246, 0.3),
        0 10px 30px rgba(255, 20, 147, 0.22);
}

.mobile-dashboard-btn {
    width: 100%;
    margin-top: 12px;
}

/* =========================================
   GLOBAL NAVBAR ACTION BUTTONS POLISH
========================================= */

.hidden {
    display: none !important;
}

.vm-global-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
}

/* Remove default browser link style */
.vm-global-actions a,
.nav-login-btn,
.nav-start-btn,
.nav-dashboard-btn {
    text-decoration: none !important;
    outline: none;
}

/* Login button */
.nav-login-btn {
    min-width: 96px;
    height: 54px;
    padding: 0 26px;
    border-radius: 18px;

    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    color: rgba(255, 255, 255, 0.92) !important;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: -0.01em;

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.07),
            rgba(255, 255, 255, 0.025)
        );

    border: 1px solid rgba(255, 255, 255, 0.12);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 18px 45px rgba(0, 0, 0, 0.24);

    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease;
}

.nav-login-btn:hover {
    transform: translateY(-2px);
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.22);
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.1),
            rgba(255, 255, 255, 0.04)
        );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 22px 55px rgba(0, 0, 0, 0.3);
}

/* Start Free + Return Dashboard button */
.nav-start-btn,
.nav-dashboard-btn {
    min-width: 126px;
    height: 54px;
    padding: 0 28px;
    border-radius: 18px;

    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    color: #ffffff !important;
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: -0.01em;

    background:
        linear-gradient(
            135deg,
            #ff1bbf 0%,
            #b446ff 48%,
            #7c5cff 100%
        );

    border: 1px solid rgba(255, 255, 255, 0.16);

    box-shadow:
        0 18px 42px rgba(255, 27, 191, 0.22),
        0 10px 28px rgba(124, 92, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        filter 0.22s ease;
}

.nav-start-btn:hover,
.nav-dashboard-btn:hover {
    transform: translateY(-2px);
    color: #ffffff !important;
    filter: brightness(1.08);

    box-shadow:
        0 24px 56px rgba(255, 27, 191, 0.3),
        0 14px 36px rgba(124, 92, 255, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

/* Return Dashboard needs more width */
.nav-dashboard-btn {
    min-width: 190px;
}

/* =========================================
   AUTH VISIBILITY FINAL OVERRIDE
   Must stay at the very bottom
========================================= */

.hidden,
[data-auth].hidden,
.nav-login-btn.hidden,
.nav-start-btn.hidden,
.nav-dashboard-btn.hidden,
.mobile-login-btn.hidden,
.mobile-start-btn.hidden,
.mobile-dashboard-btn.hidden {
    display: none !important;
}