html {
    scroll-behavior: smooth;
}

body.aynoot-theme {
    min-height: 100vh;
    margin: 0;
    color: var(--ay-text);
    background:
        linear-gradient(180deg, rgba(7, 11, 8, .94), rgba(7, 11, 8, .98)),
        var(--ay-background-image) center top / cover fixed,
        var(--ay-bg);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0;
    color-scheme: dark;
}

body.aynoot-theme.ay-light {
    --ay-bg: #f3f7ef;
    --ay-surface: #ffffff;
    --ay-card: #ffffff;
    --ay-text: #172016;
    --ay-muted: #596654;
    color: var(--ay-text);
    color-scheme: light;
    background:
        linear-gradient(180deg, rgba(243, 247, 239, .92), rgba(243, 247, 239, .98)),
        var(--ay-background-image) center top / cover fixed,
        var(--ay-bg);
}

body.aynoot-theme:not(.ay-animations) *,
body.aynoot-theme:not(.ay-animations) *::before,
body.aynoot-theme:not(.ay-animations) *::after {
    transition: none !important;
    animation: none !important;
}

.ay-page-shell {
    min-height: 100vh;
    overflow-x: hidden;
}

.ay-navbar-wrap {
    position: sticky;
    top: 0;
    z-index: 1030;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: rgba(7, 11, 8, .92);
    backdrop-filter: blur(16px);
}

.ay-navbar {
    min-height: 76px;
    padding: .75rem 0;
}

.ay-navbar > .container {
    column-gap: 1rem;
}

.ay-brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    gap: .75rem;
    color: var(--ay-text);
    font-weight: 800;
    white-space: nowrap;
}

.ay-brand:hover {
    color: var(--ay-text);
}

.ay-brand-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.ay-navbar .navbar-nav {
    gap: .55rem;
}

.ay-navbar .nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    color: var(--ay-muted);
    border-radius: 0;
    padding: .7rem .15rem;
    margin: 0 .45rem;
    font-weight: 800;
    background: transparent;
    transition: color .2s ease;
}

.ay-navbar .nav-link::before {
    content: "";
    position: absolute;
    left: .15rem;
    right: .15rem;
    bottom: .32rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--ay-primary), var(--ay-secondary));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .22s ease;
}

.ay-navbar .nav-link:hover,
.ay-navbar .nav-link.active {
    color: var(--ay-text);
    background: transparent;
}

.ay-navbar .nav-link:hover::after,
.ay-navbar .nav-link.active::after {
    transform: none;
}

.ay-navbar .nav-link:hover::before,
.ay-navbar .nav-link.active::before {
    transform: scaleX(1);
}

.ay-navbar .dropdown-toggle::after {
    content: "\F282";
    font-family: "bootstrap-icons";
    border: 0;
    width: auto;
    height: auto;
    margin-left: .45rem;
    transform: translateY(1px);
    opacity: .8;
}

.ay-dropdown {
    min-width: 240px;
    padding: .55rem;
    border: 0;
    border-radius: 8px;
    background: color-mix(in srgb, var(--ay-surface), #000 18%);
    box-shadow: 0 22px 50px rgba(0, 0, 0, .36);
}

.ay-dropdown .dropdown-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: .65rem;
    color: var(--ay-muted);
    border-radius: 8px;
    padding: .75rem .85rem;
    font-weight: 750;
    overflow: hidden;
    transition: color .18s ease, background .18s ease, transform .18s ease;
}

.ay-dropdown .dropdown-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: .6rem;
    bottom: .6rem;
    width: 3px;
    border-radius: 999px;
    background: var(--ay-primary);
    transform: scaleY(0);
    transition: transform .18s ease;
}

.ay-dropdown .dropdown-item i {
    width: 1.1rem;
    color: var(--ay-primary);
    text-align: center;
}

.ay-dropdown .dropdown-item:hover,
.ay-dropdown .dropdown-item.active {
    color: var(--ay-text);
    background: rgba(58, 170, 53, .12);
    transform: translateX(2px);
}

.ay-dropdown .dropdown-item:hover::before,
.ay-dropdown .dropdown-item.active::before {
    transform: scaleY(1);
}

.ay-dropdown .dropdown-divider {
    border-color: rgba(255, 255, 255, .08);
    margin: .45rem 0;
}

.ay-auth-actions {
    display: flex;
    align-items: center;
    gap: .7rem;
    flex-wrap: wrap;
    margin-right: .9rem;
}

.ay-toggler {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    padding: 0;
    color: var(--ay-text);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
}

.ay-user-btn {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    color: var(--ay-text);
    border: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, .07);
    padding: .45rem .7rem .45rem .45rem;
    font-weight: 800;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
    transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.ay-user-btn:hover,
.ay-user-btn[aria-expanded="true"] {
    color: var(--ay-text);
    background: rgba(58, 170, 53, .12);
    box-shadow: inset 0 0 0 1px rgba(58, 170, 53, .3);
}

.ay-user-chevron {
    font-size: .82rem;
    opacity: .86;
    transition: transform .2s ease;
}

.ay-user-btn[aria-expanded="true"] .ay-user-chevron {
    transform: rotate(180deg);
}

.ay-user-btn img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.ay-lang-switch {
    display: inline-flex;
    align-items: center;
    padding: .2rem;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
}

.ay-navbar-controls {
    display: flex;
    align-items: center;
    gap: .7rem;
}

.ay-theme-toggle {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    padding: 0;
    color: var(--ay-text);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.ay-theme-toggle:hover {
    color: #061006;
    border-color: rgba(58, 170, 53, .5);
    background: var(--ay-primary);
}

.ay-theme-light-icon,
body.ay-light .ay-theme-dark-icon {
    display: none;
}

body.ay-light .ay-theme-light-icon {
    display: inline-block;
}

.ay-lang-switch a {
    min-width: 34px;
    padding: .35rem .5rem;
    color: var(--ay-muted);
    text-align: center;
    font-weight: 750;
    border-radius: 6px;
    text-decoration: none;
}

.ay-lang-switch a.active,
.ay-lang-switch a:hover {
    color: #061006;
    background: var(--ay-primary);
}

.ay-btn {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    border-radius: 8px;
    border: 1px solid transparent;
    padding: .65rem 1rem;
    font-weight: 800;
    line-height: 1.1;
    transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}

.ay-btn:hover {
    transform: translateY(-1px);
}

.ay-btn-primary {
    color: #ffffff;
    background: var(--ay-button);
    border-color: color-mix(in srgb, var(--ay-button), #fff 18%);
    text-shadow: 0 1px 0 rgba(0, 0, 0, .22);
}

.ay-btn-primary:hover {
    color: #ffffff;
    background: color-mix(in srgb, var(--ay-button), #fff 10%);
}

.ay-btn-ghost {
    color: var(--ay-text);
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .14);
}

.ay-btn-ghost:hover {
    color: var(--ay-text);
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .24);
}

.ay-btn-danger {
    color: #fff;
    background: #c43c3c;
    border-color: #d75a5a;
}

.ay-btn-danger:hover {
    color: #fff;
    background: #d94d4d;
}

.ay-home {
    background: linear-gradient(180deg, rgba(7, 11, 8, .24), rgba(7, 11, 8, .86) 40%, rgba(7, 11, 8, .98));
}

body.ay-light .ay-navbar-wrap {
    background: rgba(255, 255, 255, .88);
    border-bottom-color: rgba(23, 32, 22, .1);
}

body.ay-light .ay-navbar .nav-link,
body.ay-light .ay-footer-links a,
body.ay-light .ay-footer-links span {
    color: var(--ay-muted);
}

body.ay-light .ay-dropdown,
body.ay-light .ay-lang-switch,
body.ay-light .ay-theme-toggle,
body.ay-light .ay-toggler,
body.ay-light .ay-user-btn,
body.ay-light .ay-btn-ghost,
body.ay-light .ay-quick-links a,
body.ay-light .ay-socials a {
    border-color: rgba(23, 32, 22, .13);
    background: rgba(255, 255, 255, .72);
}

body.ay-light .ay-dropdown {
    background: #ffffff;
    box-shadow: 0 22px 50px rgba(23, 32, 22, .14);
}

body.ay-light .ay-dropdown .dropdown-divider {
    border-color: rgba(23, 32, 22, .1);
}

body.ay-light .ay-user-btn {
    box-shadow: inset 0 0 0 1px rgba(23, 32, 22, .12);
}

body.ay-light .ay-user-btn:hover,
body.ay-light .ay-user-btn[aria-expanded="true"] {
    box-shadow: inset 0 0 0 1px rgba(58, 170, 53, .34);
}

body.ay-light .ay-dropdown .dropdown-item {
    color: var(--ay-muted);
}

body.ay-light .ay-dropdown .dropdown-item:hover,
body.ay-light .ay-dropdown .dropdown-item.active {
    color: var(--ay-text);
    background: rgba(58, 170, 53, .12);
}

body.ay-light .ay-home {
    background: linear-gradient(180deg, rgba(243, 247, 239, .55), rgba(243, 247, 239, .96) 40%, #f3f7ef);
}

.ay-hero {
    min-height: 660px;
    display: flex;
    align-items: center;
    padding: 4rem 0 3rem;
    position: relative;
    background:
        linear-gradient(90deg, rgba(7, 11, 8, .97) 0%, rgba(7, 11, 8, .82) 48%, rgba(7, 11, 8, .48) 100%),
        var(--ay-hero-image) right center / contain no-repeat;
}

body.ay-light .ay-hero {
    background:
        linear-gradient(90deg, rgba(243, 247, 239, .96) 0%, rgba(243, 247, 239, .85) 48%, rgba(243, 247, 239, .58) 100%),
        var(--ay-hero-image) right center / contain no-repeat;
}

.ay-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--ay-primary), var(--ay-secondary), transparent);
}

.ay-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(280px, .75fr);
    align-items: center;
    gap: 2.25rem;
}

.ay-hero-copy {
    max-width: 720px;
}

.ay-hero-logo {
    width: 92px;
    height: 92px;
    object-fit: contain;
    margin-bottom: 1.25rem;
}

.ay-kicker,
.ay-section-label {
    margin: 0 0 .65rem;
    color: var(--ay-primary);
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0;
}

.ay-hero h2 {
    margin: 0;
    max-width: 760px;
    color: var(--ay-text);
    font-size: 4.25rem;
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: 0;
}

.ay-hero-text {
    max-width: 620px;
    margin: 1.1rem 0 0;
    color: var(--ay-muted);
    font-size: 1.2rem;
    line-height: 1.65;
}

.ay-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.5rem;
}

.ay-quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-top: 1rem;
}

.ay-quick-links a {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    min-height: 36px;
    padding: .45rem .75rem;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    color: var(--ay-muted);
    background: rgba(255, 255, 255, .05);
    text-decoration: none;
}

.ay-quick-links a:hover {
    color: var(--ay-text);
    border-color: rgba(58, 170, 53, .35);
}

.ay-hero-art {
    display: flex;
    justify-content: center;
}

.ay-hero-art img {
    max-height: 460px;
    object-fit: contain;
    filter: drop-shadow(0 28px 50px rgba(0, 0, 0, .36));
}

.ay-section {
    padding: 4.5rem 0;
}

.ay-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 2rem;
    align-items: center;
}

.ay-split h2,
.ay-section-heading h2 {
    margin: 0;
    color: var(--ay-text);
    font-size: 2.25rem;
    line-height: 1.15;
    font-weight: 900;
}

.ay-split p {
    color: var(--ay-muted);
    font-size: 1.04rem;
    line-height: 1.75;
}

.ay-project-panel,
.ay-message,
.ay-empty-state,
.ay-feature,
.ay-server-card,
.ay-news-card,
.ay-content {
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    background: linear-gradient(180deg, color-mix(in srgb, var(--ay-card), #fff 3%), var(--ay-card));
    box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
}

body.ay-light .ay-project-panel,
body.ay-light .ay-message,
body.ay-light .ay-empty-state,
body.ay-light .ay-feature,
body.ay-light .ay-server-card,
body.ay-light .ay-news-card,
body.ay-light .ay-content {
    border-color: rgba(23, 32, 22, .12);
    background: linear-gradient(180deg, #ffffff, #f8fbf5);
    box-shadow: 0 18px 40px rgba(23, 32, 22, .08);
}

.ay-project-panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: .25rem;
    padding: 1.35rem;
}

.ay-project-panel span {
    color: var(--ay-muted);
    font-weight: 700;
}

.ay-project-panel strong {
    margin-bottom: .65rem;
    color: var(--ay-text);
    font-size: 1.45rem;
}

.ay-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.ay-section-heading.compact {
    align-items: center;
}

.ay-section-heading img {
    width: 160px;
    height: 110px;
    object-fit: contain;
}

.ay-server-grid,
.ay-feature-grid,
.ay-news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.ay-server-card,
.ay-feature,
.ay-message,
.ay-empty-state,
.ay-content {
    padding: 1.25rem;
}

.ay-server-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.ay-server-card-top > div {
    min-width: 0;
}

.ay-server-card h3,
.ay-feature h3,
.ay-news-card h3 {
    margin: .25rem 0 .75rem;
    color: var(--ay-text);
    font-size: 1.25rem;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.ay-server-card p,
.ay-feature p,
.ay-empty-state p,
.ay-message,
.ay-news-card p {
    color: var(--ay-muted);
    line-height: 1.65;
}

.ay-server-version {
    flex: 0 0 auto;
    color: #120b06;
    background: var(--ay-secondary);
    border-radius: 8px;
    padding: .35rem .5rem;
    font-size: .82rem;
    font-weight: 850;
}

.ay-status {
    width: 10px;
    height: 10px;
    display: inline-block;
    margin-right: .35rem;
    border-radius: 50%;
    background: #c66d55;
    box-shadow: 0 0 0 5px rgba(198, 109, 85, .12);
}

.ay-status.online {
    background: var(--ay-primary);
    box-shadow: 0 0 0 5px rgba(58, 170, 53, .12);
}

.ay-progress {
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    margin: .75rem 0;
}

.ay-progress span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--ay-primary), var(--ay-secondary));
}

.ay-server-address {
    display: block;
    margin-top: .75rem;
    color: var(--ay-text);
    background: rgba(0, 0, 0, .28);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
    padding: .55rem .7rem;
    overflow-wrap: anywhere;
}

body.ay-light .ay-server-address {
    color: var(--ay-text);
    background: rgba(23, 32, 22, .05);
    border-color: rgba(23, 32, 22, .12);
}

.ay-feature i {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    color: #061006;
    background: var(--ay-primary);
    border-radius: 8px;
    font-size: 1.25rem;
}

.ay-block-style .ay-feature,
.ay-block-style .ay-server-card,
.ay-block-style .ay-project-panel {
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .08),
        inset 0 -4px 0 rgba(97, 60, 36, .24),
        0 18px 40px rgba(0, 0, 0, .24);
}

.ay-news-card {
    overflow: hidden;
}

.ay-news-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.ay-news-card > div {
    padding: 1.15rem;
}

.ay-news-card time {
    color: var(--ay-primary);
    font-weight: 750;
    font-size: .9rem;
}

.ay-news-card a {
    color: var(--ay-text);
    text-decoration: none;
}

.ay-news-card a:hover {
    color: var(--ay-primary);
}

.ay-community {
    padding-bottom: 5rem;
}

.ay-community-image {
    width: 100%;
    max-height: 330px;
    object-fit: contain;
}

.ay-footer {
    border-top: 1px solid rgba(255, 255, 255, .09);
    padding: 3rem 0 1.25rem;
    background: rgba(5, 8, 6, .96);
}

body.ay-light .ay-footer {
    background: rgba(255, 255, 255, .94);
    border-top-color: rgba(23, 32, 22, .1);
}

.ay-footer h2 {
    font-size: 1rem;
    color: var(--ay-text);
    margin: 0 0 .9rem;
}

.ay-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    color: var(--ay-text);
    font-size: 1.2rem;
    font-weight: 900;
    text-decoration: none;
}

.ay-footer-brand:hover {
    color: var(--ay-text);
}

.ay-footer-brand img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.ay-footer-note {
    max-width: 520px;
    margin: 1rem 0 0;
    color: var(--ay-muted);
    line-height: 1.65;
}

.ay-footer-links {
    display: grid;
    gap: .45rem;
}

.ay-footer-links a,
.ay-footer-links span {
    color: var(--ay-muted);
    text-decoration: none;
}

.ay-footer-links a:hover {
    color: var(--ay-primary);
}

.ay-socials {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.ay-socials a {
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    color: var(--ay-text);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    background: rgba(255, 255, 255, .05);
    text-decoration: none;
}

.ay-socials a:hover {
    color: #061006;
    background: var(--ay-primary);
}

.ay-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: var(--ay-muted);
    font-size: .95rem;
}

body.ay-light .ay-footer-bottom {
    border-top-color: rgba(23, 32, 22, .1);
}

.ay-copy-toast {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 1100;
    display: flex;
    align-items: center;
    gap: .5rem;
    max-width: min(360px, calc(100vw - 2rem));
    padding: .85rem 1rem;
    color: #061006;
    background: var(--ay-primary);
    border-radius: 8px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .32);
    transform: translateY(24px);
    opacity: 0;
    pointer-events: none;
    transition: transform .2s ease, opacity .2s ease;
}

.ay-copy-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.ay-inner-page {
    min-height: 70vh;
}

.ay-content .card,
.ay-content .list-group-item,
.ay-content .modal-content,
.ay-content .table {
    color: var(--ay-text);
    background-color: var(--ay-card);
    border-color: rgba(255, 255, 255, .1);
}

body.ay-light .ay-content .card,
body.ay-light .ay-content .list-group-item,
body.ay-light .ay-content .modal-content,
body.ay-light .ay-content .table {
    color: var(--ay-text);
    background-color: #ffffff;
    border-color: rgba(23, 32, 22, .12);
}

body.ay-light .ay-content .form-control,
body.ay-light .ay-content .form-select {
    color: var(--ay-text);
    background-color: #ffffff;
    border-color: rgba(23, 32, 22, .22);
}

.ay-content a {
    color: var(--ay-primary);
}

.ay-content .btn-primary {
    color: #061006;
    background-color: var(--ay-primary);
    border-color: var(--ay-primary);
}

.ay-content.ay-content-plain {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.ay-auth-page,
.ay-profile-page {
    max-width: 1320px;
    margin: 0 auto;
}

.ay-auth-shell {
    display: grid;
    grid-template-columns: minmax(300px, .82fr) minmax(360px, 1fr);
    align-items: stretch;
    gap: 1.25rem;
}

.ay-auth-shell.reverse {
    grid-template-columns: minmax(360px, 1fr) minmax(300px, .82fr);
}

.ay-auth-shell.reverse .ay-auth-side {
    order: 2;
}

.ay-auth-side,
.ay-auth-card,
.ay-profile-hero,
.ay-profile-card,
.ay-alert-panel {
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    background: linear-gradient(180deg, color-mix(in srgb, var(--ay-card), #fff 3%), var(--ay-card));
    box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
}

.ay-auth-side {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.ay-auth-side::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .22;
    background:
        linear-gradient(135deg, transparent 0 54%, rgba(58, 170, 53, .4) 54% 58%, transparent 58%),
        radial-gradient(circle at 74% 18%, rgba(58, 170, 53, .32), transparent 32%),
        radial-gradient(circle at 18% 82%, rgba(139, 95, 61, .28), transparent 30%);
}

.ay-auth-side > * {
    position: relative;
    z-index: 1;
}

.ay-auth-logo {
    position: absolute;
    top: 2rem;
    left: 2rem;
    width: 96px;
    height: 96px;
    object-fit: contain;
    filter: drop-shadow(0 18px 24px rgba(0, 0, 0, .28));
}

.ay-auth-side h2,
.ay-auth-card h2,
.ay-profile-summary h2,
.ay-profile-card h2,
.ay-alert-panel h2 {
    margin: 0;
    color: var(--ay-text);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: 0;
}

.ay-auth-side h2 {
    font-size: 3rem;
}

.ay-auth-side p {
    color: var(--ay-muted);
    line-height: 1.7;
    margin: 1rem 0 0;
}

.ay-auth-stats,
.ay-auth-benefits {
    display: grid;
    gap: .7rem;
    margin-top: 1.5rem;
}

.ay-auth-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ay-auth-stats div,
.ay-auth-benefits span {
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    background: rgba(255, 255, 255, .05);
    padding: .85rem;
}

.ay-auth-stats span,
.ay-auth-benefits span {
    color: var(--ay-muted);
}

.ay-auth-stats strong {
    display: block;
    color: var(--ay-text);
    font-size: 1.1rem;
}

.ay-auth-benefits span {
    display: flex;
    align-items: center;
    gap: .55rem;
}

.ay-auth-benefits i {
    color: var(--ay-primary);
}

.ay-auth-card {
    padding: 2rem;
}

.ay-auth-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.ay-auth-card h2 {
    font-size: 2.15rem;
}

.ay-auth-link {
    color: var(--ay-primary);
    font-weight: 800;
    text-decoration: none;
}

.ay-auth-link:hover {
    color: var(--ay-text);
}

.ay-form {
    display: grid;
    gap: 1rem;
}

.ay-field {
    display: grid;
    gap: .45rem;
}

.ay-field label {
    color: var(--ay-text);
    font-weight: 750;
}

.ay-field .form-text,
.ay-terms {
    color: var(--ay-muted);
}

.ay-input-icon {
    position: relative;
}

.ay-input-icon i {
    position: absolute;
    left: .9rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ay-muted);
    pointer-events: none;
}

.ay-input-icon .form-control {
    padding-left: 2.55rem;
}

.ay-content .form-control,
.ay-content .form-select,
.ay-auth-card .form-control,
.ay-profile-card .form-control {
    min-height: 44px;
    color: var(--ay-text);
    background-color: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .16);
    border-radius: 8px;
}

.ay-content .form-control:focus,
.ay-content .form-select:focus {
    color: var(--ay-text);
    background-color: rgba(255, 255, 255, .08);
    border-color: color-mix(in srgb, var(--ay-primary), #fff 18%);
    box-shadow: 0 0 0 .2rem rgba(58, 170, 53, .18);
}

body.aynoot-theme .form-check-input {
    accent-color: var(--ay-primary);
}

body.aynoot-theme .form-check-input:hover {
    border-color: color-mix(in srgb, var(--ay-primary), #fff 12%);
}

body.aynoot-theme .form-check-input:focus {
    border-color: color-mix(in srgb, var(--ay-primary), #fff 18%);
    box-shadow: 0 0 0 .2rem color-mix(in srgb, var(--ay-primary), transparent 78%);
}

body.aynoot-theme .form-check-input:checked {
    background-color: var(--ay-primary);
    border-color: var(--ay-primary);
}

.ay-auth-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.ay-auth-row a {
    color: var(--ay-primary);
    font-weight: 750;
    text-decoration: none;
}

.ay-auth-row a:hover {
    color: var(--ay-text);
}

.ay-profile-hero {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 1.6rem;
    align-items: center;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
}

.ay-profile-avatar-wrap {
    display: grid;
    justify-items: center;
    gap: .85rem;
}

.ay-profile-avatar {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 18px 30px rgba(0, 0, 0, .2);
}

.ay-profile-role {
    max-width: 100%;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    border-radius: 8px;
    padding: .4rem .65rem;
    font-weight: 850;
}

.ay-profile-summary h2 {
    font-size: 2.65rem;
}

.ay-profile-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin: 1rem 0 0;
}

.ay-profile-meta span {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    min-height: 38px;
    padding: .45rem .7rem;
    color: var(--ay-muted);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    background: rgba(255, 255, 255, .05);
}

.ay-profile-meta i {
    color: var(--ay-primary);
}

.ay-profile-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    margin-top: 1.15rem;
}

.ay-profile-actions form {
    margin: 0;
}

.ay-profile-tabs {
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    background: linear-gradient(180deg, color-mix(in srgb, var(--ay-card), #fff 3%), var(--ay-card));
    box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
    overflow: hidden;
}

.ay-tab-nav {
    display: flex;
    align-items: center;
    gap: .35rem;
    padding: .75rem;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
    background: rgba(255, 255, 255, .035);
}

.ay-tab-btn {
    position: relative;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .65rem 1rem;
    color: var(--ay-muted);
    border: 0;
    border-radius: 8px;
    background: transparent;
    font-weight: 850;
    transition: color .2s ease, background .2s ease;
}

.ay-tab-btn::after {
    content: "";
    position: absolute;
    left: .85rem;
    right: .85rem;
    bottom: .32rem;
    height: 2px;
    border-radius: 999px;
    background: var(--ay-primary);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .2s ease;
}

.ay-tab-btn:hover,
.ay-tab-btn.active {
    color: var(--ay-text);
    background: rgba(58, 170, 53, .12);
}

.ay-tab-btn:hover::after,
.ay-tab-btn.active::after {
    transform: scaleX(1);
}

.ay-tab-panel {
    display: none;
    padding: 1rem;
}

.ay-tab-panel.active {
    display: block;
}

.ay-profile-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.ay-profile-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ay-profile-card,
.ay-alert-panel {
    padding: 1.25rem;
}

.ay-card-heading {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1rem;
}

.ay-card-heading > i,
.ay-alert-panel h2 i {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    color: #061006;
    background: var(--ay-primary);
    border-radius: 8px;
}

.ay-profile-card h2,
.ay-alert-panel h2 {
    font-size: 1.35rem;
}

.ay-alert-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.ay-alert-panel p {
    margin: .4rem 0 0;
    color: var(--ay-muted);
}

body.ay-light .ay-auth-side,
body.ay-light .ay-auth-card,
body.ay-light .ay-profile-hero,
body.ay-light .ay-profile-tabs,
body.ay-light .ay-profile-card,
body.ay-light .ay-alert-panel {
    border-color: rgba(23, 32, 22, .12);
    background: linear-gradient(180deg, #ffffff, #f8fbf5);
    box-shadow: 0 18px 40px rgba(23, 32, 22, .08);
}

body.ay-light .ay-tab-nav {
    border-bottom-color: rgba(23, 32, 22, .1);
    background: rgba(23, 32, 22, .035);
}

body.ay-light .ay-auth-stats div,
body.ay-light .ay-auth-benefits span,
body.ay-light .ay-profile-meta span {
    border-color: rgba(23, 32, 22, .12);
    background: rgba(23, 32, 22, .04);
}

body.ay-light .ay-content .form-control,
body.ay-light .ay-content .form-select,
body.ay-light .ay-auth-card .form-control,
body.ay-light .ay-profile-card .form-control {
    color: var(--ay-text);
    background-color: #ffffff;
    border-color: rgba(23, 32, 22, .18);
}

body.ay-light .ay-content .form-control:focus,
body.ay-light .ay-content .form-select:focus {
    background-color: #ffffff;
}

@media (max-width: 991.98px) {
    .ay-navbar .navbar-collapse {
        padding-top: 1rem;
    }

    .ay-auth-actions {
        padding-top: .75rem;
        margin-right: 0;
    }

    .ay-hero {
        min-height: auto;
        padding: 3rem 0;
        background:
            linear-gradient(180deg, rgba(7, 11, 8, .97), rgba(7, 11, 8, .82)),
            var(--ay-hero-image) center bottom / 560px auto no-repeat;
    }

    body.ay-light .ay-hero {
        background:
            linear-gradient(180deg, rgba(243, 247, 239, .97), rgba(243, 247, 239, .86)),
            var(--ay-hero-image) center bottom / 560px auto no-repeat;
    }

    .ay-hero-grid,
    .ay-split,
    .ay-auth-shell,
    .ay-auth-shell.reverse,
    .ay-profile-hero,
    .ay-server-grid,
    .ay-feature-grid,
    .ay-news-grid,
    .ay-profile-grid {
        grid-template-columns: 1fr;
    }

    .ay-profile-grid.compact {
        grid-template-columns: 1fr;
    }

    .ay-auth-shell.reverse .ay-auth-side {
        order: 0;
    }

    .ay-auth-side {
        min-height: 360px;
    }

    .ay-hero-art {
        display: none;
    }

    .ay-hero h2 {
        font-size: 3rem;
    }
}

@media (max-width: 575.98px) {
    .ay-navbar {
        min-height: 66px;
    }

    .ay-brand span {
        max-width: 170px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .ay-hero h2 {
        font-size: 2.35rem;
    }

    .ay-hero-text {
        font-size: 1rem;
    }

    .ay-section {
        padding: 3rem 0;
    }

    .ay-split h2,
    .ay-section-heading h2 {
        font-size: 1.8rem;
    }

    .ay-section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .ay-auth-side,
    .ay-auth-card,
    .ay-profile-hero,
    .ay-profile-card,
    .ay-alert-panel {
        padding: 1rem;
    }

    .ay-auth-side h2,
    .ay-profile-summary h2 {
        font-size: 2rem;
    }

    .ay-auth-card h2 {
        font-size: 1.75rem;
    }

    .ay-auth-card-head,
    .ay-alert-panel {
        flex-direction: column;
        align-items: flex-start;
    }

    .ay-tab-nav {
        align-items: stretch;
        flex-direction: column;
    }

    .ay-tab-btn {
        justify-content: flex-start;
        width: 100%;
    }

    .ay-auth-logo {
        width: 72px;
        height: 72px;
    }

    .ay-profile-avatar {
        width: 132px;
        height: 132px;
    }

    .ay-section-heading img {
        width: 120px;
        height: 84px;
    }

    .ay-btn {
        width: 100%;
    }

    .ay-hero-actions {
        align-items: stretch;
    }
}

/* Lovable block-zen refresh */
body.aynoot-theme {
    --ay-border: color-mix(in srgb, var(--ay-primary), transparent 78%);
    --ay-soft-border: rgba(255, 255, 255, .09);
    --ay-elevated: color-mix(in srgb, var(--ay-surface), #fff 8%);
    --ay-glow: color-mix(in srgb, var(--ay-primary), transparent 84%);
    --ay-earth-soft: color-mix(in srgb, var(--ay-secondary), transparent 72%);
    background:
        radial-gradient(circle at 18% 8%, var(--ay-glow), transparent 34rem),
        radial-gradient(circle at 82% 18%, var(--ay-earth-soft), transparent 28rem),
        linear-gradient(180deg, rgba(7, 11, 8, .98), rgba(7, 11, 8, .96)),
        var(--ay-bg);
}

body.aynoot-theme::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: .2;
    background-image:
        linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(180deg, #000, transparent 78%);
}

body.ay-light {
    --ay-border: rgba(58, 170, 53, .2);
    --ay-soft-border: rgba(23, 32, 22, .11);
    --ay-elevated: #ffffff;
    --ay-glow: rgba(58, 170, 53, .15);
    --ay-earth-soft: rgba(139, 95, 61, .12);
    background:
        radial-gradient(circle at 18% 8%, var(--ay-glow), transparent 34rem),
        radial-gradient(circle at 82% 18%, var(--ay-earth-soft), transparent 28rem),
        linear-gradient(180deg, rgba(246, 250, 242, .98), rgba(239, 245, 235, .96)),
        var(--ay-bg);
}

body.ay-light::before {
    opacity: .34;
    background-image:
        linear-gradient(rgba(23, 32, 22, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23, 32, 22, .06) 1px, transparent 1px);
}

.ay-page-shell > .container,
.ay-navbar > .container,
.ay-home > .ay-section > .container,
.ay-hero > .container,
.ay-footer > .container,
.ay-main > .container {
    max-width: 1280px;
}

.ay-navbar-wrap {
    border-bottom: 1px solid var(--ay-soft-border);
    background: rgba(7, 11, 8, .72);
    backdrop-filter: blur(18px);
}

body.ay-light .ay-navbar-wrap {
    background: rgba(255, 255, 255, .78);
}

.ay-navbar {
    min-height: 64px;
    padding: .55rem 0;
}

.ay-brand {
    gap: .65rem;
}

.ay-brand-logo {
    width: 34px;
    height: 34px;
}

.ay-brand-text {
    display: grid;
    gap: .02rem;
    line-height: 1;
}

.ay-brand-text strong {
    color: var(--ay-text);
    font-size: 1.02rem;
    font-weight: 900;
}

.ay-brand-text small {
    color: var(--ay-muted);
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ay-navbar .navbar-nav {
    gap: .12rem;
}

.ay-navbar .nav-link {
    min-height: 38px;
    margin: 0;
    padding: .5rem .72rem;
    color: var(--ay-muted);
    border-radius: 8px;
    font-size: .92rem;
    font-weight: 800;
    transition: color .18s ease, background .18s ease;
}

.ay-navbar .nav-link::before {
    display: none;
}

.ay-navbar .nav-link:hover,
.ay-navbar .nav-link.active {
    color: var(--ay-text);
    background: rgba(255, 255, 255, .07);
}

body.ay-light .ay-navbar .nav-link:hover,
body.ay-light .ay-navbar .nav-link.active {
    background: rgba(58, 170, 53, .11);
}

.ay-auth-actions {
    gap: .45rem;
    margin-right: .55rem;
}

.ay-navbar-controls {
    gap: .45rem;
}

.ay-theme-toggle,
.ay-toggler,
.ay-lang-switch,
.ay-user-btn,
.ay-btn-ghost,
.ay-btn-quiet {
    border: 1px solid var(--ay-soft-border);
    background: rgba(255, 255, 255, .055);
}

.ay-theme-toggle,
.ay-toggler {
    width: 38px;
    height: 38px;
}

.ay-theme-toggle {
    overflow: hidden;
}

.ay-theme-toggle img {
    width: 26px;
    height: 26px;
    image-rendering: pixelated;
    filter: drop-shadow(0 1px 0 rgba(0, 0, 0, .35));
    transition: transform .25s ease;
}

.ay-theme-toggle:hover img {
    transform: rotate(18deg) scale(1.08);
}

.ay-lang-switch {
    padding: .15rem;
}

.ay-lang-switch a {
    min-width: 31px;
    padding: .34rem .42rem;
    font-size: .82rem;
    font-weight: 900;
    text-transform: lowercase;
}

.ay-lang-switch span {
    min-width: 31px;
    padding: .34rem .42rem;
    color: #061006;
    border-radius: 6px;
    background: var(--ay-primary);
    font-size: .82rem;
    font-weight: 900;
    text-align: center;
    text-transform: lowercase;
}

.ay-lang-switch a.active {
    color: var(--ay-primary-contrast, #061006);
    background: var(--ay-primary);
}

.ay-user-btn {
    min-height: 40px;
    padding: .36rem .62rem .36rem .4rem;
}

.ay-user-btn img {
    width: 26px;
    height: 26px;
}

.ay-dropdown {
    border: 1px solid var(--ay-soft-border);
    background: color-mix(in srgb, var(--ay-surface), #000 14%);
}

.ay-home {
    background:
        radial-gradient(circle at 50% 4%, var(--ay-glow), transparent 36rem),
        linear-gradient(180deg, rgba(7, 11, 8, .08), rgba(7, 11, 8, .72) 55%, rgba(7, 11, 8, .94));
}

body.ay-light .ay-home {
    background:
        radial-gradient(circle at 50% 4%, var(--ay-glow), transparent 36rem),
        linear-gradient(180deg, rgba(246, 250, 242, .1), rgba(246, 250, 242, .72) 55%, rgba(239, 245, 235, .94));
}

.ay-lovable-hero {
    min-height: min(760px, calc(100vh - 96px));
    padding: clamp(4rem, 7vh, 5.5rem) 0 4rem;
    overflow: hidden;
    background:
        radial-gradient(circle at 68% 35%, var(--ay-glow), transparent 26rem),
        radial-gradient(circle at 18% 65%, var(--ay-earth-soft), transparent 22rem);
}

.ay-lovable-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .2;
    background-image:
        linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: radial-gradient(circle at 50% 38%, #000, transparent 76%);
}

.ay-lovable-hero::after {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ay-border), transparent);
}

.ay-lovable-hero .container,
.ay-lovable-hero .ay-hero-grid {
    position: relative;
    z-index: 1;
}

.ay-hero-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(340px, .82fr);
    gap: clamp(2rem, 5vw, 5rem);
}

.ay-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin-bottom: 1.25rem;
}

.ay-version-badge,
.ay-status-pill {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .38rem .72rem;
    color: var(--ay-primary);
    border: 1px solid var(--ay-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, .045);
    font-size: .82rem;
    font-weight: 900;
}

.ay-status-pill {
    color: var(--ay-text);
    border-color: color-mix(in srgb, var(--ay-primary), transparent 62%);
    background: color-mix(in srgb, var(--ay-primary), transparent 91%);
}

.ay-status-pill:not(.online) {
    color: var(--ay-muted);
    border-color: color-mix(in srgb, var(--ay-secondary), transparent 58%);
    background: color-mix(in srgb, var(--ay-secondary), transparent 90%);
}

.ay-status-pill strong {
    color: inherit;
    font-size: .8rem;
}

.ay-pill-divider {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: currentColor;
    opacity: .62;
}

.ay-live-dot {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    background: var(--ay-primary);
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--ay-primary), transparent 52%);
    animation: ayPulse 2s infinite;
}

@keyframes ayPulse {
    70% {
        box-shadow: 0 0 0 10px color-mix(in srgb, var(--ay-primary), transparent 100%);
    }
    100% {
        box-shadow: 0 0 0 0 color-mix(in srgb, var(--ay-primary), transparent 100%);
    }
}

.ay-hero h2 {
    max-width: 740px;
    font-size: clamp(3.2rem, 8vw, 6.8rem);
    line-height: .94;
    letter-spacing: 0;
}

.ay-hero-text {
    max-width: 650px;
    margin-top: 1.35rem;
    color: color-mix(in srgb, var(--ay-muted), var(--ay-text) 14%);
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
}

.ay-btn {
    min-height: 42px;
    border-radius: 8px;
    padding: .68rem 1.05rem;
    font-weight: 900;
}

.ay-btn-primary {
    color: #061006;
    background: var(--ay-primary);
    border-color: color-mix(in srgb, var(--ay-primary), #fff 12%);
    text-shadow: none;
    box-shadow: 0 0 22px color-mix(in srgb, var(--ay-primary), transparent 78%);
}

.ay-btn-primary:hover {
    color: #061006;
    background: color-mix(in srgb, var(--ay-primary), #fff 8%);
}

.ay-btn-ghost:hover,
.ay-btn-quiet:hover {
    color: var(--ay-text);
    border-color: var(--ay-border);
    background: rgba(255, 255, 255, .09);
}

.ay-btn-quiet {
    color: var(--ay-muted);
}

.ay-btn:disabled,
.ay-btn.disabled {
    cursor: not-allowed;
    opacity: .62;
    transform: none;
}

.ay-hero-art {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    gap: 1rem;
    width: 100%;
    max-width: 430px;
}

.ay-cube-card {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--ay-soft-border);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .075), transparent 36%),
        color-mix(in srgb, var(--ay-card), #fff 4%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .08),
        0 28px 90px rgba(0, 0, 0, .36);
}

.ay-cube-card::before,
.ay-cube-card::after {
    content: "";
    position: absolute;
    inset: 12%;
    border: 1px solid var(--ay-border);
    transform: rotate(45deg);
    opacity: .45;
}

.ay-cube-card::after {
    inset: 23%;
    border-color: var(--ay-earth-soft);
}

.ay-cube-card img {
    position: relative;
    z-index: 1;
    width: 66%;
    height: 66%;
    object-fit: contain;
    filter: drop-shadow(0 24px 34px rgba(0, 0, 0, .34));
    animation: ayFloat 5s ease-in-out infinite;
}

@keyframes ayFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.ay-status-card {
    width: 100%;
    display: grid;
    gap: .75rem;
    padding: 1rem;
    border: 1px solid var(--ay-soft-border);
    border-radius: 8px;
    background: rgba(14, 22, 16, .78);
    box-shadow: 0 22px 70px rgba(0, 0, 0, .28);
    backdrop-filter: blur(12px);
}

.ay-status-row,
.ay-status-players {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--ay-muted);
}

.ay-status-row strong,
.ay-status-players strong {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: var(--ay-text);
    font-weight: 900;
    overflow-wrap: anywhere;
    text-align: right;
}

.ay-status-row.wide {
    align-items: flex-start;
    flex-direction: column;
    gap: .18rem;
}

.ay-status-row.wide strong {
    text-align: left;
}

.ay-section {
    position: relative;
    padding: 5.5rem 0;
}

.ay-section-label {
    color: var(--ay-primary);
    font-size: .78rem;
    letter-spacing: .08em;
}

.ay-section-heading {
    margin-bottom: 2rem;
}

.ay-heading-centered {
    display: grid;
    justify-items: center;
    text-align: center;
}

.ay-heading-centered span {
    max-width: 650px;
    color: var(--ay-muted);
    line-height: 1.65;
}

.ay-split h2,
.ay-section-heading h2,
.ay-launcher-panel h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.04;
}

.ay-about-split {
    grid-template-columns: minmax(300px, .82fr) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 4.5rem);
}

.ay-about-visual {
    position: relative;
    min-height: 360px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--ay-soft-border);
    border-radius: 8px;
    background:
        linear-gradient(135deg, var(--ay-glow), transparent 42%),
        color-mix(in srgb, var(--ay-card), #fff 3%);
}

.ay-about-visual img {
    width: 74%;
    height: 74%;
    object-fit: contain;
    filter: drop-shadow(0 24px 38px rgba(0, 0, 0, .25));
}

.ay-about-version {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    display: grid;
    gap: .1rem;
    padding: .7rem .85rem;
    border: 1px solid var(--ay-soft-border);
    border-radius: 8px;
    background: rgba(0, 0, 0, .3);
    backdrop-filter: blur(10px);
}

.ay-about-version span {
    color: var(--ay-muted);
    font-size: .78rem;
    font-weight: 800;
}

.ay-about-version strong {
    color: var(--ay-text);
    font-size: 1.25rem;
}

.ay-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin-top: 1.35rem;
}

.ay-tag-list span {
    padding: .4rem .62rem;
    color: var(--ay-muted);
    border: 1px solid var(--ay-soft-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, .045);
    font-size: .85rem;
    font-weight: 800;
}

.ay-project-panel,
.ay-message,
.ay-empty-state,
.ay-feature,
.ay-server-card,
.ay-news-card,
.ay-content,
.ay-auth-side,
.ay-auth-card,
.ay-profile-hero,
.ay-profile-card,
.ay-alert-panel,
.ay-profile-tabs,
.ay-launcher-panel,
.ay-community-card,
.ay-streamer-card {
    border: 1px solid var(--ay-soft-border);
    border-radius: 8px;
    background:
        linear-gradient(180deg, color-mix(in srgb, var(--ay-card), #fff 4%), var(--ay-card));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .055),
        0 20px 60px rgba(0, 0, 0, .24);
}

.ay-feature-grid-six {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.ay-feature {
    min-height: 230px;
    padding: 1.35rem;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.ay-feature:hover,
.ay-server-card:hover,
.ay-news-card:hover,
.ay-community-card:hover,
.ay-streamer-card:hover {
    border-color: var(--ay-border);
    transform: translateY(-3px);
}

.ay-feature i,
.ay-card-heading > i,
.ay-alert-panel h2 i {
    color: var(--ay-primary);
    background: color-mix(in srgb, var(--ay-primary), transparent 88%);
    box-shadow: inset 0 0 0 1px var(--ay-border);
}

.ay-feature h3 {
    margin-top: 1.05rem;
    font-size: 1.12rem;
}

.ay-news-empty {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

.ay-news-empty h3 {
    margin: 0 0 .45rem;
    color: var(--ay-text);
    font-size: 1.35rem;
    font-weight: 900;
}

.ay-launcher-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 2rem;
    align-items: center;
    padding: clamp(1.3rem, 3vw, 2rem);
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 22%, var(--ay-glow), transparent 22rem),
        linear-gradient(180deg, color-mix(in srgb, var(--ay-card), #fff 4%), var(--ay-card));
}

.ay-launcher-panel p {
    max-width: 650px;
    color: var(--ay-muted);
    line-height: 1.75;
}

.ay-launcher-card {
    border: 1px solid var(--ay-soft-border);
    border-radius: 8px;
    padding: 1rem;
    background: rgba(255, 255, 255, .045);
}

.ay-launcher-window {
    display: flex;
    gap: .35rem;
    padding: .75rem;
    border-radius: 8px;
    background: rgba(0, 0, 0, .26);
}

.ay-launcher-window span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--ay-primary);
}

.ay-launcher-window span:nth-child(2) {
    background: var(--ay-secondary);
}

.ay-launcher-window span:nth-child(3) {
    background: var(--ay-muted);
}

.ay-launcher-card strong {
    display: block;
    margin: 1rem 0 .75rem;
    color: var(--ay-text);
    font-size: 1.45rem;
    font-weight: 900;
}

.ay-launcher-card ul {
    display: grid;
    gap: .45rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.ay-launcher-card li {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: var(--ay-muted);
}

.ay-launcher-card li i {
    color: var(--ay-primary);
}

.ay-community-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

.ay-community-card {
    display: grid;
    justify-items: center;
    gap: .4rem;
    min-height: 150px;
    padding: 1.25rem 1rem;
    color: var(--ay-text);
    text-align: center;
    text-decoration: none;
    transition: transform .18s ease, border-color .18s ease;
}

.ay-community-card i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--ay-primary);
    border: 1px solid var(--ay-border);
    border-radius: 8px;
    background: color-mix(in srgb, var(--ay-primary), transparent 90%);
    font-size: 1.2rem;
}

.ay-community-card strong {
    font-weight: 900;
}

.ay-community-card span {
    color: var(--ay-muted);
    font-size: .88rem;
}

.ay-community-card.disabled {
    opacity: .72;
}

.ay-streamers-section {
    padding-top: 4.5rem;
}

.ay-streamers-section .ay-section-heading span {
    display: block;
    max-width: 700px;
    margin-top: .55rem;
    color: var(--ay-muted);
    line-height: 1.65;
}

.ay-streamer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.ay-streamer-card {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    min-height: 120px;
    padding: 1rem;
    color: var(--ay-text);
    text-decoration: none;
    transition: transform .18s ease, border-color .18s ease, opacity .18s ease, filter .18s ease;
}

.ay-streamer-card.live {
    border-color: color-mix(in srgb, var(--ay-primary), #fff 4%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .07),
        0 0 0 1px color-mix(in srgb, var(--ay-primary), transparent 68%),
        0 20px 70px color-mix(in srgb, var(--ay-primary), transparent 88%);
}

.ay-streamer-card.offline {
    opacity: .66;
    filter: grayscale(.28);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .025)),
        color-mix(in srgb, var(--ay-card), #888 9%);
}

.ay-streamer-avatar {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    color: var(--ay-primary);
    border: 1px solid var(--ay-border);
    border-radius: 8px;
    background: color-mix(in srgb, var(--ay-primary), transparent 90%);
    font-size: 1.45rem;
}

.ay-streamer-card.offline .ay-streamer-avatar {
    color: var(--ay-muted);
    border-color: var(--ay-soft-border);
    background: rgba(255, 255, 255, .04);
}

.ay-streamer-main {
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
}

.ay-streamer-main strong {
    display: block;
    color: var(--ay-text);
    font-size: 1.1rem;
    font-weight: 950;
    overflow-wrap: anywhere;
}

.ay-streamer-main span,
.ay-streamer-action span {
    color: var(--ay-muted);
    font-size: .9rem;
    font-weight: 800;
}

.ay-streamer-main em {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    flex: 0 0 auto;
    color: var(--ay-primary);
    font-style: normal;
    font-weight: 950;
}

.ay-streamer-card.offline .ay-streamer-main em {
    color: var(--ay-muted);
}

.ay-streamer-live-meta {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: .45rem .9rem;
    color: var(--ay-muted);
    font-size: .84rem;
    font-weight: 800;
}

.ay-streamer-card.offline .ay-streamer-live-meta {
    opacity: .72;
}

.ay-streamer-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 5px color-mix(in srgb, currentColor, transparent 86%);
}

.ay-streamer-action {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: var(--ay-muted);
}

.ay-streamer-action i {
    color: var(--ay-primary);
}

.ay-footer {
    background: rgba(5, 8, 6, .9);
}

.ay-footer-brand .ay-brand-text strong {
    font-size: 1.05rem;
}

.ay-footer-meta {
    display: flex;
    align-items: center;
    gap: .8rem;
    flex-wrap: wrap;
}

.ay-footer-meta > span {
    color: var(--ay-muted);
}

.ay-main {
    background:
        radial-gradient(circle at 50% 0, var(--ay-glow), transparent 32rem),
        linear-gradient(180deg, rgba(7, 11, 8, .15), rgba(7, 11, 8, .88));
}

.ay-auth-shell {
    gap: 1rem;
}

.ay-auth-side,
.ay-auth-card,
.ay-profile-hero,
.ay-profile-tabs {
    overflow: hidden;
}

.ay-auth-side::before {
    opacity: .26;
    background:
        linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px),
        radial-gradient(circle at 74% 18%, var(--ay-glow), transparent 34%);
    background-size: 42px 42px, 42px 42px, auto;
}

.ay-auth-card,
.ay-profile-card {
    padding: clamp(1.15rem, 2vw, 1.75rem);
}

.ay-auth-card-head {
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--ay-soft-border);
}

.ay-content .form-control,
.ay-content .form-select,
.ay-auth-card .form-control,
.ay-profile-card .form-control {
    background-color: rgba(255, 255, 255, .055);
    border-color: var(--ay-soft-border);
}

.ay-profile-hero {
    grid-template-columns: 190px minmax(0, 1fr);
    padding: clamp(1.1rem, 2vw, 1.5rem);
    background:
        radial-gradient(circle at 16% 22%, var(--ay-glow), transparent 20rem),
        linear-gradient(180deg, color-mix(in srgb, var(--ay-card), #fff 4%), var(--ay-card));
}

.ay-profile-avatar {
    width: 144px;
    height: 144px;
}

.ay-profile-summary h2 {
    font-size: clamp(2.1rem, 4vw, 3.4rem);
}

.ay-profile-meta span {
    border-color: var(--ay-soft-border);
    background: rgba(255, 255, 255, .045);
}

.ay-tab-nav {
    background: rgba(255, 255, 255, .03);
}

.ay-tab-btn {
    color: var(--ay-muted);
}

.ay-tab-btn:hover,
.ay-tab-btn.active {
    color: var(--ay-text);
    background: color-mix(in srgb, var(--ay-primary), transparent 90%);
}

body.ay-light .ay-project-panel,
body.ay-light .ay-message,
body.ay-light .ay-empty-state,
body.ay-light .ay-feature,
body.ay-light .ay-server-card,
body.ay-light .ay-news-card,
body.ay-light .ay-content,
body.ay-light .ay-auth-side,
body.ay-light .ay-auth-card,
body.ay-light .ay-profile-hero,
body.ay-light .ay-profile-card,
body.ay-light .ay-alert-panel,
body.ay-light .ay-profile-tabs,
body.ay-light .ay-launcher-panel,
body.ay-light .ay-community-card,
body.ay-light .ay-streamer-card {
    border-color: var(--ay-soft-border);
    background: linear-gradient(180deg, #ffffff, #f8fbf5);
    box-shadow: 0 20px 60px rgba(23, 32, 22, .08);
}

body.ay-light .ay-status-card,
body.ay-light .ay-launcher-card,
body.ay-light .ay-about-version {
    background: rgba(255, 255, 255, .78);
}

body.ay-light .ay-footer {
    background: rgba(255, 255, 255, .9);
}

@media (max-width: 991.98px) {
    .ay-lovable-hero {
        padding: 4rem 0 3rem;
    }

    .ay-lovable-home .ay-hero-grid,
    .ay-about-split,
    .ay-launcher-panel {
        grid-template-columns: 1fr;
    }

    .ay-lovable-home .ay-hero-art {
        display: flex;
    }

    .ay-feature-grid-six,
    .ay-community-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ay-profile-hero {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .ay-navbar .container {
        position: relative;
        min-height: 48px;
        gap: .35rem;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-right: .75rem;
        padding-left: .75rem;
    }

    .ay-navbar-controls {
        position: absolute;
        top: 50%;
        right: .75rem;
        width: 76px;
        transform: translateY(-50%);
        flex: 0 0 auto;
        justify-content: flex-end;
        gap: .3rem;
        margin-left: auto;
    }

    .ay-brand {
        gap: .45rem;
        min-width: 0;
        padding-right: 84px;
    }

    .ay-brand-logo {
        width: 30px;
        height: 30px;
    }

    .ay-brand-text strong {
        max-width: 104px;
        overflow: hidden;
        font-size: .95rem;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .ay-theme-toggle,
    .ay-toggler {
        flex: 0 0 34px;
        width: 34px;
        height: 34px;
    }

    .ay-lang-switch {
        flex: 0 0 61px;
        width: 61px;
    }

    .ay-lang-switch a {
        min-width: 28px;
        padding: .28rem .34rem;
        font-size: .78rem;
    }

    .ay-brand-text small {
        display: none;
    }

    .ay-lovable-hero {
        min-height: auto;
        padding: 3rem 0 2rem;
    }

    .ay-hero h2 {
        font-size: clamp(2.55rem, 16vw, 4rem);
    }

    .ay-hero-copy,
    .ay-hero-text {
        width: 100%;
        max-width: calc(100vw - 1.5rem);
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .ay-cube-card,
    .ay-status-card {
        max-width: calc(100vw - 1.5rem);
        width: 100%;
    }

    .ay-feature-grid-six,
    .ay-community-grid,
    .ay-streamer-grid,
    .ay-server-grid,
    .ay-news-grid {
        grid-template-columns: 1fr;
    }

    .ay-hero-badges {
        align-items: flex-start;
        flex-direction: column;
    }

    .ay-streamer-card {
        grid-template-columns: 48px minmax(0, 1fr);
    }

    .ay-streamer-avatar {
        width: 48px;
        height: 48px;
        font-size: 1.18rem;
    }

    .ay-streamer-main {
        grid-template-columns: 1fr;
        gap: .45rem;
    }

    .ay-streamer-action {
        grid-column: 2;
    }

    .ay-community-card {
        min-height: 128px;
    }

    .ay-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .ay-profile-meta {
        display: grid;
    }

    .ay-profile-actions .ay-btn,
    .ay-auth-actions .ay-btn {
        width: auto;
    }
}

/* Final profile/light-theme polish */
.ay-user-btn::after {
    display: none !important;
    content: none !important;
}

.ay-user-btn img {
    border-radius: 4px !important;
}

body.aynoot-theme.ay-light {
    background:
        radial-gradient(circle at 18% 10%, rgba(205, 246, 181, .72), transparent 32rem),
        radial-gradient(circle at 82% 18%, rgba(169, 232, 132, .38), transparent 28rem),
        linear-gradient(135deg, #f4f5f2 0%, #edf2ec 46%, #d4f5bd 100%) fixed !important;
}

body.aynoot-theme.ay-light .ay-home {
    background:
        radial-gradient(circle at 52% 8%, rgba(118, 210, 78, .18), transparent 36rem),
        linear-gradient(135deg, rgba(247, 248, 245, .96) 0%, rgba(235, 242, 232, .94) 48%, rgba(211, 245, 187, .9) 100%) !important;
}

body.aynoot-theme.ay-light .ay-lovable-hero {
    background:
        radial-gradient(circle at 70% 24%, rgba(113, 206, 73, .22), transparent 28rem),
        radial-gradient(circle at 18% 72%, rgba(167, 230, 128, .2), transparent 24rem),
        linear-gradient(135deg, #f7f8f5 0%, #edf2ec 48%, #d6f5c3 100%) !important;
}

.ay-profile-actions .ay-profile-2fa-btn {
    min-width: 176px;
    color: #061006 !important;
    -webkit-text-fill-color: #061006;
    background: linear-gradient(180deg, #40c63a, #32ad2f) !important;
    border-color: rgba(81, 224, 72, .72) !important;
    opacity: 1 !important;
    text-shadow: none !important;
}

.ay-profile-actions .ay-profile-2fa-btn i,
.ay-profile-actions .ay-profile-2fa-btn span {
    display: inline-flex !important;
    align-items: center;
    color: #061006 !important;
    -webkit-text-fill-color: #061006;
    opacity: 1 !important;
    visibility: visible !important;
}

.ay-profile-actions .ay-profile-2fa-btn:hover {
    color: #061006 !important;
    background: linear-gradient(180deg, #55d950, #36bc32) !important;
}

/* Final seasonal background/logo polish */
body.aynoot-theme {
    background:
        linear-gradient(90deg, rgba(7, 11, 8, .76) 0%, rgba(7, 11, 8, .46) 52%, rgba(0, 0, 0, .64) 100%),
        var(--ay-background-image) center top / cover fixed no-repeat,
        var(--ay-bg) !important;
}

body.aynoot-theme.ay-light {
    background:
        linear-gradient(135deg, rgba(247, 248, 245, .88) 0%, rgba(236, 242, 232, .78) 46%, rgba(206, 244, 179, .68) 100%),
        var(--ay-background-image) center top / cover fixed no-repeat,
        #edf4ea !important;
}

body.aynoot-theme::before {
    opacity: .09 !important;
}

body.aynoot-theme.ay-light::before {
    opacity: .06 !important;
}

body.aynoot-theme .ay-home,
body.aynoot-theme .ay-main,
body.aynoot-theme .ay-inner-page,
body.aynoot-theme .ay-auth-page {
    background: transparent !important;
}

body.aynoot-theme .ay-lovable-hero {
    background:
        linear-gradient(90deg, rgba(7, 11, 8, .82) 0%, rgba(7, 11, 8, .42) 52%, rgba(0, 0, 0, .62) 100%),
        var(--ay-hero-image) center / cover no-repeat !important;
}

body.aynoot-theme.ay-light .ay-lovable-hero {
    background:
        linear-gradient(90deg, rgba(247, 248, 245, .88) 0%, rgba(239, 245, 235, .68) 48%, rgba(207, 245, 184, .52) 100%),
        var(--ay-hero-image) center / cover no-repeat !important;
}

body.aynoot-theme .ay-lovable-hero::before,
body.aynoot-theme .ay-lovable-hero::after,
body.aynoot-theme .ay-cube-card::before,
body.aynoot-theme .ay-cube-card::after {
    display: none !important;
    content: none !important;
}

body.aynoot-theme .ay-cube-card {
    overflow: visible !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

body.aynoot-theme .ay-cube-card img {
    width: min(82%, 360px) !important;
    height: auto !important;
    max-height: 82% !important;
    filter: drop-shadow(0 34px 46px rgba(0, 0, 0, .46)) !important;
}

body.aynoot-theme.ay-light .ay-cube-card img {
    filter: drop-shadow(0 30px 42px rgba(37, 54, 32, .24)) !important;
}

/* Final seamless hero-to-content transition */
body.aynoot-theme .ay-lovable-hero {
    background:
        linear-gradient(180deg, rgba(7, 11, 8, .06) 0%, rgba(7, 11, 8, .18) 62%, rgba(7, 11, 8, .34) 100%),
        linear-gradient(90deg, rgba(7, 11, 8, .78) 0%, rgba(7, 11, 8, .34) 52%, rgba(0, 0, 0, .46) 100%) !important;
}

body.aynoot-theme.ay-light .ay-lovable-hero {
    background:
        linear-gradient(180deg, rgba(247, 248, 245, .24) 0%, rgba(239, 245, 235, .4) 62%, rgba(226, 246, 214, .54) 100%),
        linear-gradient(90deg, rgba(247, 248, 245, .86) 0%, rgba(239, 245, 235, .54) 48%, rgba(207, 245, 184, .42) 100%) !important;
}

body.aynoot-theme .ay-lovable-hero::after {
    content: "" !important;
    display: block !important;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    height: clamp(120px, 18vh, 220px);
    pointer-events: none;
    background: linear-gradient(180deg, transparent 0%, rgba(7, 11, 8, .24) 100%) !important;
}

body.aynoot-theme.ay-light .ay-lovable-hero::after {
    background: linear-gradient(180deg, transparent 0%, rgba(226, 246, 214, .3) 100%) !important;
}

body.aynoot-theme .ay-lovable-hero .container,
body.aynoot-theme .ay-lovable-hero .ay-hero-grid {
    position: relative;
    z-index: 1;
}

/* Final home card readability */
body.aynoot-theme .ay-home .ay-status-card,
body.aynoot-theme .ay-home .ay-about-visual,
body.aynoot-theme .ay-home .ay-project-panel,
body.aynoot-theme .ay-home .ay-message,
body.aynoot-theme .ay-home .ay-empty-state,
body.aynoot-theme .ay-home .ay-feature,
body.aynoot-theme .ay-home .ay-server-card,
body.aynoot-theme .ay-home .ay-news-card,
body.aynoot-theme .ay-home .ay-launcher-panel,
body.aynoot-theme .ay-home .ay-community-card,
body.aynoot-theme .ay-home .ay-streamer-card {
    border-color: rgba(91, 209, 82, .26) !important;
    background:
        linear-gradient(180deg, rgba(28, 45, 29, .93), rgba(10, 18, 11, .9)) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .08),
        0 22px 70px rgba(0, 0, 0, .38),
        0 0 0 1px rgba(58, 170, 53, .08) !important;
    backdrop-filter: blur(18px) saturate(1.08);
}

body.aynoot-theme .ay-home .ay-launcher-panel {
    background:
        radial-gradient(circle at 82% 22%, rgba(58, 170, 53, .18), transparent 24rem),
        linear-gradient(180deg, rgba(28, 45, 29, .94), rgba(10, 18, 11, .91)) !important;
}

body.aynoot-theme .ay-home .ay-about-split > div:last-child,
body.aynoot-theme .ay-home .ay-section-heading {
    text-shadow: 0 2px 22px rgba(0, 0, 0, .55);
}

body.aynoot-theme .ay-home .ay-about-split > div:last-child {
    align-self: center;
    padding: clamp(1.1rem, 2.4vw, 1.7rem);
    border: 1px solid rgba(91, 209, 82, .16);
    border-radius: 8px;
    background: linear-gradient(90deg, rgba(8, 15, 9, .58), rgba(8, 15, 9, .22));
    backdrop-filter: blur(10px);
}

body.aynoot-theme .ay-home .ay-launcher-card,
body.aynoot-theme .ay-home .ay-about-version,
body.aynoot-theme .ay-home .ay-tag-list span {
    border-color: rgba(91, 209, 82, .2) !important;
    background: rgba(4, 10, 5, .52) !important;
}

body.aynoot-theme .ay-home .ay-feature:hover,
body.aynoot-theme .ay-home .ay-server-card:hover,
body.aynoot-theme .ay-home .ay-news-card:hover,
body.aynoot-theme .ay-home .ay-community-card:hover,
body.aynoot-theme .ay-home .ay-streamer-card:hover {
    border-color: rgba(91, 209, 82, .58) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .1),
        0 26px 78px rgba(0, 0, 0, .44),
        0 0 0 1px rgba(58, 170, 53, .16) !important;
}

body.aynoot-theme.ay-light .ay-home .ay-status-card,
body.aynoot-theme.ay-light .ay-home .ay-about-visual,
body.aynoot-theme.ay-light .ay-home .ay-project-panel,
body.aynoot-theme.ay-light .ay-home .ay-message,
body.aynoot-theme.ay-light .ay-home .ay-empty-state,
body.aynoot-theme.ay-light .ay-home .ay-feature,
body.aynoot-theme.ay-light .ay-home .ay-server-card,
body.aynoot-theme.ay-light .ay-home .ay-news-card,
body.aynoot-theme.ay-light .ay-home .ay-launcher-panel,
body.aynoot-theme.ay-light .ay-home .ay-community-card,
body.aynoot-theme.ay-light .ay-home .ay-streamer-card {
    border-color: rgba(58, 170, 53, .22) !important;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(246, 250, 242, .9)) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .85),
        0 24px 64px rgba(23, 32, 22, .16),
        0 0 0 1px rgba(58, 170, 53, .08) !important;
}

body.aynoot-theme.ay-light .ay-home .ay-about-split > div:last-child {
    border-color: rgba(58, 170, 53, .18);
    background: linear-gradient(90deg, rgba(255, 255, 255, .76), rgba(246, 250, 242, .44));
    text-shadow: none;
}

body.aynoot-theme.ay-light .ay-home .ay-section-heading {
    text-shadow: none;
}

body.aynoot-theme.ay-light .ay-home .ay-launcher-card,
body.aynoot-theme.ay-light .ay-home .ay-about-version,
body.aynoot-theme.ay-light .ay-home .ay-tag-list span {
    border-color: rgba(58, 170, 53, .18) !important;
    background: rgba(255, 255, 255, .66) !important;
}

/* Final iOS-style liquid glass cards */
body.aynoot-theme .ay-home .ay-status-card,
body.aynoot-theme .ay-home .ay-about-visual,
body.aynoot-theme .ay-home .ay-project-panel,
body.aynoot-theme .ay-home .ay-message,
body.aynoot-theme .ay-home .ay-empty-state,
body.aynoot-theme .ay-home .ay-feature,
body.aynoot-theme .ay-home .ay-server-card,
body.aynoot-theme .ay-home .ay-news-card,
body.aynoot-theme .ay-home .ay-launcher-panel,
body.aynoot-theme .ay-home .ay-community-card,
body.aynoot-theme .ay-home .ay-streamer-card {
    position: relative;
    overflow: hidden;
    border-color: rgba(255, 255, 255, .16) !important;
    background:
        radial-gradient(circle at 16% 0%, rgba(255, 255, 255, .2), transparent 34%),
        radial-gradient(circle at 88% 16%, rgba(58, 170, 53, .18), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, .105), rgba(255, 255, 255, .03) 42%, rgba(58, 170, 53, .08)),
        rgba(8, 17, 11, .48) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .28),
        inset 0 -1px 0 rgba(255, 255, 255, .06),
        0 24px 80px rgba(0, 0, 0, .42),
        0 0 0 1px rgba(58, 170, 53, .08) !important;
    -webkit-backdrop-filter: blur(28px) saturate(1.45) contrast(1.08);
    backdrop-filter: blur(28px) saturate(1.45) contrast(1.08);
}

body.aynoot-theme .ay-home .ay-status-card::before,
body.aynoot-theme .ay-home .ay-about-visual::before,
body.aynoot-theme .ay-home .ay-project-panel::before,
body.aynoot-theme .ay-home .ay-message::before,
body.aynoot-theme .ay-home .ay-empty-state::before,
body.aynoot-theme .ay-home .ay-feature::before,
body.aynoot-theme .ay-home .ay-server-card::before,
body.aynoot-theme .ay-home .ay-news-card::before,
body.aynoot-theme .ay-home .ay-launcher-panel::before,
body.aynoot-theme .ay-home .ay-community-card::before,
body.aynoot-theme .ay-home .ay-streamer-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    border-radius: inherit;
    background:
        linear-gradient(125deg, rgba(255, 255, 255, .24) 0%, transparent 34%),
        linear-gradient(305deg, rgba(255, 255, 255, .09) 0%, transparent 28%);
    opacity: .72;
}

body.aynoot-theme .ay-home .ay-status-card > *,
body.aynoot-theme .ay-home .ay-about-visual > *,
body.aynoot-theme .ay-home .ay-project-panel > *,
body.aynoot-theme .ay-home .ay-message > *,
body.aynoot-theme .ay-home .ay-empty-state > *,
body.aynoot-theme .ay-home .ay-feature > *,
body.aynoot-theme .ay-home .ay-server-card > *,
body.aynoot-theme .ay-home .ay-news-card > *,
body.aynoot-theme .ay-home .ay-launcher-panel > *,
body.aynoot-theme .ay-home .ay-community-card > *,
body.aynoot-theme .ay-home .ay-streamer-card > * {
    position: relative;
    z-index: 1;
}

body.aynoot-theme .ay-home .ay-about-split > div:last-child {
    border-color: rgba(255, 255, 255, .13) !important;
    background:
        radial-gradient(circle at 12% 0%, rgba(255, 255, 255, .16), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(8, 17, 11, .32)),
        rgba(8, 17, 11, .34) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .2),
        0 20px 70px rgba(0, 0, 0, .28);
    -webkit-backdrop-filter: blur(22px) saturate(1.35);
    backdrop-filter: blur(22px) saturate(1.35);
}

body.aynoot-theme .ay-home .ay-launcher-card,
body.aynoot-theme .ay-home .ay-about-version,
body.aynoot-theme .ay-home .ay-tag-list span {
    border-color: rgba(255, 255, 255, .15) !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .035)),
        rgba(4, 10, 5, .38) !important;
    -webkit-backdrop-filter: blur(18px) saturate(1.3);
    backdrop-filter: blur(18px) saturate(1.3);
}

body.aynoot-theme .ay-home .ay-feature:hover,
body.aynoot-theme .ay-home .ay-server-card:hover,
body.aynoot-theme .ay-home .ay-news-card:hover,
body.aynoot-theme .ay-home .ay-community-card:hover,
body.aynoot-theme .ay-home .ay-streamer-card:hover {
    border-color: rgba(255, 255, 255, .28) !important;
    background:
        radial-gradient(circle at 18% 0%, rgba(255, 255, 255, .26), transparent 34%),
        radial-gradient(circle at 88% 16%, rgba(58, 170, 53, .24), transparent 36%),
        linear-gradient(145deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .04) 42%, rgba(58, 170, 53, .12)),
        rgba(8, 17, 11, .54) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .34),
        inset 0 -1px 0 rgba(255, 255, 255, .07),
        0 30px 90px rgba(0, 0, 0, .48),
        0 0 0 1px rgba(58, 170, 53, .16) !important;
}

body.aynoot-theme.ay-light .ay-home .ay-status-card,
body.aynoot-theme.ay-light .ay-home .ay-about-visual,
body.aynoot-theme.ay-light .ay-home .ay-project-panel,
body.aynoot-theme.ay-light .ay-home .ay-message,
body.aynoot-theme.ay-light .ay-home .ay-empty-state,
body.aynoot-theme.ay-light .ay-home .ay-feature,
body.aynoot-theme.ay-light .ay-home .ay-server-card,
body.aynoot-theme.ay-light .ay-home .ay-news-card,
body.aynoot-theme.ay-light .ay-home .ay-launcher-panel,
body.aynoot-theme.ay-light .ay-home .ay-community-card,
body.aynoot-theme.ay-light .ay-home .ay-streamer-card {
    border-color: rgba(255, 255, 255, .72) !important;
    background:
        radial-gradient(circle at 16% 0%, rgba(255, 255, 255, .82), transparent 35%),
        radial-gradient(circle at 88% 16%, rgba(58, 170, 53, .18), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, .66), rgba(255, 255, 255, .31) 42%, rgba(205, 245, 184, .28)),
        rgba(255, 255, 255, .46) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .92),
        inset 0 -1px 0 rgba(255, 255, 255, .38),
        0 24px 72px rgba(23, 32, 22, .16),
        0 0 0 1px rgba(58, 170, 53, .06) !important;
}

body.aynoot-theme.ay-light .ay-home .ay-status-card::before,
body.aynoot-theme.ay-light .ay-home .ay-about-visual::before,
body.aynoot-theme.ay-light .ay-home .ay-project-panel::before,
body.aynoot-theme.ay-light .ay-home .ay-message::before,
body.aynoot-theme.ay-light .ay-home .ay-empty-state::before,
body.aynoot-theme.ay-light .ay-home .ay-feature::before,
body.aynoot-theme.ay-light .ay-home .ay-server-card::before,
body.aynoot-theme.ay-light .ay-home .ay-news-card::before,
body.aynoot-theme.ay-light .ay-home .ay-launcher-panel::before,
body.aynoot-theme.ay-light .ay-home .ay-community-card::before,
body.aynoot-theme.ay-light .ay-home .ay-streamer-card::before {
    opacity: .9;
    background:
        linear-gradient(125deg, rgba(255, 255, 255, .76) 0%, transparent 35%),
        linear-gradient(305deg, rgba(255, 255, 255, .24) 0%, transparent 28%);
}

body.aynoot-theme.ay-light .ay-home .ay-about-split > div:last-child {
    border-color: rgba(255, 255, 255, .62) !important;
    background:
        radial-gradient(circle at 12% 0%, rgba(255, 255, 255, .72), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, .52), rgba(246, 250, 242, .24)),
        rgba(255, 255, 255, .34) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .78),
        0 20px 64px rgba(23, 32, 22, .12);
}

body.aynoot-theme.ay-light .ay-home .ay-launcher-card,
body.aynoot-theme.ay-light .ay-home .ay-about-version,
body.aynoot-theme.ay-light .ay-home .ay-tag-list span {
    border-color: rgba(255, 255, 255, .62) !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .62), rgba(255, 255, 255, .28)),
        rgba(255, 255, 255, .32) !important;
}

/* Final seamless glass background */
body.aynoot-theme .ay-lovable-hero,
body.aynoot-theme.ay-light .ay-lovable-hero {
    background: transparent !important;
}

body.aynoot-theme .ay-lovable-hero::after,
body.aynoot-theme.ay-light .ay-lovable-hero::after {
    display: none !important;
    content: none !important;
}

/* Final waves, menu and theme-toggle polish */
body.aynoot-theme {
    --ay-band-bg: #242724;
    --ay-band-bg-2: #1e221f;
    --ay-band-glow: rgba(58, 170, 53, .14);
    --ay-wave-top: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 160' preserveAspectRatio='none'%3E%3Cpath fill='black' d='M0 78C130 34 260 34 390 78C520 122 650 122 780 78C910 34 1040 34 1170 78C1300 122 1370 116 1440 94V160H0Z'/%3E%3C/svg%3E");
    --ay-wave-bottom: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 160' preserveAspectRatio='none'%3E%3Cpath fill='black' d='M0 0H1440V82C1310 126 1180 126 1050 82C920 38 790 38 660 82C530 126 400 126 270 82C140 38 70 44 0 66Z'/%3E%3C/svg%3E");
    background:
        linear-gradient(180deg, rgba(3, 10, 8, .18) 0%, rgba(5, 10, 7, .5) 42%, rgba(5, 10, 7, .72) 100%),
        var(--ay-background-image) center top / cover fixed no-repeat,
        var(--ay-bg) !important;
}

body.aynoot-theme.ay-light {
    --ay-band-bg: #e7eee5;
    --ay-band-bg-2: #dbe8d7;
    --ay-band-glow: rgba(58, 170, 53, .18);
    background:
        radial-gradient(circle at 18% 8%, rgba(255, 230, 130, .28), transparent 34rem),
        radial-gradient(circle at 78% 12%, rgba(92, 205, 88, .24), transparent 34rem),
        linear-gradient(180deg, rgba(255, 253, 239, .9) 0%, rgba(238, 248, 232, .83) 44%, rgba(226, 242, 221, .9) 100%),
        var(--ay-background-image) center top / cover fixed no-repeat,
        #eef7e8 !important;
}

body.aynoot-theme .ay-navbar-wrap,
body.aynoot-theme.ay-light .ay-navbar-wrap {
    border-bottom: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
}

body.aynoot-theme .ay-navbar {
    background: transparent !important;
}

body.aynoot-theme .ay-navbar .nav-link {
    min-height: 38px;
    margin: 0 .5rem !important;
    padding: .48rem .04rem .58rem !important;
    color: color-mix(in srgb, var(--ay-muted), var(--ay-text) 12%) !important;
    border-radius: 0 !important;
    background: transparent !important;
    transition: color .18s ease !important;
}

body.aynoot-theme .ay-navbar .nav-link::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: .24rem !important;
    display: block !important;
    width: auto !important;
    height: 2px !important;
    border-radius: 999px !important;
    background: linear-gradient(90deg, var(--ay-primary), #9be86a) !important;
    opacity: .95 !important;
    transform: scaleX(0) !important;
    transform-origin: left center !important;
    transition: transform .24s ease !important;
}

body.aynoot-theme .ay-navbar .nav-link::after {
    display: none !important;
}

body.aynoot-theme .ay-navbar .nav-link:hover,
body.aynoot-theme .ay-navbar .nav-link.active,
body.aynoot-theme.ay-light .ay-navbar .nav-link:hover,
body.aynoot-theme.ay-light .ay-navbar .nav-link.active {
    color: var(--ay-text) !important;
    background: transparent !important;
}

body.aynoot-theme .ay-navbar .nav-link:hover::before,
body.aynoot-theme .ay-navbar .nav-link.active::before {
    transform: scaleX(1) !important;
}

body.aynoot-theme .ay-theme-toggle {
    border-color: rgba(255, 255, 255, .2) !important;
    background:
        radial-gradient(circle at 35% 18%, rgba(255, 224, 94, .34), transparent 42%),
        linear-gradient(135deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .035)),
        rgba(8, 17, 11, .42) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .24),
        0 10px 26px rgba(0, 0, 0, .2);
    -webkit-backdrop-filter: blur(18px) saturate(1.3);
    backdrop-filter: blur(18px) saturate(1.3);
}

body.aynoot-theme.ay-light .ay-theme-toggle {
    border-color: rgba(255, 255, 255, .78) !important;
    background:
        radial-gradient(circle at 45% 18%, rgba(255, 217, 82, .72), transparent 48%),
        radial-gradient(circle at 70% 78%, rgba(58, 170, 53, .2), transparent 46%),
        rgba(255, 255, 255, .54) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .82),
        0 12px 30px rgba(58, 170, 53, .16);
}

body.aynoot-theme .ay-theme-toggle img {
    transform-origin: center;
    transition: transform .34s ease, filter .2s ease;
}

body.aynoot-theme.ay-light .ay-theme-toggle img {
    transform: scaleY(-1);
    filter: drop-shadow(0 6px 10px rgba(112, 84, 0, .2));
}

body.aynoot-theme .ay-theme-toggle:hover img {
    transform: rotate(12deg) scale(1.07);
}

body.aynoot-theme.ay-light .ay-theme-toggle:hover img {
    transform: scaleY(-1) rotate(12deg) scale(1.07);
}

body.aynoot-theme .ay-hero-actions .ay-btn-quiet {
    display: none !important;
}

body.aynoot-theme .ay-home > #about,
body.aynoot-theme .ay-home > .ay-section-features {
    background:
        radial-gradient(circle at 15% 0%, var(--ay-band-glow), transparent 36rem),
        radial-gradient(circle at 88% 18%, rgba(139, 95, 61, .11), transparent 34rem),
        linear-gradient(180deg, var(--ay-band-bg), var(--ay-band-bg-2)) !important;
}

body.aynoot-theme .ay-home > #about {
    padding-top: clamp(7rem, 10vw, 10rem);
}

body.aynoot-theme .ay-home > #about::before,
body.aynoot-theme .ay-footer::before {
    content: "" !important;
    position: absolute;
    left: 0;
    right: 0;
    top: -1px;
    z-index: 0;
    height: clamp(86px, 9vw, 142px);
    pointer-events: none;
    background:
        radial-gradient(circle at 70% 0%, var(--ay-band-glow), transparent 28rem),
        var(--ay-band-bg);
    -webkit-mask: var(--ay-wave-top) center top / 100% 100% no-repeat;
    mask: var(--ay-wave-top) center top / 100% 100% no-repeat;
    transform: translateY(-100%);
}

body.aynoot-theme .ay-home > .ay-section-features {
    padding-bottom: clamp(7rem, 10vw, 10rem);
}

body.aynoot-theme .ay-home > .ay-section-features::after {
    content: "" !important;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    z-index: 0;
    height: clamp(86px, 9vw, 142px);
    pointer-events: none;
    background:
        radial-gradient(circle at 32% 100%, var(--ay-band-glow), transparent 28rem),
        var(--ay-band-bg-2);
    -webkit-mask: var(--ay-wave-bottom) center bottom / 100% 100% no-repeat;
    mask: var(--ay-wave-bottom) center bottom / 100% 100% no-repeat;
    transform: translateY(100%);
}

body.aynoot-theme .ay-home > #about > .container,
body.aynoot-theme .ay-home > .ay-section-features > .container {
    position: relative;
    z-index: 1;
}

body.aynoot-theme .ay-home > .ay-section-servers,
body.aynoot-theme .ay-home > #news,
body.aynoot-theme .ay-home > .ay-launcher-section,
body.aynoot-theme .ay-home > .ay-streamers-section {
    padding-top: clamp(7rem, 10vw, 10rem);
}

body.aynoot-theme .ay-footer {
    position: relative;
    margin-top: clamp(5rem, 8vw, 8rem);
    border-top: 0 !important;
    background:
        radial-gradient(circle at 18% 0%, var(--ay-band-glow), transparent 34rem),
        linear-gradient(180deg, var(--ay-band-bg), var(--ay-band-bg-2)) !important;
    overflow: visible;
}

body.aynoot-theme.ay-light .ay-footer {
    background:
        radial-gradient(circle at 18% 0%, rgba(58, 170, 53, .14), transparent 34rem),
        linear-gradient(180deg, #e7eee5, #dbe8d7) !important;
}

body.aynoot-theme.ay-light .ay-navbar .nav-link {
    color: color-mix(in srgb, var(--ay-muted), var(--ay-text) 16%) !important;
}

/* Final dark-top and wave seam cleanup */
body.aynoot-theme.ay-dark {
    background:
        linear-gradient(180deg, rgba(3, 9, 8, .72) 0%, rgba(5, 11, 8, .5) 44%, rgba(5, 10, 7, .76) 100%),
        var(--ay-background-image) center top / cover fixed no-repeat,
        var(--ay-bg) !important;
}

body.aynoot-theme.ay-dark .ay-home > #about {
    margin-top: -2px;
}

body.aynoot-theme .ay-home > #about,
body.aynoot-theme .ay-home > .ay-section-features {
    border-top: 0 !important;
    border-bottom: 0 !important;
}

body.aynoot-theme .ay-home > #about::before {
    top: 0;
}

/* Final seam removal and plain community section */
body.aynoot-theme .ay-home > #about {
    margin-top: 0 !important;
}

body.aynoot-theme .ay-home > #about::before,
body.aynoot-theme .ay-footer::before {
    top: 6px !important;
    height: clamp(94px, 9.5vw, 152px) !important;
}

body.aynoot-theme .ay-home > .ay-section-features::after {
    bottom: 6px !important;
    height: clamp(94px, 9.5vw, 152px) !important;
}

body.aynoot-theme .ay-home > #about,
body.aynoot-theme .ay-home > .ay-section-features,
body.aynoot-theme .ay-footer {
    outline: 0 !important;
    box-shadow: none !important;
}

body.aynoot-theme .ay-home > .ay-community,
body.aynoot-theme.ay-light .ay-home > .ay-community {
    background: transparent !important;
}

body.aynoot-theme .ay-home .ay-community .ay-community-card {
    border-color: rgba(255, 255, 255, .12) !important;
    background: rgba(255, 255, 255, .045) !important;
    box-shadow: none !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
}

body.aynoot-theme .ay-home .ay-community .ay-community-card::before {
    display: none !important;
    content: none !important;
}

body.aynoot-theme.ay-light .ay-home .ay-community .ay-community-card {
    border-color: rgba(58, 170, 53, .16) !important;
    background: rgba(255, 255, 255, .36) !important;
}

/* Final softer wave transitions */
body.aynoot-theme {
    --ay-soft-wave-top: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 160' preserveAspectRatio='none'%3E%3Cpath fill='black' d='M0 92C160 62 306 60 452 88C598 116 724 122 884 88C1044 54 1210 62 1440 92V160H0Z'/%3E%3C/svg%3E");
    --ay-soft-wave-bottom: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 160' preserveAspectRatio='none'%3E%3Cpath fill='black' d='M0 0H1440V70C1260 102 1112 104 958 76C804 48 682 42 522 76C362 110 204 102 0 74Z'/%3E%3C/svg%3E");
}

body.aynoot-theme .ay-home > #about {
    margin-top: -1px !important;
    padding-top: clamp(6.2rem, 8vw, 8.5rem) !important;
}

body.aynoot-theme .ay-home > #about::before,
body.aynoot-theme .ay-footer::before {
    top: -132px !important;
    height: 150px !important;
    transform: none !important;
    background:
        linear-gradient(180deg, transparent 0%, color-mix(in srgb, var(--ay-band-bg), transparent 70%) 44%, var(--ay-band-bg) 100%) !important;
    -webkit-mask: var(--ay-soft-wave-top) center bottom / 100% 100% no-repeat !important;
    mask: var(--ay-soft-wave-top) center bottom / 100% 100% no-repeat !important;
}

body.aynoot-theme .ay-home > .ay-section-features {
    padding-bottom: clamp(6.2rem, 8vw, 8.5rem) !important;
}

body.aynoot-theme .ay-home > .ay-section-features::after {
    bottom: -132px !important;
    height: 150px !important;
    transform: none !important;
    background:
        linear-gradient(180deg, var(--ay-band-bg-2) 0%, color-mix(in srgb, var(--ay-band-bg-2), transparent 58%) 42%, transparent 100%) !important;
    -webkit-mask: var(--ay-soft-wave-bottom) center top / 100% 100% no-repeat !important;
    mask: var(--ay-soft-wave-bottom) center top / 100% 100% no-repeat !important;
}

body.aynoot-theme .ay-home > .ay-section-servers,
body.aynoot-theme .ay-home > #news,
body.aynoot-theme .ay-home > .ay-launcher-section,
body.aynoot-theme .ay-home > .ay-streamers-section {
    padding-top: clamp(8.2rem, 11vw, 11rem) !important;
}

body.aynoot-theme.ay-light .ay-home > #about::before,
body.aynoot-theme.ay-light .ay-footer::before {
    background:
        linear-gradient(180deg, transparent 0%, rgba(231, 238, 229, .42) 44%, var(--ay-band-bg) 100%) !important;
}

body.aynoot-theme.ay-light .ay-home > .ay-section-features::after {
    background:
        linear-gradient(180deg, var(--ay-band-bg-2) 0%, rgba(219, 232, 215, .42) 46%, transparent 100%) !important;
}

/* Final linear gradient transitions and animated theme icon */
body.aynoot-theme {
    --ay-main-gradient-start: #202821;
    --ay-main-gradient-end: #252623;
    --ay-main-gradient-glow: rgba(58, 170, 53, .16);
    --ay-main-gradient-warm: rgba(139, 95, 61, .09);
}

body.aynoot-theme.ay-light {
    --ay-main-gradient-start: #eef4ed;
    --ay-main-gradient-end: #dcebd8;
    --ay-main-gradient-glow: rgba(58, 170, 53, .18);
    --ay-main-gradient-warm: rgba(255, 220, 128, .14);
}

body.aynoot-theme .ay-theme-toggle img {
    width: 30px !important;
    height: 30px !important;
    object-fit: contain;
    image-rendering: auto !important;
}

body.aynoot-theme .ay-home > #about,
body.aynoot-theme .ay-home > .ay-section-features,
body.aynoot-theme .ay-home > .ay-section-servers,
body.aynoot-theme .ay-home > #news,
body.aynoot-theme .ay-home > .ay-launcher-section,
body.aynoot-theme .ay-home > .ay-streamers-section {
    background:
        radial-gradient(circle at 16% 4%, var(--ay-main-gradient-glow), transparent 34rem),
        radial-gradient(circle at 86% 42%, var(--ay-main-gradient-warm), transparent 36rem),
        linear-gradient(180deg, var(--ay-main-gradient-start), var(--ay-main-gradient-end)) !important;
}

body.aynoot-theme .ay-home > #about {
    margin-top: 0 !important;
    padding-top: clamp(7.5rem, 10vw, 10.5rem) !important;
}

body.aynoot-theme .ay-home > #about::before {
    content: "" !important;
    position: absolute;
    left: 0;
    right: 0;
    top: 0 !important;
    z-index: 0;
    height: clamp(125px, 14vw, 220px) !important;
    pointer-events: none;
    transform: translateY(-100%) !important;
    background:
        linear-gradient(180deg, transparent 0%, color-mix(in srgb, var(--ay-main-gradient-start), transparent 84%) 20%, color-mix(in srgb, var(--ay-main-gradient-start), transparent 36%) 64%, var(--ay-main-gradient-start) 100%) !important;
    -webkit-mask: none !important;
    mask: none !important;
}

body.aynoot-theme .ay-home > .ay-section-features::after,
body.aynoot-theme .ay-footer::before {
    display: none !important;
    content: none !important;
    -webkit-mask: none !important;
    mask: none !important;
}

body.aynoot-theme .ay-home > .ay-section-servers,
body.aynoot-theme .ay-home > #news,
body.aynoot-theme .ay-home > .ay-launcher-section,
body.aynoot-theme .ay-home > .ay-streamers-section {
    padding-top: clamp(6.5rem, 9vw, 9rem) !important;
}

body.aynoot-theme .ay-home > .ay-streamers-section {
    position: relative;
    padding-bottom: clamp(8rem, 12vw, 12rem) !important;
}

body.aynoot-theme .ay-home > .ay-streamers-section::after {
    content: "" !important;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    height: clamp(130px, 14vw, 230px);
    pointer-events: none;
    transform: translateY(100%);
    background:
        linear-gradient(180deg, var(--ay-main-gradient-end) 0%, color-mix(in srgb, var(--ay-main-gradient-end), transparent 42%) 46%, transparent 100%) !important;
    -webkit-mask: none !important;
    mask: none !important;
}

body.aynoot-theme .ay-home > .ay-streamers-section > .container,
body.aynoot-theme .ay-home > .ay-community > .container {
    position: relative;
    z-index: 1;
}

body.aynoot-theme .ay-home > .ay-community {
    padding-top: clamp(7.5rem, 10vw, 10rem) !important;
    background: transparent !important;
}

body.aynoot-theme .ay-lovable-hero::after,
body.aynoot-theme.ay-light .ay-lovable-hero::after {
    content: "" !important;
    display: block !important;
    position: absolute;
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    z-index: 0;
    height: clamp(220px, 28vh, 390px) !important;
    pointer-events: none;
    background:
        linear-gradient(180deg, transparent 0%, color-mix(in srgb, var(--ay-main-gradient-start), transparent 72%) 42%, color-mix(in srgb, var(--ay-main-gradient-start), transparent 18%) 78%, var(--ay-main-gradient-start) 100%) !important;
    -webkit-mask: none !important;
    mask: none !important;
}

/* Final continuous home gradient zone and one-shot theme icon */
body.aynoot-theme {
    --ay-main-gradient-mid: #1f2f22;
}

body.aynoot-theme.ay-light {
    --ay-main-gradient-mid: #d7efd3;
}

body.aynoot-theme .ay-gradient-zone {
    position: relative;
    isolation: isolate;
    overflow: visible;
    background:
        radial-gradient(circle at 16% 8%, var(--ay-main-gradient-glow), transparent 38rem),
        radial-gradient(circle at 86% 54%, var(--ay-main-gradient-warm), transparent 42rem),
        linear-gradient(180deg, var(--ay-main-gradient-start) 0%, var(--ay-main-gradient-mid) 48%, var(--ay-main-gradient-end) 100%) !important;
}

body.aynoot-theme .ay-gradient-zone::before,
body.aynoot-theme .ay-gradient-zone::after {
    content: "" !important;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 0;
    pointer-events: none;
    -webkit-mask: none !important;
    mask: none !important;
}

body.aynoot-theme .ay-gradient-zone::before {
    top: 0;
    height: clamp(140px, 16vw, 260px);
    transform: translateY(-100%);
    background:
        linear-gradient(180deg, transparent 0%, color-mix(in srgb, var(--ay-main-gradient-start), transparent 70%) 38%, var(--ay-main-gradient-start) 100%) !important;
}

body.aynoot-theme .ay-gradient-zone::after {
    bottom: 0;
    height: clamp(160px, 18vw, 300px);
    transform: translateY(100%);
    background:
        linear-gradient(180deg, var(--ay-main-gradient-end) 0%, color-mix(in srgb, var(--ay-main-gradient-end), transparent 46%) 46%, transparent 100%) !important;
}

body.aynoot-theme .ay-gradient-zone > .ay-section {
    position: relative;
    z-index: 1;
    background: transparent !important;
}

body.aynoot-theme .ay-gradient-zone > #about {
    margin-top: 0 !important;
    padding-top: clamp(7.5rem, 10vw, 10.5rem) !important;
}

body.aynoot-theme .ay-gradient-zone > .ay-section-features,
body.aynoot-theme .ay-gradient-zone > .ay-section-servers,
body.aynoot-theme .ay-gradient-zone > #news,
body.aynoot-theme .ay-gradient-zone > .ay-launcher-section,
body.aynoot-theme .ay-gradient-zone > .ay-streamers-section {
    padding-top: clamp(6.5rem, 9vw, 9rem) !important;
}

body.aynoot-theme .ay-gradient-zone > .ay-streamers-section {
    padding-bottom: clamp(8rem, 12vw, 12rem) !important;
}

body.aynoot-theme .ay-gradient-zone > #about::before,
body.aynoot-theme .ay-gradient-zone > .ay-section-features::after,
body.aynoot-theme .ay-gradient-zone > .ay-streamers-section::after {
    display: none !important;
    content: none !important;
}

body.aynoot-theme .ay-theme-toggle img,
body.aynoot-theme.ay-light .ay-theme-toggle img,
body.aynoot-theme .ay-theme-toggle:hover img,
body.aynoot-theme.ay-light .ay-theme-toggle:hover img {
    transform: none !important;
}

body.aynoot-theme .ay-theme-toggle img.is-playing {
    filter: drop-shadow(0 6px 12px rgba(255, 218, 78, .22));
}

/* Final sync polish: no icon backdrop leak, softer hero-to-gradient overlap */
body.aynoot-theme .ay-theme-toggle {
    overflow: hidden;
}

body.aynoot-theme .ay-theme-toggle:disabled {
    cursor: wait;
}

body.aynoot-theme .ay-theme-toggle img {
    background: transparent !important;
}

body.aynoot-theme .ay-lovable-hero::after,
body.aynoot-theme.ay-light .ay-lovable-hero::after {
    bottom: -2px;
    height: clamp(300px, 38vh, 560px) !important;
    background:
        linear-gradient(180deg, transparent 0%, color-mix(in srgb, var(--ay-main-gradient-start), transparent 88%) 22%, color-mix(in srgb, var(--ay-main-gradient-start), transparent 48%) 58%, color-mix(in srgb, var(--ay-main-gradient-start), transparent 8%) 88%, var(--ay-main-gradient-start) 100%) !important;
}

body.aynoot-theme .ay-gradient-zone {
    margin-top: -2px;
}

body.aynoot-theme .ay-gradient-zone::before {
    top: clamp(-260px, -16vw, -140px);
    height: clamp(280px, 24vw, 440px);
    transform: none;
    background:
        linear-gradient(180deg, transparent 0%, color-mix(in srgb, var(--ay-main-gradient-start), transparent 82%) 28%, color-mix(in srgb, var(--ay-main-gradient-start), transparent 28%) 62%, var(--ay-main-gradient-start) 82%, color-mix(in srgb, var(--ay-main-gradient-start), var(--ay-main-gradient-mid) 22%) 100%) !important;
}

/* Final overlap fix for the first gradient seam */
body.aynoot-theme {
    --ay-zone-overlap: clamp(130px, 12vw, 220px);
}

body.aynoot-theme .ay-lovable-hero {
    position: relative;
    z-index: 2;
}

body.aynoot-theme .ay-gradient-zone {
    z-index: 1;
    margin-top: calc(-1 * var(--ay-zone-overlap));
    padding-top: var(--ay-zone-overlap);
    background:
        radial-gradient(circle at 18% 28%, var(--ay-main-gradient-glow), transparent 42rem),
        radial-gradient(circle at 86% 58%, var(--ay-main-gradient-warm), transparent 44rem),
        linear-gradient(180deg, var(--ay-main-gradient-start) 0%, var(--ay-main-gradient-mid) 48%, var(--ay-main-gradient-end) 100%) !important;
}

body.aynoot-theme .ay-gradient-zone::before {
    top: calc(-1 * var(--ay-zone-overlap));
    height: calc(var(--ay-zone-overlap) + clamp(150px, 14vw, 260px));
    background:
        linear-gradient(180deg, transparent 0%, color-mix(in srgb, var(--ay-main-gradient-start), transparent 84%) 24%, color-mix(in srgb, var(--ay-main-gradient-start), transparent 34%) 58%, var(--ay-main-gradient-start) 82%, color-mix(in srgb, var(--ay-main-gradient-start), var(--ay-main-gradient-mid) 16%) 100%) !important;
}

/* Final denser hero dissolve */
body.aynoot-theme .ay-lovable-hero::after,
body.aynoot-theme.ay-light .ay-lovable-hero::after {
    z-index: 1;
    height: clamp(430px, 58vh, 760px) !important;
    background:
        linear-gradient(180deg, transparent 0%, color-mix(in srgb, var(--ay-main-gradient-start), transparent 86%) 18%, color-mix(in srgb, var(--ay-main-gradient-start), transparent 54%) 42%, color-mix(in srgb, var(--ay-main-gradient-start), transparent 16%) 68%, var(--ay-main-gradient-start) 88%, var(--ay-main-gradient-start) 100%) !important;
}

body.aynoot-theme .ay-lovable-hero .container,
body.aynoot-theme .ay-lovable-hero .ay-hero-grid {
    position: relative;
    z-index: 2;
}

/* Final image-continuation fade at the start of the gradient zone */
body.aynoot-theme .ay-gradient-zone::before {
    top: 0;
    height: clamp(320px, 34vw, 560px);
    transform: none;
    background:
        linear-gradient(180deg, color-mix(in srgb, var(--ay-main-gradient-start), transparent 78%) 0%, color-mix(in srgb, var(--ay-main-gradient-start), transparent 42%) 38%, var(--ay-main-gradient-start) 78%, color-mix(in srgb, var(--ay-main-gradient-start), var(--ay-main-gradient-mid) 18%) 100%),
        var(--ay-background-image) center top / cover fixed no-repeat !important;
}

/* Final seam reset: keep the zone below hero and dissolve only inside hero */
body.aynoot-theme .ay-gradient-zone {
    margin-top: 0 !important;
    padding-top: 0 !important;
    background:
        radial-gradient(circle at 18% 28%, var(--ay-main-gradient-glow), transparent 42rem),
        radial-gradient(circle at 86% 58%, var(--ay-main-gradient-warm), transparent 44rem),
        linear-gradient(180deg, var(--ay-main-gradient-start) 0%, var(--ay-main-gradient-mid) 48%, var(--ay-main-gradient-end) 100%) !important;
}

body.aynoot-theme .ay-gradient-zone::before {
    top: 0;
    height: clamp(170px, 16vw, 280px);
    transform: translateY(-100%);
    background:
        linear-gradient(180deg, transparent 0%, color-mix(in srgb, var(--ay-main-gradient-start), transparent 76%) 34%, color-mix(in srgb, var(--ay-main-gradient-start), transparent 22%) 72%, var(--ay-main-gradient-start) 100%) !important;
}

body.aynoot-theme .ay-lovable-hero::after,
body.aynoot-theme.ay-light .ay-lovable-hero::after {
    height: clamp(500px, 66vh, 820px) !important;
    background:
        linear-gradient(180deg, transparent 0%, color-mix(in srgb, var(--ay-main-gradient-start), transparent 88%) 14%, color-mix(in srgb, var(--ay-main-gradient-start), transparent 56%) 34%, color-mix(in srgb, var(--ay-main-gradient-start), transparent 20%) 58%, var(--ay-main-gradient-start) 82%, var(--ay-main-gradient-start) 100%) !important;
}

/* Final performance pass */
body.aynoot-theme,
body.aynoot-theme.ay-dark,
body.aynoot-theme.ay-light {
    background-attachment: scroll !important;
}

body.aynoot-theme *,
body.aynoot-theme *::before,
body.aynoot-theme *::after {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
}

body.aynoot-theme .ay-cube-card img,
body.aynoot-theme .ay-hero-art img,
body.aynoot-theme .ay-about-visual img {
    animation: none !important;
    filter: none !important;
}

body.aynoot-theme .ay-live-dot,
body.aynoot-theme .ay-status.online,
body.aynoot-theme .ay-streamer-dot {
    animation: none !important;
    box-shadow: none !important;
}

body.aynoot-theme .ay-theme-toggle img {
    width: 30px !important;
    height: 30px !important;
    image-rendering: pixelated !important;
}

body.aynoot-theme .ay-theme-toggle img.is-playing {
    filter: none !important;
}

body.aynoot-theme .ay-gradient-zone > .ay-section-servers,
body.aynoot-theme .ay-gradient-zone > #news,
body.aynoot-theme .ay-gradient-zone > .ay-launcher-section,
body.aynoot-theme .ay-gradient-zone > .ay-streamers-section,
body.aynoot-theme .ay-home > .ay-community {
    content-visibility: auto;
    contain-intrinsic-size: auto 720px;
}

/* Final background containment */
body.aynoot-theme,
body.aynoot-theme.ay-dark {
    background:
        radial-gradient(circle at 18% 0%, rgba(58, 170, 53, .12), transparent 34rem),
        radial-gradient(circle at 86% 18%, rgba(139, 95, 61, .08), transparent 38rem),
        linear-gradient(180deg, #07100b 0%, #151c16 48%, #07100b 100%) !important;
    background-attachment: scroll !important;
}

body.aynoot-theme.ay-light {
    background:
        radial-gradient(circle at 18% 0%, rgba(116, 212, 88, .2), transparent 34rem),
        radial-gradient(circle at 88% 16%, rgba(255, 220, 128, .14), transparent 38rem),
        linear-gradient(180deg, #f5f8f3 0%, #e9f4e5 48%, #f6faf3 100%) !important;
    background-attachment: scroll !important;
}

body.aynoot-theme .ay-home {
    background:
        linear-gradient(180deg, rgba(7, 16, 11, .18) 0%, rgba(7, 16, 11, .82) 54%, #07100b 100%) !important;
}

body.aynoot-theme.ay-light .ay-home {
    background:
        linear-gradient(180deg, rgba(245, 248, 243, .28) 0%, rgba(233, 244, 229, .86) 54%, #f6faf3 100%) !important;
}

body.aynoot-theme .ay-lovable-hero {
    background:
        linear-gradient(180deg, rgba(5, 11, 8, .08) 0%, rgba(5, 11, 8, .36) 62%, rgba(32, 40, 33, .94) 100%),
        linear-gradient(90deg, rgba(5, 11, 8, .76) 0%, rgba(5, 11, 8, .34) 54%, rgba(0, 0, 0, .5) 100%),
        var(--ay-hero-image) center top / cover no-repeat !important;
}

body.aynoot-theme.ay-light .ay-lovable-hero {
    background:
        linear-gradient(180deg, rgba(247, 250, 244, .24) 0%, rgba(235, 246, 230, .5) 62%, rgba(238, 244, 237, .96) 100%),
        linear-gradient(90deg, rgba(247, 250, 244, .88) 0%, rgba(239, 247, 235, .58) 54%, rgba(203, 241, 184, .42) 100%),
        var(--ay-hero-image) center top / cover no-repeat !important;
}

body.aynoot-theme .ay-lovable-hero::after,
body.aynoot-theme.ay-light .ay-lovable-hero::after {
    content: "" !important;
    display: block !important;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    z-index: 0;
    height: clamp(260px, 34vh, 500px) !important;
    pointer-events: none;
    background:
        linear-gradient(180deg, transparent 0%, color-mix(in srgb, var(--ay-main-gradient-start), transparent 72%) 38%, color-mix(in srgb, var(--ay-main-gradient-start), transparent 16%) 74%, var(--ay-main-gradient-start) 100%) !important;
}

body.aynoot-theme .ay-gradient-zone {
    background:
        radial-gradient(circle at 18% 22%, var(--ay-main-gradient-glow), transparent 42rem),
        radial-gradient(circle at 86% 58%, var(--ay-main-gradient-warm), transparent 44rem),
        linear-gradient(180deg, var(--ay-main-gradient-start) 0%, var(--ay-main-gradient-mid) 48%, var(--ay-main-gradient-end) 100%) !important;
}

body.aynoot-theme .ay-gradient-zone::before {
    display: none !important;
    content: none !important;
}

body.aynoot-theme .ay-gradient-zone::after {
    display: block !important;
    content: "" !important;
    height: clamp(210px, 22vw, 340px);
    background:
        linear-gradient(180deg, var(--ay-main-gradient-end) 0%, color-mix(in srgb, var(--ay-main-gradient-end), transparent 34%) 52%, transparent 100%) !important;
}

body.aynoot-theme .ay-home > .ay-community {
    position: relative;
    padding-top: clamp(7.5rem, 10vw, 10rem) !important;
    background:
        radial-gradient(circle at 50% 0%, rgba(58, 170, 53, .1), transparent 36rem),
        linear-gradient(180deg, #07100b 0%, #0b130d 100%) !important;
}

body.aynoot-theme.ay-light .ay-home > .ay-community {
    background:
        radial-gradient(circle at 50% 0%, rgba(58, 170, 53, .14), transparent 36rem),
        linear-gradient(180deg, #f1f8ee 0%, #f8fbf5 100%) !important;
}

body.aynoot-theme .ay-footer {
    background:
        radial-gradient(circle at 20% 0%, rgba(58, 170, 53, .09), transparent 34rem),
        linear-gradient(180deg, #0b130d 0%, #050806 100%) !important;
}

body.aynoot-theme.ay-light .ay-footer {
    background:
        radial-gradient(circle at 20% 0%, rgba(58, 170, 53, .12), transparent 34rem),
        linear-gradient(180deg, #f8fbf5 0%, #eef5eb 100%) !important;
}

/* Final footer fade continuity */
body.aynoot-theme {
    --ay-community-start: #07100b;
    --ay-community-mid: #08130c;
    --ay-community-end: #040a06;
    --ay-footer-end: #030604;
}

body.aynoot-theme.ay-light {
    --ay-community-start: #f1f8ee;
    --ay-community-mid: #f4faf1;
    --ay-community-end: #f8fbf5;
    --ay-footer-end: #edf5ea;
}

body.aynoot-theme .ay-home > .ay-community {
    overflow: hidden;
    padding-bottom: clamp(8rem, 11vw, 12rem) !important;
    background:
        radial-gradient(ellipse at 50% -4%, rgba(58, 170, 53, .1), transparent 38rem),
        radial-gradient(ellipse at 50% 82%, rgba(58, 170, 53, .045), transparent 36rem),
        linear-gradient(180deg, var(--ay-community-start) 0%, var(--ay-community-mid) 56%, var(--ay-community-end) 100%) !important;
}

body.aynoot-theme.ay-light .ay-home > .ay-community {
    background:
        radial-gradient(ellipse at 50% -4%, rgba(58, 170, 53, .15), transparent 38rem),
        radial-gradient(ellipse at 50% 82%, rgba(58, 170, 53, .09), transparent 36rem),
        linear-gradient(180deg, var(--ay-community-start) 0%, var(--ay-community-mid) 56%, var(--ay-community-end) 100%) !important;
}

body.aynoot-theme .ay-home > .ay-community::after {
    content: "" !important;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    height: clamp(180px, 18vw, 320px);
    pointer-events: none;
    background:
        linear-gradient(180deg, transparent 0%, color-mix(in srgb, var(--ay-community-end), transparent 42%) 58%, var(--ay-community-end) 100%) !important;
}

body.aynoot-theme .ay-footer {
    margin-top: 0 !important;
    border-top: 0 !important;
    background:
        linear-gradient(180deg, var(--ay-community-end) 0%, color-mix(in srgb, var(--ay-community-end), var(--ay-footer-end) 48%) 40%, var(--ay-footer-end) 100%) !important;
}

body.aynoot-theme.ay-light .ay-footer {
    background:
        linear-gradient(180deg, var(--ay-community-end) 0%, color-mix(in srgb, var(--ay-community-end), var(--ay-footer-end) 48%) 40%, var(--ay-footer-end) 100%) !important;
}

body.aynoot-theme .ay-footer::before {
    display: none !important;
    content: none !important;
}

/* Absolute final profile arrow fix */
body.aynoot-theme .ay-user-btn .ay-user-chevron,
body.aynoot-theme .ay-user-btn .bi-chevron-down,
body.aynoot-theme .ay-user-btn i {
    display: none !important;
}

body.aynoot-theme .ay-user-btn::before,
body.aynoot-theme .ay-user-btn::after {
    display: none !important;
    content: none !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

body.aynoot-theme .ay-user-btn .ay-user-arrow {
    display: block !important;
    flex: 0 0 auto !important;
    width: 10px !important;
    height: 6px !important;
    margin-left: .05rem !important;
    color: currentColor !important;
    overflow: visible !important;
    transform: translateY(1px) !important;
    transition: transform .18s ease !important;
}

body.aynoot-theme .ay-user-btn[aria-expanded="true"] .ay-user-arrow {
    transform: translateY(1px) rotate(180deg) !important;
}

/* True final home copy, about and server card polish */
body.aynoot-theme .ay-home .ay-about-split h2 {
    max-width: 620px;
    font-size: clamp(2.6rem, 5vw, 4.35rem) !important;
    line-height: .98 !important;
    letter-spacing: 0 !important;
}

body.aynoot-theme .ay-home .ay-about-split p {
    max-width: 760px;
}

body.aynoot-theme .ay-home .ay-tag-list span {
    color: color-mix(in srgb, var(--ay-text), var(--ay-muted) 14%) !important;
}

body.aynoot-theme .ay-home .ay-server-card.ay-medieval-server-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(5, 9, 7, .88) 0%, rgba(8, 18, 10, .72) 45%, rgba(11, 30, 13, .58) 100%),
        var(--ay-server-card-bg) center / cover no-repeat !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .13),
        0 24px 70px rgba(0, 0, 0, .34) !important;
}

body.aynoot-theme .ay-home .ay-server-card.ay-medieval-server-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 12%, rgba(255, 228, 154, .28), transparent 32%),
        radial-gradient(circle at 82% 18%, rgba(81, 56, 130, .24), transparent 38%),
        linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .38));
}

body.aynoot-theme .ay-home .ay-server-card.ay-medieval-server-card h3,
body.aynoot-theme .ay-home .ay-server-card.ay-medieval-server-card p,
body.aynoot-theme .ay-home .ay-server-card.ay-medieval-server-card code,
body.aynoot-theme .ay-home .ay-server-card.ay-medieval-server-card .ay-server-card-top {
    position: relative;
    z-index: 1;
}

body.aynoot-theme .ay-home .ay-server-card.ay-medieval-server-card .ay-server-address {
    background: rgba(2, 5, 3, .78) !important;
    border-color: rgba(255, 255, 255, .08) !important;
}

body.aynoot-theme.ay-light .ay-home .ay-server-card.ay-medieval-server-card {
    background:
        linear-gradient(135deg, rgba(248, 252, 245, .86) 0%, rgba(228, 241, 220, .72) 44%, rgba(202, 232, 190, .58) 100%),
        var(--ay-server-card-bg) center / cover no-repeat !important;
}

body.aynoot-theme.ay-light .ay-home .ay-server-card.ay-medieval-server-card::before {
    background:
        radial-gradient(circle at 18% 12%, rgba(255, 228, 154, .22), transparent 32%),
        radial-gradient(circle at 82% 18%, rgba(58, 170, 53, .16), transparent 38%),
        linear-gradient(180deg, rgba(255, 255, 255, .2), rgba(255, 255, 255, .34));
}

/* Final auth and status polish */
body.aynoot-theme .ay-auth-page {
    max-width: 1400px;
}

body.aynoot-theme .ay-auth-side h2 {
    max-width: 100%;
    margin-top: .45rem !important;
    margin-bottom: 1rem !important;
    font-size: clamp(2.65rem, 4.7vw, 3.35rem) !important;
    line-height: .98 !important;
    overflow-wrap: anywhere;
}

body.aynoot-theme .ay-auth-side p:not(.ay-section-label) {
    max-width: 620px;
    font-size: 1.02rem;
}

body.aynoot-theme .ay-auth-login-benefits {
    grid-template-columns: 1fr;
    margin-top: 1.35rem !important;
}

body.aynoot-theme .ay-auth-shell.reverse {
    grid-template-columns: minmax(380px, 1fr) minmax(420px, .95fr) !important;
}

body.aynoot-theme .ay-auth-shell.reverse .ay-auth-side h2 {
    font-size: clamp(2.4rem, 4vw, 3.05rem) !important;
}

body.aynoot-theme .ay-auth-card-head {
    align-items: flex-start;
}

body.aynoot-theme .ay-auth-link {
    flex: 0 0 auto;
    white-space: nowrap;
}

body.aynoot-theme .btn-secondary,
body.aynoot-theme .btn.btn-secondary,
body.aynoot-theme .ay-content .btn-secondary,
body.aynoot-theme .ay-profile-page .btn-secondary {
    color: var(--ay-text) !important;
    border-color: color-mix(in srgb, var(--ay-primary), transparent 48%) !important;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .07)),
        color-mix(in srgb, var(--ay-card), var(--ay-primary) 10%) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .12),
        0 14px 34px rgba(0, 0, 0, .22) !important;
}

body.aynoot-theme .btn-secondary:hover,
body.aynoot-theme .btn.btn-secondary:hover,
body.aynoot-theme .ay-content .btn-secondary:hover,
body.aynoot-theme .ay-profile-page .btn-secondary:hover {
    color: #061006 !important;
    border-color: color-mix(in srgb, var(--ay-primary), #fff 12%) !important;
    background: color-mix(in srgb, var(--ay-primary), #fff 7%) !important;
}

body.aynoot-theme .ay-status {
    --ay-status-wave: rgba(198, 109, 85, .52);
    position: relative;
    overflow: visible;
    box-shadow: 0 0 0 4px rgba(198, 109, 85, .16) !important;
    animation: ayStatusDotPulse 2.4s ease-in-out infinite !important;
}

body.aynoot-theme .ay-status.online {
    --ay-status-wave: rgba(58, 170, 53, .5);
    box-shadow: 0 0 0 4px rgba(58, 170, 53, .16) !important;
}

body.aynoot-theme .ay-status::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    pointer-events: none;
    border: 1px solid var(--ay-status-wave);
    animation: ayStatusWave 2.4s ease-out infinite !important;
}

@keyframes ayStatusWave {
    0% {
        opacity: .65;
        transform: scale(1);
    }

    72% {
        opacity: 0;
        transform: scale(3.1);
    }

    100% {
        opacity: 0;
        transform: scale(3.1);
    }
}

@keyframes ayStatusDotPulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

@media (max-width: 991.98px) {
    body.aynoot-theme .ay-auth-shell,
    body.aynoot-theme .ay-auth-shell.reverse {
        grid-template-columns: 1fr !important;
    }

    body.aynoot-theme .ay-auth-shell.reverse .ay-auth-side {
        order: 0;
    }
}

@media (max-width: 575.98px) {
    body.aynoot-theme .ay-auth-side {
        min-height: auto;
        padding: 1.5rem;
    }

    body.aynoot-theme .ay-auth-side h2,
    body.aynoot-theme .ay-auth-shell.reverse .ay-auth-side h2 {
        font-size: clamp(2.1rem, 12vw, 2.65rem) !important;
    }

    body.aynoot-theme .ay-auth-logo {
        position: relative;
        top: auto;
        left: auto;
        margin-bottom: 4rem;
    }
}

/* Absolute final home copy, about and server card polish */
body.aynoot-theme .ay-home .ay-about-split h2 {
    max-width: 620px;
    font-size: clamp(2.6rem, 5vw, 4.35rem) !important;
    line-height: .98 !important;
    letter-spacing: 0 !important;
}

body.aynoot-theme .ay-home .ay-about-split p {
    max-width: 760px;
}

body.aynoot-theme .ay-home .ay-tag-list span {
    color: color-mix(in srgb, var(--ay-text), var(--ay-muted) 14%) !important;
}

body.aynoot-theme .ay-home .ay-server-card.ay-medieval-server-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(5, 9, 7, .88) 0%, rgba(8, 18, 10, .72) 45%, rgba(11, 30, 13, .58) 100%),
        var(--ay-server-card-bg) center / cover no-repeat !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .13),
        0 24px 70px rgba(0, 0, 0, .34) !important;
}

body.aynoot-theme .ay-home .ay-server-card.ay-medieval-server-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 12%, rgba(255, 228, 154, .28), transparent 32%),
        radial-gradient(circle at 82% 18%, rgba(81, 56, 130, .24), transparent 38%),
        linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .38));
}

body.aynoot-theme .ay-home .ay-server-card.ay-medieval-server-card h3,
body.aynoot-theme .ay-home .ay-server-card.ay-medieval-server-card p,
body.aynoot-theme .ay-home .ay-server-card.ay-medieval-server-card code,
body.aynoot-theme .ay-home .ay-server-card.ay-medieval-server-card .ay-server-card-top {
    position: relative;
    z-index: 1;
}

body.aynoot-theme .ay-home .ay-server-card.ay-medieval-server-card .ay-server-address {
    background: rgba(2, 5, 3, .78) !important;
    border-color: rgba(255, 255, 255, .08) !important;
}

body.aynoot-theme.ay-light .ay-home .ay-server-card.ay-medieval-server-card {
    background:
        linear-gradient(135deg, rgba(248, 252, 245, .86) 0%, rgba(228, 241, 220, .72) 44%, rgba(202, 232, 190, .58) 100%),
        var(--ay-server-card-bg) center / cover no-repeat !important;
}

body.aynoot-theme.ay-light .ay-home .ay-server-card.ay-medieval-server-card::before {
    background:
        radial-gradient(circle at 18% 12%, rgba(255, 228, 154, .22), transparent 32%),
        radial-gradient(circle at 82% 18%, rgba(58, 170, 53, .16), transparent 38%),
        linear-gradient(180deg, rgba(255, 255, 255, .2), rgba(255, 255, 255, .34));
}

/* Final home copy, about and server card polish */
body.aynoot-theme .ay-home .ay-about-split h2 {
    max-width: 620px;
    font-size: clamp(2.6rem, 5vw, 4.35rem) !important;
    line-height: .98 !important;
    letter-spacing: 0 !important;
}

body.aynoot-theme .ay-home .ay-about-split p {
    max-width: 760px;
}

body.aynoot-theme .ay-home .ay-tag-list span {
    color: color-mix(in srgb, var(--ay-text), var(--ay-muted) 14%) !important;
}

body.aynoot-theme .ay-home .ay-server-card.ay-medieval-server-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(5, 9, 7, .88) 0%, rgba(8, 18, 10, .72) 45%, rgba(11, 30, 13, .58) 100%),
        var(--ay-server-card-bg) center / cover no-repeat !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .13),
        0 24px 70px rgba(0, 0, 0, .34) !important;
}

body.aynoot-theme .ay-home .ay-server-card.ay-medieval-server-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 12%, rgba(255, 228, 154, .28), transparent 32%),
        radial-gradient(circle at 82% 18%, rgba(81, 56, 130, .24), transparent 38%),
        linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .38));
}

body.aynoot-theme .ay-home .ay-server-card.ay-medieval-server-card h3,
body.aynoot-theme .ay-home .ay-server-card.ay-medieval-server-card p,
body.aynoot-theme .ay-home .ay-server-card.ay-medieval-server-card code,
body.aynoot-theme .ay-home .ay-server-card.ay-medieval-server-card .ay-server-card-top {
    position: relative;
    z-index: 1;
}

body.aynoot-theme .ay-home .ay-server-card.ay-medieval-server-card .ay-server-address {
    background: rgba(2, 5, 3, .78) !important;
    border-color: rgba(255, 255, 255, .08) !important;
}

body.aynoot-theme.ay-light .ay-home .ay-server-card.ay-medieval-server-card {
    background:
        linear-gradient(135deg, rgba(248, 252, 245, .86) 0%, rgba(228, 241, 220, .72) 44%, rgba(202, 232, 190, .58) 100%),
        var(--ay-server-card-bg) center / cover no-repeat !important;
}

body.aynoot-theme.ay-light .ay-home .ay-server-card.ay-medieval-server-card::before {
    background:
        radial-gradient(circle at 18% 12%, rgba(255, 228, 154, .22), transparent 32%),
        radial-gradient(circle at 82% 18%, rgba(58, 170, 53, .16), transparent 38%),
        linear-gradient(180deg, rgba(255, 255, 255, .2), rgba(255, 255, 255, .34));
}

/* Final home project story polish */
body.aynoot-theme .ay-home .ay-status-row strong {
    max-width: 64%;
    justify-content: flex-end;
}

body.aynoot-theme .ay-home .ay-about-story-visual {
    min-height: clamp(360px, 31vw, 440px);
    padding: 0 !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(58, 170, 53, .14)),
        rgba(7, 12, 8, .78) !important;
}

body.aynoot-theme .ay-home .ay-about-story-visual img {
    width: 100% !important;
    height: 100% !important;
    min-height: inherit;
    object-fit: cover !important;
    object-position: center !important;
    filter: none !important;
}

body.aynoot-theme .ay-home .ay-about-story-visual::after {
    content: "" !important;
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(3, 6, 4, .02) 0%, rgba(3, 6, 4, .36) 100%),
        radial-gradient(circle at 20% 12%, rgba(255, 215, 130, .2), transparent 34%) !important;
}

body.aynoot-theme .ay-home .ay-about-story-visual > img {
    position: relative;
    z-index: 0;
}

body.aynoot-theme .ay-home .ay-about-version {
    display: none !important;
}

body.aynoot-theme .ay-home .ay-about-extra {
    margin-top: .9rem;
}

/* Inner pages must keep the footer out of forms and other interactive content */
body.aynoot-theme .ay-main.ay-inner-page + .ay-footer {
    margin-top: 0 !important;
    padding-top: clamp(4rem, 6vw, 5.5rem) !important;
    background:
        radial-gradient(circle at 20% 0%, rgba(58, 170, 53, .09), transparent 34rem),
        linear-gradient(180deg, #0b130d 0%, #030604 100%) !important;
}

body.aynoot-theme.ay-light .ay-main.ay-inner-page + .ay-footer {
    background:
        radial-gradient(circle at 20% 0%, rgba(58, 170, 53, .12), transparent 34rem),
        linear-gradient(180deg, #f8fbf5 0%, #edf5ea 100%) !important;
}

body.aynoot-theme .ay-main.ay-inner-page + .ay-footer::before {
    display: none !important;
    content: none !important;
}

/* Profile button arrow: one SVG arrow, no generated dots */
body.aynoot-theme .ay-user-btn::before,
body.aynoot-theme .ay-user-btn::after {
    display: none !important;
    content: none !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: none !important;
    box-shadow: none !important;
}

body.aynoot-theme .ay-user-btn .ay-user-chevron,
body.aynoot-theme .ay-user-btn .bi-chevron-down,
body.aynoot-theme .ay-user-btn i {
    display: none !important;
}

body.aynoot-theme .ay-user-arrow {
    display: block !important;
    flex: 0 0 auto;
    width: 10px;
    height: 6px;
    margin-left: .05rem;
    color: currentColor;
    overflow: visible;
    transform: translateY(1px);
    transition: transform .18s ease;
}

body.aynoot-theme .ay-user-btn[aria-expanded="true"] .ay-user-arrow {
    transform: translateY(1px) rotate(180deg);
}

/* Final hard reset for the profile dropdown arrow */
body.aynoot-theme .ay-user-btn .ay-user-chevron,
body.aynoot-theme .ay-user-btn .bi-chevron-down,
body.aynoot-theme .ay-user-btn i {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 0 !important;
    line-height: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

body.aynoot-theme .ay-user-btn::before {
    display: none !important;
    content: none !important;
}

body.aynoot-theme .ay-user-btn::after {
    content: "" !important;
    display: inline-block !important;
    flex: 0 0 auto;
    width: 0 !important;
    height: 0 !important;
    margin: .12rem 0 0 .08rem !important;
    padding: 0 !important;
    border: 0 !important;
    border-left: 4px solid transparent !important;
    border-right: 4px solid transparent !important;
    border-top: 5px solid currentColor !important;
    border-bottom: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
    transform-origin: center !important;
    opacity: .9 !important;
}

body.aynoot-theme .ay-user-btn[aria-expanded="true"]::after {
    transform: rotate(180deg) !important;
}

/* Hero grass block logo */
body.aynoot-theme .ay-cube-card img.ay-hero-logo-float,
body.aynoot-theme .ay-hero-art img.ay-hero-logo-float {
    position: relative;
    z-index: 1;
    width: clamp(280px, 31vw, 440px) !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: min(54vh, 460px) !important;
    object-fit: contain;
    filter: none !important;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    will-change: transform;
}

body.aynoot-theme.ay-animations .ay-cube-card img.ay-hero-logo-float,
body.aynoot-theme.ay-animations .ay-hero-art img.ay-hero-logo-float {
    animation: levitateLogo 5.5s ease-in-out infinite !important;
    will-change: transform;
}

body.aynoot-theme .ay-cube-card.ay-hero-logo-card::after {
    content: "" !important;
    display: block !important;
    position: absolute;
    left: 23%;
    right: 23%;
    bottom: 10%;
    z-index: 0;
    height: 28px;
    border: 0 !important;
    border-radius: 999px;
    pointer-events: none;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, .34), transparent 68%);
    opacity: .26;
    transform: translate3d(0, 0, 0) scale(.96);
    filter: none !important;
    backface-visibility: hidden;
}

body.aynoot-theme.ay-light .ay-cube-card.ay-hero-logo-card::after {
    background: radial-gradient(ellipse at center, rgba(37, 54, 32, .22), transparent 68%);
    opacity: .22;
}

@keyframes levitateLogo {
    0% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -14px, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

@media (max-width: 991.98px) {
    body.aynoot-theme .ay-cube-card img.ay-hero-logo-float,
    body.aynoot-theme .ay-hero-art img.ay-hero-logo-float {
        width: clamp(230px, 56vw, 360px) !important;
        max-height: 360px !important;
    }
}

@media (max-width: 575.98px) {
    body.aynoot-theme .ay-cube-card img.ay-hero-logo-float,
    body.aynoot-theme .ay-hero-art img.ay-hero-logo-float {
        width: clamp(200px, 72vw, 300px) !important;
        max-height: 300px !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.aynoot-theme.ay-animations .ay-cube-card img.ay-hero-logo-float,
    body.aynoot-theme.ay-animations .ay-hero-art img.ay-hero-logo-float {
        animation: none !important;
        will-change: auto;
    }
}

/* Main page cleanup */
body.aynoot-theme .ay-home .ay-section-heading h2,
body.aynoot-theme .ay-home .ay-about-split h2,
body.aynoot-theme .ay-home .ay-launcher-panel h2 {
    margin-top: 0;
}

body.aynoot-theme .ay-home .ay-community-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    max-width: 920px;
    margin-inline: 0 auto !important;
    justify-content: start !important;
    justify-items: stretch !important;
}

body.aynoot-theme .ay-home > .ay-community .ay-community-heading {
    display: flex !important;
    width: 100%;
    max-width: 760px;
    margin-right: auto !important;
    margin-left: 0 !important;
    justify-content: flex-start !important;
    align-items: center !important;
    text-align: left !important;
}

body.aynoot-theme .ay-home > .ay-community .ay-community-heading > div {
    width: 100%;
}

body.aynoot-theme .ay-home .ay-section-title-primary {
    margin: 0 !important;
    color: var(--ay-text) !important;
    -webkit-text-fill-color: currentColor !important;
    opacity: 1 !important;
    text-align: left !important;
    text-shadow: inherit !important;
    filter: none !important;
    mix-blend-mode: normal !important;
    background: none !important;
    background-clip: border-box !important;
    -webkit-background-clip: border-box !important;
}

body.aynoot-theme .ay-home > .ay-community .ay-community-heading span {
    max-width: 760px !important;
    margin: .9rem 0 0 !important;
    text-align: left !important;
}

@media (max-width: 767.98px) {
    body.aynoot-theme .ay-home .ay-community-grid {
        grid-template-columns: 1fr !important;
        max-width: 420px;
        margin-inline: 0 auto !important;
    }
}

/* Final form accent cleanup */
body.aynoot-theme .form-check-input {
    accent-color: var(--ay-primary) !important;
}

body.aynoot-theme .form-check-input:hover {
    border-color: color-mix(in srgb, var(--ay-primary), #fff 12%) !important;
}

body.aynoot-theme .form-check-input:focus {
    border-color: color-mix(in srgb, var(--ay-primary), #fff 18%) !important;
    box-shadow: 0 0 0 .2rem color-mix(in srgb, var(--ay-primary), transparent 78%) !important;
}

body.aynoot-theme .form-check-input:checked {
    background-color: var(--ay-primary) !important;
    border-color: var(--ay-primary) !important;
}

/* Final section heading color unification */
body.aynoot-theme {
    --ay-section-heading-color: #ffffff;
}

body.aynoot-theme.ay-light {
    --ay-section-heading-color: var(--ay-text);
}

body.aynoot-theme .ay-home .ay-section-heading h2,
body.aynoot-theme .ay-home .ay-about-split h2,
body.aynoot-theme .ay-home .ay-launcher-panel h2,
body.aynoot-theme .ay-home .ay-section-title-primary {
    color: var(--ay-section-heading-color) !important;
    -webkit-text-fill-color: var(--ay-section-heading-color) !important;
    opacity: 1 !important;
    filter: none !important;
    mix-blend-mode: normal !important;
    background: none !important;
    background-clip: border-box !important;
    -webkit-background-clip: border-box !important;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .42) !important;
}

body.aynoot-theme .ay-home > .ay-community .ay-community-heading {
    position: relative;
    z-index: 2;
    opacity: 1 !important;
    filter: none !important;
    mix-blend-mode: normal !important;
}

/* Final visible community heading fix */
body.aynoot-theme .ay-home > .ay-community {
    position: relative !important;
    z-index: 5 !important;
    isolation: isolate !important;
}

body.aynoot-theme .ay-home > .ay-community > .container {
    position: relative !important;
    z-index: 6 !important;
}

body.aynoot-theme .ay-home > .ay-community .ay-community-heading,
body.aynoot-theme .ay-home > .ay-community .ay-community-heading > div,
body.aynoot-theme .ay-home > .ay-community .ay-community-heading .ay-section-title-primary {
    opacity: 1 !important;
    filter: none !important;
    mix-blend-mode: normal !important;
}

body.aynoot-theme .ay-home > .ay-community .ay-community-heading .ay-section-title-primary {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .42) !important;
}

/* Final community placement: keep it in the main content flow, not visually inside the footer */
body.aynoot-theme .ay-gradient-zone > .ay-community {
    position: relative !important;
    z-index: 1 !important;
    isolation: auto !important;
    padding-top: clamp(6.5rem, 9vw, 9rem) !important;
    padding-bottom: clamp(9rem, 13vw, 14rem) !important;
    background: transparent !important;
    content-visibility: visible !important;
    contain-intrinsic-size: none !important;
}

body.aynoot-theme .ay-gradient-zone > .ay-community > .container {
    position: relative !important;
    z-index: 1 !important;
}

body.aynoot-theme .ay-gradient-zone > .ay-community .ay-community-heading {
    display: flex !important;
    width: 100%;
    max-width: 760px;
    margin-right: auto !important;
    margin-left: 0 !important;
    justify-content: flex-start !important;
    align-items: center !important;
    text-align: left !important;
    opacity: 1 !important;
    filter: none !important;
    mix-blend-mode: normal !important;
}

body.aynoot-theme .ay-gradient-zone > .ay-community .ay-community-heading > div {
    width: 100%;
}

body.aynoot-theme .ay-gradient-zone > .ay-community .ay-community-heading .ay-section-title-primary {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    opacity: 1 !important;
    filter: none !important;
    mix-blend-mode: normal !important;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .42) !important;
}

body.aynoot-theme .ay-gradient-zone > .ay-community .ay-community-heading span {
    max-width: 760px !important;
    margin: .9rem 0 0 !important;
    text-align: left !important;
}

body.aynoot-theme .ay-gradient-zone > .ay-community .ay-community-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    max-width: 920px;
    margin-inline: 0 auto !important;
    justify-content: start !important;
    justify-items: stretch !important;
}

@media (max-width: 767.98px) {
    body.aynoot-theme .ay-gradient-zone > .ay-community .ay-community-grid {
        grid-template-columns: 1fr !important;
        max-width: 420px;
        margin-inline: 0 auto !important;
    }
}

body.aynoot-theme .ay-gradient-zone::after {
    display: none !important;
    content: none !important;
}

body.aynoot-theme .ay-footer {
    position: relative !important;
    z-index: 2 !important;
    isolation: isolate !important;
    padding-top: clamp(4rem, 6vw, 5.5rem) !important;
    border-top: 1px solid rgba(255, 255, 255, .08) !important;
}

/* Final server placeholder card */
body.aynoot-theme .ay-home .ay-server-grid-placeholder {
    grid-template-columns: minmax(240px, 340px) !important;
    align-items: start;
    justify-content: start;
}

body.aynoot-theme .ay-home .ay-server-placeholder-card {
    aspect-ratio: 1 / 1;
    width: min(100%, 340px);
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: .95rem;
    padding: 1rem !important;
}

body.aynoot-theme .ay-home .ay-server-placeholder-image {
    min-height: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: .55rem;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(58, 170, 53, .1)),
        rgba(4, 10, 6, .38);
}

body.aynoot-theme .ay-home .ay-server-placeholder-image i {
    color: var(--ay-primary);
    font-size: 2rem;
}

body.aynoot-theme .ay-home .ay-server-placeholder-image span,
body.aynoot-theme .ay-home .ay-server-placeholder-kicker {
    color: var(--ay-muted);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

body.aynoot-theme .ay-home .ay-server-placeholder-body h3 {
    margin: .2rem 0 .35rem;
    color: var(--ay-text);
    font-size: 1.35rem;
    font-weight: 900;
}

body.aynoot-theme .ay-home .ay-server-placeholder-body p {
    margin: 0;
    color: var(--ay-muted);
    font-size: .94rem;
    line-height: 1.45;
}

@media (max-width: 575.98px) {
    body.aynoot-theme .ay-home .ay-server-grid-placeholder {
        grid-template-columns: minmax(0, 1fr) !important;
    }

    body.aynoot-theme .ay-home .ay-server-placeholder-card {
        width: 100%;
    }
}

body.aynoot-theme .ay-home .ay-server-image-card {
    position: relative;
    overflow: hidden;
    display: block;
    padding: 0 !important;
    background: rgba(4, 10, 6, .42) !important;
}

body.aynoot-theme .ay-home .ay-server-image-card::before {
    display: none !important;
    content: none !important;
}

body.aynoot-theme .ay-home .ay-server-placeholder-photo {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

body.aynoot-theme .ay-home .ay-server-image-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(3, 7, 5, .08) 0%, rgba(3, 7, 5, .26) 48%, rgba(3, 7, 5, .86) 100%),
        radial-gradient(circle at 20% 10%, rgba(255, 214, 124, .2), transparent 34%);
}

body.aynoot-theme .ay-home .ay-server-image-card .ay-server-placeholder-body {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 2;
}

body.aynoot-theme .ay-home .ay-server-image-card .ay-server-placeholder-kicker,
body.aynoot-theme .ay-home .ay-server-image-card .ay-server-placeholder-body p {
    color: rgba(255, 255, 255, .78);
}

body.aynoot-theme .ay-home .ay-server-image-card .ay-server-placeholder-body h3 {
    color: #fff;
    text-shadow: 0 2px 16px rgba(0, 0, 0, .48);
}

/* Final streamer offline state and footer fade */
body.aynoot-theme .ay-home .ay-streamer-card {
    grid-template-columns: 58px minmax(0, 1fr) !important;
    align-items: center !important;
}

body.aynoot-theme .ay-home .ay-streamer-card.offline {
    opacity: .86 !important;
    filter: grayscale(.18) !important;
}

body.aynoot-theme .ay-home .ay-streamer-main {
    align-items: center !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
}

body.aynoot-theme .ay-home .ay-streamer-offline-message {
    max-width: 520px;
    margin: .55rem 0 0;
    color: color-mix(in srgb, var(--ay-muted), #fff 12%);
    font-size: .88rem;
    font-weight: 700;
    line-height: 1.5;
}

body.aynoot-theme .ay-home .ay-streamer-offline-message[hidden],
body.aynoot-theme .ay-home .ay-streamer-live-meta[hidden] {
    display: none !important;
}

body.aynoot-theme .ay-home .ay-streamer-live-meta {
    margin-top: .55rem;
}

body.aynoot-theme .ay-home .ay-streamer-live-meta strong {
    color: var(--ay-text);
}

body.aynoot-theme .ay-home .ay-streamer-state {
    display: grid;
    justify-items: end;
    gap: .65rem;
}

body.aynoot-theme .ay-home .ay-streamer-action {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    min-height: 34px;
    padding: .45rem .7rem;
    color: var(--ay-text);
    text-decoration: none;
    border: 1px solid color-mix(in srgb, var(--ay-primary), transparent 68%);
    border-radius: 8px;
    background: color-mix(in srgb, var(--ay-primary), transparent 86%);
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

body.aynoot-theme .ay-home .ay-streamer-action:hover {
    color: var(--ay-text);
    transform: translateY(-1px);
    border-color: color-mix(in srgb, var(--ay-primary), #fff 10%);
    background: color-mix(in srgb, var(--ay-primary), transparent 76%);
}

body.aynoot-theme .ay-home .ay-streamer-action i,
body.aynoot-theme .ay-home .ay-streamer-action span {
    color: inherit;
}

body.aynoot-theme .ay-home .ay-streamer-card.live .ay-streamer-offline-message {
    display: none !important;
}

body.aynoot-theme.ay-light .ay-home .ay-streamer-offline-message {
    color: color-mix(in srgb, var(--ay-muted), #172015 18%);
}

@media (max-width: 767.98px) {
    body.aynoot-theme .ay-home .ay-streamer-main {
        grid-template-columns: minmax(0, 1fr) !important;
    }

    body.aynoot-theme .ay-home .ay-streamer-state {
        justify-items: start;
    }
}

body.aynoot-theme {
    --ay-footer-fade-height: clamp(180px, 18vw, 320px);
    --ay-footer-fade-start: rgba(4, 10, 6, 0);
    --ay-footer-fade-mid: rgba(23, 32, 23, .68);
    --ay-footer-fade-end: #1d251e;
    --ay-footer-surface: #030604;
}

body.aynoot-theme.ay-light {
    --ay-footer-fade-start: rgba(246, 251, 243, 0);
    --ay-footer-fade-mid: rgba(242, 248, 239, .78);
    --ay-footer-fade-end: #f4faf1;
    --ay-footer-surface: #edf5ea;
}

body.aynoot-theme .ay-footer {
    position: relative !important;
    z-index: 2 !important;
    overflow: visible !important;
    margin-top: 0 !important;
    padding-top: clamp(7rem, 9vw, 9.5rem) !important;
    border-top: 0 !important;
    background:
        radial-gradient(circle at 22% 0%, rgba(58, 170, 53, .08), transparent 34rem),
        linear-gradient(180deg, var(--ay-footer-fade-end) 0%, color-mix(in srgb, var(--ay-footer-fade-end), var(--ay-footer-surface) 64%) 36%, var(--ay-footer-surface) 100%) !important;
}

body.aynoot-theme .ay-footer::before {
    display: block !important;
    content: "" !important;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(-1 * var(--ay-footer-fade-height)) !important;
    bottom: auto !important;
    z-index: 0;
    height: var(--ay-footer-fade-height) !important;
    pointer-events: none;
    background:
        linear-gradient(180deg, var(--ay-footer-fade-start) 0%, var(--ay-footer-fade-mid) 56%, var(--ay-footer-fade-end) 100%) !important;
}

body.aynoot-theme .ay-footer > .container {
    position: relative;
    z-index: 1;
}

/* Final navbar caret and footer blend polish */
body.aynoot-theme .ay-user-btn::after,
body.aynoot-theme .ay-user-btn::before {
    display: none !important;
    content: none !important;
}

body.aynoot-theme .ay-user-chevron {
    position: relative;
    display: inline-block;
    flex: 0 0 auto;
    width: .48rem;
    height: .48rem;
    margin-left: .05rem;
    font-size: 0 !important;
    line-height: 1;
    opacity: .9;
    overflow: visible;
    font-family: inherit !important;
}

body.aynoot-theme .ay-user-chevron::before {
    content: "" !important;
    position: absolute;
    inset: 0;
    display: block !important;
    width: .48rem;
    height: .48rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-.12rem) rotate(45deg);
    transform-origin: center;
}

body.aynoot-theme .ay-user-btn[aria-expanded="true"] .ay-user-chevron {
    transform: rotate(180deg);
}

body.aynoot-theme {
    --ay-footer-fade-height: clamp(360px, 32vw, 620px);
    --ay-footer-fade-start: rgba(29, 37, 30, 0);
    --ay-footer-fade-mid: rgba(29, 37, 30, .72);
    --ay-footer-fade-end: #1d251e;
    --ay-footer-surface: #030604;
}

body.aynoot-theme.ay-light {
    --ay-footer-fade-start: rgba(244, 250, 241, 0);
    --ay-footer-fade-mid: rgba(244, 250, 241, .78);
    --ay-footer-fade-end: #f4faf1;
    --ay-footer-surface: #edf5ea;
}

body.aynoot-theme .ay-gradient-zone > .ay-community {
    padding-bottom: clamp(12rem, 18vw, 20rem) !important;
}

body.aynoot-theme .ay-gradient-zone > .ay-community::after {
    content: "" !important;
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(-1 * var(--ay-footer-fade-height) * .42);
    z-index: 0;
    display: block !important;
    height: calc(var(--ay-footer-fade-height) * 1.2);
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(29, 37, 30, 0) 0%, color-mix(in srgb, var(--ay-footer-fade-end), transparent 42%) 42%, var(--ay-footer-fade-end) 78%, color-mix(in srgb, var(--ay-footer-fade-end), var(--ay-footer-surface) 38%) 100%) !important;
}

body.aynoot-theme.ay-light .ay-gradient-zone > .ay-community::after {
    background:
        linear-gradient(180deg, rgba(244, 250, 241, 0) 0%, color-mix(in srgb, var(--ay-footer-fade-end), transparent 34%) 42%, var(--ay-footer-fade-end) 78%, color-mix(in srgb, var(--ay-footer-fade-end), var(--ay-footer-surface) 28%) 100%) !important;
}

body.aynoot-theme .ay-footer {
    margin-top: calc(-1 * var(--ay-footer-fade-height) * .34) !important;
    padding-top: clamp(11rem, 16vw, 18rem) !important;
    background:
        radial-gradient(circle at 22% 0%, rgba(58, 170, 53, .08), transparent 40rem),
        linear-gradient(180deg, color-mix(in srgb, var(--ay-footer-fade-end), var(--ay-footer-surface) 18%) 0%, color-mix(in srgb, var(--ay-footer-fade-end), var(--ay-footer-surface) 72%) 52%, var(--ay-footer-surface) 100%) !important;
}

body.aynoot-theme .ay-footer::before {
    top: calc(-1 * var(--ay-footer-fade-height) * .66) !important;
    height: calc(var(--ay-footer-fade-height) * 1.05) !important;
    background:
        linear-gradient(180deg, var(--ay-footer-fade-start) 0%, var(--ay-footer-fade-mid) 42%, color-mix(in srgb, var(--ay-footer-fade-end), var(--ay-footer-surface) 16%) 74%, color-mix(in srgb, var(--ay-footer-fade-end), var(--ay-footer-surface) 34%) 100%) !important;
}

/* Final footer overlap: remove the visible layer edge */
body.aynoot-theme {
    --ay-footer-overlap: clamp(300px, 28vw, 560px);
}

body.aynoot-theme .ay-footer {
    margin-top: calc(-1 * var(--ay-footer-overlap)) !important;
    padding-top: calc(var(--ay-footer-overlap) + clamp(4.5rem, 6vw, 6rem)) !important;
    background:
        radial-gradient(circle at 18% 10%, rgba(58, 170, 53, .08), transparent 42rem),
        linear-gradient(180deg, rgba(3, 6, 4, 0) 0%, rgba(3, 6, 4, .04) 18%, rgba(3, 6, 4, .24) 42%, rgba(3, 6, 4, .74) 72%, #030604 100%) !important;
}

body.aynoot-theme.ay-light .ay-footer {
    background:
        radial-gradient(circle at 18% 10%, rgba(58, 170, 53, .12), transparent 42rem),
        linear-gradient(180deg, rgba(237, 245, 234, 0) 0%, rgba(237, 245, 234, .08) 18%, rgba(237, 245, 234, .42) 44%, rgba(237, 245, 234, .84) 76%, #edf5ea 100%) !important;
}

body.aynoot-theme .ay-footer::before {
    display: none !important;
    content: none !important;
}

/* Absolute final profile arrow fix */
body.aynoot-theme .ay-user-btn .ay-user-chevron,
body.aynoot-theme .ay-user-btn .bi-chevron-down,
body.aynoot-theme .ay-user-btn i {
    display: none !important;
}

body.aynoot-theme .ay-user-btn::before,
body.aynoot-theme .ay-user-btn::after {
    display: none !important;
    content: none !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

body.aynoot-theme .ay-user-btn .ay-user-arrow {
    display: block !important;
    flex: 0 0 auto !important;
    width: 10px !important;
    height: 6px !important;
    margin-left: .05rem !important;
    color: currentColor !important;
    overflow: visible !important;
    transform: translateY(1px) !important;
    transition: transform .18s ease !important;
}

body.aynoot-theme .ay-user-btn[aria-expanded="true"] .ay-user-arrow {
    transform: translateY(1px) rotate(180deg) !important;
}

/* True final home copy, about and server card polish */
body.aynoot-theme .ay-home .ay-about-split h2 {
    max-width: 620px;
    font-size: clamp(2.6rem, 5vw, 4.35rem) !important;
    line-height: .98 !important;
    letter-spacing: 0 !important;
}

body.aynoot-theme .ay-home .ay-about-split p {
    max-width: 760px;
}

body.aynoot-theme .ay-home .ay-tag-list span {
    color: color-mix(in srgb, var(--ay-text), var(--ay-muted) 14%) !important;
}

body.aynoot-theme .ay-home .ay-server-card.ay-medieval-server-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(5, 9, 7, .88) 0%, rgba(8, 18, 10, .72) 45%, rgba(11, 30, 13, .58) 100%),
        var(--ay-server-card-bg) center / cover no-repeat !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .13),
        0 24px 70px rgba(0, 0, 0, .34) !important;
}

body.aynoot-theme .ay-home .ay-server-card.ay-medieval-server-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 12%, rgba(255, 228, 154, .28), transparent 32%),
        radial-gradient(circle at 82% 18%, rgba(81, 56, 130, .24), transparent 38%),
        linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .38));
}

body.aynoot-theme .ay-home .ay-server-card.ay-medieval-server-card h3,
body.aynoot-theme .ay-home .ay-server-card.ay-medieval-server-card p,
body.aynoot-theme .ay-home .ay-server-card.ay-medieval-server-card code,
body.aynoot-theme .ay-home .ay-server-card.ay-medieval-server-card .ay-server-card-top {
    position: relative;
    z-index: 1;
}

body.aynoot-theme .ay-home .ay-server-card.ay-medieval-server-card .ay-server-address {
    background: rgba(2, 5, 3, .78) !important;
    border-color: rgba(255, 255, 255, .08) !important;
}

body.aynoot-theme.ay-light .ay-home .ay-server-card.ay-medieval-server-card {
    background:
        linear-gradient(135deg, rgba(248, 252, 245, .86) 0%, rgba(228, 241, 220, .72) 44%, rgba(202, 232, 190, .58) 100%),
        var(--ay-server-card-bg) center / cover no-repeat !important;
}

body.aynoot-theme.ay-light .ay-home .ay-server-card.ay-medieval-server-card::before {
    background:
        radial-gradient(circle at 18% 12%, rgba(255, 228, 154, .22), transparent 32%),
        radial-gradient(circle at 82% 18%, rgba(58, 170, 53, .16), transparent 38%),
        linear-gradient(180deg, rgba(255, 255, 255, .2), rgba(255, 255, 255, .34));
}

/* Absolute final 2FA/auth overlap and footer blend fix */
body.aynoot-theme .ay-auth-side {
    padding-top: clamp(8.4rem, 12vw, 9.4rem) !important;
    justify-content: flex-end !important;
}

body.aynoot-theme .ay-auth-logo {
    top: clamp(1.4rem, 2vw, 2rem) !important;
    left: clamp(1.5rem, 2vw, 2rem) !important;
    width: clamp(68px, 6vw, 80px) !important;
    height: clamp(68px, 6vw, 80px) !important;
    z-index: 2 !important;
}

body.aynoot-theme .ay-auth-side .ay-section-label {
    position: relative;
    z-index: 3;
}

body.aynoot-theme {
    --ay-footer-overlap: clamp(520px, 42vw, 860px) !important;
}

body.aynoot-theme .ay-gradient-zone > .ay-community {
    padding-bottom: clamp(19rem, 26vw, 30rem) !important;
    background:
        linear-gradient(180deg, rgba(29, 37, 30, 0) 0%, rgba(18, 27, 19, .08) 46%, rgba(8, 14, 9, .28) 74%, rgba(3, 6, 4, .58) 100%) !important;
}

body.aynoot-theme .ay-gradient-zone > .ay-community::after {
    display: block !important;
    content: "" !important;
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(-1 * var(--ay-footer-overlap) * .56) !important;
    z-index: 0;
    height: calc(var(--ay-footer-overlap) * 1.5) !important;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(29, 37, 30, 0) 0%, rgba(18, 28, 19, .05) 16%, rgba(12, 20, 13, .18) 34%, rgba(7, 13, 8, .46) 58%, rgba(3, 6, 4, .82) 82%, #030604 100%) !important;
}

body.aynoot-theme .ay-footer {
    z-index: 1 !important;
    margin-top: calc(-1 * var(--ay-footer-overlap) * .56) !important;
    padding-top: calc(var(--ay-footer-overlap) * .72 + clamp(3.5rem, 5vw, 5rem)) !important;
    border-top: 0 !important;
    background:
        radial-gradient(circle at 20% 12%, rgba(58, 170, 53, .06), transparent 38rem),
        linear-gradient(180deg, rgba(3, 6, 4, 0) 0%, rgba(3, 6, 4, .03) 22%, rgba(3, 6, 4, .22) 48%, rgba(3, 6, 4, .68) 74%, #030604 100%) !important;
}

body.aynoot-theme .ay-footer::before {
    display: none !important;
    content: none !important;
}

body.aynoot-theme.ay-light .ay-gradient-zone > .ay-community {
    background:
        linear-gradient(180deg, rgba(244, 250, 241, 0) 0%, rgba(234, 245, 229, .12) 46%, rgba(224, 240, 217, .38) 74%, rgba(237, 245, 234, .7) 100%) !important;
}

body.aynoot-theme.ay-light .ay-gradient-zone > .ay-community::after {
    background:
        linear-gradient(180deg, rgba(244, 250, 241, 0) 0%, rgba(236, 246, 232, .08) 16%, rgba(226, 240, 220, .28) 34%, rgba(218, 236, 211, .58) 58%, rgba(237, 245, 234, .88) 82%, #edf5ea 100%) !important;
}

body.aynoot-theme.ay-light .ay-footer {
    background:
        radial-gradient(circle at 20% 12%, rgba(58, 170, 53, .1), transparent 38rem),
        linear-gradient(180deg, rgba(237, 245, 234, 0) 0%, rgba(237, 245, 234, .06) 22%, rgba(237, 245, 234, .32) 48%, rgba(237, 245, 234, .76) 74%, #edf5ea 100%) !important;
}

@media (max-width: 575.98px) {
    body.aynoot-theme .ay-auth-side {
        padding-top: 1.5rem !important;
    }

    body.aynoot-theme .ay-auth-logo {
        width: 76px !important;
        height: 76px !important;
    }
}

/* Absolute final smooth page bottom and tighter auth spacing */
body.aynoot-theme .ay-auth-side {
    padding-top: clamp(7.05rem, 9vw, 7.65rem) !important;
    justify-content: flex-start !important;
}

body.aynoot-theme .ay-auth-logo {
    top: clamp(1.35rem, 2vw, 1.75rem) !important;
    width: clamp(70px, 5.8vw, 78px) !important;
    height: clamp(70px, 5.8vw, 78px) !important;
}

body.aynoot-theme .ay-gradient-zone {
    background:
        radial-gradient(circle at 18% 18%, rgba(58, 170, 53, .07), transparent 36rem),
        linear-gradient(180deg, #1d251e 0%, #172018 42%, #101811 72%, #07100b 100%) !important;
}

body.aynoot-theme .ay-gradient-zone::before,
body.aynoot-theme .ay-gradient-zone::after,
body.aynoot-theme .ay-gradient-zone > .ay-community::before,
body.aynoot-theme .ay-gradient-zone > .ay-community::after {
    display: none !important;
    content: none !important;
    background: none !important;
}

body.aynoot-theme .ay-gradient-zone > .ay-community {
    margin-bottom: 0 !important;
    padding-bottom: clamp(8rem, 12vw, 12rem) !important;
    background: transparent !important;
}

body.aynoot-theme .ay-footer {
    margin-top: 0 !important;
    padding-top: clamp(4.5rem, 7vw, 6rem) !important;
    border-top: 0 !important;
    background:
        radial-gradient(circle at 20% 0%, rgba(58, 170, 53, .045), transparent 34rem),
        linear-gradient(180deg, #07100b 0%, #050b07 54%, #030604 100%) !important;
}

body.aynoot-theme .ay-footer::before,
body.aynoot-theme .ay-footer::after {
    display: none !important;
    content: none !important;
    background: none !important;
}

/* Absolute final about image and heading spacing */
body.aynoot-theme .ay-home .ay-about-split h2 {
    margin-bottom: clamp(.8rem, 1.35vw, 1.15rem) !important;
}

body.aynoot-theme .ay-home .ay-about-split h2 + p {
    margin-top: 0 !important;
}

body.aynoot-theme .ay-home .ay-about-story-visual img {
    object-position: center !important;
}

/* Absolute final cookie consent */
body.aynoot-theme .ay-cookie-consent {
    position: fixed;
    left: clamp(1rem, 3vw, 2rem);
    right: clamp(1rem, 3vw, 2rem);
    bottom: clamp(1rem, 3vw, 2rem);
    z-index: 1080;
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid rgba(91, 209, 82, .26);
    border-radius: 8px;
    background:
        radial-gradient(circle at 8% 0%, rgba(255, 255, 255, .16), transparent 34%),
        linear-gradient(135deg, rgba(23, 34, 24, .96), rgba(5, 12, 7, .92));
    box-shadow: 0 24px 70px rgba(0, 0, 0, .42);
    opacity: 0;
    transform: translate3d(0, 14px, 0);
    transition: opacity .22s ease, transform .22s ease;
}

body.aynoot-theme .ay-cookie-consent[hidden] {
    display: none !important;
}

body.aynoot-theme .ay-cookie-consent.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

body.aynoot-theme .ay-cookie-consent__content strong {
    display: block;
    margin-bottom: .25rem;
    color: var(--ay-text);
    font-size: 1rem;
    font-weight: 900;
}

body.aynoot-theme .ay-cookie-consent__content p {
    margin: 0;
    color: color-mix(in srgb, var(--ay-muted), var(--ay-text) 8%);
    line-height: 1.55;
}

body.aynoot-theme .ay-cookie-consent__content a {
    color: var(--ay-primary);
    font-weight: 800;
    text-decoration: none;
}

body.aynoot-theme .ay-cookie-consent__content a:hover {
    color: color-mix(in srgb, var(--ay-primary), #ffffff 18%);
}

body.aynoot-theme .ay-cookie-consent__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: .6rem;
}

body.aynoot-theme .ay-cookie-consent__actions .ay-btn {
    white-space: nowrap;
}

body.aynoot-theme.ay-light .ay-cookie-consent {
    border-color: rgba(58, 170, 53, .22);
    background:
        radial-gradient(circle at 8% 0%, rgba(255, 255, 255, .82), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(237, 247, 232, .92));
    box-shadow: 0 24px 70px rgba(36, 58, 31, .18);
}

@media (max-width: 767.98px) {
    body.aynoot-theme .ay-cookie-consent {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    body.aynoot-theme .ay-cookie-consent__actions {
        justify-content: stretch;
    }

    body.aynoot-theme .ay-cookie-consent__actions .ay-btn {
        flex: 1 1 0;
    }
}

/* Absolute final two-factor notice alignment */
body.aynoot-theme .ay-two-factor-notice,
body.aynoot-theme .form-check:has(.ay-two-factor-notice__label) {
    display: flex !important;
    align-items: flex-start !important;
    gap: .65rem !important;
    margin: .9rem 0 1rem !important;
    padding: .8rem .9rem !important;
    border: 1px solid rgba(91, 209, 82, .18) !important;
    border-radius: 8px !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .055), rgba(58, 170, 53, .055)),
        rgba(8, 18, 10, .42) !important;
}

body.aynoot-theme .ay-two-factor-notice__checkbox,
body.aynoot-theme .form-check:has(.ay-two-factor-notice__label) > .form-check-input {
    float: none !important;
    flex: 0 0 auto !important;
    margin: .16rem 0 0 !important;
}

body.aynoot-theme .ay-two-factor-notice__label {
    display: block !important;
    flex: 1 1 auto !important;
    margin: 0 !important;
    color: color-mix(in srgb, var(--ay-text), var(--ay-muted) 16%) !important;
    line-height: 1.45 !important;
}

body.aynoot-theme .ay-two-factor-notice__label strong,
body.aynoot-theme .ay-two-factor-notice__label b {
    color: inherit !important;
    font-weight: 800 !important;
}

/* True final compact square server card and enchanted pickaxe cursor */
body.aynoot-theme {
    --ay-spear-cursor: url("../img/ui/minecraft-enchanted-pickaxe-cursor-v2.svg") 4 5;
}

body.aynoot-theme .ay-home .ay-section-servers .ay-server-grid,
body.aynoot-theme .ay-gradient-zone > .ay-section-servers .ay-server-grid {
    grid-template-columns: minmax(0, 380px) !important;
    justify-content: start !important;
    align-items: start !important;
    max-width: 380px !important;
}

body.aynoot-theme .ay-home .ay-server-card.ay-medieval-server-card,
body.aynoot-theme .ay-gradient-zone > .ay-section-servers .ay-server-card.ay-medieval-server-card {
    display: flex !important;
    flex-direction: column !important;
    width: min(100%, 380px) !important;
    max-width: 380px !important;
    min-height: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
    overflow: hidden !important;
    background:
        linear-gradient(180deg, rgba(15, 25, 17, .96), rgba(6, 12, 8, .96)) !important;
}

body.aynoot-theme .ay-home .ay-server-card.ay-medieval-server-card::before,
body.aynoot-theme .ay-gradient-zone > .ay-section-servers .ay-server-card.ay-medieval-server-card::before {
    display: none !important;
    content: none !important;
}

body.aynoot-theme .ay-home .ay-server-card-media,
body.aynoot-theme .ay-gradient-zone > .ay-section-servers .ay-server-card-media {
    display: grid !important;
    place-items: center !important;
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    padding: .75rem !important;
    overflow: hidden !important;
    border-bottom: 1px solid rgba(255, 255, 255, .12) !important;
    background:
        radial-gradient(circle at 18% 12%, rgba(255, 226, 150, .14), transparent 34%),
        rgba(3, 7, 5, .72) !important;
}

body.aynoot-theme .ay-home .ay-server-card-media::after,
body.aynoot-theme .ay-gradient-zone > .ay-section-servers .ay-server-card-media::after {
    display: none !important;
    content: none !important;
}

body.aynoot-theme .ay-home .ay-server-card-media img,
body.aynoot-theme .ay-gradient-zone > .ay-section-servers .ay-server-card-media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
}

body.aynoot-theme .ay-home .ay-server-card-body,
body.aynoot-theme .ay-gradient-zone > .ay-section-servers .ay-server-card-body {
    display: grid !important;
    gap: .8rem !important;
    padding: 1rem !important;
}

body.aynoot-theme .ay-home .ay-server-card.ay-medieval-server-card .ay-server-card-top,
body.aynoot-theme .ay-gradient-zone > .ay-section-servers .ay-server-card.ay-medieval-server-card .ay-server-card-top {
    align-items: flex-start !important;
    gap: .8rem !important;
}

body.aynoot-theme .ay-home .ay-server-card.ay-medieval-server-card p,
body.aynoot-theme .ay-gradient-zone > .ay-section-servers .ay-server-card.ay-medieval-server-card p {
    max-width: none !important;
    margin: 0 !important;
}

body.aynoot-theme .ay-home .ay-server-card.ay-medieval-server-card .ay-btn,
body.aynoot-theme .ay-gradient-zone > .ay-section-servers .ay-server-card.ay-medieval-server-card .ay-btn {
    justify-self: stretch !important;
    width: 100% !important;
}

body.aynoot-theme .ay-home .ay-server-card.ay-medieval-server-card .ay-server-address,
body.aynoot-theme .ay-gradient-zone > .ay-section-servers .ay-server-card.ay-medieval-server-card .ay-server-address {
    margin-top: 0 !important;
}

body.aynoot-theme.ay-light .ay-home .ay-server-card.ay-medieval-server-card,
body.aynoot-theme.ay-light .ay-gradient-zone > .ay-section-servers .ay-server-card.ay-medieval-server-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(232, 243, 226, .9)) !important;
}

@media (max-width: 575.98px) {
    body.aynoot-theme .ay-home .ay-section-servers .ay-server-grid,
    body.aynoot-theme .ay-gradient-zone > .ay-section-servers .ay-server-grid {
        grid-template-columns: minmax(0, 1fr) !important;
        max-width: 100% !important;
    }

    body.aynoot-theme .ay-home .ay-server-card.ay-medieval-server-card,
    body.aynoot-theme .ay-gradient-zone > .ay-section-servers .ay-server-card.ay-medieval-server-card {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* Absolute final compact community to footer spacing override */
body.aynoot-theme .ay-home > .ay-community,
body.aynoot-theme .ay-gradient-zone > .ay-community {
    min-height: 0 !important;
    margin-bottom: 0 !important;
    padding-bottom: clamp(1.25rem, 2.2vw, 2rem) !important;
}

body.aynoot-theme .ay-home > .ay-community .container,
body.aynoot-theme .ay-gradient-zone > .ay-community .container {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

body.aynoot-theme .ay-home .ay-community-grid,
body.aynoot-theme .ay-gradient-zone > .ay-community .ay-community-grid {
    margin-bottom: 0 !important;
}

body.aynoot-theme .ay-footer {
    margin-top: 0 !important;
    padding-top: clamp(1.5rem, 2.5vw, 2.25rem) !important;
}

/* Absolute final light server card polish */
body.aynoot-theme.ay-light .ay-home .ay-server-card.ay-medieval-server-card,
body.aynoot-theme.ay-light .ay-gradient-zone > .ay-section-servers .ay-server-card.ay-medieval-server-card {
    border-color: rgba(58, 170, 53, .22) !important;
    background:
        linear-gradient(180deg, rgba(250, 253, 247, .98), rgba(232, 244, 225, .96)) !important;
    box-shadow:
        0 18px 42px rgba(37, 58, 32, .12),
        inset 0 1px 0 rgba(255, 255, 255, .85) !important;
}

body.aynoot-theme.ay-light .ay-home .ay-server-card-media,
body.aynoot-theme.ay-light .ay-gradient-zone > .ay-section-servers .ay-server-card-media {
    padding: 0 !important;
    border-bottom-color: rgba(58, 170, 53, .16) !important;
    background: transparent !important;
    box-shadow: none !important;
}

body.aynoot-theme.ay-light .ay-home .ay-server-card-media img,
body.aynoot-theme.ay-light .ay-gradient-zone > .ay-section-servers .ay-server-card-media img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
}

body.aynoot-theme.ay-light .ay-home .ay-server-version,
body.aynoot-theme.ay-light .ay-gradient-zone > .ay-section-servers .ay-server-version {
    color: #143c1a !important;
    background:
        linear-gradient(135deg, rgba(222, 247, 212, .98), rgba(171, 225, 151, .92)) !important;
    border: 1px solid rgba(58, 170, 53, .28) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .72),
        0 8px 18px rgba(58, 170, 53, .12) !important;
}

body.aynoot-theme.ay-light .ay-home .ay-server-address,
body.aynoot-theme.ay-light .ay-gradient-zone > .ay-section-servers .ay-server-address {
    color: #112717 !important;
    background: rgba(255, 255, 255, .84) !important;
    border: 1px solid rgba(58, 170, 53, .24) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .8),
        0 8px 20px rgba(37, 58, 32, .08) !important;
}

body.aynoot-theme.ay-light .ay-home .ay-server-address code,
body.aynoot-theme.ay-light .ay-gradient-zone > .ay-section-servers .ay-server-address code {
    color: #112717 !important;
    background: transparent !important;
}

/* Final Jobs alignment with Changelog and compact home recruitment */
body.aynoot-theme .ay-jobs-plugin {
    --ay-jobs-border: rgba(255, 255, 255, .13);
    --ay-jobs-surface: rgba(14, 25, 15, .78);
}

body.aynoot-theme.ay-light .ay-jobs-plugin {
    --ay-jobs-border: rgba(22, 48, 21, .14);
    --ay-jobs-surface: rgba(255, 255, 255, .84);
}

body.aynoot-theme .ay-jobs-page {
    width: min(1180px, calc(100vw - 2rem));
    padding: clamp(2.5rem, 6vw, 4.75rem) 0;
}

body.aynoot-theme .ay-jobs-head {
    max-width: 760px;
    margin-bottom: clamp(1.25rem, 2.4vw, 2rem);
}

body.aynoot-theme .ay-jobs-head h2 {
    margin: 0;
    color: var(--ay-text);
    font-size: clamp(2.7rem, 6vw, 5rem);
    font-weight: 950;
    line-height: .95;
    letter-spacing: 0;
}

body.aynoot-theme .ay-jobs-head p {
    max-width: 760px;
    margin: .75rem 0 0;
    color: color-mix(in srgb, var(--ay-muted), var(--ay-text) 10%);
    font-size: clamp(1rem, 1.5vw, 1.14rem);
    line-height: 1.55;
}

body.aynoot-theme .ay-jobs-layout {
    display: grid;
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    gap: clamp(1rem, 2.5vw, 1.6rem);
    align-items: start;
}

body.aynoot-theme .ay-jobs-sidebar,
body.aynoot-theme .ay-jobs-card,
body.aynoot-theme .ay-jobs-empty {
    border: 1px solid var(--ay-jobs-border);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(58, 170, 53, .075) 52%, rgba(255, 255, 255, .025)),
        var(--ay-jobs-surface);
    box-shadow: 0 22px 70px rgba(0, 0, 0, .24);
    -webkit-backdrop-filter: blur(14px) saturate(1.12);
    backdrop-filter: blur(14px) saturate(1.12);
}

body.aynoot-theme.ay-light .ay-jobs-sidebar,
body.aynoot-theme.ay-light .ay-jobs-card,
body.aynoot-theme.ay-light .ay-jobs-empty {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .88), rgba(219, 242, 211, .68) 52%, rgba(255, 255, 255, .76)),
        var(--ay-jobs-surface);
    box-shadow: 0 22px 60px rgba(42, 72, 36, .14);
}

body.aynoot-theme .ay-jobs-sidebar {
    position: sticky;
    top: 6rem;
    display: grid;
    gap: .8rem;
    padding: 1rem;
}

body.aynoot-theme .ay-jobs-sidebar h2 {
    margin: 0;
    color: var(--ay-text);
    font-size: 1.05rem;
    font-weight: 950;
}

body.aynoot-theme .ay-jobs-sidebar p {
    margin: 0;
    color: color-mix(in srgb, var(--ay-muted), var(--ay-text) 10%);
    font-size: .92rem;
    line-height: 1.55;
}

body.aynoot-theme .ay-jobs-sidebar-stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding: .72rem .78rem;
    border: 1px solid rgba(58, 170, 53, .25);
    border-radius: 8px;
    color: var(--ay-text);
    background: rgba(58, 170, 53, .1);
    font-size: .9rem;
    font-weight: 800;
}

body.aynoot-theme .ay-jobs-sidebar-stat strong {
    display: inline-grid;
    min-width: 2rem;
    height: 1.75rem;
    place-items: center;
    border-radius: 999px;
    color: #071306;
    background: var(--ay-primary);
    font-size: .82rem;
    font-weight: 950;
}

body.aynoot-theme .ay-jobs-sidebar-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    width: fit-content;
    color: var(--ay-primary);
    font-weight: 850;
    text-decoration: none;
}

body.aynoot-theme .ay-jobs-feed {
    display: grid;
    gap: 1rem;
}

body.aynoot-theme .ay-jobs-card {
    min-height: 0;
    gap: .75rem;
    padding: clamp(1.1rem, 2.3vw, 1.6rem);
    overflow: visible;
}

body.aynoot-theme .ay-jobs-card::before,
body.aynoot-theme .ay-jobs-empty::before {
    display: none;
}

body.aynoot-theme .ay-jobs-card-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .55rem;
}

body.aynoot-theme .ay-jobs-card-meta > span,
body.aynoot-theme .ay-jobs-status,
body.aynoot-theme .ay-jobs-count {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    width: fit-content;
    padding: .35rem .55rem;
    border: 1px solid rgba(58, 170, 53, .24);
    border-radius: 999px;
    color: color-mix(in srgb, var(--ay-muted), var(--ay-text) 10%);
    background: rgba(58, 170, 53, .08);
    font-size: .88rem;
    font-weight: 800;
}

body.aynoot-theme .ay-jobs-card h2,
body.aynoot-theme .ay-jobs-form-card h2 {
    margin: 0;
    color: var(--ay-text);
    font-size: clamp(1.55rem, 3vw, 2.35rem);
    font-weight: 950;
}

body.aynoot-theme .ay-jobs-card p,
body.aynoot-theme .ay-jobs-description {
    margin: 0;
    color: color-mix(in srgb, var(--ay-muted), var(--ay-text) 16%);
    line-height: 1.7;
}

body.aynoot-theme .ay-jobs-card-link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    width: fit-content;
    margin-top: .2rem;
    color: var(--ay-primary);
    font-weight: 900;
    text-decoration: none;
}

body.aynoot-theme .ay-jobs-card-link i,
body.aynoot-theme .ay-jobs-sidebar-link i {
    transition: transform .18s ease;
}

body.aynoot-theme .ay-jobs-card-link:hover i,
body.aynoot-theme .ay-jobs-sidebar-link:hover i {
    transform: translateX(3px);
}

body.aynoot-theme .ay-jobs-apply-layout,
body.aynoot-theme .ay-jobs-status-shell {
    gap: clamp(1rem, 2.5vw, 1.6rem);
}

body.aynoot-theme .ay-home-jobs {
    padding: clamp(2.5rem, 6vw, 4.75rem) 0;
}

body.aynoot-theme .ay-home-jobs-shell {
    width: min(980px, 100%);
    margin: 0 auto;
}

body.aynoot-theme .ay-home-jobs-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.15rem;
}

body.aynoot-theme .ay-home-jobs-head h2 {
    margin: 0;
}

body.aynoot-theme .ay-home-jobs-head p {
    margin: .55rem 0 0;
    color: color-mix(in srgb, var(--ay-muted), var(--ay-text) 12%);
    line-height: 1.55;
}

body.aynoot-theme .ay-home-jobs-all {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    flex: 0 0 auto;
    color: var(--ay-primary);
    font-weight: 900;
    text-decoration: none;
}

body.aynoot-theme .ay-home-jobs-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

body.aynoot-theme .ay-home-job-card,
body.aynoot-theme .ay-home-jobs-empty {
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(58, 170, 53, .075) 52%, rgba(255, 255, 255, .025)),
        rgba(14, 25, 15, .78);
    box-shadow: 0 20px 55px rgba(0, 0, 0, .2);
    -webkit-backdrop-filter: blur(14px) saturate(1.12);
    backdrop-filter: blur(14px) saturate(1.12);
}

body.aynoot-theme.ay-light .ay-home-job-card,
body.aynoot-theme.ay-light .ay-home-jobs-empty {
    border-color: rgba(22, 48, 21, .14);
    background: linear-gradient(135deg, rgba(255, 255, 255, .9), rgba(219, 242, 211, .72));
    box-shadow: 0 18px 45px rgba(42, 72, 36, .13);
}

body.aynoot-theme .ay-home-job-card {
    display: flex;
    min-height: 220px;
    flex-direction: column;
    gap: .72rem;
    padding: 1.2rem;
}

body.aynoot-theme .ay-home-job-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .5rem;
}

body.aynoot-theme .ay-home-job-meta span {
    display: inline-flex;
    align-items: center;
    gap: .38rem;
    padding: .32rem .52rem;
    border: 1px solid rgba(58, 170, 53, .24);
    border-radius: 999px;
    color: color-mix(in srgb, var(--ay-muted), var(--ay-text) 12%);
    background: rgba(58, 170, 53, .08);
    font-size: .84rem;
    font-weight: 800;
}

body.aynoot-theme .ay-home-job-meta span:first-child i {
    width: .5rem;
    height: .5rem;
    border-radius: 999px;
    background: var(--ay-primary);
    box-shadow: 0 0 0 5px rgba(58, 170, 53, .12);
}

body.aynoot-theme .ay-home-job-card h3 {
    margin: 0;
    color: var(--ay-text);
    font-size: clamp(1.35rem, 2.5vw, 1.8rem);
    font-weight: 950;
}

body.aynoot-theme .ay-home-job-card p {
    margin: 0;
    color: color-mix(in srgb, var(--ay-muted), var(--ay-text) 14%);
    line-height: 1.6;
}

body.aynoot-theme .ay-home-job-card > a {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    width: fit-content;
    margin-top: auto;
    color: var(--ay-primary);
    font-weight: 900;
    text-decoration: none;
}

body.aynoot-theme .ay-home-jobs-empty {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: 1rem 1.15rem;
}

body.aynoot-theme .ay-home-jobs-empty > i {
    display: inline-grid;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 8px;
    color: var(--ay-primary);
    background: rgba(58, 170, 53, .12);
}

body.aynoot-theme .ay-home-jobs-empty strong,
body.aynoot-theme .ay-home-jobs-empty span {
    display: block;
}

body.aynoot-theme .ay-home-jobs-empty strong {
    color: var(--ay-text);
}

body.aynoot-theme .ay-home-jobs-empty span {
    margin-top: .2rem;
    color: var(--ay-muted);
}

@media (max-width: 767.98px) {
    body.aynoot-theme .ay-jobs-layout,
    body.aynoot-theme .ay-home-jobs-grid {
        grid-template-columns: 1fr;
    }

    body.aynoot-theme .ay-jobs-sidebar {
        position: static;
    }

    body.aynoot-theme .ay-home-jobs-head {
        align-items: flex-start;
        flex-direction: column;
    }

    body.aynoot-theme .ay-home-job-card {
        min-height: 0;
    }
}

/* Jobs plugin */
body.aynoot-theme .ay-jobs-plugin {
    background:
        radial-gradient(circle at 18% 8%, rgba(58, 170, 53, .12), transparent 34%),
        linear-gradient(180deg, rgba(12, 28, 15, .94), rgba(2, 13, 7, .98));
}

body.aynoot-theme .ay-jobs-page {
    width: min(1240px, calc(100vw - 2rem));
    margin: 0 auto;
    padding: clamp(2.6rem, 7vw, 5.2rem) 0;
}

body.aynoot-theme .ay-jobs-head {
    max-width: 760px;
    margin-bottom: 2rem;
}

body.aynoot-theme .ay-jobs-head h2,
body.aynoot-theme .ay-jobs-position-card h2,
body.aynoot-theme .ay-jobs-status-card h2 {
    margin: 0 0 .75rem;
    color: var(--ay-text);
    font-size: clamp(2.45rem, 6vw, 5rem);
    font-weight: 900;
    line-height: .95;
    letter-spacing: 0;
}

body.aynoot-theme .ay-jobs-head p,
body.aynoot-theme .ay-jobs-card p,
body.aynoot-theme .ay-jobs-description,
body.aynoot-theme .ay-jobs-status-card p {
    color: var(--ay-muted);
    font-size: 1.04rem;
    line-height: 1.65;
}

body.aynoot-theme .ay-jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

body.aynoot-theme .ay-jobs-card,
body.aynoot-theme .ay-jobs-empty {
    position: relative;
    display: flex;
    min-height: 240px;
    flex-direction: column;
    gap: .9rem;
    padding: 1.35rem;
    overflow: hidden;
    border: 1px solid rgba(168, 196, 166, .18);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .025) 34%),
        linear-gradient(145deg, rgba(22, 43, 25, .84), rgba(8, 23, 12, .88));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .08),
        0 22px 48px rgba(0, 0, 0, .2);
    -webkit-backdrop-filter: blur(18px) saturate(130%);
    backdrop-filter: blur(18px) saturate(130%);
}

body.aynoot-theme .ay-jobs-card::before,
body.aynoot-theme .ay-jobs-empty::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 82% 18%, rgba(58, 170, 53, .18), transparent 34%);
}

body.aynoot-theme .ay-jobs-card > *,
body.aynoot-theme .ay-jobs-empty > * {
    position: relative;
    z-index: 1;
}

body.aynoot-theme .ay-jobs-card.is-closed {
    opacity: .78;
}

body.aynoot-theme .ay-jobs-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
}

body.aynoot-theme .ay-jobs-status,
body.aynoot-theme .ay-jobs-count {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    width: fit-content;
    color: var(--ay-muted);
    font-weight: 800;
}

body.aynoot-theme .ay-jobs-status i {
    width: .58rem;
    height: .58rem;
    border-radius: 999px;
    background: #df795b;
    box-shadow: 0 0 0 6px rgba(223, 121, 91, .12);
}

body.aynoot-theme .ay-jobs-status.is-open i {
    background: var(--ay-green);
    box-shadow: 0 0 0 6px rgba(58, 170, 53, .14);
}

body.aynoot-theme .ay-jobs-card h2,
body.aynoot-theme .ay-jobs-form-card h2 {
    margin: 0;
    color: var(--ay-text);
    font-size: 1.55rem;
    font-weight: 900;
    letter-spacing: 0;
}

body.aynoot-theme .ay-jobs-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

body.aynoot-theme .ay-jobs-tags span {
    padding: .36rem .62rem;
    border: 1px solid rgba(168, 196, 166, .2);
    border-radius: 999px;
    color: var(--ay-text);
    background: rgba(255, 255, 255, .06);
    font-size: .86rem;
    font-weight: 800;
}

body.aynoot-theme .ay-jobs-empty {
    grid-column: 1 / -1;
    min-height: 160px;
    align-items: flex-start;
    justify-content: center;
}

body.aynoot-theme .ay-jobs-empty i {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(58, 170, 53, .22);
    border-radius: 8px;
    color: var(--ay-green);
    background: rgba(58, 170, 53, .12);
    font-size: 1.25rem;
}

body.aynoot-theme .ay-jobs-back {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-bottom: 1rem;
    color: var(--ay-green);
    font-weight: 800;
    text-decoration: none;
}

body.aynoot-theme .ay-jobs-apply-layout {
    display: grid;
    grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
    gap: 1rem;
    align-items: start;
}

body.aynoot-theme .ay-jobs-form-card,
body.aynoot-theme .ay-jobs-position-card,
body.aynoot-theme .ay-jobs-status-card {
    min-height: auto;
}

body.aynoot-theme .ay-jobs-form .form-label {
    color: var(--ay-text);
    font-weight: 800;
}

body.aynoot-theme .ay-jobs-form .form-label span {
    color: var(--ay-green);
}

body.aynoot-theme .ay-jobs-form .form-control,
body.aynoot-theme .ay-jobs-form .form-select {
    color: var(--ay-text);
    border-color: rgba(168, 196, 166, .18);
    background: rgba(255, 255, 255, .06);
}

body.aynoot-theme .ay-jobs-form .form-control:focus,
body.aynoot-theme .ay-jobs-form .form-select:focus {
    border-color: rgba(58, 170, 53, .72);
    box-shadow: 0 0 0 3px rgba(58, 170, 53, .16);
}

body.aynoot-theme .ay-jobs-check .form-check-input {
    accent-color: var(--ay-green);
}

body.aynoot-theme .ay-jobs-alert {
    padding: .9rem 1rem;
    border: 1px solid rgba(58, 170, 53, .28);
    border-radius: 8px;
    color: var(--ay-text);
    background: rgba(58, 170, 53, .12);
}

body.aynoot-theme .ay-jobs-alert.is-warning {
    border-color: rgba(223, 121, 91, .24);
    background: rgba(223, 121, 91, .1);
}

body.aynoot-theme .ay-jobs-alert a {
    color: var(--ay-green);
    font-weight: 900;
}

body.aynoot-theme .ay-jobs-status-shell {
    display: grid;
    grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
    gap: 1rem;
}

body.aynoot-theme .ay-jobs-answers {
    display: grid;
    gap: .75rem;
}

body.aynoot-theme .ay-jobs-answers div {
    padding: .85rem;
    border: 1px solid rgba(168, 196, 166, .16);
    border-radius: 8px;
    background: rgba(255, 255, 255, .045);
}

body.aynoot-theme .ay-jobs-answers strong,
body.aynoot-theme .ay-jobs-answers span {
    display: block;
}

body.aynoot-theme .ay-jobs-answers strong {
    color: var(--ay-text);
    margin-bottom: .25rem;
}

body.aynoot-theme .ay-jobs-answers span {
    color: var(--ay-muted);
}

body.aynoot-theme.ay-light .ay-jobs-plugin {
    background:
        radial-gradient(circle at 18% 8%, rgba(58, 170, 53, .1), transparent 34%),
        linear-gradient(180deg, rgba(241, 248, 237, .96), rgba(222, 238, 215, .98));
}

body.aynoot-theme.ay-light .ay-jobs-card,
body.aynoot-theme.ay-light .ay-jobs-empty {
    border-color: rgba(35, 76, 39, .14);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .9), rgba(255, 255, 255, .45) 34%),
        linear-gradient(145deg, rgba(248, 253, 245, .92), rgba(225, 240, 217, .9));
    box-shadow: 0 18px 40px rgba(29, 54, 25, .1);
}

body.aynoot-theme.ay-light .ay-jobs-tags span,
body.aynoot-theme.ay-light .ay-jobs-answers div,
body.aynoot-theme.ay-light .ay-jobs-form .form-control,
body.aynoot-theme.ay-light .ay-jobs-form .form-select {
    color: var(--ay-text);
    border-color: rgba(35, 76, 39, .16);
    background: rgba(255, 255, 255, .74);
}

@media (max-width: 991.98px) {
    body.aynoot-theme .ay-jobs-grid,
    body.aynoot-theme .ay-jobs-apply-layout,
    body.aynoot-theme .ay-jobs-status-shell {
        grid-template-columns: 1fr;
    }
}

/* Absolute final server version badge polish */
body.aynoot-theme .ay-home .ay-server-version,
body.aynoot-theme .ay-gradient-zone > .ay-section-servers .ay-server-version {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 32px !important;
    padding: .42rem .64rem !important;
    border: 1px solid rgba(91, 209, 82, .42) !important;
    border-radius: 10px !important;
    color: #e8ffe4 !important;
    background:
        radial-gradient(circle at 30% 18%, rgba(255, 255, 255, .22), transparent 28%),
        linear-gradient(135deg, rgba(58, 170, 53, .35), rgba(8, 47, 18, .78)) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .14),
        0 10px 24px rgba(0, 0, 0, .22),
        0 0 0 3px rgba(58, 170, 53, .08) !important;
    text-shadow: 0 1px 0 rgba(0, 0, 0, .28) !important;
}

body.aynoot-theme.ay-light .ay-home .ay-server-version,
body.aynoot-theme.ay-light .ay-gradient-zone > .ay-section-servers .ay-server-version {
    color: #123b18 !important;
    background:
        radial-gradient(circle at 30% 18%, rgba(255, 255, 255, .72), transparent 30%),
        linear-gradient(135deg, rgba(231, 249, 223, .98), rgba(164, 224, 143, .92)) !important;
    border-color: rgba(58, 170, 53, .34) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .76),
        0 8px 18px rgba(58, 170, 53, .12),
        0 0 0 3px rgba(58, 170, 53, .06) !important;
    text-shadow: none !important;
}

/* Absolute final Changelog plugin polish */
body.aynoot-theme .ay-changelog-plugin {
    --ay-changelog-border: rgba(255, 255, 255, .13);
    --ay-changelog-card: rgba(14, 25, 15, .78);
}

body.aynoot-theme.ay-light .ay-changelog-plugin {
    --ay-changelog-border: rgba(22, 48, 21, .14);
    --ay-changelog-card: rgba(255, 255, 255, .84);
}

body.aynoot-theme .ay-changelog-page {
    display: grid;
    gap: clamp(1.25rem, 2.4vw, 2rem);
}

body.aynoot-theme .ay-changelog-head h2 {
    margin: 0;
    color: var(--ay-text);
    font-size: clamp(2.7rem, 6vw, 5rem);
    font-weight: 950;
    letter-spacing: 0;
    line-height: .95;
}

body.aynoot-theme .ay-changelog-head p {
    max-width: 760px;
    margin: .75rem 0 0;
    color: color-mix(in srgb, var(--ay-muted), var(--ay-text) 10%);
    font-size: clamp(1rem, 1.5vw, 1.14rem);
    line-height: 1.55;
}

body.aynoot-theme .ay-changelog-layout {
    display: grid;
    grid-template-columns: minmax(210px, 280px) minmax(0, 1fr);
    gap: clamp(1rem, 2.5vw, 1.6rem);
    align-items: start;
}

body.aynoot-theme .ay-changelog-sidebar,
body.aynoot-theme .ay-changelog-card,
body.aynoot-theme .ay-changelog-empty {
    border: 1px solid var(--ay-changelog-border);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(58, 170, 53, .075) 52%, rgba(255, 255, 255, .025)),
        var(--ay-changelog-card);
    box-shadow: 0 22px 70px rgba(0, 0, 0, .24);
    -webkit-backdrop-filter: blur(14px) saturate(1.12);
    backdrop-filter: blur(14px) saturate(1.12);
}

body.aynoot-theme.ay-light .ay-changelog-sidebar,
body.aynoot-theme.ay-light .ay-changelog-card,
body.aynoot-theme.ay-light .ay-changelog-empty {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .88), rgba(219, 242, 211, .68) 52%, rgba(255, 255, 255, .76)),
        var(--ay-changelog-card);
    box-shadow: 0 22px 60px rgba(42, 72, 36, .14);
}

body.aynoot-theme .ay-changelog-sidebar {
    position: sticky;
    top: 6rem;
    display: grid;
    gap: .55rem;
    padding: 1rem;
}

body.aynoot-theme .ay-changelog-sidebar h2 {
    margin: 0 0 .35rem;
    color: var(--ay-text);
    font-size: 1rem;
    font-weight: 900;
}

body.aynoot-theme .ay-changelog-category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .8rem;
    padding: .72rem .78rem;
    border: 1px solid transparent;
    border-radius: 8px;
    color: color-mix(in srgb, var(--ay-muted), var(--ay-text) 10%);
    text-decoration: none;
    transition: border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease;
}

body.aynoot-theme .ay-changelog-category:hover,
body.aynoot-theme .ay-changelog-category.is-active {
    color: var(--ay-text);
    border-color: rgba(58, 170, 53, .32);
    background: rgba(58, 170, 53, .12);
    transform: translateY(-1px);
}

body.aynoot-theme .ay-changelog-category strong {
    display: inline-grid;
    min-width: 2rem;
    height: 1.75rem;
    place-items: center;
    border-radius: 999px;
    color: #071306;
    background: var(--ay-primary);
    font-size: .82rem;
    font-weight: 950;
}

body.aynoot-theme .ay-changelog-feed {
    display: grid;
    gap: 1rem;
}

body.aynoot-theme .ay-changelog-card {
    padding: clamp(1.1rem, 2.3vw, 1.6rem);
}

body.aynoot-theme .ay-changelog-card-meta {
    display: flex;
    align-items: center;
    gap: .55rem;
    flex-wrap: wrap;
    margin-bottom: .75rem;
}

body.aynoot-theme .ay-changelog-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .35rem .55rem;
    border: 1px solid rgba(58, 170, 53, .24);
    border-radius: 999px;
    color: color-mix(in srgb, var(--ay-muted), var(--ay-text) 10%);
    background: rgba(58, 170, 53, .08);
    font-size: .88rem;
    font-weight: 800;
}

body.aynoot-theme .ay-changelog-card h2 {
    margin: 0 0 .75rem;
    color: var(--ay-text);
    font-size: clamp(1.55rem, 3vw, 2.35rem);
    font-weight: 950;
    letter-spacing: 0;
}

body.aynoot-theme .ay-changelog-content {
    color: color-mix(in srgb, var(--ay-muted), var(--ay-text) 16%);
    line-height: 1.7;
}

body.aynoot-theme .ay-changelog-content :last-child {
    margin-bottom: 0;
}

body.aynoot-theme .ay-changelog-content a {
    color: var(--ay-primary);
}

body.aynoot-theme .ay-changelog-empty {
    display: grid;
    place-items: center;
    gap: .5rem;
    min-height: 240px;
    padding: 2rem;
    text-align: center;
    color: var(--ay-muted);
}

body.aynoot-theme .ay-changelog-empty i {
    display: inline-grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 8px;
    color: var(--ay-primary);
    background: rgba(58, 170, 53, .12);
    font-size: 1.35rem;
}

body.aynoot-theme .ay-changelog-empty strong {
    color: var(--ay-text);
    font-size: 1.15rem;
    font-weight: 950;
}

body.aynoot-theme .ay-changelog-pagination .pagination {
    margin: .35rem 0 0;
    gap: .35rem;
}

body.aynoot-theme .ay-changelog-pagination .page-link {
    color: var(--ay-text);
    border-color: var(--ay-changelog-border);
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
}

body.aynoot-theme .ay-changelog-pagination .active > .page-link,
body.aynoot-theme .ay-changelog-pagination .page-link:hover {
    color: #071306;
    border-color: rgba(58, 170, 53, .45);
    background: var(--ay-primary);
}

@media (max-width: 767.98px) {
    body.aynoot-theme .ay-changelog-layout {
        grid-template-columns: 1fr;
    }

    body.aynoot-theme .ay-changelog-sidebar {
        position: static;
    }
}

/* Absolute final PlayerList plugin polish */
body.aynoot-theme .ay-players-plugin {
    --ay-players-border: rgba(255, 255, 255, .13);
    --ay-players-row: rgba(255, 255, 255, .035);
    --ay-players-row-hover: rgba(58, 170, 53, .08);
}

body.aynoot-theme.ay-light .ay-players-plugin {
    --ay-players-border: rgba(22, 48, 21, .14);
    --ay-players-row: rgba(17, 39, 23, .035);
    --ay-players-row-hover: rgba(58, 170, 53, .08);
}

body.aynoot-theme .ay-players-page {
    display: grid;
    gap: clamp(1.1rem, 2.4vw, 1.8rem);
}

body.aynoot-theme .ay-players-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
}

body.aynoot-theme .ay-players-head h2 {
    margin: 0;
    color: var(--ay-text);
    font-size: clamp(2.6rem, 6vw, 4.8rem);
    font-weight: 950;
    letter-spacing: 0;
    line-height: .95;
}

body.aynoot-theme .ay-players-head p {
    max-width: 680px;
    margin: .7rem 0 0;
    color: color-mix(in srgb, var(--ay-muted), var(--ay-text) 10%);
    font-size: clamp(1rem, 1.5vw, 1.14rem);
    line-height: 1.55;
}

body.aynoot-theme .ay-players-search {
    flex: 0 1 460px;
}

body.aynoot-theme .ay-players-search .input-group {
    overflow: hidden;
    border: 1px solid var(--ay-players-border);
    border-radius: 8px;
    background: rgba(255, 255, 255, .055);
}

body.aynoot-theme .ay-players-search .input-group-text,
body.aynoot-theme .ay-players-search .form-control {
    color: var(--ay-text);
    border: 0;
    background: transparent;
    box-shadow: none;
}

body.aynoot-theme .ay-players-search .form-control::placeholder {
    color: color-mix(in srgb, var(--ay-muted), transparent 12%);
}

body.aynoot-theme .ay-players-search .form-control:focus {
    box-shadow: none;
}

body.aynoot-theme.ay-light .ay-players-search .input-group {
    background: rgba(255, 255, 255, .74);
}

body.aynoot-theme .ay-players-card {
    overflow: hidden;
    border: 1px solid var(--ay-players-border);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(58, 170, 53, .075) 48%, rgba(255, 255, 255, .025)),
        rgba(14, 25, 15, .78);
    box-shadow: 0 22px 70px rgba(0, 0, 0, .28);
    -webkit-backdrop-filter: blur(14px) saturate(1.12);
    backdrop-filter: blur(14px) saturate(1.12);
}

body.aynoot-theme.ay-light .ay-players-card {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .88), rgba(219, 242, 211, .68) 52%, rgba(255, 255, 255, .76)),
        rgba(255, 255, 255, .84);
    box-shadow: 0 22px 60px rgba(42, 72, 36, .16);
}

body.aynoot-theme .ay-players-table {
    color: var(--ay-text);
    --bs-table-bg: transparent;
    --bs-table-color: var(--ay-text);
    --bs-table-border-color: var(--ay-players-border);
    --bs-table-striped-bg: var(--ay-players-row);
    --bs-table-hover-bg: var(--ay-players-row-hover);
    margin: 0 !important;
    background: transparent !important;
}

body.aynoot-theme .ay-players-table > :not(caption) > * > * {
    padding: .95rem 1rem;
    color: var(--ay-text);
    background-color: transparent;
    border-bottom-color: var(--ay-players-border);
    vertical-align: middle;
}

body.aynoot-theme .ay-players-table thead {
    color: var(--ay-text);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .085), rgba(58, 170, 53, .11)),
        rgba(4, 12, 7, .64);
}

body.aynoot-theme.ay-light .ay-players-table thead {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .78), rgba(210, 241, 198, .78)),
        rgba(255, 255, 255, .72);
}

body.aynoot-theme .ay-players-table tbody tr {
    transition: background-color .18s ease;
}

body.aynoot-theme .ay-players-table tbody tr:hover {
    background: var(--ay-players-row-hover);
}

body.aynoot-theme .ay-players-avatar {
    display: block;
    width: 48px;
    height: 48px;
    border: 1px solid var(--ay-players-border);
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
    object-fit: cover;
    image-rendering: pixelated;
}

body.aynoot-theme .ay-players-name {
    color: var(--ay-text);
    font-weight: 900;
}

body.aynoot-theme .ay-players-steam,
body.aynoot-theme .ay-players-sort {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ay-primary) !important;
    text-decoration: none;
}

body.aynoot-theme .ay-players-steam {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(58, 170, 53, .24);
    border-radius: 8px;
    background: rgba(58, 170, 53, .1);
    font-size: 1.12rem;
}

body.aynoot-theme .ay-players-sort {
    width: 28px;
    height: 28px;
    margin-left: .35rem;
    border-radius: 7px;
    background: rgba(58, 170, 53, .08);
}

body.aynoot-theme .ay-players-role,
body.aynoot-theme .ay-players-status {
    display: inline-flex;
    align-items: center;
    gap: .38rem;
    border-radius: 7px;
    padding: .4rem .62rem;
    font-weight: 900;
    letter-spacing: 0;
}

body.aynoot-theme .ay-players-status.is-active {
    color: #071306;
    background: linear-gradient(135deg, var(--ay-primary), #5bd152);
}

body.aynoot-theme .ay-players-status.is-banned {
    color: #fff;
    background: linear-gradient(135deg, #d95a43, #973829);
}

body.aynoot-theme .ay-players-empty {
    display: grid;
    gap: .35rem;
    padding: 1.2rem;
    color: var(--ay-muted);
    text-align: center;
}

body.aynoot-theme .ay-players-empty strong {
    color: var(--ay-text);
    font-size: 1.12rem;
}

body.aynoot-theme .ay-players-pagination {
    padding: .9rem 1rem 1rem;
}

body.aynoot-theme .ay-players-pagination .pagination {
    margin: 0;
    gap: .35rem;
}

body.aynoot-theme .ay-players-pagination .page-link {
    color: var(--ay-text);
    border-color: var(--ay-players-border);
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
}

body.aynoot-theme .ay-players-pagination .active > .page-link,
body.aynoot-theme .ay-players-pagination .page-link:hover {
    color: #071306;
    border-color: rgba(58, 170, 53, .45);
    background: var(--ay-primary);
}

@media (max-width: 767.98px) {
    body.aynoot-theme .ay-players-head {
        align-items: stretch;
        flex-direction: column;
    }

    body.aynoot-theme .ay-players-search {
        flex-basis: auto;
    }

    body.aynoot-theme .ay-players-table {
        min-width: 720px;
    }
}

body.aynoot-theme .ay-footer > .container {
    padding-top: 0 !important;
}

/* Absolute final animated streamer status dots */
body.aynoot-theme .ay-streamer-card .ay-streamer-dot {
    --ay-streamer-dot: #c66d55;
    --ay-streamer-wave: rgba(198, 109, 85, .5);
    position: relative !important;
    display: inline-block !important;
    flex: 0 0 auto !important;
    width: 10px !important;
    height: 10px !important;
    border-radius: 999px !important;
    background: var(--ay-streamer-dot) !important;
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--ay-streamer-dot), transparent 76%) !important;
    animation: ayStreamerDotPulse 2.35s ease-in-out infinite !important;
    overflow: visible !important;
}

body.aynoot-theme .ay-streamer-card .ay-streamer-dot::after {
    content: "" !important;
    position: absolute !important;
    inset: -2px !important;
    border: 1px solid var(--ay-streamer-wave) !important;
    border-radius: inherit !important;
    pointer-events: none !important;
    animation: ayStreamerStatusWave 2.35s ease-out infinite !important;
}

body.aynoot-theme .ay-streamer-card.live .ay-streamer-dot {
    --ay-streamer-dot: var(--ay-primary);
    --ay-streamer-wave: rgba(58, 170, 53, .5);
}

body.aynoot-theme .ay-streamer-card.offline .ay-streamer-dot {
    --ay-streamer-dot: #c66d55;
    --ay-streamer-wave: rgba(198, 109, 85, .52);
}

@keyframes ayStreamerDotPulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

@keyframes ayStreamerStatusWave {
    0% {
        opacity: .65;
        transform: scale(1);
    }

    72% {
        opacity: 0;
        transform: scale(3.1);
    }

    100% {
        opacity: 0;
        transform: scale(3.1);
    }
}

/* Absolute final compact community to footer spacing override */
body.aynoot-theme .ay-home > .ay-community,
body.aynoot-theme .ay-gradient-zone > .ay-community {
    min-height: 0 !important;
    margin-bottom: 0 !important;
    padding-bottom: clamp(1.25rem, 2.2vw, 2rem) !important;
}

body.aynoot-theme .ay-home > .ay-community .container,
body.aynoot-theme .ay-gradient-zone > .ay-community .container {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

body.aynoot-theme .ay-home .ay-community-grid,
body.aynoot-theme .ay-gradient-zone > .ay-community .ay-community-grid {
    margin-bottom: 0 !important;
}

body.aynoot-theme .ay-footer {
    margin-top: 0 !important;
    padding-top: clamp(1.5rem, 2.5vw, 2.25rem) !important;
}

body.aynoot-theme .ay-footer > .container {
    padding-top: 0 !important;
}

/* Absolute final compact community to footer spacing */
body.aynoot-theme .ay-home > .ay-community,
body.aynoot-theme .ay-gradient-zone > .ay-community {
    min-height: 0 !important;
    margin-bottom: 0 !important;
    padding-bottom: clamp(1.25rem, 2.2vw, 2rem) !important;
}

body.aynoot-theme .ay-home > .ay-community .container,
body.aynoot-theme .ay-gradient-zone > .ay-community .container {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

body.aynoot-theme .ay-home .ay-community-grid,
body.aynoot-theme .ay-gradient-zone > .ay-community .ay-community-grid {
    margin-bottom: 0 !important;
}

body.aynoot-theme .ay-footer {
    margin-top: 0 !important;
    padding-top: clamp(1.5rem, 2.5vw, 2.25rem) !important;
}

body.aynoot-theme .ay-footer > .container {
    padding-top: 0 !important;
}

/* Absolute final rounded server image and compact community ending */
body.aynoot-theme .ay-home .ay-server-card-media,
body.aynoot-theme .ay-gradient-zone > .ay-section-servers .ay-server-card-media {
    border-radius: 8px 8px 0 0 !important;
}

body.aynoot-theme .ay-home .ay-server-card-media img,
body.aynoot-theme .ay-gradient-zone > .ay-section-servers .ay-server-card-media img {
    border-radius: 8px !important;
}

body.aynoot-theme .ay-home > .ay-community,
body.aynoot-theme .ay-gradient-zone > .ay-community {
    min-height: auto !important;
    margin-bottom: 0 !important;
    padding-bottom: clamp(1rem, 1.8vw, 1.6rem) !important;
}

body.aynoot-theme .ay-home .ay-community-grid,
body.aynoot-theme .ay-gradient-zone > .ay-community .ay-community-grid {
    margin-bottom: 0 !important;
}

body.aynoot-theme .ay-footer {
    margin-top: 0 !important;
    padding-top: clamp(1.25rem, 2.2vw, 1.8rem) !important;
}

/* True final community-to-footer gap removal */
body.aynoot-theme .ay-home > .ay-community,
body.aynoot-theme .ay-gradient-zone > .ay-community {
    min-height: auto !important;
    margin-bottom: 0 !important;
    padding-bottom: clamp(1.1rem, 2vw, 1.8rem) !important;
    content-visibility: visible !important;
    contain-intrinsic-size: auto 0 !important;
}

body.aynoot-theme .ay-home > .ay-community::before,
body.aynoot-theme .ay-home > .ay-community::after,
body.aynoot-theme .ay-gradient-zone > .ay-community::before,
body.aynoot-theme .ay-gradient-zone > .ay-community::after {
    display: none !important;
    content: none !important;
}

body.aynoot-theme .ay-home .ay-community-grid,
body.aynoot-theme .ay-gradient-zone > .ay-community .ay-community-grid {
    margin-bottom: 0 !important;
}

body.aynoot-theme .ay-footer {
    margin-top: 0 !important;
    padding-top: clamp(1.4rem, 2.4vw, 2rem) !important;
}

body.aynoot-theme .ay-footer::before,
body.aynoot-theme .ay-footer::after {
    display: none !important;
    content: none !important;
}

/* Absolute final server vertical card, community gap and pickaxe cursor */
body.aynoot-theme {
    --ay-spear-cursor: url("../img/ui/minecraft-enchanted-pickaxe-cursor-v2.svg") 4 5;
}

body.aynoot-theme .ay-home .ay-section-servers .ay-server-grid {
    grid-template-columns: minmax(280px, 440px) !important;
    justify-content: start !important;
    align-items: start !important;
}

body.aynoot-theme .ay-home .ay-server-card.ay-medieval-server-card {
    display: flex !important;
    flex-direction: column !important;
    width: min(100%, 440px) !important;
    min-height: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
    overflow: hidden !important;
    background:
        linear-gradient(180deg, rgba(20, 31, 21, .96), rgba(8, 14, 10, .94)) !important;
}

body.aynoot-theme .ay-home .ay-server-card.ay-medieval-server-card::before {
    display: none !important;
    content: none !important;
}

body.aynoot-theme .ay-home .ay-server-card-media {
    position: relative;
    display: block !important;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

body.aynoot-theme .ay-home .ay-server-card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .04), rgba(0, 0, 0, .34)),
        radial-gradient(circle at 18% 12%, rgba(255, 226, 150, .2), transparent 34%);
}

body.aynoot-theme .ay-home .ay-server-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

body.aynoot-theme .ay-home .ay-server-card-body {
    display: grid;
    gap: .85rem;
    padding: clamp(1.05rem, 2vw, 1.35rem);
}

body.aynoot-theme .ay-home .ay-server-card.ay-medieval-server-card p {
    max-width: none !important;
    margin: 0 !important;
}

body.aynoot-theme .ay-home .ay-server-card.ay-medieval-server-card .ay-btn {
    justify-self: start;
}

body.aynoot-theme .ay-home .ay-server-card.ay-medieval-server-card .ay-server-address {
    margin-top: 0 !important;
}

body.aynoot-theme.ay-light .ay-home .ay-server-card.ay-medieval-server-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(232, 243, 226, .86)) !important;
}

body.aynoot-theme .ay-home > .ay-community,
body.aynoot-theme .ay-gradient-zone > .ay-community {
    min-height: 0 !important;
    margin-bottom: 0 !important;
    padding-top: clamp(2.5rem, 4vw, 3.5rem) !important;
    padding-bottom: clamp(1.6rem, 2.8vw, 2.35rem) !important;
    content-visibility: visible !important;
    contain-intrinsic-size: auto 0 !important;
}

body.aynoot-theme .ay-home > .ay-community::before,
body.aynoot-theme .ay-home > .ay-community::after,
body.aynoot-theme .ay-gradient-zone > .ay-community::before,
body.aynoot-theme .ay-gradient-zone > .ay-community::after {
    display: none !important;
    content: none !important;
}

body.aynoot-theme .ay-footer {
    margin-top: 0 !important;
    padding-top: clamp(1.8rem, 3vw, 2.5rem) !important;
}

@media (max-width: 767.98px) {
    body.aynoot-theme .ay-home .ay-section-servers .ay-server-grid {
        grid-template-columns: minmax(0, 1fr) !important;
    }

    body.aynoot-theme .ay-home .ay-server-card.ay-medieval-server-card {
        width: 100% !important;
    }
}

/* Absolute final home spacing, brand baseline and cursor polish */
body.aynoot-theme {
    --ay-spear-cursor: url("../img/ui/minecraft-enchanted-pickaxe-cursor-v2.svg") 4 5;
    cursor: var(--ay-spear-cursor), auto;
}

body.aynoot-theme a,
body.aynoot-theme button,
body.aynoot-theme [role="button"],
body.aynoot-theme .btn,
body.aynoot-theme summary,
body.aynoot-theme select,
body.aynoot-theme label[for] {
    cursor: var(--ay-spear-cursor), pointer !important;
}

body.aynoot-theme input,
body.aynoot-theme textarea,
body.aynoot-theme [contenteditable="true"] {
    cursor: text !important;
}

body.aynoot-theme input[type="checkbox"],
body.aynoot-theme input[type="radio"],
body.aynoot-theme input[type="button"],
body.aynoot-theme input[type="submit"],
body.aynoot-theme input[type="reset"] {
    cursor: var(--ay-spear-cursor), pointer !important;
}

body.aynoot-theme .ay-brand-text small {
    transform: translateY(2px);
}

body.aynoot-theme .ay-gradient-zone > .ay-section-servers {
    padding-top: clamp(4.5rem, 6vw, 6.5rem) !important;
}

body.aynoot-theme .ay-gradient-zone > #news {
    padding-top: clamp(3.25rem, 5vw, 4.75rem) !important;
}

body.aynoot-theme .ay-home .ay-section-servers .ay-server-grid {
    grid-template-columns: minmax(0, min(100%, 760px)) !important;
    align-items: stretch !important;
}

body.aynoot-theme .ay-home .ay-server-card.ay-medieval-server-card {
    width: min(100%, 760px) !important;
    min-height: clamp(300px, 27vw, 380px) !important;
    padding: clamp(1.35rem, 2.4vw, 2rem) !important;
}

body.aynoot-theme .ay-home .ay-server-card.ay-medieval-server-card p {
    max-width: 520px;
}

body.aynoot-theme .ay-home .ay-about-story-visual img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
}

body.aynoot-theme .ay-gradient-zone > .ay-streamers-section {
    padding-top: clamp(4.25rem, 6vw, 6.25rem) !important;
    padding-bottom: clamp(2.75rem, 4.5vw, 4rem) !important;
}

body.aynoot-theme .ay-gradient-zone > .ay-community {
    padding-top: clamp(2.75rem, 4.5vw, 4rem) !important;
    padding-bottom: clamp(2.75rem, 4.8vw, 4.25rem) !important;
}

body.aynoot-theme .ay-gradient-zone > .ay-community::after,
body.aynoot-theme .ay-home > .ay-community::after {
    height: clamp(70px, 8vw, 130px) !important;
}

body.aynoot-theme .ay-footer {
    padding-top: clamp(2.25rem, 4vw, 3.25rem) !important;
}

@media (max-width: 767.98px) {
    body.aynoot-theme .ay-gradient-zone > .ay-community {
        padding-top: 2.25rem !important;
        padding-bottom: 2.75rem !important;
    }

    body.aynoot-theme .ay-gradient-zone > .ay-streamers-section {
        padding-bottom: 2.5rem !important;
    }
}

/* Absolute final support plugin polish */
body.aynoot-theme.ay-support-page .ay-content h2 {
    margin-bottom: clamp(1.1rem, 2vw, 1.6rem) !important;
    color: var(--ay-text) !important;
    font-size: clamp(2.4rem, 6vw, 4.4rem) !important;
    font-weight: 950 !important;
    letter-spacing: 0 !important;
}

body.aynoot-theme.ay-support-page .ay-content .ay-support-card,
body.aynoot-theme.ay-support-page .ay-content #support,
body.aynoot-theme.ay-support-page .ay-content .list-group-item {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .14) !important;
    border-radius: 8px !important;
    color: var(--ay-text) !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(58, 170, 53, .075) 48%, rgba(255, 255, 255, .025)),
        rgba(14, 25, 15, .78) !important;
    box-shadow: 0 22px 70px rgba(0, 0, 0, .28) !important;
    backdrop-filter: blur(14px) saturate(1.12);
}

body.aynoot-theme.ay-light.ay-support-page .ay-content .ay-support-card,
body.aynoot-theme.ay-light.ay-support-page .ay-content #support,
body.aynoot-theme.ay-light.ay-support-page .ay-content .list-group-item {
    border-color: rgba(35, 76, 33, .14) !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .86), rgba(219, 242, 211, .68) 52%, rgba(255, 255, 255, .76)),
        rgba(255, 255, 255, .82) !important;
    box-shadow: 0 22px 60px rgba(42, 72, 36, .16) !important;
}

body.aynoot-theme.ay-support-page .ay-content .card-body {
    padding: clamp(1.1rem, 2.1vw, 1.65rem) !important;
}

body.aynoot-theme.ay-support-page .ay-content .table-responsive {
    border-radius: 8px;
}

body.aynoot-theme.ay-support-page .ay-content .ay-support-table,
body.aynoot-theme.ay-support-page .ay-content .table {
    margin-bottom: 1.2rem !important;
    color: var(--ay-text) !important;
    --bs-table-bg: transparent;
    --bs-table-color: var(--ay-text);
    --bs-table-border-color: rgba(255, 255, 255, .12);
    --bs-table-striped-bg: rgba(255, 255, 255, .035);
    --bs-table-hover-bg: rgba(58, 170, 53, .075);
    background: transparent !important;
    border-color: rgba(255, 255, 255, .12) !important;
}

body.aynoot-theme.ay-support-page .ay-content .ay-support-table > :not(caption) > * > *,
body.aynoot-theme.ay-support-page .ay-content .table > :not(caption) > * > * {
    padding: .95rem .9rem !important;
    color: var(--ay-text) !important;
    background-color: transparent !important;
    border-bottom-color: rgba(255, 255, 255, .12) !important;
    vertical-align: middle;
}

body.aynoot-theme.ay-support-page .ay-content .ay-support-table thead,
body.aynoot-theme.ay-support-page .ay-content .table thead,
body.aynoot-theme.ay-support-page .ay-content .table-dark {
    --bs-table-bg: rgba(4, 12, 7, .62);
    --bs-table-color: var(--ay-text);
    color: var(--ay-text) !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(58, 170, 53, .1)),
        rgba(4, 12, 7, .62) !important;
}

body.aynoot-theme.ay-light.ay-support-page .ay-content .ay-support-table,
body.aynoot-theme.ay-light.ay-support-page .ay-content .table {
    --bs-table-border-color: rgba(22, 48, 21, .14);
    --bs-table-hover-bg: rgba(58, 170, 53, .075);
    border-color: rgba(22, 48, 21, .14) !important;
}

body.aynoot-theme.ay-light.ay-support-page .ay-content .ay-support-table > :not(caption) > * > *,
body.aynoot-theme.ay-light.ay-support-page .ay-content .table > :not(caption) > * > * {
    border-bottom-color: rgba(22, 48, 21, .14) !important;
}

body.aynoot-theme.ay-support-page .ay-content .form-label {
    color: var(--ay-text) !important;
    font-weight: 850;
}

body.aynoot-theme.ay-support-page .ay-content .form-control,
body.aynoot-theme.ay-support-page .ay-content .form-select,
body.aynoot-theme.ay-support-page .ay-content .input-group-text {
    color: var(--ay-text) !important;
    border-color: rgba(255, 255, 255, .13) !important;
    background: rgba(255, 255, 255, .055) !important;
    box-shadow: none !important;
}

body.aynoot-theme.ay-support-page .ay-content .form-control:focus,
body.aynoot-theme.ay-support-page .ay-content .form-select:focus {
    border-color: rgba(91, 209, 82, .74) !important;
    box-shadow: 0 0 0 .18rem rgba(58, 170, 53, .2) !important;
}

body.aynoot-theme.ay-light.ay-support-page .ay-content .form-control,
body.aynoot-theme.ay-light.ay-support-page .ay-content .form-select,
body.aynoot-theme.ay-light.ay-support-page .ay-content .input-group-text {
    color: var(--ay-text) !important;
    border-color: rgba(22, 48, 21, .16) !important;
    background: rgba(255, 255, 255, .78) !important;
}

body.aynoot-theme.ay-support-page .ay-content .btn-primary {
    color: #061006 !important;
    border: 0 !important;
    background: linear-gradient(135deg, var(--ay-primary), color-mix(in srgb, var(--ay-primary), #5bd152 18%)) !important;
    box-shadow: 0 12px 26px rgba(58, 170, 53, .2) !important;
    font-weight: 900;
}

body.aynoot-theme.ay-support-page .ay-content .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(58, 170, 53, .26) !important;
}

body.aynoot-theme.ay-support-page .ay-content .btn-danger {
    color: #fff !important;
    border-color: rgba(217, 90, 67, .38) !important;
    background: rgba(217, 90, 67, .22) !important;
}

body.aynoot-theme.ay-support-page .ay-content .btn-secondary,
body.aynoot-theme.ay-support-page .ay-content .btn-warning {
    color: var(--ay-text) !important;
    border-color: rgba(255, 255, 255, .14) !important;
    background: rgba(255, 255, 255, .08) !important;
}

body.aynoot-theme.ay-support-page .ay-content .badge {
    border-radius: 6px;
    padding: .38rem .58rem;
    font-weight: 900;
    letter-spacing: 0;
}

body.aynoot-theme.ay-support-page .ay-content .badge.bg-success {
    color: #061006 !important;
    background: linear-gradient(135deg, var(--ay-primary), #5bd152) !important;
}

body.aynoot-theme.ay-support-page .ay-content .badge.bg-primary {
    color: #170f04 !important;
    background: linear-gradient(135deg, #e4b164, #b8793d) !important;
}

body.aynoot-theme.ay-support-page .ay-content .badge.bg-danger {
    color: #fff !important;
    background: linear-gradient(135deg, #d95a43, #973829) !important;
}

body.aynoot-theme.ay-support-page .ay-content .text-primary,
body.aynoot-theme.ay-support-page .ay-content a {
    color: var(--ay-primary) !important;
}

body.aynoot-theme.ay-support-page .ay-content .text-muted,
body.aynoot-theme.ay-support-page .ay-content .form-text,
body.aynoot-theme.ay-support-page .ay-content .card-text {
    color: color-mix(in srgb, var(--ay-muted), var(--ay-text) 8%) !important;
}

body.aynoot-theme.ay-support-page .ay-content .alert {
    border: 1px solid rgba(91, 209, 82, .2) !important;
    border-radius: 8px !important;
    color: var(--ay-text) !important;
    background: rgba(58, 170, 53, .1) !important;
}

@media (max-width: 767.98px) {
    body.aynoot-theme.ay-support-page .ay-content .table-responsive {
        border: 1px solid rgba(255, 255, 255, .1);
    }

    body.aynoot-theme.ay-support-page .ay-content .list-group-item .row {
        gap: 1rem;
    }
}

/* Absolute final cookie consent */
body.aynoot-theme .ay-cookie-consent {
    position: fixed;
    left: clamp(1rem, 3vw, 2rem);
    right: clamp(1rem, 3vw, 2rem);
    bottom: clamp(1rem, 3vw, 2rem);
    z-index: 1080;
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid rgba(91, 209, 82, .26);
    border-radius: 8px;
    background:
        radial-gradient(circle at 8% 0%, rgba(255, 255, 255, .16), transparent 34%),
        linear-gradient(135deg, rgba(23, 34, 24, .96), rgba(5, 12, 7, .92));
    box-shadow: 0 24px 70px rgba(0, 0, 0, .42);
    opacity: 0;
    transform: translate3d(0, 14px, 0);
    transition: opacity .22s ease, transform .22s ease;
}

body.aynoot-theme .ay-cookie-consent[hidden] {
    display: none !important;
}

body.aynoot-theme .ay-cookie-consent.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

body.aynoot-theme .ay-cookie-consent__content strong {
    display: block;
    margin-bottom: .25rem;
    color: var(--ay-text);
    font-size: 1rem;
    font-weight: 900;
}

body.aynoot-theme .ay-cookie-consent__content p {
    margin: 0;
    color: color-mix(in srgb, var(--ay-muted), var(--ay-text) 8%);
    line-height: 1.55;
}

body.aynoot-theme .ay-cookie-consent__content a {
    color: var(--ay-primary);
    font-weight: 800;
    text-decoration: none;
}

body.aynoot-theme .ay-cookie-consent__content a:hover {
    color: color-mix(in srgb, var(--ay-primary), #ffffff 18%);
}

body.aynoot-theme .ay-cookie-consent__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: .6rem;
}

body.aynoot-theme .ay-cookie-consent__actions .ay-btn {
    white-space: nowrap;
}

body.aynoot-theme.ay-light .ay-cookie-consent {
    border-color: rgba(58, 170, 53, .22);
    background:
        radial-gradient(circle at 8% 0%, rgba(255, 255, 255, .82), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(237, 247, 232, .92));
    box-shadow: 0 24px 70px rgba(36, 58, 31, .18);
}

@media (max-width: 767.98px) {
    body.aynoot-theme .ay-cookie-consent {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    body.aynoot-theme .ay-cookie-consent__actions {
        justify-content: stretch;
    }

    body.aynoot-theme .ay-cookie-consent__actions .ay-btn {
        flex: 1 1 0;
    }
}

/* Absolute final about image and heading spacing */
body.aynoot-theme .ay-home .ay-about-split h2 {
    margin-bottom: clamp(.8rem, 1.35vw, 1.15rem) !important;
}

body.aynoot-theme .ay-home .ay-about-split h2 + p {
    margin-top: 0 !important;
}

body.aynoot-theme .ay-home .ay-about-story-visual img {
    object-position: center !important;
}

body.aynoot-theme.ay-light .ay-gradient-zone {
    background:
        radial-gradient(circle at 18% 18%, rgba(58, 170, 53, .1), transparent 36rem),
        linear-gradient(180deg, #f1f7ee 0%, #e8f4e3 42%, #eef7ea 72%, #edf5ea 100%) !important;
}

body.aynoot-theme.ay-light .ay-gradient-zone > .ay-community {
    background: transparent !important;
}

body.aynoot-theme.ay-light .ay-footer {
    background:
        radial-gradient(circle at 20% 0%, rgba(58, 170, 53, .08), transparent 34rem),
        linear-gradient(180deg, #edf5ea 0%, #eef6ea 54%, #edf5ea 100%) !important;
}

@media (max-width: 575.98px) {
    body.aynoot-theme .ay-auth-side {
        padding-top: 1.35rem !important;
    }
}

/* Absolute final seamless section color transitions */
body.aynoot-theme {
    --ay-seam-top: #1d251e;
    --ay-seam-mid: #142018;
    --ay-seam-bottom: #07100b;
    --ay-seam-footer: #030604;
    --ay-main-gradient-start: var(--ay-seam-top) !important;
    --ay-main-gradient-mid: var(--ay-seam-mid) !important;
    --ay-main-gradient-end: var(--ay-seam-bottom) !important;
}

body.aynoot-theme.ay-light {
    --ay-seam-top: #f1f7ee;
    --ay-seam-mid: #e8f4e3;
    --ay-seam-bottom: #edf5ea;
    --ay-seam-footer: #edf5ea;
}

body.aynoot-theme .ay-lovable-hero {
    background:
        linear-gradient(180deg, rgba(5, 11, 8, .06) 0%, rgba(5, 11, 8, .2) 40%, rgba(29, 37, 30, .64) 76%, var(--ay-seam-top) 100%),
        linear-gradient(90deg, rgba(5, 11, 8, .78) 0%, rgba(5, 11, 8, .34) 54%, rgba(0, 0, 0, .48) 100%),
        var(--ay-background-image) center top / cover no-repeat !important;
}

body.aynoot-theme.ay-light .ay-lovable-hero {
    background:
        linear-gradient(180deg, rgba(245, 249, 242, .08) 0%, rgba(245, 249, 242, .26) 40%, rgba(241, 247, 238, .7) 76%, var(--ay-seam-top) 100%),
        linear-gradient(90deg, rgba(245, 249, 242, .76) 0%, rgba(245, 249, 242, .38) 54%, rgba(245, 249, 242, .52) 100%),
        var(--ay-background-image) center top / cover no-repeat !important;
}

body.aynoot-theme .ay-lovable-hero::before {
    display: none !important;
    content: none !important;
}

body.aynoot-theme .ay-lovable-hero::after {
    display: block !important;
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: -1px !important;
    z-index: 1 !important;
    height: clamp(420px, 52vh, 760px) !important;
    pointer-events: none !important;
    background:
        linear-gradient(180deg, rgba(29, 37, 30, 0) 0%, rgba(29, 37, 30, .1) 22%, rgba(29, 37, 30, .34) 48%, rgba(29, 37, 30, .74) 76%, var(--ay-seam-top) 100%) !important;
}

body.aynoot-theme.ay-light .ay-lovable-hero::after {
    background:
        linear-gradient(180deg, rgba(241, 247, 238, 0) 0%, rgba(241, 247, 238, .14) 22%, rgba(241, 247, 238, .38) 48%, rgba(241, 247, 238, .78) 76%, var(--ay-seam-top) 100%) !important;
}

body.aynoot-theme .ay-lovable-hero .container,
body.aynoot-theme .ay-lovable-hero .ay-hero-grid {
    position: relative !important;
    z-index: 2 !important;
}

body.aynoot-theme .ay-gradient-zone {
    margin-top: 0 !important;
    padding-top: 0 !important;
    background:
        radial-gradient(circle at 18% 18%, rgba(58, 170, 53, .055), transparent 38rem),
        linear-gradient(180deg, var(--ay-seam-top) 0%, var(--ay-seam-mid) 38%, var(--ay-seam-bottom) 100%) !important;
}

body.aynoot-theme.ay-light .ay-gradient-zone {
    background:
        radial-gradient(circle at 18% 18%, rgba(58, 170, 53, .09), transparent 38rem),
        linear-gradient(180deg, var(--ay-seam-top) 0%, var(--ay-seam-mid) 38%, var(--ay-seam-bottom) 100%) !important;
}

body.aynoot-theme .ay-gradient-zone::before,
body.aynoot-theme .ay-gradient-zone::after,
body.aynoot-theme .ay-gradient-zone > .ay-community::before,
body.aynoot-theme .ay-gradient-zone > .ay-community::after {
    display: none !important;
    content: none !important;
    background: none !important;
}

body.aynoot-theme .ay-gradient-zone > .ay-community {
    margin-bottom: 0 !important;
    padding-bottom: clamp(11rem, 16vw, 18rem) !important;
    background: transparent !important;
}

body.aynoot-theme .ay-footer {
    margin-top: -1px !important;
    padding-top: clamp(4.5rem, 7vw, 6rem) !important;
    border-top: 0 !important;
    box-shadow: none !important;
    outline: 0 !important;
    background:
        linear-gradient(180deg, var(--ay-seam-bottom) 0%, color-mix(in srgb, var(--ay-seam-bottom), var(--ay-seam-footer) 34%) 42%, var(--ay-seam-footer) 100%) !important;
}

body.aynoot-theme .ay-footer::before,
body.aynoot-theme .ay-footer::after {
    display: none !important;
    content: none !important;
    background: none !important;
}

/* Absolute final about image and heading spacing */
body.aynoot-theme .ay-home .ay-about-split h2 {
    margin-bottom: clamp(.8rem, 1.35vw, 1.15rem) !important;
}

body.aynoot-theme .ay-home .ay-about-split h2 + p {
    margin-top: 0 !important;
}

body.aynoot-theme .ay-home .ay-about-story-visual img {
    object-position: center !important;
}

/* Absolute final cookie consent */
body.aynoot-theme .ay-cookie-consent {
    position: fixed;
    left: clamp(1rem, 3vw, 2rem);
    right: clamp(1rem, 3vw, 2rem);
    bottom: clamp(1rem, 3vw, 2rem);
    z-index: 1080;
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid rgba(91, 209, 82, .26);
    border-radius: 8px;
    background:
        radial-gradient(circle at 8% 0%, rgba(255, 255, 255, .16), transparent 34%),
        linear-gradient(135deg, rgba(23, 34, 24, .96), rgba(5, 12, 7, .92));
    box-shadow: 0 24px 70px rgba(0, 0, 0, .42);
    opacity: 0;
    transform: translate3d(0, 14px, 0);
    transition: opacity .22s ease, transform .22s ease;
}

body.aynoot-theme .ay-cookie-consent[hidden] {
    display: none !important;
}

body.aynoot-theme .ay-cookie-consent.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

body.aynoot-theme .ay-cookie-consent__content strong {
    display: block;
    margin-bottom: .25rem;
    color: var(--ay-text);
    font-size: 1rem;
    font-weight: 900;
}

body.aynoot-theme .ay-cookie-consent__content p {
    margin: 0;
    color: color-mix(in srgb, var(--ay-muted), var(--ay-text) 8%);
    line-height: 1.55;
}

body.aynoot-theme .ay-cookie-consent__content a {
    color: var(--ay-primary);
    font-weight: 800;
    text-decoration: none;
}

body.aynoot-theme .ay-cookie-consent__content a:hover {
    color: color-mix(in srgb, var(--ay-primary), #ffffff 18%);
}

body.aynoot-theme .ay-cookie-consent__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: .6rem;
}

body.aynoot-theme .ay-cookie-consent__actions .ay-btn {
    white-space: nowrap;
}

body.aynoot-theme.ay-light .ay-cookie-consent {
    border-color: rgba(58, 170, 53, .22);
    background:
        radial-gradient(circle at 8% 0%, rgba(255, 255, 255, .82), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(237, 247, 232, .92));
    box-shadow: 0 24px 70px rgba(36, 58, 31, .18);
}

@media (max-width: 767.98px) {
    body.aynoot-theme .ay-cookie-consent {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    body.aynoot-theme .ay-cookie-consent__actions {
        justify-content: stretch;
    }

    body.aynoot-theme .ay-cookie-consent__actions .ay-btn {
        flex: 1 1 0;
    }
}

/* Absolute final two-factor notice alignment */
body.aynoot-theme .ay-two-factor-notice,
body.aynoot-theme .form-check:has(.ay-two-factor-notice__label) {
    display: flex !important;
    align-items: flex-start !important;
    gap: .55rem !important;
    margin: .85rem 0 1rem !important;
    padding-left: 0 !important;
}

body.aynoot-theme .ay-two-factor-notice__checkbox,
body.aynoot-theme .form-check:has(.ay-two-factor-notice__label) > .form-check-input {
    float: none !important;
    flex: 0 0 auto !important;
    margin: .22rem 0 0 !important;
}

body.aynoot-theme .ay-two-factor-notice__label {
    display: block !important;
    flex: 1 1 auto !important;
    margin: 0 !important;
    color: color-mix(in srgb, var(--ay-text), var(--ay-muted) 16%) !important;
    line-height: 1.45 !important;
}

/* Absolute final visible two-factor notice card */
body.aynoot-theme .ay-two-factor-notice,
body.aynoot-theme .form-check:has(.ay-two-factor-notice__label) {
    display: flex !important;
    align-items: flex-start !important;
    gap: .65rem !important;
    margin: .9rem 0 1rem !important;
    padding: .8rem .9rem !important;
    border: 1px solid rgba(91, 209, 82, .18) !important;
    border-radius: 8px !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .055), rgba(58, 170, 53, .055)),
        rgba(8, 18, 10, .42) !important;
}

body.aynoot-theme .ay-two-factor-notice__checkbox,
body.aynoot-theme .form-check:has(.ay-two-factor-notice__label) > .form-check-input {
    float: none !important;
    flex: 0 0 auto !important;
    margin: .16rem 0 0 !important;
}

body.aynoot-theme .ay-two-factor-notice__label {
    display: block !important;
    flex: 1 1 auto !important;
    margin: 0 !important;
    color: color-mix(in srgb, var(--ay-text), var(--ay-muted) 16%) !important;
    line-height: 1.45 !important;
}

body.aynoot-theme .ay-two-factor-notice__label strong,
body.aynoot-theme .ay-two-factor-notice__label b {
    color: inherit !important;
    font-weight: 800 !important;
}

/* True final compact square server card and enchanted pickaxe cursor */
body.aynoot-theme {
    --ay-spear-cursor: url("../img/ui/minecraft-enchanted-pickaxe-cursor-v2.svg") 4 5;
}

body.aynoot-theme .ay-home .ay-section-servers .ay-server-grid,
body.aynoot-theme .ay-gradient-zone > .ay-section-servers .ay-server-grid {
    grid-template-columns: minmax(0, 380px) !important;
    justify-content: start !important;
    align-items: start !important;
    max-width: 380px !important;
}

body.aynoot-theme .ay-home .ay-server-card.ay-medieval-server-card,
body.aynoot-theme .ay-gradient-zone > .ay-section-servers .ay-server-card.ay-medieval-server-card {
    display: flex !important;
    flex-direction: column !important;
    width: min(100%, 380px) !important;
    max-width: 380px !important;
    min-height: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
    overflow: hidden !important;
    background:
        linear-gradient(180deg, rgba(15, 25, 17, .96), rgba(6, 12, 8, .96)) !important;
}

body.aynoot-theme .ay-home .ay-server-card.ay-medieval-server-card::before,
body.aynoot-theme .ay-gradient-zone > .ay-section-servers .ay-server-card.ay-medieval-server-card::before {
    display: none !important;
    content: none !important;
}

body.aynoot-theme .ay-home .ay-server-card-media,
body.aynoot-theme .ay-gradient-zone > .ay-section-servers .ay-server-card-media {
    display: grid !important;
    place-items: center !important;
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    padding: .75rem !important;
    overflow: hidden !important;
    border-bottom: 1px solid rgba(255, 255, 255, .12) !important;
    background:
        radial-gradient(circle at 18% 12%, rgba(255, 226, 150, .14), transparent 34%),
        rgba(3, 7, 5, .72) !important;
}

body.aynoot-theme .ay-home .ay-server-card-media::after,
body.aynoot-theme .ay-gradient-zone > .ay-section-servers .ay-server-card-media::after {
    display: none !important;
    content: none !important;
}

body.aynoot-theme .ay-home .ay-server-card-media img,
body.aynoot-theme .ay-gradient-zone > .ay-section-servers .ay-server-card-media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
}

body.aynoot-theme .ay-home .ay-server-card-body,
body.aynoot-theme .ay-gradient-zone > .ay-section-servers .ay-server-card-body {
    display: grid !important;
    gap: .8rem !important;
    padding: 1rem !important;
}

body.aynoot-theme .ay-home .ay-server-card.ay-medieval-server-card .ay-server-card-top,
body.aynoot-theme .ay-gradient-zone > .ay-section-servers .ay-server-card.ay-medieval-server-card .ay-server-card-top {
    align-items: flex-start !important;
    gap: .8rem !important;
}

body.aynoot-theme .ay-home .ay-server-card.ay-medieval-server-card p,
body.aynoot-theme .ay-gradient-zone > .ay-section-servers .ay-server-card.ay-medieval-server-card p {
    max-width: none !important;
    margin: 0 !important;
}

body.aynoot-theme .ay-home .ay-server-card.ay-medieval-server-card .ay-btn,
body.aynoot-theme .ay-gradient-zone > .ay-section-servers .ay-server-card.ay-medieval-server-card .ay-btn {
    justify-self: stretch !important;
    width: 100% !important;
}

body.aynoot-theme .ay-home .ay-server-card.ay-medieval-server-card .ay-server-address,
body.aynoot-theme .ay-gradient-zone > .ay-section-servers .ay-server-card.ay-medieval-server-card .ay-server-address {
    margin-top: 0 !important;
}

body.aynoot-theme.ay-light .ay-home .ay-server-card.ay-medieval-server-card,
body.aynoot-theme.ay-light .ay-gradient-zone > .ay-section-servers .ay-server-card.ay-medieval-server-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(232, 243, 226, .9)) !important;
}

@media (max-width: 575.98px) {
    body.aynoot-theme .ay-home .ay-section-servers .ay-server-grid,
    body.aynoot-theme .ay-gradient-zone > .ay-section-servers .ay-server-grid {
        grid-template-columns: minmax(0, 1fr) !important;
        max-width: 100% !important;
    }

    body.aynoot-theme .ay-home .ay-server-card.ay-medieval-server-card,
    body.aynoot-theme .ay-gradient-zone > .ay-section-servers .ay-server-card.ay-medieval-server-card {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* Absolute final compact community to footer spacing override */
body.aynoot-theme .ay-home > .ay-community,
body.aynoot-theme .ay-gradient-zone > .ay-community {
    min-height: 0 !important;
    margin-bottom: 0 !important;
    padding-bottom: clamp(1.25rem, 2.2vw, 2rem) !important;
}

body.aynoot-theme .ay-home > .ay-community .container,
body.aynoot-theme .ay-gradient-zone > .ay-community .container {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

body.aynoot-theme .ay-home .ay-community-grid,
body.aynoot-theme .ay-gradient-zone > .ay-community .ay-community-grid {
    margin-bottom: 0 !important;
}

body.aynoot-theme .ay-footer {
    margin-top: 0 !important;
    padding-top: clamp(1.5rem, 2.5vw, 2.25rem) !important;
}

body.aynoot-theme .ay-footer > .container {
    padding-top: 0 !important;
}

/* Absolute final streamer live/offline pulse override */
body.aynoot-theme .ay-streamer-card .ay-streamer-dot {
    --ay-streamer-dot: #c66d55;
    --ay-streamer-wave: rgba(198, 109, 85, .52);
    position: relative !important;
    display: inline-block !important;
    flex: 0 0 auto !important;
    width: 10px !important;
    height: 10px !important;
    border-radius: 999px !important;
    background: var(--ay-streamer-dot) !important;
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--ay-streamer-dot), transparent 76%) !important;
    animation: ayStreamerDotPulseFinal 2.35s ease-in-out infinite !important;
    overflow: visible !important;
}

body.aynoot-theme .ay-streamer-card .ay-streamer-dot::after {
    content: "" !important;
    position: absolute !important;
    inset: -2px !important;
    border: 1px solid var(--ay-streamer-wave) !important;
    border-radius: inherit !important;
    pointer-events: none !important;
    animation: ayStreamerStatusWaveFinal 2.35s ease-out infinite !important;
}

body.aynoot-theme .ay-streamer-card.live .ay-streamer-dot {
    --ay-streamer-dot: var(--ay-primary);
    --ay-streamer-wave: rgba(58, 170, 53, .5);
}

body.aynoot-theme .ay-streamer-card.offline .ay-streamer-dot {
    --ay-streamer-dot: #c66d55;
    --ay-streamer-wave: rgba(198, 109, 85, .52);
}

@keyframes ayStreamerDotPulseFinal {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

@keyframes ayStreamerStatusWaveFinal {
    0% {
        opacity: .65;
        transform: scale(1);
    }

    72% {
        opacity: 0;
        transform: scale(3.1);
    }

    100% {
        opacity: 0;
        transform: scale(3.1);
    }
}

/* Absolute final custom ANI cursor */
body.aynoot-theme {
    --ay-spear-cursor: url("../img/ui/aynoot-main-cursor.cur"), url("../img/ui/aynoot-main-cursor.ani"), url("../img/ui/minecraft-enchanted-pickaxe-cursor-v2.svg") 4 5;
}

/* Absolute final readable native selects */
body.aynoot-theme .ay-content select,
body.aynoot-theme .ay-content .form-select {
    color: var(--ay-text) !important;
    background-color: rgba(14, 25, 15, .94) !important;
}

body.aynoot-theme .ay-content select option,
body.aynoot-theme .ay-content .form-select option {
    color: #f4fff1 !important;
    background-color: #0b130d !important;
}

body.aynoot-theme .ay-content select option:checked,
body.aynoot-theme .ay-content .form-select option:checked {
    color: #061006 !important;
    background-color: #3aaa35 !important;
}

body.aynoot-theme.ay-light .ay-content select option,
body.aynoot-theme.ay-light .ay-content .form-select option {
    color: #102015 !important;
    background-color: #f4faf1 !important;
}

/* Absolute final mobile navigation and skin page polish */
@media (max-width: 991.98px) {
    body.aynoot-theme .ay-navbar-wrap,
    body.aynoot-theme.ay-light .ay-navbar-wrap {
        background: color-mix(in srgb, var(--ay-bg), transparent 8%) !important;
        border-bottom: 1px solid var(--ay-soft-border) !important;
        box-shadow: 0 18px 45px rgba(0, 0, 0, .18) !important;
        -webkit-backdrop-filter: blur(18px) saturate(130%) !important;
        backdrop-filter: blur(18px) saturate(130%) !important;
    }

    body.aynoot-theme .ay-navbar > .container {
        position: relative !important;
        min-height: 52px !important;
        flex-wrap: nowrap !important;
    }

    body.aynoot-theme .ay-navbar-controls {
        position: static !important;
        width: auto !important;
        margin-left: auto !important;
    }

    body.aynoot-theme #ayNavbar {
        position: absolute !important;
        top: calc(100% + .7rem) !important;
        left: .75rem !important;
        right: .75rem !important;
        z-index: 1100 !important;
        max-height: calc(100vh - 6.5rem) !important;
        overflow: auto !important;
        padding: .85rem !important;
        border: 1px solid rgba(91, 209, 82, .18) !important;
        border-radius: 16px !important;
        background:
            radial-gradient(circle at 16% 0%, rgba(58, 170, 53, .18), transparent 34%),
            linear-gradient(145deg, rgba(12, 26, 14, .97), rgba(4, 12, 7, .97)) !important;
        box-shadow: 0 26px 70px rgba(0, 0, 0, .46) !important;
        -webkit-backdrop-filter: blur(22px) saturate(135%) !important;
        backdrop-filter: blur(22px) saturate(135%) !important;
    }

    body.aynoot-theme.ay-light #ayNavbar {
        background:
            radial-gradient(circle at 16% 0%, rgba(58, 170, 53, .16), transparent 34%),
            linear-gradient(145deg, rgba(247, 252, 244, .98), rgba(226, 241, 221, .96)) !important;
        box-shadow: 0 26px 70px rgba(24, 38, 20, .18) !important;
    }

    body.aynoot-theme #ayNavbar.show {
        animation: ayMobileMenuIn .2s ease-out both;
    }

    body.aynoot-theme #ayNavbar.collapsing {
        overflow: hidden !important;
        transition: height .2s ease !important;
    }

    body.aynoot-theme #ayNavbar .navbar-nav {
        width: 100% !important;
        gap: .28rem !important;
        margin: 0 !important;
        padding: .05rem !important;
    }

    body.aynoot-theme #ayNavbar .nav-item {
        width: 100% !important;
    }

    body.aynoot-theme #ayNavbar .nav-link {
        width: 100% !important;
        min-height: 46px !important;
        margin: 0 !important;
        padding: .78rem .9rem !important;
        border-radius: 10px !important;
        color: color-mix(in srgb, var(--ay-muted), var(--ay-text) 12%) !important;
        font-size: 1rem !important;
        font-weight: 850 !important;
        justify-content: flex-start !important;
    }

    body.aynoot-theme #ayNavbar .nav-link::before {
        display: block !important;
        left: .9rem !important;
        right: auto !important;
        bottom: .35rem !important;
        width: calc(100% - 1.8rem) !important;
        height: 2px !important;
        transform: scaleX(0) !important;
        transform-origin: left center !important;
        border-radius: 999px !important;
        background: linear-gradient(90deg, var(--ay-primary), rgba(91, 209, 82, .2)) !important;
    }

    body.aynoot-theme #ayNavbar .nav-link:hover,
    body.aynoot-theme #ayNavbar .nav-link.active {
        color: var(--ay-text) !important;
        background: rgba(255, 255, 255, .06) !important;
    }

    body.aynoot-theme.ay-light #ayNavbar .nav-link:hover,
    body.aynoot-theme.ay-light #ayNavbar .nav-link.active {
        background: rgba(58, 170, 53, .11) !important;
    }

    body.aynoot-theme #ayNavbar .nav-link:hover::before,
    body.aynoot-theme #ayNavbar .nav-link.active::before {
        transform: scaleX(1) !important;
    }

    body.aynoot-theme #ayNavbar .ay-auth-actions {
        width: 100% !important;
        margin: .75rem 0 0 !important;
        padding: .8rem .05rem .05rem !important;
        border-top: 1px solid rgba(255, 255, 255, .08) !important;
        gap: .55rem !important;
    }

    body.aynoot-theme #ayNavbar .ay-auth-actions > .dropdown,
    body.aynoot-theme #ayNavbar .ay-user-btn,
    body.aynoot-theme #ayNavbar .ay-auth-actions .ay-btn {
        width: 100% !important;
    }

    body.aynoot-theme #ayNavbar .ay-user-btn {
        justify-content: flex-start !important;
        min-height: 48px !important;
        padding: .45rem .75rem .45rem .5rem !important;
        border-radius: 12px !important;
    }

    body.aynoot-theme #ayNavbar .ay-user-btn .ay-user-arrow {
        margin-left: auto !important;
    }

    body.aynoot-theme #ayNavbar .ay-dropdown {
        position: static !important;
        transform: none !important;
        width: 100% !important;
        margin-top: .5rem !important;
        border: 1px solid rgba(91, 209, 82, .14) !important;
        border-radius: 12px !important;
        background: rgba(6, 16, 8, .78) !important;
        box-shadow: none !important;
    }
}

@keyframes ayMobileMenuIn {
    from {
        opacity: 0;
        transform: translateY(-8px) scale(.985);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

body.aynoot-theme .ay-skin-page-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

body.aynoot-theme .ay-skin-page-head h2 {
    margin: 0;
}

body.aynoot-theme .ay-skin-page-head p {
    max-width: 680px;
    margin: .45rem 0 0;
    color: var(--ay-muted);
    line-height: 1.55;
}

body.aynoot-theme .ay-skin-3d-link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    white-space: nowrap;
}

@media (max-width: 767.98px) {
    body.aynoot-theme .ay-skin-page-head {
        flex-direction: column;
        align-items: stretch;
    }

    body.aynoot-theme .ay-skin-3d-link {
        justify-content: center;
        width: 100%;
    }
}

/* Absolute final mobile header controls and stable menu opening */
@media (max-width: 991.98px) {
    body.aynoot-theme .ay-navbar-wrap,
    body.aynoot-theme.ay-light .ay-navbar-wrap {
        background: rgba(5, 13, 7, .9) !important;
        border-bottom: 1px solid rgba(91, 209, 82, .12) !important;
        box-shadow: 0 18px 38px rgba(0, 0, 0, .28) !important;
        -webkit-backdrop-filter: blur(18px) saturate(135%) !important;
        backdrop-filter: blur(18px) saturate(135%) !important;
    }

    body.aynoot-theme.ay-light .ay-navbar-wrap {
        background: rgba(247, 252, 244, .9) !important;
        box-shadow: 0 18px 38px rgba(24, 38, 20, .14) !important;
    }

    body.aynoot-theme .ay-navbar {
        min-height: 64px !important;
        padding: .45rem 0 !important;
    }

    body.aynoot-theme .ay-navbar > .container {
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        min-height: 48px !important;
        gap: .65rem !important;
        flex-wrap: nowrap !important;
    }

    body.aynoot-theme .ay-brand {
        flex: 1 1 auto !important;
        min-width: 0 !important;
        gap: .55rem !important;
    }

    body.aynoot-theme .ay-brand-logo {
        width: 34px !important;
        height: 34px !important;
        flex: 0 0 34px !important;
    }

    body.aynoot-theme .ay-brand-text strong {
        font-size: 1rem !important;
        line-height: 1.05 !important;
    }

    body.aynoot-theme .ay-brand-text small {
        display: none !important;
    }

    body.aynoot-theme .ay-navbar-controls {
        position: static !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        width: auto !important;
        min-width: max-content !important;
        margin-left: auto !important;
        gap: .45rem !important;
        transform: none !important;
    }

    body.aynoot-theme .ay-theme-toggle,
    body.aynoot-theme .ay-toggler {
        position: relative !important;
        display: inline-grid !important;
        place-items: center !important;
        flex: 0 0 42px !important;
        width: 42px !important;
        height: 42px !important;
        min-width: 42px !important;
        min-height: 42px !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 1px solid rgba(255, 255, 255, .16) !important;
        border-radius: 13px !important;
        color: var(--ay-text) !important;
        background:
            linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04)),
            rgba(7, 18, 10, .82) !important;
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, .08),
            0 10px 24px rgba(0, 0, 0, .28) !important;
        outline: 0 !important;
        overflow: hidden !important;
        transition: border-color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease !important;
    }

    body.aynoot-theme.ay-light .ay-theme-toggle,
    body.aynoot-theme.ay-light .ay-toggler {
        color: #152016 !important;
        border-color: rgba(23, 32, 22, .14) !important;
        background:
            linear-gradient(145deg, rgba(255, 255, 255, .92), rgba(232, 243, 226, .78)),
            rgba(247, 252, 244, .92) !important;
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, .85),
            0 10px 22px rgba(24, 38, 20, .12) !important;
    }

    body.aynoot-theme .ay-theme-toggle:hover,
    body.aynoot-theme .ay-theme-toggle:focus,
    body.aynoot-theme .ay-theme-toggle:focus-visible,
    body.aynoot-theme .ay-toggler:hover,
    body.aynoot-theme .ay-toggler:focus,
    body.aynoot-theme .ay-toggler:focus-visible,
    body.aynoot-theme .ay-toggler[aria-expanded="true"] {
        border-color: rgba(91, 209, 82, .62) !important;
        background:
            linear-gradient(145deg, rgba(58, 170, 53, .24), rgba(255, 255, 255, .05)),
            rgba(7, 18, 10, .9) !important;
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, .08),
            0 0 0 3px rgba(58, 170, 53, .16),
            0 12px 28px rgba(0, 0, 0, .32) !important;
        outline: 0 !important;
    }

    body.aynoot-theme .ay-theme-toggle img {
        display: block !important;
        width: 32px !important;
        height: 32px !important;
        max-width: 32px !important;
        max-height: 32px !important;
        object-fit: contain !important;
        transform: none !important;
        filter: none !important;
        image-rendering: pixelated !important;
    }

    body.aynoot-theme .ay-toggler i {
        display: block !important;
        width: auto !important;
        height: auto !important;
        margin: 0 !important;
        color: currentColor !important;
        font-size: 1.72rem !important;
        line-height: 1 !important;
    }

    body.aynoot-theme .ay-toggler[aria-expanded="true"] i::before {
        content: "\F62A";
    }

    body.aynoot-theme #ayNavbar.collapse:not(.show) {
        display: none !important;
    }

    body.aynoot-theme #ayNavbar.collapse.show,
    body.aynoot-theme #ayNavbar.collapsing {
        display: block !important;
        height: auto !important;
    }

    body.aynoot-theme #ayNavbar,
    body.aynoot-theme #ayNavbar.collapsing {
        position: absolute !important;
        top: calc(100% + .55rem) !important;
        left: .75rem !important;
        right: .75rem !important;
        z-index: 1100 !important;
        max-height: calc(100vh - 6.25rem) !important;
        overflow: auto !important;
        padding: .72rem !important;
        border: 1px solid rgba(91, 209, 82, .18) !important;
        border-radius: 16px !important;
        background:
            radial-gradient(circle at 18% 0%, rgba(58, 170, 53, .2), transparent 35%),
            linear-gradient(145deg, rgba(10, 24, 13, .98), rgba(3, 11, 6, .98)) !important;
        box-shadow: 0 24px 60px rgba(0, 0, 0, .48) !important;
        -webkit-backdrop-filter: blur(22px) saturate(135%) !important;
        backdrop-filter: blur(22px) saturate(135%) !important;
        transition: none !important;
    }

    body.aynoot-theme.ay-light #ayNavbar,
    body.aynoot-theme.ay-light #ayNavbar.collapsing {
        background:
            radial-gradient(circle at 18% 0%, rgba(58, 170, 53, .14), transparent 35%),
            linear-gradient(145deg, rgba(248, 252, 245, .98), rgba(229, 242, 222, .97)) !important;
        box-shadow: 0 24px 60px rgba(24, 38, 20, .18) !important;
    }

    body.aynoot-theme #ayNavbar.show {
        animation: ayMobileMenuStableIn .18s ease-out both !important;
    }
}

@media (max-width: 420px) {
    body.aynoot-theme .ay-navbar > .container {
        padding-left: .85rem !important;
        padding-right: .85rem !important;
    }

    body.aynoot-theme .ay-navbar-controls {
        gap: .38rem !important;
    }

    body.aynoot-theme .ay-theme-toggle,
    body.aynoot-theme .ay-toggler {
        flex-basis: 40px !important;
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        min-height: 40px !important;
    }

    body.aynoot-theme .ay-theme-toggle img {
        width: 30px !important;
        height: 30px !important;
    }
}

@keyframes ayMobileMenuStableIn {
    from {
        opacity: 0;
        transform: translate3d(0, -6px, 0) scale(.99);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

/* Absolute final mobile menu readability */
@media (max-width: 991.98px) {
    body.aynoot-theme #ayNavbar,
    body.aynoot-theme #ayNavbar.collapsing {
        background:
            radial-gradient(circle at 18% 0%, rgba(58, 170, 53, .16), transparent 33%),
            linear-gradient(145deg, rgba(8, 22, 11, .995), rgba(3, 10, 5, .995)) !important;
        box-shadow:
            0 28px 70px rgba(0, 0, 0, .58),
            inset 0 1px 0 rgba(255, 255, 255, .06) !important;
    }

    body.aynoot-theme.ay-light #ayNavbar,
    body.aynoot-theme.ay-light #ayNavbar.collapsing {
        background:
            radial-gradient(circle at 18% 0%, rgba(58, 170, 53, .12), transparent 33%),
            linear-gradient(145deg, rgba(249, 253, 247, .995), rgba(229, 242, 222, .992)) !important;
    }
}

/* Absolute final light server card polish */
body.aynoot-theme.ay-light .ay-home .ay-server-card.ay-medieval-server-card,
body.aynoot-theme.ay-light .ay-gradient-zone > .ay-section-servers .ay-server-card.ay-medieval-server-card {
    border-color: rgba(58, 170, 53, .22) !important;
    background:
        linear-gradient(180deg, rgba(250, 253, 247, .98), rgba(232, 244, 225, .96)) !important;
    box-shadow:
        0 18px 42px rgba(37, 58, 32, .12),
        inset 0 1px 0 rgba(255, 255, 255, .85) !important;
}

body.aynoot-theme.ay-light .ay-home .ay-server-card-media,
body.aynoot-theme.ay-light .ay-gradient-zone > .ay-section-servers .ay-server-card-media {
    padding: 0 !important;
    border-bottom-color: rgba(58, 170, 53, .16) !important;
    background: transparent !important;
    box-shadow: none !important;
}

body.aynoot-theme.ay-light .ay-home .ay-server-card-media img,
body.aynoot-theme.ay-light .ay-gradient-zone > .ay-section-servers .ay-server-card-media img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
}

body.aynoot-theme.ay-light .ay-home .ay-server-version,
body.aynoot-theme.ay-light .ay-gradient-zone > .ay-section-servers .ay-server-version {
    color: #143c1a !important;
    background:
        linear-gradient(135deg, rgba(222, 247, 212, .98), rgba(171, 225, 151, .92)) !important;
    border: 1px solid rgba(58, 170, 53, .28) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .72),
        0 8px 18px rgba(58, 170, 53, .12) !important;
}

body.aynoot-theme.ay-light .ay-home .ay-server-address,
body.aynoot-theme.ay-light .ay-gradient-zone > .ay-section-servers .ay-server-address {
    color: #112717 !important;
    background: rgba(255, 255, 255, .84) !important;
    border: 1px solid rgba(58, 170, 53, .24) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .8),
        0 8px 20px rgba(37, 58, 32, .08) !important;
}

body.aynoot-theme.ay-light .ay-home .ay-server-address code,
body.aynoot-theme.ay-light .ay-gradient-zone > .ay-section-servers .ay-server-address code {
    color: #112717 !important;
    background: transparent !important;
}

/* Jobs visual lock after legacy plugin rules */
body.aynoot-theme .ay-jobs-plugin {
    --ay-jobs-border: rgba(255, 255, 255, .13);
    --ay-jobs-surface: rgba(14, 25, 15, .78);
}

body.aynoot-theme.ay-light .ay-jobs-plugin {
    --ay-jobs-border: rgba(22, 48, 21, .14);
    --ay-jobs-surface: rgba(255, 255, 255, .84);
}

body.aynoot-theme .ay-jobs-page {
    width: min(1180px, calc(100vw - 2rem));
    padding: clamp(2.5rem, 6vw, 4.75rem) 0;
}

body.aynoot-theme .ay-jobs-head {
    margin-bottom: clamp(1.25rem, 2.4vw, 2rem);
}

body.aynoot-theme .ay-jobs-head h2 {
    margin: 0;
    font-size: clamp(2.7rem, 6vw, 5rem);
    font-weight: 950;
    line-height: .95;
}

body.aynoot-theme .ay-jobs-head p {
    margin: .75rem 0 0;
    color: color-mix(in srgb, var(--ay-muted), var(--ay-text) 10%);
    font-size: clamp(1rem, 1.5vw, 1.14rem);
    line-height: 1.55;
}

body.aynoot-theme .ay-jobs-sidebar,
body.aynoot-theme .ay-jobs-card,
body.aynoot-theme .ay-jobs-empty {
    border: 1px solid var(--ay-jobs-border);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(58, 170, 53, .075) 52%, rgba(255, 255, 255, .025)),
        var(--ay-jobs-surface);
    box-shadow: 0 22px 70px rgba(0, 0, 0, .24);
    -webkit-backdrop-filter: blur(14px) saturate(1.12);
    backdrop-filter: blur(14px) saturate(1.12);
}

body.aynoot-theme.ay-light .ay-jobs-sidebar,
body.aynoot-theme.ay-light .ay-jobs-card,
body.aynoot-theme.ay-light .ay-jobs-empty {
    border-color: var(--ay-jobs-border);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .88), rgba(219, 242, 211, .68) 52%, rgba(255, 255, 255, .76)),
        var(--ay-jobs-surface);
    box-shadow: 0 22px 60px rgba(42, 72, 36, .14);
}

body.aynoot-theme .ay-jobs-card {
    min-height: 0;
    gap: .75rem;
    padding: clamp(1.1rem, 2.3vw, 1.6rem);
    overflow: visible;
}

body.aynoot-theme .ay-jobs-card::before,
body.aynoot-theme .ay-jobs-empty::before {
    display: none;
}

body.aynoot-theme .ay-jobs-card-meta > span,
body.aynoot-theme .ay-jobs-card-meta .ay-jobs-status,
body.aynoot-theme .ay-jobs-card-meta .ay-jobs-count {
    width: fit-content;
    padding: .35rem .55rem;
    border: 1px solid rgba(58, 170, 53, .24);
    border-radius: 999px;
    color: color-mix(in srgb, var(--ay-muted), var(--ay-text) 10%);
    background: rgba(58, 170, 53, .08);
    font-size: .88rem;
    font-weight: 800;
}

body.aynoot-theme .ay-jobs-card h2,
body.aynoot-theme .ay-jobs-form-card h2 {
    margin: 0;
    font-size: clamp(1.55rem, 3vw, 2.35rem);
    font-weight: 950;
}

body.aynoot-theme .ay-jobs-card p,
body.aynoot-theme .ay-jobs-description {
    margin: 0;
    color: color-mix(in srgb, var(--ay-muted), var(--ay-text) 16%);
    line-height: 1.7;
}

/* Jobs section width, shared heading rhythm and animated status */
body.aynoot-theme .ay-home-jobs-shell {
    width: 100%;
    max-width: none;
}

body.aynoot-theme .ay-home-jobs-head {
    margin-bottom: 1.5rem;
}

body.aynoot-theme .ay-home-jobs-head span {
    display: block;
    max-width: 700px;
    margin-top: .55rem;
    color: var(--ay-muted);
    line-height: 1.65;
}

body.aynoot-theme .ay-jobs-status i,
body.aynoot-theme .ay-home-job-status i {
    --ay-jobs-pulse: 223, 121, 91;
    position: relative;
    z-index: 0;
    flex: 0 0 auto;
}

body.aynoot-theme .ay-jobs-status.is-open i,
body.aynoot-theme .ay-home-job-status i {
    --ay-jobs-pulse: 58, 170, 53;
}

body.aynoot-theme .ay-jobs-status i::after,
body.aynoot-theme .ay-home-job-status i::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 999px;
    background: rgba(var(--ay-jobs-pulse), .55);
    animation: ayJobsStatusPulse 1.9s ease-out infinite;
    pointer-events: none;
}

@keyframes ayJobsStatusPulse {
    0% {
        opacity: .75;
        transform: scale(1);
    }

    72%,
    100% {
        opacity: 0;
        transform: scale(2.75);
    }
}

@media (prefers-reduced-motion: reduce) {
    body.aynoot-theme .ay-jobs-status i::after,
    body.aynoot-theme .ay-home-job-status i::after {
        animation: none;
    }
}

/* Stable Jobs status and final mobile overflow/menu fixes */
body.aynoot-theme .ay-jobs-status,
body.aynoot-theme .ay-home-job-status {
    min-height: 30px;
    line-height: 1;
    white-space: nowrap;
    isolation: isolate;
}

body.aynoot-theme .ay-jobs-status i,
body.aynoot-theme .ay-home-job-status i {
    display: inline-block;
    width: 8px;
    height: 8px;
    min-width: 8px;
    min-height: 8px;
    border-radius: 999px;
    background: rgb(var(--ay-jobs-pulse));
    box-shadow: none;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

body.aynoot-theme .ay-jobs-status i::after,
body.aynoot-theme .ay-home-job-status i::after {
    inset: -4px;
    z-index: -1;
    border: 1px solid rgba(var(--ay-jobs-pulse), .58);
    background: transparent;
    will-change: transform, opacity;
}

body.aynoot-theme .ay-jobs-status-label {
    position: relative;
    z-index: 2;
    display: inline-block;
    line-height: 1;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

@keyframes ayJobsStatusPulse {
    0% {
        opacity: .78;
        transform: scale(.7);
    }

    70%,
    100% {
        opacity: 0;
        transform: scale(1.75);
    }
}

@media (max-width: 767.98px) {
    body.aynoot-theme .ay-jobs-plugin {
        max-width: 100%;
        overflow-x: clip;
    }

    body.aynoot-theme .ay-jobs-page {
        width: 100% !important;
        max-width: 100% !important;
        padding-inline: 0 !important;
        box-sizing: border-box;
    }

    body.aynoot-theme .ay-jobs-layout,
    body.aynoot-theme .ay-jobs-sidebar,
    body.aynoot-theme .ay-jobs-feed,
    body.aynoot-theme .ay-jobs-card,
    body.aynoot-theme .ay-jobs-empty {
        min-width: 0 !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }

    body.aynoot-theme .ay-jobs-card,
    body.aynoot-theme .ay-jobs-empty {
        width: 100% !important;
        overflow: hidden;
    }

    body.aynoot-theme .ay-jobs-head h2,
    body.aynoot-theme .ay-jobs-position-card h2,
    body.aynoot-theme .ay-jobs-status-card h2 {
        font-size: clamp(2.35rem, 12vw, 3.55rem);
        overflow-wrap: anywhere;
    }

    body.aynoot-theme .ay-jobs-card h2,
    body.aynoot-theme .ay-jobs-card p,
    body.aynoot-theme .ay-jobs-description {
        overflow-wrap: anywhere;
        word-break: normal;
    }
}

@media (max-width: 991.98px) {
    body.aynoot-theme.ay-light .ay-toggler[aria-expanded="true"],
    body.aynoot-theme.ay-light .ay-toggler[aria-expanded="true"]:hover,
    body.aynoot-theme.ay-light .ay-toggler[aria-expanded="true"]:focus {
        color: #17351b !important;
        border-color: rgba(58, 170, 53, .42) !important;
        background:
            linear-gradient(145deg, rgba(224, 246, 216, .98), rgba(190, 229, 177, .94)),
            #edf8e9 !important;
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, .82),
            0 0 0 3px rgba(58, 170, 53, .12),
            0 10px 24px rgba(41, 78, 34, .16) !important;
    }

    body.aynoot-theme.ay-light #ayNavbar .ay-dropdown {
        border-color: rgba(35, 76, 39, .14) !important;
        background: rgba(250, 253, 248, .88) !important;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, .78) !important;
    }

    body.aynoot-theme.ay-light #ayNavbar .ay-dropdown .dropdown-item {
        color: #536451 !important;
        background: transparent !important;
    }

    body.aynoot-theme.ay-light #ayNavbar .ay-dropdown .dropdown-item:hover,
    body.aynoot-theme.ay-light #ayNavbar .ay-dropdown .dropdown-item.active {
        color: #142a17 !important;
        background: rgba(58, 170, 53, .12) !important;
    }
}

/* Final Jobs status: no pill, fixed label and two independent waves */
body.aynoot-theme .ay-jobs-status,
body.aynoot-theme .ay-jobs-card-meta .ay-jobs-status,
body.aynoot-theme .ay-home-job-meta .ay-home-job-status {
    --ay-jobs-pulse: 223, 121, 91;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    width: fit-content;
    min-height: 24px;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    color: color-mix(in srgb, var(--ay-muted), var(--ay-text) 10%);
    background: transparent !important;
    box-shadow: none !important;
    line-height: 1;
    white-space: nowrap;
    isolation: isolate;
}

body.aynoot-theme .ay-jobs-status.is-open,
body.aynoot-theme .ay-home-job-status {
    --ay-jobs-pulse: 58, 170, 53;
}

body.aynoot-theme .ay-home-job-meta .ay-home-job-status > .ay-jobs-status-dot,
body.aynoot-theme .ay-home-job-meta .ay-home-job-status > .ay-jobs-status-label {
    min-height: 0;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    color: inherit;
    background: transparent !important;
    box-shadow: none !important;
    font-size: inherit;
    font-weight: inherit;
}

body.aynoot-theme .ay-jobs-status-dot {
    position: relative;
    display: inline-grid;
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
    flex: 0 0 18px;
    place-items: center;
    border-radius: 999px;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

body.aynoot-theme .ay-jobs-status-dot i {
    position: relative;
    z-index: 3;
    display: block;
    width: 8px !important;
    height: 8px !important;
    min-width: 8px !important;
    min-height: 8px !important;
    border: 0 !important;
    border-radius: 999px;
    background: rgb(var(--ay-jobs-pulse)) !important;
    box-shadow:
        0 0 0 3px rgba(var(--ay-jobs-pulse), .12),
        0 0 10px rgba(var(--ay-jobs-pulse), .5) !important;
    animation: none !important;
}

body.aynoot-theme .ay-jobs-status-dot i::after {
    content: none !important;
    display: none !important;
    animation: none !important;
}

body.aynoot-theme .ay-jobs-status-dot::before,
body.aynoot-theme .ay-jobs-status-dot::after {
    content: "";
    position: absolute;
    inset: 4px;
    z-index: 1;
    border: 1px solid rgba(var(--ay-jobs-pulse), .68);
    border-radius: 999px;
    opacity: 0;
    transform: scale(.75);
    animation: ayJobsStatusWave 2s ease-out infinite;
    will-change: transform, opacity;
    pointer-events: none;
}

body.aynoot-theme .ay-jobs-status-dot::after {
    animation-delay: 1s;
}

body.aynoot-theme .ay-jobs-status-label {
    position: relative;
    z-index: 4;
    display: inline-block;
    line-height: 1.15;
    transform: none !important;
    animation: none !important;
    backface-visibility: visible;
}

@keyframes ayJobsStatusWave {
    0% {
        opacity: .82;
        transform: scale(.75);
    }

    78%,
    100% {
        opacity: 0;
        transform: scale(2.15);
    }
}

@media (prefers-reduced-motion: reduce) {
    body.aynoot-theme .ay-jobs-status-dot::before,
    body.aynoot-theme .ay-jobs-status-dot::after {
        animation: none;
    }
}

/* Absolute Jobs indicator centering and light select contrast */
body.aynoot-theme .ay-jobs-status,
body.aynoot-theme .ay-jobs-card-meta .ay-jobs-status,
body.aynoot-theme .ay-home-job-meta .ay-home-job-status {
    --ay-jobs-pulse: 38, 202, 70;
    align-items: center !important;
    gap: .5rem !important;
    min-height: 20px !important;
    font-family: "Segoe UI", Arial, sans-serif !important;
    text-shadow: none !important;
    filter: none !important;
}

body.aynoot-theme .ay-jobs-status:not(.is-open) {
    --ay-jobs-pulse: 223, 95, 72;
}

body.aynoot-theme .ay-jobs-status-dot {
    position: relative !important;
    display: block !important;
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    flex: 0 0 18px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: transparent !important;
    box-shadow: none !important;
    line-height: 0 !important;
    transform: none !important;
    overflow: visible !important;
}

body.aynoot-theme .ay-jobs-status-dot i {
    position: absolute !important;
    top: 5px !important;
    left: 5px !important;
    z-index: 3 !important;
    display: block !important;
    width: 8px !important;
    height: 8px !important;
    min-width: 8px !important;
    min-height: 8px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: rgb(var(--ay-jobs-pulse)) !important;
    box-shadow:
        0 0 0 3px rgba(var(--ay-jobs-pulse), .14),
        0 0 9px rgba(var(--ay-jobs-pulse), .72) !important;
    transform: none !important;
}

body.aynoot-theme .ay-jobs-status-dot::before,
body.aynoot-theme .ay-jobs-status-dot::after {
    top: 5px !important;
    right: auto !important;
    bottom: auto !important;
    left: 5px !important;
    width: 8px !important;
    height: 8px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid rgba(var(--ay-jobs-pulse), .82) !important;
    border-radius: 999px !important;
    background: transparent !important;
    box-sizing: border-box !important;
    transform-origin: 50% 50% !important;
    animation: ayJobsCenteredWave 2s ease-out infinite !important;
}

body.aynoot-theme .ay-jobs-status-dot::after {
    animation-delay: 1s !important;
}

body.aynoot-theme .ay-jobs-status-label {
    position: static !important;
    display: block !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    color: inherit !important;
    background: transparent !important;
    box-shadow: none !important;
    font-family: "Segoe UI", Arial, sans-serif !important;
    font-size: .88rem !important;
    font-style: normal !important;
    font-weight: 700 !important;
    font-synthesis: none !important;
    font-variant: normal !important;
    line-height: 20px !important;
    letter-spacing: 0 !important;
    text-decoration: none !important;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
    transform: none !important;
    animation: none !important;
}

@keyframes ayJobsCenteredWave {
    0% {
        opacity: .88;
        transform: scale(.9);
    }

    78%,
    100% {
        opacity: 0;
        transform: scale(2.25);
    }
}

body.aynoot-theme.ay-light .ay-jobs-form-card .ay-jobs-form .form-select {
    color: #172a19 !important;
    border-color: rgba(40, 91, 42, .28) !important;
    background-color: rgba(251, 253, 249, .96) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .86) !important;
}

body.aynoot-theme.ay-light .ay-jobs-form-card .ay-jobs-form .form-select:focus {
    color: #102413 !important;
    border-color: rgba(38, 202, 70, .78) !important;
    background-color: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(38, 202, 70, .15) !important;
}

body.aynoot-theme.ay-light .ay-jobs-form-card .ay-jobs-form .form-select option {
    color: #172a19 !important;
    background: #f8fcf6 !important;
}

@media (prefers-reduced-motion: reduce) {
    body.aynoot-theme .ay-jobs-status-dot::before,
    body.aynoot-theme .ay-jobs-status-dot::after {
        animation: none !important;
    }
}

/* Jobs page: final Changelog visual parity */
body.aynoot-theme .ay-jobs-plugin {
    --ay-changelog-border: rgba(255, 255, 255, .13);
    --ay-changelog-card: rgba(14, 25, 15, .78);
    --ay-jobs-border: var(--ay-changelog-border);
    --ay-jobs-surface: var(--ay-changelog-card);
}

body.aynoot-theme.ay-light .ay-jobs-plugin {
    --ay-changelog-border: rgba(22, 48, 21, .14);
    --ay-changelog-card: rgba(255, 255, 255, .84);
    --ay-jobs-border: var(--ay-changelog-border);
    --ay-jobs-surface: var(--ay-changelog-card);
}

body.aynoot-theme .ay-jobs-page.ay-changelog-page {
    display: grid !important;
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: clamp(1.25rem, 2.4vw, 2rem) !important;
}

body.aynoot-theme .ay-jobs-head.ay-changelog-head {
    margin: 0 !important;
    max-width: none !important;
}

body.aynoot-theme .ay-jobs-head.ay-changelog-head h2 {
    margin: 0 !important;
    color: var(--ay-text) !important;
    font-size: clamp(2.7rem, 6vw, 5rem) !important;
    font-weight: 950 !important;
    letter-spacing: 0 !important;
    line-height: .95 !important;
}

body.aynoot-theme .ay-jobs-head.ay-changelog-head p {
    max-width: 760px !important;
    margin: .75rem 0 0 !important;
    color: color-mix(in srgb, var(--ay-muted), var(--ay-text) 10%) !important;
    font-size: clamp(1rem, 1.5vw, 1.14rem) !important;
    line-height: 1.55 !important;
}

body.aynoot-theme .ay-jobs-layout.ay-changelog-layout {
    display: grid !important;
    grid-template-columns: minmax(210px, 280px) minmax(0, 1fr) !important;
    gap: clamp(1rem, 2.5vw, 1.6rem) !important;
    align-items: start !important;
}

body.aynoot-theme .ay-jobs-sidebar.ay-changelog-sidebar,
body.aynoot-theme .ay-jobs-card.ay-changelog-card,
body.aynoot-theme .ay-jobs-empty.ay-changelog-empty {
    border: 1px solid var(--ay-changelog-border) !important;
    border-radius: 8px !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(58, 170, 53, .075) 52%, rgba(255, 255, 255, .025)),
        var(--ay-changelog-card) !important;
    box-shadow: 0 22px 70px rgba(0, 0, 0, .24) !important;
    -webkit-backdrop-filter: blur(14px) saturate(1.12) !important;
    backdrop-filter: blur(14px) saturate(1.12) !important;
}

body.aynoot-theme.ay-light .ay-jobs-sidebar.ay-changelog-sidebar,
body.aynoot-theme.ay-light .ay-jobs-card.ay-changelog-card,
body.aynoot-theme.ay-light .ay-jobs-empty.ay-changelog-empty {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .88), rgba(219, 242, 211, .68) 52%, rgba(255, 255, 255, .76)),
        var(--ay-changelog-card) !important;
    box-shadow: 0 22px 60px rgba(42, 72, 36, .14) !important;
}

body.aynoot-theme .ay-jobs-sidebar.ay-changelog-sidebar {
    position: sticky !important;
    top: 6rem !important;
    display: grid !important;
    gap: .55rem !important;
    padding: 1rem !important;
}

body.aynoot-theme .ay-jobs-sidebar.ay-changelog-sidebar h2 {
    margin: 0 0 .35rem !important;
    color: var(--ay-text) !important;
    font-size: 1rem !important;
    font-weight: 900 !important;
}

body.aynoot-theme .ay-jobs-sidebar.ay-changelog-sidebar .ay-changelog-category strong i {
    font-size: .95rem;
    line-height: 1;
}

body.aynoot-theme .ay-jobs-feed.ay-changelog-feed {
    display: grid !important;
    gap: 1rem !important;
}

body.aynoot-theme .ay-jobs-card.ay-changelog-card {
    display: block !important;
    min-height: 0 !important;
    padding: clamp(1.1rem, 2.3vw, 1.6rem) !important;
    overflow: visible !important;
}

body.aynoot-theme .ay-jobs-card.ay-changelog-card::before,
body.aynoot-theme .ay-jobs-empty.ay-changelog-empty::before {
    content: none !important;
    display: none !important;
}

body.aynoot-theme .ay-jobs-card-meta.ay-changelog-card-meta {
    display: flex !important;
    align-items: center !important;
    gap: .55rem !important;
    flex-wrap: wrap !important;
    margin-bottom: .75rem !important;
}

body.aynoot-theme .ay-jobs-card-meta.ay-changelog-card-meta > span,
body.aynoot-theme .ay-jobs-card-meta.ay-changelog-card-meta > .ay-jobs-status,
body.aynoot-theme .ay-jobs-card-meta.ay-changelog-card-meta > .ay-jobs-count {
    display: inline-flex !important;
    align-items: center !important;
    gap: .35rem !important;
    width: fit-content !important;
    min-height: 0 !important;
    padding: .35rem .55rem !important;
    border: 1px solid rgba(58, 170, 53, .24) !important;
    border-radius: 999px !important;
    color: color-mix(in srgb, var(--ay-muted), var(--ay-text) 10%) !important;
    background: rgba(58, 170, 53, .08) !important;
    box-shadow: none !important;
    font-family: inherit !important;
    font-size: .88rem !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    text-shadow: none !important;
    filter: none !important;
}

body.aynoot-theme .ay-jobs-card.ay-changelog-card h2 {
    margin: 0 0 .75rem !important;
    color: var(--ay-text) !important;
    font-size: clamp(1.55rem, 3vw, 2.35rem) !important;
    font-weight: 950 !important;
    letter-spacing: 0 !important;
    line-height: 1.08 !important;
}

body.aynoot-theme .ay-jobs-card.ay-changelog-card .ay-changelog-content {
    color: color-mix(in srgb, var(--ay-muted), var(--ay-text) 16%) !important;
    line-height: 1.7 !important;
}

body.aynoot-theme .ay-jobs-card.ay-changelog-card .ay-changelog-content :last-child {
    margin-bottom: 0 !important;
}

body.aynoot-theme .ay-jobs-card.ay-changelog-card .ay-jobs-tags {
    margin: .9rem 0 .2rem !important;
}

body.aynoot-theme .ay-jobs-card.ay-changelog-card .ay-jobs-card-link {
    margin-top: .9rem !important;
}

body.aynoot-theme .ay-jobs-empty.ay-changelog-empty {
    display: grid !important;
    place-items: center !important;
    gap: .5rem !important;
    min-height: 240px !important;
    padding: 2rem !important;
    text-align: center !important;
    color: var(--ay-muted) !important;
}

body.aynoot-theme .ay-jobs-empty.ay-changelog-empty i {
    display: inline-grid !important;
    width: 48px !important;
    height: 48px !important;
    place-items: center !important;
    border-radius: 8px !important;
    color: var(--ay-primary) !important;
    background: rgba(58, 170, 53, .12) !important;
    font-size: 1.35rem !important;
}

body.aynoot-theme .ay-jobs-empty.ay-changelog-empty strong {
    color: var(--ay-text) !important;
    font-size: 1.15rem !important;
    font-weight: 950 !important;
}

body.aynoot-theme .ay-jobs-status,
body.aynoot-theme .ay-home-job-status {
    --ay-jobs-pulse: 223, 95, 72;
    display: inline-flex !important;
    align-items: center !important;
    gap: .4rem !important;
    transform: none !important;
    animation: none !important;
}

body.aynoot-theme .ay-jobs-status.is-open,
body.aynoot-theme .ay-home-job-status {
    --ay-jobs-pulse: 38, 202, 70;
}

body.aynoot-theme .ay-jobs-status-dot {
    position: relative !important;
    display: inline-block !important;
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    flex: 0 0 18px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: transparent !important;
    box-shadow: none !important;
    line-height: 0 !important;
    overflow: visible !important;
    transform: none !important;
    vertical-align: middle !important;
}

body.aynoot-theme .ay-jobs-status-dot i,
body.aynoot-theme .ay-jobs-status-dot::before,
body.aynoot-theme .ay-jobs-status-dot::after {
    position: absolute !important;
    top: 50% !important;
    right: auto !important;
    bottom: auto !important;
    left: 50% !important;
    width: 8px !important;
    height: 8px !important;
    min-width: 8px !important;
    min-height: 8px !important;
    margin: -4px 0 0 -4px !important;
    padding: 0 !important;
    border-radius: 999px !important;
    transform-origin: 50% 50% !important;
}

body.aynoot-theme .ay-jobs-status-dot i {
    z-index: 3 !important;
    border: 0 !important;
    background: rgb(var(--ay-jobs-pulse)) !important;
    box-shadow:
        0 0 0 3px rgba(var(--ay-jobs-pulse), .14),
        0 0 10px rgba(var(--ay-jobs-pulse), .58) !important;
    transform: none !important;
    animation: none !important;
}

body.aynoot-theme .ay-jobs-status-dot i::after {
    content: none !important;
    display: none !important;
}

body.aynoot-theme .ay-jobs-status-dot::before,
body.aynoot-theme .ay-jobs-status-dot::after {
    content: "" !important;
    z-index: 1 !important;
    border: 1px solid rgba(var(--ay-jobs-pulse), .82) !important;
    background: transparent !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
    opacity: 0;
    animation: ayJobsCenteredWave 2s ease-out infinite !important;
    will-change: transform, opacity;
    pointer-events: none;
}

body.aynoot-theme .ay-jobs-status-dot::after {
    animation-delay: 1s !important;
}

body.aynoot-theme .ay-jobs-status-label {
    position: static !important;
    display: inline-block !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    color: inherit !important;
    background: transparent !important;
    box-shadow: none !important;
    font: inherit !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased;
    transform: none !important;
    animation: none !important;
    vertical-align: middle !important;
}

body.aynoot-theme.ay-light .ay-jobs-page select,
body.aynoot-theme.ay-light .ay-jobs-page .form-select,
body.aynoot-theme.ay-light .ay-jobs-page .form-control,
body.aynoot-theme.ay-light .ay-jobs-page .custom-select {
    color: #172a19 !important;
    border-color: rgba(40, 91, 42, .28) !important;
    background-color: rgba(251, 253, 249, .96) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .86) !important;
}

body.aynoot-theme.ay-light .ay-jobs-page select:focus,
body.aynoot-theme.ay-light .ay-jobs-page .form-select:focus,
body.aynoot-theme.ay-light .ay-jobs-page .form-control:focus,
body.aynoot-theme.ay-light .ay-jobs-page .custom-select:focus {
    color: #102413 !important;
    border-color: rgba(38, 202, 70, .78) !important;
    background-color: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(38, 202, 70, .15) !important;
}

body.aynoot-theme.ay-light .ay-jobs-page select option,
body.aynoot-theme.ay-light .ay-jobs-page .form-select option,
body.aynoot-theme.ay-light .ay-jobs-page .custom-select option {
    color: #172a19 !important;
    background: #f8fcf6 !important;
}

@media (max-width: 767.98px) {
    body.aynoot-theme .ay-jobs-layout.ay-changelog-layout {
        grid-template-columns: 1fr !important;
    }

    body.aynoot-theme .ay-jobs-sidebar.ay-changelog-sidebar {
        position: static !important;
    }

    body.aynoot-theme .ay-jobs-page.ay-changelog-page {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* Shop page polish */
body.aynoot-theme .ay-content:has(#shop) {
    border: 1px solid rgba(255, 255, 255, .13) !important;
    border-radius: 8px !important;
    background:
        radial-gradient(circle at 14% 0%, rgba(58, 170, 53, .12), transparent 28rem),
        linear-gradient(135deg, rgba(255, 255, 255, .07), rgba(58, 170, 53, .055) 48%, rgba(255, 255, 255, .022)),
        rgba(14, 25, 15, .78) !important;
    box-shadow: 0 22px 70px rgba(0, 0, 0, .24) !important;
    -webkit-backdrop-filter: blur(14px) saturate(1.12) !important;
    backdrop-filter: blur(14px) saturate(1.12) !important;
    padding: clamp(1.35rem, 3vw, 2.1rem) !important;
}

body.aynoot-theme.ay-light .ay-content:has(#shop) {
    border-color: rgba(22, 48, 21, .14) !important;
    background:
        radial-gradient(circle at 14% 0%, rgba(58, 170, 53, .14), transparent 28rem),
        linear-gradient(135deg, rgba(255, 255, 255, .9), rgba(219, 242, 211, .7) 52%, rgba(255, 255, 255, .78)),
        rgba(255, 255, 255, .84) !important;
    box-shadow: 0 22px 60px rgba(42, 72, 36, .14) !important;
}

body.aynoot-theme .ay-content:has(#shop) > h2 {
    margin: 0 0 clamp(1.25rem, 2.4vw, 2rem) !important;
    color: var(--ay-text) !important;
    font-size: clamp(2.7rem, 6vw, 5rem) !important;
    font-weight: 950 !important;
    letter-spacing: 0 !important;
    line-height: .95 !important;
}

body.aynoot-theme #shop {
    --ay-shop-border: rgba(255, 255, 255, .13);
    --ay-shop-card: rgba(9, 20, 12, .64);
    row-gap: clamp(1rem, 2.4vw, 1.6rem) !important;
}

body.aynoot-theme.ay-light #shop {
    --ay-shop-border: rgba(22, 48, 21, .14);
    --ay-shop-card: rgba(255, 255, 255, .72);
}

body.aynoot-theme #shop .list-group {
    display: grid !important;
    gap: .55rem !important;
    margin-bottom: 1rem !important;
    padding: 1rem !important;
    border: 1px solid var(--ay-shop-border) !important;
    border-radius: 8px !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(58, 170, 53, .075) 52%, rgba(255, 255, 255, .025)),
        var(--ay-shop-card) !important;
    box-shadow: 0 18px 48px rgba(0, 0, 0, .2) !important;
    -webkit-backdrop-filter: blur(12px) saturate(1.1) !important;
    backdrop-filter: blur(12px) saturate(1.1) !important;
}

body.aynoot-theme.ay-light #shop .list-group {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .88), rgba(219, 242, 211, .68) 52%, rgba(255, 255, 255, .76)),
        var(--ay-shop-card) !important;
    box-shadow: 0 18px 42px rgba(42, 72, 36, .12) !important;
}

body.aynoot-theme #shop .list-group::before {
    content: "\0421\0435\0440\0432\0435\0440";
    display: block;
    margin: 0 0 .35rem;
    color: var(--ay-text);
    font-size: 1rem;
    font-weight: 900;
}

body.aynoot-theme #shop .list-group-item {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: .8rem !important;
    padding: .72rem .78rem !important;
    border: 1px solid transparent !important;
    border-radius: 8px !important;
    color: color-mix(in srgb, var(--ay-muted), var(--ay-text) 10%) !important;
    background: transparent !important;
    text-decoration: none !important;
    font-weight: 800 !important;
    transition: border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease !important;
}

body.aynoot-theme #shop .list-group-item::after {
    content: "\F285";
    display: inline-grid;
    width: 1.75rem;
    height: 1.75rem;
    place-items: center;
    border-radius: 999px;
    color: #071306;
    background: var(--ay-primary);
    font-family: bootstrap-icons !important;
    font-size: .8rem;
    font-weight: 400;
    line-height: 1;
    opacity: .95;
}

body.aynoot-theme #shop .list-group-item:hover,
body.aynoot-theme #shop .list-group-item.active {
    color: var(--ay-text) !important;
    border-color: rgba(58, 170, 53, .32) !important;
    background: rgba(58, 170, 53, .12) !important;
    transform: translateY(-1px);
}

body.aynoot-theme #shop > .col-lg-3 > .btn-primary {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: .45rem !important;
    width: 100% !important;
    min-height: 46px !important;
    border: 0 !important;
    border-radius: 8px !important;
    color: #061006 !important;
    background: linear-gradient(135deg, var(--ay-primary), color-mix(in srgb, var(--ay-primary), #5bd152 18%)) !important;
    box-shadow: 0 12px 26px rgba(58, 170, 53, .2) !important;
    font-weight: 900 !important;
}

body.aynoot-theme #shop > .col-lg-3 > .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(58, 170, 53, .26) !important;
}

body.aynoot-theme #shop .col-lg-9 > .row {
    row-gap: 1rem !important;
}

body.aynoot-theme #shop .card {
    position: relative !important;
    overflow: hidden !important;
    border: 1px solid var(--ay-shop-border) !important;
    border-radius: 8px !important;
    color: var(--ay-text) !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(58, 170, 53, .09) 58%, rgba(255, 255, 255, .025)),
        var(--ay-shop-card) !important;
    box-shadow: 0 22px 70px rgba(0, 0, 0, .22) !important;
    -webkit-backdrop-filter: blur(14px) saturate(1.12) !important;
    backdrop-filter: blur(14px) saturate(1.12) !important;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease !important;
}

body.aynoot-theme.ay-light #shop .card {
    border-color: rgba(22, 48, 21, .14) !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .9), rgba(219, 242, 211, .68) 52%, rgba(255, 255, 255, .76)),
        var(--ay-shop-card) !important;
    box-shadow: 0 18px 42px rgba(42, 72, 36, .12) !important;
}

body.ay-light #shop .card {
    border-color: rgba(22, 48, 21, .14) !important;
    box-shadow: 0 18px 42px rgba(42, 72, 36, .12) !important;
}

body.aynoot-theme #shop .card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 8%, rgba(255, 255, 255, .18), transparent 13rem),
        radial-gradient(circle at 80% 15%, rgba(58, 170, 53, .12), transparent 12rem);
}

body.aynoot-theme #shop .card:hover {
    border-color: rgba(58, 170, 53, .34) !important;
    transform: translateY(-3px);
    box-shadow: 0 26px 76px rgba(0, 0, 0, .28) !important;
}

body.aynoot-theme.ay-light #shop .card:hover {
    border-color: rgba(22, 48, 21, .2) !important;
    box-shadow: 0 18px 42px rgba(42, 72, 36, .14) !important;
}

body.aynoot-theme #shop .card-body {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: start;
    gap: .85rem;
    padding: clamp(1.1rem, 2.3vw, 1.6rem) !important;
}

body.aynoot-theme #shop .card-title {
    margin: 0 !important;
    color: var(--ay-text) !important;
    font-size: clamp(1.45rem, 2.7vw, 2.1rem) !important;
    font-weight: 950 !important;
    letter-spacing: 0 !important;
    line-height: 1.08 !important;
}

body.aynoot-theme #shop .card-subtitle {
    display: inline-flex !important;
    align-items: center !important;
    width: fit-content !important;
    margin: 0 !important;
    padding: .42rem .65rem !important;
    border: 1px solid rgba(58, 170, 53, .28) !important;
    border-radius: 999px !important;
    color: color-mix(in srgb, var(--ay-primary), var(--ay-text) 24%) !important;
    background: rgba(58, 170, 53, .1) !important;
    font-size: .96rem !important;
    font-weight: 950 !important;
    line-height: 1 !important;
}

body.aynoot-theme #shop .card .btn-primary {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 42px !important;
    width: 100% !important;
    margin-top: .25rem !important;
    border: 0 !important;
    border-radius: 8px !important;
    color: #061006 !important;
    background: linear-gradient(135deg, var(--ay-primary), color-mix(in srgb, var(--ay-primary), #5bd152 18%)) !important;
    box-shadow: 0 12px 26px rgba(58, 170, 53, .18) !important;
    font-weight: 950 !important;
}

body.aynoot-theme #shop .card .btn-primary::before {
    content: none !important;
    display: none !important;
}

body.aynoot-theme #itemModal .modal-content {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    color: var(--ay-text);
    background:
        radial-gradient(circle at 16% 0%, rgba(58, 170, 53, .14), transparent 24rem),
        linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(58, 170, 53, .06) 52%, rgba(255, 255, 255, .025)),
        rgba(14, 25, 15, .96);
    box-shadow: 0 28px 90px rgba(0, 0, 0, .48);
    -webkit-backdrop-filter: blur(16px) saturate(1.14);
    backdrop-filter: blur(16px) saturate(1.14);
}

body.aynoot-theme.ay-light #itemModal .modal-content {
    border-color: rgba(22, 48, 21, .14);
    background:
        radial-gradient(circle at 16% 0%, rgba(58, 170, 53, .16), transparent 24rem),
        linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(219, 242, 211, .74) 52%, rgba(255, 255, 255, .86));
    box-shadow: 0 28px 80px rgba(42, 72, 36, .24);
}

body.aynoot-theme #itemModal .modal-header,
body.aynoot-theme #itemModal .modal-footer {
    border-color: rgba(255, 255, 255, .12);
}

body.aynoot-theme.ay-light #itemModal .modal-header,
body.aynoot-theme.ay-light #itemModal .modal-footer {
    border-color: rgba(22, 48, 21, .14);
}

body.aynoot-theme #itemModal .modal-title {
    color: var(--ay-text);
    font-size: clamp(1.55rem, 3vw, 2.35rem);
    font-weight: 950;
    letter-spacing: 0;
}

body.aynoot-theme #itemModal .modal-body {
    color: color-mix(in srgb, var(--ay-muted), var(--ay-text) 16%);
    line-height: 1.7;
}

body.aynoot-theme #itemModal .modal-footer > span {
    display: inline-flex;
    flex: 0 0 auto !important;
    width: fit-content;
    padding: .48rem .7rem;
    border: 1px solid rgba(58, 170, 53, .28);
    border-radius: 999px;
    color: color-mix(in srgb, var(--ay-primary), var(--ay-text) 24%);
    background: rgba(58, 170, 53, .1);
    font-weight: 950;
}

body.aynoot-theme #itemModal .btn-primary {
    border: 0 !important;
    border-radius: 8px !important;
    color: #061006 !important;
    background: linear-gradient(135deg, var(--ay-primary), color-mix(in srgb, var(--ay-primary), #5bd152 18%)) !important;
    box-shadow: 0 12px 26px rgba(58, 170, 53, .2) !important;
    font-weight: 950 !important;
}

body.aynoot-theme #itemModal .btn-close {
    border-radius: 8px;
    opacity: .9;
}

body.aynoot-theme.ay-dark #itemModal .btn-close {
    filter: invert(1) grayscale(1);
}

body.aynoot-theme.ay-shop-page #itemModal {
    z-index: 1085 !important;
}

body.aynoot-theme.ay-shop-page #itemModal .modal-dialog,
body.aynoot-theme.ay-shop-page #itemModal .modal-content {
    position: relative;
    z-index: 1086 !important;
}

body.aynoot-theme.ay-shop-page .modal-backdrop {
    z-index: 1080 !important;
    background-color: #000;
}

body.aynoot-theme.ay-shop-page #shop .col-lg-3 > .d-grid {
    overflow: hidden;
    padding: 1rem;
    border: 1px solid var(--ay-shop-border);
    border-radius: 8px;
    background:
        radial-gradient(circle at 20% 0%, rgba(255, 255, 255, .1), transparent 12rem),
        linear-gradient(135deg, rgba(255, 255, 255, .06), rgba(58, 170, 53, .08)),
        var(--ay-shop-card);
    box-shadow: 0 18px 54px rgba(0, 0, 0, .2);
    -webkit-backdrop-filter: blur(12px) saturate(1.08);
    backdrop-filter: blur(12px) saturate(1.08);
}

body.aynoot-theme.ay-light.ay-shop-page #shop .col-lg-3 > .d-grid {
    background:
        radial-gradient(circle at 20% 0%, rgba(255, 255, 255, .72), transparent 12rem),
        linear-gradient(135deg, rgba(255, 255, 255, .88), rgba(219, 242, 211, .66)),
        var(--ay-shop-card);
    box-shadow: 0 18px 42px rgba(42, 72, 36, .12);
}

body.aynoot-theme.ay-shop-page #shop .col-lg-3 > .d-grid h3 {
    color: var(--ay-text);
    font-size: 1.15rem;
    font-weight: 950;
    line-height: 1.05;
}

body.aynoot-theme.ay-shop-page #shop .col-lg-3 > .d-grid img {
    border-radius: 8px !important;
}

body.aynoot-theme.ay-shop-page #shop .col-lg-3 > .d-grid .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border: 0 !important;
    border-radius: 8px !important;
    color: #061006 !important;
    background: linear-gradient(135deg, var(--ay-primary), color-mix(in srgb, var(--ay-primary), #5bd152 18%)) !important;
    box-shadow: 0 12px 24px rgba(58, 170, 53, .16);
    font-weight: 950;
}

body.aynoot-theme.ay-shop-page .ay-content:not(:has(#shop)) {
    overflow: hidden;
    padding: clamp(1.4rem, 3vw, 2.2rem) !important;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    color: var(--ay-text);
    background:
        radial-gradient(circle at 18% 0%, rgba(255, 255, 255, .1), transparent 22rem),
        radial-gradient(circle at 88% 12%, rgba(58, 170, 53, .14), transparent 24rem),
        linear-gradient(135deg, rgba(255, 255, 255, .055), rgba(58, 170, 53, .055) 55%, rgba(255, 255, 255, .02)),
        rgba(14, 25, 15, .78);
    box-shadow: 0 22px 80px rgba(0, 0, 0, .24);
    -webkit-backdrop-filter: blur(14px) saturate(1.12);
    backdrop-filter: blur(14px) saturate(1.12);
}

body.aynoot-theme.ay-light.ay-shop-page .ay-content:not(:has(#shop)) {
    border-color: rgba(22, 48, 21, .14);
    background:
        radial-gradient(circle at 18% 0%, rgba(255, 255, 255, .8), transparent 22rem),
        radial-gradient(circle at 88% 12%, rgba(58, 170, 53, .14), transparent 24rem),
        linear-gradient(135deg, rgba(255, 255, 255, .9), rgba(219, 242, 211, .68) 58%, rgba(255, 255, 255, .78));
    box-shadow: 0 18px 50px rgba(42, 72, 36, .14);
}

body.aynoot-theme.ay-shop-page .ay-content:not(:has(#shop)) > h2 {
    margin: 0 0 1.25rem !important;
    color: var(--ay-text) !important;
    font-size: clamp(2.6rem, 7vw, 5rem) !important;
    font-weight: 950 !important;
    letter-spacing: 0 !important;
    line-height: .92 !important;
    text-align: left !important;
}

body.aynoot-theme.ay-shop-page .ay-content:not(:has(#shop)) .card {
    overflow: hidden;
    border: 1px solid var(--ay-shop-border) !important;
    border-radius: 8px !important;
    color: var(--ay-text) !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .07), rgba(58, 170, 53, .08) 58%, rgba(255, 255, 255, .02)),
        var(--ay-shop-card) !important;
    box-shadow: 0 20px 64px rgba(0, 0, 0, .22) !important;
}

body.aynoot-theme.ay-light.ay-shop-page .ay-content:not(:has(#shop)) .card {
    border-color: rgba(22, 48, 21, .14) !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .9), rgba(219, 242, 211, .68) 52%, rgba(255, 255, 255, .76)) !important;
    box-shadow: 0 18px 42px rgba(42, 72, 36, .12) !important;
}

body.aynoot-theme.ay-shop-page .ay-content:not(:has(#shop)) .card-body {
    padding: clamp(1rem, 2vw, 1.35rem) !important;
}

body.aynoot-theme.ay-shop-page .ay-content:not(:has(#shop)) .table-responsive {
    overflow: auto;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    background: rgba(4, 12, 7, .28);
}

body.aynoot-theme.ay-light.ay-shop-page .ay-content:not(:has(#shop)) .table-responsive {
    border-color: rgba(22, 48, 21, .13);
    background: rgba(255, 255, 255, .46);
}

body.aynoot-theme.ay-shop-page .ay-content:not(:has(#shop)) .table {
    margin: 0 !important;
    color: var(--ay-text) !important;
    vertical-align: middle;
}

body.aynoot-theme.ay-shop-page .ay-content:not(:has(#shop)) .table > :not(caption) > * > * {
    padding: .9rem 1rem !important;
    border-color: rgba(255, 255, 255, .1) !important;
    color: var(--ay-text) !important;
    background: transparent !important;
}

body.aynoot-theme.ay-light.ay-shop-page .ay-content:not(:has(#shop)) .table > :not(caption) > * > * {
    border-color: rgba(22, 48, 21, .12) !important;
}

body.aynoot-theme.ay-shop-page .ay-content:not(:has(#shop)) .table-dark,
body.aynoot-theme.ay-shop-page .ay-content:not(:has(#shop)) .table thead {
    color: var(--ay-text) !important;
    background:
        linear-gradient(135deg, rgba(58, 170, 53, .18), rgba(58, 170, 53, .06)),
        rgba(4, 12, 7, .5) !important;
}

body.aynoot-theme.ay-light.ay-shop-page .ay-content:not(:has(#shop)) .table-dark,
body.aynoot-theme.ay-light.ay-shop-page .ay-content:not(:has(#shop)) .table thead {
    background:
        linear-gradient(135deg, rgba(58, 170, 53, .16), rgba(58, 170, 53, .06)),
        rgba(255, 255, 255, .58) !important;
}

body.aynoot-theme.ay-shop-page .ay-content:not(:has(#shop)) .badge {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    border-radius: 999px;
    padding: .32rem .55rem;
    font-weight: 950;
}

body.aynoot-theme.ay-shop-page .ay-content:not(:has(#shop)) .alert {
    border: 1px solid rgba(58, 170, 53, .26);
    border-radius: 8px;
    color: var(--ay-text);
    background:
        linear-gradient(135deg, rgba(58, 170, 53, .12), rgba(255, 255, 255, .035)),
        rgba(9, 20, 12, .58);
}

@media (max-width: 767.98px) {
    body.aynoot-theme .ay-content:has(#shop) {
        padding: 1rem !important;
    }

    body.aynoot-theme .ay-content:has(#shop) > h2 {
        font-size: clamp(2.35rem, 12vw, 3.55rem) !important;
    }

    body.aynoot-theme #shop,
    body.aynoot-theme #shop > [class*="col-"],
    body.aynoot-theme #shop .card {
        min-width: 0 !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}

/* Referral plugin polish */
body.aynoot-theme.ay-referral-page .ay-content,
body.aynoot-theme .ay-referral-register-card {
    overflow: hidden;
    max-width: 960px;
    margin-inline: auto;
    padding: clamp(1.35rem, 3vw, 2.2rem) !important;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    color: var(--ay-text);
    background:
        radial-gradient(circle at 18% 0%, rgba(255, 255, 255, .1), transparent 22rem),
        radial-gradient(circle at 90% 8%, rgba(58, 170, 53, .15), transparent 24rem),
        linear-gradient(135deg, rgba(255, 255, 255, .055), rgba(58, 170, 53, .06) 55%, rgba(255, 255, 255, .02)),
        rgba(14, 25, 15, .8);
    box-shadow: 0 22px 80px rgba(0, 0, 0, .24);
    -webkit-backdrop-filter: blur(14px) saturate(1.12);
    backdrop-filter: blur(14px) saturate(1.12);
}

body.aynoot-theme.ay-light.ay-referral-page .ay-content,
body.aynoot-theme.ay-light .ay-referral-register-card {
    border-color: rgba(22, 48, 21, .14);
    background:
        radial-gradient(circle at 18% 0%, rgba(255, 255, 255, .82), transparent 22rem),
        radial-gradient(circle at 90% 8%, rgba(58, 170, 53, .14), transparent 24rem),
        linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(219, 242, 211, .68) 58%, rgba(255, 255, 255, .78));
    box-shadow: 0 18px 50px rgba(42, 72, 36, .14);
}

body.aynoot-theme.ay-referral-page .ay-content h2,
body.aynoot-theme .ay-referral-register-card h2 {
    margin: 0 0 1.1rem !important;
    color: var(--ay-text) !important;
    font-size: clamp(2.6rem, 7vw, 5rem) !important;
    font-weight: 950 !important;
    letter-spacing: 0 !important;
    line-height: .92 !important;
    text-align: left !important;
}

body.aynoot-theme.ay-referral-page .ay-content h2::after,
body.aynoot-theme .ay-referral-register-card h2::after {
    content: "";
    display: block;
    width: 76px;
    height: 3px;
    margin-top: 1rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--ay-primary), rgba(58, 170, 53, 0));
}

body.aynoot-theme.ay-referral-page .ay-content .border,
body.aynoot-theme .ay-referral-register-card .border {
    border: 1px solid rgba(58, 170, 53, .28) !important;
    border-radius: 8px !important;
    color: var(--ay-text) !important;
    background:
        linear-gradient(135deg, rgba(58, 170, 53, .16), rgba(255, 255, 255, .035)),
        rgba(9, 20, 12, .58) !important;
}

body.aynoot-theme.ay-light.ay-referral-page .ay-content .border,
body.aynoot-theme.ay-light .ay-referral-register-card .border {
    border-color: rgba(22, 48, 21, .14) !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .86), rgba(219, 242, 211, .62)),
        rgba(255, 255, 255, .72) !important;
}

body.aynoot-theme.ay-referral-page .ay-content label,
body.aynoot-theme .ay-referral-register-card label,
body.aynoot-theme .ay-referral-profile-card label {
    color: var(--ay-text);
    font-weight: 900;
}

body.aynoot-theme.ay-referral-page .ay-content .form-control,
body.aynoot-theme .ay-referral-register-card .form-control,
body.aynoot-theme .ay-referral-profile-card .form-control {
    min-height: 44px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    color: var(--ay-text);
    background: rgba(8, 19, 11, .68);
}

body.aynoot-theme.ay-light.ay-referral-page .ay-content .form-control,
body.aynoot-theme.ay-light .ay-referral-register-card .form-control,
body.aynoot-theme.ay-light .ay-referral-profile-card .form-control {
    border-color: rgba(22, 48, 21, .16);
    background: rgba(255, 255, 255, .78);
}

body.aynoot-theme.ay-referral-page .ay-content .form-control:focus,
body.aynoot-theme .ay-referral-register-card .form-control:focus,
body.aynoot-theme .ay-referral-profile-card .form-control:focus {
    border-color: rgba(58, 170, 53, .76);
    box-shadow: 0 0 0 .2rem rgba(58, 170, 53, .18);
}

body.aynoot-theme.ay-referral-page .ay-content .btn-primary,
body.aynoot-theme .ay-referral-register-card .btn-primary,
body.aynoot-theme .ay-referral-profile-card .btn-primary,
body.aynoot-theme .ay-referral-profile-card .btn-outline-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border: 0 !important;
    border-radius: 8px !important;
    color: #061006 !important;
    background: linear-gradient(135deg, var(--ay-primary), color-mix(in srgb, var(--ay-primary), #5bd152 18%)) !important;
    box-shadow: 0 12px 24px rgba(58, 170, 53, .16);
    font-weight: 950;
}

body.aynoot-theme .ay-referral-profile-card {
    display: grid;
    gap: 1.05rem;
}

body.aynoot-theme .ay-referral-profile-card > .mb-3 {
    margin-bottom: 0 !important;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .055), rgba(58, 170, 53, .055)),
        rgba(9, 20, 12, .46);
}

body.aynoot-theme.ay-light .ay-referral-profile-card > .mb-3 {
    border-color: rgba(22, 48, 21, .12);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .86), rgba(219, 242, 211, .58)),
        rgba(255, 255, 255, .64);
}

body.aynoot-theme .ay-referral-profile-card h3 {
    margin: .35rem 0 .85rem;
    color: color-mix(in srgb, var(--ay-muted), var(--ay-text) 18%);
    font-size: 1.1rem;
    font-weight: 850;
}

body.aynoot-theme .ay-referral-profile-card .form-text {
    color: color-mix(in srgb, var(--ay-muted), var(--ay-text) 12%) !important;
}

body.aynoot-theme .ay-referral-profile-card #referrerCopyStatus {
    color: var(--ay-primary) !important;
    font-weight: 900;
}

body.aynoot-theme .ay-referral-profile-card .table {
    overflow: hidden;
    margin: .5rem 0 0 !important;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    color: var(--ay-text);
    background: rgba(4, 12, 7, .28);
}

body.aynoot-theme .ay-referral-profile-card .table > :not(caption) > * > * {
    padding: .85rem 1rem !important;
    border-color: rgba(255, 255, 255, .1) !important;
    color: var(--ay-text) !important;
    background: transparent !important;
}

body.aynoot-theme .ay-referral-profile-card .table thead {
    background:
        linear-gradient(135deg, rgba(58, 170, 53, .18), rgba(58, 170, 53, .06)),
        rgba(4, 12, 7, .5);
}

body.aynoot-theme.ay-light .ay-referral-profile-card .table {
    border-color: rgba(22, 48, 21, .12);
    background: rgba(255, 255, 255, .48);
}

body.aynoot-theme.ay-light .ay-referral-profile-card .table > :not(caption) > * > * {
    border-color: rgba(22, 48, 21, .12) !important;
}

@media (max-width: 767.98px) {
    body.aynoot-theme.ay-referral-page .ay-content,
    body.aynoot-theme .ay-referral-register-card {
        padding: 1rem !important;
    }

    body.aynoot-theme.ay-referral-page .ay-content h2,
    body.aynoot-theme .ay-referral-register-card h2 {
        font-size: clamp(2.2rem, 12vw, 3.4rem) !important;
    }

    body.aynoot-theme .ay-referral-profile-card .input-group {
        flex-wrap: nowrap;
    }

    body.aynoot-theme .ay-referral-profile-card .table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* Final heading, Jobs and Shop home polish */
body.aynoot-theme .ay-jobs-head h2,
body.aynoot-theme .ay-jobs-head.ay-changelog-head h2 {
    max-width: 980px;
    margin: 0 !important;
    color: var(--ay-text) !important;
    -webkit-text-fill-color: var(--ay-text) !important;
    font-size: clamp(2.45rem, 5.2vw, 4.35rem) !important;
    font-weight: 950 !important;
    line-height: .98 !important;
    letter-spacing: 0 !important;
    text-align: left !important;
}

body.aynoot-theme .ay-jobs-head p,
body.aynoot-theme .ay-jobs-head.ay-changelog-head p {
    max-width: 760px;
    margin-top: .85rem !important;
}

body.aynoot-theme .ay-shop-home {
    width: min(1180px, calc(100vw - 2rem));
    margin: 0 auto;
}

body.aynoot-theme .ay-shop-home-head {
    max-width: 820px;
    margin-bottom: clamp(1.35rem, 2.5vw, 2rem);
}

body.aynoot-theme .ay-shop-home-head h2 {
    margin: 0;
    color: var(--ay-text);
    font-size: clamp(2.6rem, 6vw, 4.6rem);
    font-weight: 950;
    line-height: .95;
    letter-spacing: 0;
}

body.aynoot-theme .ay-shop-home-head p {
    max-width: 720px;
    margin: .85rem 0 0;
    color: color-mix(in srgb, var(--ay-muted), var(--ay-text) 12%);
    font-size: clamp(1rem, 1.45vw, 1.14rem);
    line-height: 1.7;
}

body.aynoot-theme .ay-shop-home .list-group,
body.aynoot-theme .ay-shop-home .col-lg-3 > .d-grid,
body.aynoot-theme .ay-shop-home .ay-shop-welcome-card {
    overflow: hidden;
    border: 1px solid var(--ay-shop-border, rgba(255, 255, 255, .12)) !important;
    border-radius: 8px !important;
    color: var(--ay-text) !important;
    background:
        radial-gradient(circle at 18% 0%, rgba(255, 255, 255, .1), transparent 18rem),
        radial-gradient(circle at 92% 20%, rgba(58, 170, 53, .18), transparent 22rem),
        linear-gradient(135deg, rgba(255, 255, 255, .055), rgba(58, 170, 53, .07) 58%, rgba(255, 255, 255, .02)),
        rgba(14, 25, 15, .78) !important;
    box-shadow: 0 22px 70px rgba(0, 0, 0, .22);
    -webkit-backdrop-filter: blur(14px) saturate(1.12);
    backdrop-filter: blur(14px) saturate(1.12);
}

body.aynoot-theme.ay-light .ay-shop-home .list-group,
body.aynoot-theme.ay-light .ay-shop-home .col-lg-3 > .d-grid,
body.aynoot-theme.ay-light .ay-shop-home .ay-shop-welcome-card {
    border-color: rgba(22, 48, 21, .14) !important;
    background:
        radial-gradient(circle at 18% 0%, rgba(255, 255, 255, .82), transparent 18rem),
        radial-gradient(circle at 92% 20%, rgba(58, 170, 53, .15), transparent 22rem),
        linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(219, 242, 211, .68) 58%, rgba(255, 255, 255, .78)) !important;
    box-shadow: 0 18px 48px rgba(42, 72, 36, .14);
}

body.aynoot-theme .ay-shop-home .list-group {
    padding: .65rem;
}

body.aynoot-theme .ay-shop-home .list-group-item {
    display: flex;
    align-items: center;
    gap: .55rem;
    min-height: 42px;
    border: 0 !important;
    border-radius: 8px !important;
    color: color-mix(in srgb, var(--ay-muted), var(--ay-text) 12%) !important;
    background: transparent !important;
    font-weight: 850;
}

body.aynoot-theme .ay-shop-home .list-group-item.active,
body.aynoot-theme .ay-shop-home .list-group-item:hover {
    color: var(--ay-text) !important;
    background: rgba(58, 170, 53, .16) !important;
}

body.aynoot-theme .ay-shop-home .ay-shop-welcome-card {
    min-height: 255px;
}

body.aynoot-theme .ay-shop-home .ay-shop-welcome-card .card-body {
    display: grid;
    align-content: center;
    min-height: inherit;
    padding: clamp(1.35rem, 3vw, 2.25rem) !important;
    color: color-mix(in srgb, var(--ay-muted), var(--ay-text) 18%) !important;
    font-size: clamp(1rem, 1.4vw, 1.14rem);
    line-height: 1.75;
}

body.aynoot-theme.ay-shop-page .btn > i[class*="bi-"] {
    margin-right: .5rem;
}

body.aynoot-theme.ay-shop-page .btn > i[class*="bi-"]:only-child {
    margin-right: 0;
}

@media (max-width: 767.98px) {
    body.aynoot-theme .ay-jobs-head h2,
    body.aynoot-theme .ay-jobs-head.ay-changelog-head h2,
    body.aynoot-theme .ay-shop-home-head h2 {
        font-size: clamp(2.25rem, 11vw, 3.25rem) !important;
        line-height: 1 !important;
        overflow-wrap: anywhere;
    }

    body.aynoot-theme .ay-shop-home {
        width: 100%;
    }
}

/* Stable mobile menu overlay */
@media (max-width: 991.98px) {
    body.aynoot-theme.ay-mobile-menu-open {
        overflow: hidden !important;
        overscroll-behavior: none;
    }

    body.aynoot-theme .ay-navbar-wrap,
    body.aynoot-theme.ay-light .ay-navbar-wrap {
        position: relative !important;
        z-index: 1070 !important;
        isolation: isolate;
    }

    body.aynoot-theme #ayNavbar.collapse,
    body.aynoot-theme #ayNavbar.collapse:not(.show),
    body.aynoot-theme #ayNavbar.collapse.show,
    body.aynoot-theme #ayNavbar.collapsing {
        display: block !important;
        height: auto !important;
        min-height: 0 !important;
    }

    body.aynoot-theme #ayNavbar,
    body.aynoot-theme #ayNavbar.collapsing {
        position: fixed !important;
        inset: var(--ay-mobile-menu-top, 74px) max(.75rem, env(safe-area-inset-right)) auto max(.75rem, env(safe-area-inset-left)) !important;
        z-index: 1080 !important;
        width: auto !important;
        max-height: calc(100dvh - var(--ay-mobile-menu-top, 74px) - 1rem) !important;
        overflow: auto !important;
        overscroll-behavior: contain;
        padding: .85rem !important;
        border: 1px solid rgba(91, 209, 82, .2) !important;
        border-radius: 18px !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transform: translate3d(0, -10px, 0) scale(.985) !important;
        transform-origin: top center;
        transition:
            opacity .16s ease,
            transform .22s cubic-bezier(.2, .75, .25, 1),
            visibility 0s linear .22s !important;
        animation: none !important;
        contain: layout paint style;
        will-change: opacity, transform;
        background:
            radial-gradient(circle at 18% 0%, rgba(58, 170, 53, .18), transparent 32%),
            linear-gradient(145deg, rgba(8, 22, 11, .985), rgba(3, 10, 5, .985)) !important;
        box-shadow:
            0 28px 70px rgba(0, 0, 0, .56),
            inset 0 1px 0 rgba(255, 255, 255, .06) !important;
        -webkit-backdrop-filter: blur(20px) saturate(135%) !important;
        backdrop-filter: blur(20px) saturate(135%) !important;
    }

    body.aynoot-theme #ayNavbar.show,
    body.aynoot-theme #ayNavbar.is-open {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translate3d(0, 0, 0) scale(1) !important;
        transition-delay: 0s !important;
    }

    body.aynoot-theme.ay-light #ayNavbar,
    body.aynoot-theme.ay-light #ayNavbar.collapsing {
        border-color: rgba(35, 76, 39, .16) !important;
        background:
            radial-gradient(circle at 18% 0%, rgba(58, 170, 53, .13), transparent 32%),
            linear-gradient(145deg, rgba(251, 254, 249, .985), rgba(229, 242, 222, .97)) !important;
        box-shadow:
            0 24px 60px rgba(35, 62, 29, .2),
            inset 0 1px 0 rgba(255, 255, 255, .82) !important;
    }

    body.aynoot-theme #ayNavbar .navbar-nav {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100% !important;
        gap: .35rem !important;
        margin: 0 !important;
        padding: .05rem !important;
    }

    body.aynoot-theme #ayNavbar .nav-link {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        width: 100% !important;
        min-height: 48px !important;
        padding: .82rem .95rem !important;
        border-radius: 12px !important;
        font-size: 1.02rem !important;
        font-weight: 900 !important;
        line-height: 1.15 !important;
    }

    body.aynoot-theme #ayNavbar .ay-dropdown {
        position: static !important;
        width: 100% !important;
        min-width: 0 !important;
        margin: .35rem 0 .25rem !important;
        transform: none !important;
    }

    body.aynoot-theme #ayNavbar .ay-auth-actions {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100% !important;
        gap: .55rem !important;
        margin: .75rem 0 0 !important;
        padding-top: .8rem !important;
    }

    body.aynoot-theme #ayNavbar .ay-user-btn,
    body.aynoot-theme #ayNavbar .ay-auth-actions .ay-btn {
        width: 100% !important;
        justify-content: flex-start !important;
    }

    body.aynoot-theme .ay-toggler[aria-expanded="true"] i::before {
        content: "\F62A" !important;
    }

    body.aynoot-theme.ay-light .ay-toggler[aria-expanded="true"] {
        color: #162416 !important;
        border-color: rgba(58, 170, 53, .44) !important;
        background:
            linear-gradient(145deg, rgba(237, 250, 232, .98), rgba(202, 235, 191, .94)),
            #eef9ea !important;
    }
}

@media (min-width: 992px) {
    body.aynoot-theme.ay-mobile-menu-open {
        overflow: auto !important;
    }

    body.aynoot-theme #ayNavbar {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: none !important;
    }
}

/* Shop redesign */
body.aynoot-theme.ay-shop-page .ay-content:has(.ay-shop-shell),
body.aynoot-theme.ay-shop-page .ay-content:has(#shop) {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: clamp(.35rem, 1.2vw, .8rem) 0 clamp(1.5rem, 4vw, 3rem) !important;
    border: 0 !important;
    border-radius: 0 !important;
    color: var(--ay-text) !important;
    background: transparent !important;
    box-shadow: none !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
}

body.aynoot-theme .ay-shop-shell {
    --ay-shop-border: rgba(255, 255, 255, .13);
    --ay-shop-card: rgba(13, 26, 15, .72);
    --ay-shop-soft: rgba(255, 255, 255, .06);
    display: grid;
    gap: clamp(1.25rem, 2.4vw, 2rem);
    width: min(1180px, calc(100vw - 2rem));
    margin: 0 auto;
    padding: clamp(1.25rem, 2.8vw, 2rem);
    border: 1px solid var(--ay-shop-border);
    border-radius: 8px;
    background:
        radial-gradient(circle at 18% 0%, rgba(255, 255, 255, .1), transparent 18rem),
        radial-gradient(circle at 92% 14%, rgba(58, 170, 53, .15), transparent 22rem),
        linear-gradient(135deg, rgba(255, 255, 255, .055), rgba(58, 170, 53, .06) 56%, rgba(255, 255, 255, .02)),
        var(--ay-shop-card);
    box-shadow: 0 20px 64px rgba(0, 0, 0, .22);
    -webkit-backdrop-filter: blur(14px) saturate(1.12);
    backdrop-filter: blur(14px) saturate(1.12);
}

body.aynoot-theme.ay-light .ay-shop-shell {
    --ay-shop-border: rgba(22, 48, 21, .14);
    --ay-shop-card: rgba(250, 254, 247, .78);
    --ay-shop-soft: rgba(58, 170, 53, .08);
    background:
        radial-gradient(circle at 18% 0%, rgba(255, 255, 255, .78), transparent 18rem),
        radial-gradient(circle at 92% 14%, rgba(58, 170, 53, .13), transparent 22rem),
        linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(219, 242, 211, .68) 58%, rgba(255, 255, 255, .78)),
        var(--ay-shop-card);
    box-shadow: 0 18px 48px rgba(42, 72, 36, .13);
}

body.aynoot-theme .ay-shop-head {
    max-width: 820px;
    margin: 0 0 clamp(1.4rem, 3vw, 2.2rem);
}

body.aynoot-theme .ay-shop-head h1,
body.aynoot-theme .ay-shop-head h2,
body.aynoot-theme.ay-shop-page .ay-content:has(.ay-shop-shell) > h2 {
    margin: 0 !important;
    color: var(--ay-text) !important;
    -webkit-text-fill-color: var(--ay-text) !important;
    font-size: clamp(2.1rem, 4.4vw, 3.35rem) !important;
    font-weight: 950 !important;
    line-height: .96 !important;
    letter-spacing: 0 !important;
    text-align: left !important;
}

body.aynoot-theme .ay-shop-head p {
    max-width: 720px;
    margin: .85rem 0 0;
    color: color-mix(in srgb, var(--ay-muted), var(--ay-text) 14%);
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    line-height: 1.7;
}

body.aynoot-theme .ay-shop-head-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-top: 1rem;
}

body.aynoot-theme .ay-shop-grid {
    row-gap: 1.25rem !important;
}

body.aynoot-theme .ay-shop-sidebar {
    display: grid;
    gap: 1rem;
}

body.aynoot-theme .ay-shop-sidebar-title {
    margin: 0 0 -.45rem .25rem;
    color: var(--ay-text);
    font-size: .98rem;
    font-weight: 950;
}

body.aynoot-theme .ay-shop-categories,
body.aynoot-theme .ay-shop-buyer-card,
body.aynoot-theme .ay-shop-side-card,
body.aynoot-theme .ay-shop-panel,
body.aynoot-theme .ay-shop-product-card,
body.aynoot-theme.ay-shop-page .ay-content:not(:has(.ay-shop-shell)):not(:has(#shop)) .card {
    overflow: hidden;
    border: 1px solid var(--ay-shop-border, rgba(255, 255, 255, .13)) !important;
    border-radius: 8px !important;
    color: var(--ay-text) !important;
    background:
        radial-gradient(circle at 18% 0%, rgba(255, 255, 255, .1), transparent 18rem),
        radial-gradient(circle at 92% 14%, rgba(58, 170, 53, .15), transparent 22rem),
        linear-gradient(135deg, rgba(255, 255, 255, .055), rgba(58, 170, 53, .06) 56%, rgba(255, 255, 255, .02)),
        var(--ay-shop-card, rgba(13, 26, 15, .72)) !important;
    box-shadow: 0 20px 64px rgba(0, 0, 0, .22);
    -webkit-backdrop-filter: blur(14px) saturate(1.12);
    backdrop-filter: blur(14px) saturate(1.12);
}

body.aynoot-theme.ay-light .ay-shop-categories,
body.aynoot-theme.ay-light .ay-shop-buyer-card,
body.aynoot-theme.ay-light .ay-shop-side-card,
body.aynoot-theme.ay-light .ay-shop-panel,
body.aynoot-theme.ay-light .ay-shop-product-card,
body.aynoot-theme.ay-light.ay-shop-page .ay-content:not(:has(.ay-shop-shell)):not(:has(#shop)) .card {
    border-color: rgba(22, 48, 21, .14) !important;
    background:
        radial-gradient(circle at 18% 0%, rgba(255, 255, 255, .78), transparent 18rem),
        radial-gradient(circle at 92% 14%, rgba(58, 170, 53, .13), transparent 22rem),
        linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(219, 242, 211, .68) 58%, rgba(255, 255, 255, .78)),
        var(--ay-shop-card, rgba(250, 254, 247, .78)) !important;
    box-shadow: 0 18px 48px rgba(42, 72, 36, .13);
}

body.aynoot-theme .ay-shop-categories {
    display: grid !important;
    gap: .45rem !important;
    margin: 0 !important;
    padding: .75rem !important;
}

body.aynoot-theme .ay-shop-categories::before {
    content: none !important;
    display: none !important;
}

body.aynoot-theme .ay-shop-categories .list-group-item {
    display: flex !important;
    align-items: center !important;
    gap: .6rem !important;
    min-height: 44px;
    margin: 0 !important;
    padding: .72rem .75rem !important;
    border: 1px solid transparent !important;
    border-radius: 8px !important;
    color: color-mix(in srgb, var(--ay-muted), var(--ay-text) 12%) !important;
    background: transparent !important;
    font-weight: 900 !important;
    line-height: 1.15;
    text-decoration: none !important;
}

body.aynoot-theme .ay-shop-categories .list-group-item span {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

body.aynoot-theme .ay-shop-categories .list-group-item i {
    width: 1.1rem;
    color: var(--ay-primary);
    text-align: center;
}

body.aynoot-theme .ay-shop-categories .list-group-item::after {
    content: "\F285";
    margin-left: auto;
    color: color-mix(in srgb, var(--ay-muted), transparent 15%);
    font-family: bootstrap-icons !important;
    font-size: .78rem;
    font-weight: 400;
}

body.aynoot-theme .ay-shop-categories .list-group-item:hover,
body.aynoot-theme .ay-shop-categories .list-group-item.active {
    color: var(--ay-text) !important;
    border-color: rgba(58, 170, 53, .34) !important;
    background: rgba(58, 170, 53, .14) !important;
}

body.aynoot-theme .ay-shop-subcategories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: .8rem;
}

body.aynoot-theme .ay-shop-subcategory-card {
    display: flex;
    align-items: center;
    gap: .85rem;
    min-height: 76px;
    padding: 1rem;
    border: 1px solid var(--ay-shop-border, rgba(255, 255, 255, .13));
    border-radius: 8px;
    color: var(--ay-text);
    text-decoration: none;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .07), rgba(58, 170, 53, .08)),
        rgba(9, 20, 12, .58);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .18);
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

body.aynoot-theme .ay-shop-subcategory-card:hover,
body.aynoot-theme .ay-shop-subcategory-card:focus-visible {
    color: var(--ay-text);
    border-color: rgba(58, 170, 53, .42);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .09), rgba(58, 170, 53, .14)),
        rgba(9, 20, 12, .68);
    transform: translateY(-2px);
}

body.aynoot-theme .ay-shop-subcategory-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(58, 170, 53, .24);
    border-radius: 8px;
    color: var(--ay-primary);
    background: rgba(58, 170, 53, .12);
}

body.aynoot-theme .ay-shop-subcategory-card strong,
body.aynoot-theme .ay-shop-subcategory-card small {
    display: block;
}

body.aynoot-theme .ay-shop-subcategory-card strong {
    color: var(--ay-text);
    font-size: 1.05rem;
    font-weight: 950;
    line-height: 1.1;
}

body.aynoot-theme .ay-shop-subcategory-card small {
    margin-top: .2rem;
    color: var(--ay-muted);
    font-size: .85rem;
    font-weight: 800;
}

body.aynoot-theme .ay-shop-subcategory-card > .bi-arrow-right-short {
    margin-left: auto;
    color: var(--ay-primary);
    font-size: 1.35rem;
}

body.aynoot-theme.ay-light .ay-shop-subcategory-card {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .9), rgba(219, 242, 211, .62)),
        rgba(255, 255, 255, .78);
    box-shadow: 0 16px 38px rgba(42, 72, 36, .12);
}

body.aynoot-theme .ay-shop-buyer-card {
    display: grid;
    gap: 1rem;
    padding: 1rem;
}

body.aynoot-theme .ay-shop-buyer {
    display: flex;
    align-items: center;
    gap: .85rem;
    min-width: 0;
}

body.aynoot-theme .ay-shop-buyer img {
    width: 54px;
    height: 54px;
    border-radius: 8px;
    image-rendering: pixelated;
}

body.aynoot-theme .ay-shop-buyer span {
    display: block;
    color: var(--ay-primary);
    font-size: .74rem;
    font-weight: 950;
    letter-spacing: .04em;
    text-transform: uppercase;
}

body.aynoot-theme .ay-shop-buyer h3 {
    margin: .08rem 0 0;
    color: var(--ay-text);
    font-size: 1.25rem;
    font-weight: 950;
    line-height: 1.05;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

body.aynoot-theme .ay-shop-buyer p {
    margin: .25rem 0 0;
    color: var(--ay-muted);
    font-size: .92rem;
}

body.aynoot-theme .ay-shop-buyer-actions {
    display: grid;
    gap: .55rem;
}

body.aynoot-theme .ay-shop-buyer-actions .btn {
    padding-inline: .78rem !important;
    font-size: .93rem !important;
    white-space: nowrap;
}

body.aynoot-theme .ay-shop-cart-button {
    position: relative;
}

body.aynoot-theme .ay-shop-cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.45rem;
    height: 1.45rem;
    padding: 0 .42rem;
    border-radius: 999px;
    color: #061006;
    background: rgba(6, 16, 6, .16);
    font-size: .78rem;
    font-weight: 950;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

body.aynoot-theme .ay-shop-guest-note {
    margin: 0;
    padding: .72rem .82rem;
    border: 1px solid rgba(58, 170, 53, .18);
    border-radius: 8px;
    color: color-mix(in srgb, var(--ay-muted), var(--ay-text) 16%);
    background: rgba(58, 170, 53, .07);
    font-size: .92rem;
    font-weight: 750;
    line-height: 1.45;
}

body.aynoot-theme.ay-light .ay-shop-guest-note {
    border-color: rgba(22, 48, 21, .13);
    color: #52624f;
    background: rgba(255, 255, 255, .56);
}

body.aynoot-theme .ay-shop-player-login,
body.aynoot-theme .ay-shop-buyer-actions .btn,
body.aynoot-theme .ay-shop-product-card .btn,
body.aynoot-theme .ay-shop-player-form .btn,
body.aynoot-theme #itemModal .btn-primary,
body.aynoot-theme.ay-shop-page .btn-primary {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: .5rem !important;
    min-height: 44px !important;
    border: 0 !important;
    border-radius: 8px !important;
    color: #061006 !important;
    background: linear-gradient(135deg, var(--ay-primary), color-mix(in srgb, var(--ay-primary), #5bd152 18%)) !important;
    box-shadow: 0 12px 26px rgba(58, 170, 53, .18);
    font-weight: 950 !important;
    text-decoration: none !important;
}

body.aynoot-theme .ay-shop-player-login {
    width: 100%;
}

body.aynoot-theme .ay-shop-buyer-actions .btn-secondary {
    border: 1px solid rgba(255, 255, 255, .13) !important;
    color: var(--ay-text) !important;
    background: rgba(255, 255, 255, .06) !important;
    box-shadow: none !important;
}

body.aynoot-theme.ay-light .ay-shop-buyer-actions .btn-secondary {
    border-color: rgba(22, 48, 21, .16) !important;
    color: #172a19 !important;
    background: rgba(255, 255, 255, .7) !important;
}

body.aynoot-theme .ay-shop-side-card .card-header,
body.aynoot-theme .ay-shop-side-card .card-body {
    border-color: rgba(255, 255, 255, .1) !important;
    color: var(--ay-text) !important;
    background: transparent !important;
}

body.aynoot-theme .ay-shop-side-card .list-group,
body.aynoot-theme .ay-shop-side-card .list-group-item {
    border-color: rgba(255, 255, 255, .1) !important;
    color: var(--ay-text) !important;
    background: transparent !important;
}

body.aynoot-theme .ay-shop-welcome-card .card-body,
body.aynoot-theme .ay-shop-description .card-body,
body.aynoot-theme .ay-shop-login-card .card-body {
    padding: clamp(1.2rem, 2.6vw, 2rem) !important;
}

body.aynoot-theme .ay-shop-welcome-content,
body.aynoot-theme .ay-shop-description {
    color: color-mix(in srgb, var(--ay-muted), var(--ay-text) 16%);
    font-size: 1.05rem;
    line-height: 1.75;
}

body.aynoot-theme .ay-shop-welcome-content h1,
body.aynoot-theme .ay-shop-welcome-content h2,
body.aynoot-theme .ay-shop-welcome-content h3,
body.aynoot-theme .ay-shop-description h1,
body.aynoot-theme .ay-shop-description h2,
body.aynoot-theme .ay-shop-description h3 {
    margin: 0 0 .75rem;
    color: var(--ay-text);
    font-size: clamp(1.75rem, 3vw, 2.55rem);
    font-weight: 950;
    line-height: 1.05;
}

body.aynoot-theme .ay-shop-welcome-content p:last-child,
body.aynoot-theme .ay-shop-description p:last-child {
    margin-bottom: 0;
}

body.aynoot-theme .ay-shop-products {
    align-items: stretch;
}

body.aynoot-theme .ay-shop-product-card {
    height: 100%;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

body.aynoot-theme .ay-shop-product-card:hover {
    border-color: rgba(58, 170, 53, .36) !important;
    transform: translateY(-3px);
    box-shadow: 0 26px 72px rgba(0, 0, 0, .28);
}

body.aynoot-theme .ay-shop-product-image {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    margin: .8rem .8rem 0;
    border-radius: 8px;
    background: rgba(4, 12, 7, .5);
}

body.aynoot-theme .ay-shop-product-image img,
body.aynoot-theme #shop .card-img-top {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

body.aynoot-theme .ay-shop-product-card .card-body {
    display: grid;
    gap: .85rem;
    padding: 1rem !important;
}

body.aynoot-theme .ay-shop-product-card .card-title {
    margin: 0 !important;
    color: var(--ay-text) !important;
    font-size: clamp(1.35rem, 2.2vw, 1.85rem) !important;
    font-weight: 950 !important;
    line-height: 1.08 !important;
}

body.aynoot-theme .ay-shop-product-card .card-subtitle,
body.aynoot-theme #itemModal .modal-footer > span {
    display: inline-flex !important;
    align-items: center !important;
    gap: .35rem !important;
    width: fit-content !important;
    margin: 0 !important;
    padding: .42rem .65rem !important;
    border: 1px solid rgba(58, 170, 53, .28) !important;
    border-radius: 999px !important;
    color: color-mix(in srgb, var(--ay-primary), var(--ay-text) 24%) !important;
    background: rgba(58, 170, 53, .1) !important;
    font-size: .96rem !important;
    font-weight: 950 !important;
    line-height: 1 !important;
}

body.aynoot-theme .ay-shop-price {
    display: inline-flex;
    align-items: baseline;
    gap: .25rem;
    color: inherit;
    font-family: inherit;
    line-height: 1;
    vertical-align: baseline;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

body.aynoot-theme .ay-shop-price * {
    font-family: inherit !important;
    line-height: 1 !important;
    vertical-align: baseline !important;
}

body.aynoot-theme .ay-shop-empty,
body.aynoot-theme.ay-shop-page .alert {
    border: 1px solid rgba(58, 170, 53, .24) !important;
    border-radius: 8px !important;
    color: var(--ay-text) !important;
    background:
        linear-gradient(135deg, rgba(58, 170, 53, .12), rgba(255, 255, 255, .035)),
        rgba(9, 20, 12, .58) !important;
}

body.aynoot-theme.ay-light .ay-shop-empty,
body.aynoot-theme.ay-light.ay-shop-page .alert {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .86), rgba(219, 242, 211, .58)),
        rgba(255, 255, 255, .7) !important;
}

body.aynoot-theme .ay-shop-player-form {
    display: grid;
    gap: 1rem;
    max-width: 560px;
}

body.aynoot-theme .ay-shop-player-form .form-label,
body.aynoot-theme.ay-shop-page label {
    color: var(--ay-text) !important;
    font-weight: 950 !important;
}

body.aynoot-theme .ay-shop-input-wrap {
    position: relative;
}

body.aynoot-theme .ay-shop-input-wrap > i {
    position: absolute;
    left: 1rem;
    top: 50%;
    color: var(--ay-muted);
    transform: translateY(-50%);
    pointer-events: none;
}

body.aynoot-theme .ay-shop-input-wrap .form-control {
    padding-left: 2.65rem !important;
}

body.aynoot-theme.ay-shop-page .form-control,
body.aynoot-theme.ay-shop-page .form-select,
body.aynoot-theme #itemModal .form-control,
body.aynoot-theme #itemModal .form-select {
    min-height: 44px;
    border: 1px solid rgba(255, 255, 255, .12) !important;
    border-radius: 8px !important;
    color: var(--ay-text) !important;
    background: rgba(6, 15, 8, .68) !important;
}

body.aynoot-theme.ay-light.ay-shop-page .form-control,
body.aynoot-theme.ay-light.ay-shop-page .form-select,
body.aynoot-theme.ay-light #itemModal .form-control,
body.aynoot-theme.ay-light #itemModal .form-select {
    border-color: rgba(22, 48, 21, .16) !important;
    color: #172a19 !important;
    background: rgba(255, 255, 255, .78) !important;
}

body.aynoot-theme.ay-shop-page .invalid-feedback,
body.aynoot-theme #itemModal .invalid-feedback {
    display: block;
    margin-top: .55rem;
    color: #ff8f9a !important;
    font-weight: 850;
}

body.aynoot-theme.ay-light.ay-shop-page .invalid-feedback,
body.aynoot-theme.ay-light #itemModal .invalid-feedback {
    color: #b42332 !important;
}

body.aynoot-theme #itemModal {
    z-index: 1090 !important;
}

body.aynoot-theme #itemModal .modal-dialog {
    max-width: min(760px, calc(100vw - 1.5rem));
}

body.aynoot-theme #itemModal .modal-content {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .14) !important;
    border-radius: 8px !important;
    color: var(--ay-text) !important;
    background:
        radial-gradient(circle at 16% 0%, rgba(58, 170, 53, .16), transparent 24rem),
        linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(58, 170, 53, .06) 52%, rgba(255, 255, 255, .025)),
        rgba(14, 25, 15, .97) !important;
    box-shadow: 0 28px 90px rgba(0, 0, 0, .52);
}

body.aynoot-theme.ay-light #itemModal .modal-content {
    border-color: rgba(22, 48, 21, .14) !important;
    background:
        radial-gradient(circle at 16% 0%, rgba(58, 170, 53, .14), transparent 24rem),
        linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(219, 242, 211, .74) 52%, rgba(255, 255, 255, .86)) !important;
}

body.aynoot-theme #itemModal .modal-header,
body.aynoot-theme #itemModal .modal-footer {
    gap: .75rem;
    border-color: rgba(255, 255, 255, .12) !important;
}

body.aynoot-theme #itemModal .modal-title {
    color: var(--ay-text) !important;
    font-size: clamp(1.55rem, 3vw, 2.35rem) !important;
    font-weight: 950 !important;
    line-height: 1.05;
}

body.aynoot-theme #itemModal .modal-body {
    color: color-mix(in srgb, var(--ay-muted), var(--ay-text) 16%) !important;
    line-height: 1.7;
}

body.aynoot-theme.ay-shop-page .modal-backdrop {
    z-index: 1085 !important;
    background: #020805 !important;
}

body.aynoot-theme.ay-shop-page .modal-backdrop.show {
    opacity: .74 !important;
}

body.aynoot-theme.ay-shop-page #itemModal,
body.aynoot-theme.ay-shop-page #confirmBuyModal {
    z-index: 1120 !important;
    pointer-events: none;
}

body.aynoot-theme.ay-shop-page #itemModal.show,
body.aynoot-theme.ay-shop-page #confirmBuyModal.show {
    pointer-events: auto;
}

body.aynoot-theme.ay-shop-page #itemModal .modal-dialog,
body.aynoot-theme.ay-shop-page #itemModal .modal-content,
body.aynoot-theme.ay-shop-page #confirmBuyModal .modal-dialog,
body.aynoot-theme.ay-shop-page #confirmBuyModal .modal-content {
    position: relative;
    z-index: 1121 !important;
    pointer-events: auto;
}

body.aynoot-theme.ay-shop-page .modal-backdrop {
    z-index: 1110 !important;
}

body.aynoot-theme .ay-shop-product-card .card-subtitle,
body.aynoot-theme #itemModal .modal-footer > span {
    min-height: 34px;
    padding: .48rem .72rem .5rem !important;
    line-height: 1.18 !important;
    letter-spacing: 0 !important;
    white-space: nowrap !important;
    font-variant-numeric: tabular-nums;
}

body.aynoot-theme.ay-shop-page .table td,
body.aynoot-theme.ay-shop-page .table th {
    line-height: 1.35 !important;
    font-variant-numeric: tabular-nums;
}

body.aynoot-theme .ay-shop-offers .ay-shop-panel .card-body {
    padding: clamp(1rem, 2vw, 1.55rem) !important;
}

body.aynoot-theme .ay-shop-offer-card {
    display: grid;
    gap: .95rem;
    height: 100%;
    min-height: 190px;
    padding: 1.05rem;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    color: var(--ay-text) !important;
    text-decoration: none !important;
    background:
        radial-gradient(circle at 16% 0%, rgba(255, 255, 255, .18), transparent 10rem),
        linear-gradient(135deg, rgba(255, 255, 255, .055), rgba(58, 170, 53, .09)),
        rgba(7, 18, 10, .68);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .2);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

body.aynoot-theme .ay-shop-offer-card:hover {
    border-color: rgba(58, 170, 53, .42);
    transform: translateY(-3px);
    box-shadow: 0 24px 58px rgba(0, 0, 0, .28);
}

body.aynoot-theme.ay-light .ay-shop-offer-card {
    border-color: rgba(22, 48, 21, .14);
    color: #172a19 !important;
    background:
        radial-gradient(circle at 16% 0%, rgba(255, 255, 255, .9), transparent 10rem),
        linear-gradient(135deg, rgba(255, 255, 255, .76), rgba(219, 242, 211, .66)),
        rgba(255, 255, 255, .58);
    box-shadow: 0 20px 54px rgba(31, 51, 32, .13);
}

body.aynoot-theme .ay-shop-offer-media {
    display: grid;
    place-items: center;
    min-height: 86px;
    border-radius: 8px;
    background: rgba(4, 12, 7, .42);
}

body.aynoot-theme.ay-light .ay-shop-offer-media {
    background: rgba(255, 255, 255, .58);
}

body.aynoot-theme .ay-shop-offer-media img {
    display: block;
    max-width: min(100%, 180px);
    max-height: 84px;
    object-fit: contain;
}

body.aynoot-theme .ay-shop-offer-media i {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 8px;
    color: var(--ay-primary);
    background: rgba(58, 170, 53, .12);
    font-size: 1.6rem;
}

body.aynoot-theme .ay-shop-offer-body {
    display: grid;
    gap: .35rem;
}

body.aynoot-theme .ay-shop-offer-body strong {
    color: var(--ay-text);
    font-size: 1.15rem;
    font-weight: 950;
    line-height: 1.15;
}

body.aynoot-theme.ay-light .ay-shop-offer-body strong {
    color: #172a19;
}

body.aynoot-theme .ay-shop-offer-body span {
    color: color-mix(in srgb, var(--ay-muted), var(--ay-text) 20%);
    font-size: .98rem;
    font-weight: 850;
    font-variant-numeric: tabular-nums;
}

body.aynoot-theme.ay-shop-page .table-responsive {
    overflow: auto;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    background: rgba(4, 12, 7, .28);
}

body.aynoot-theme.ay-shop-page .table {
    margin: 0 !important;
    color: var(--ay-text) !important;
    vertical-align: middle;
}

body.aynoot-theme.ay-shop-page .table > :not(caption) > * > * {
    padding: .9rem 1rem !important;
    border-color: rgba(255, 255, 255, .1) !important;
    color: var(--ay-text) !important;
    background: transparent !important;
}

body.aynoot-theme.ay-shop-page .table thead,
body.aynoot-theme.ay-shop-page .table-dark {
    color: var(--ay-text) !important;
    background:
        linear-gradient(135deg, rgba(58, 170, 53, .18), rgba(58, 170, 53, .06)),
        rgba(4, 12, 7, .5) !important;
}

body.aynoot-theme.ay-light.ay-shop-page .table-responsive {
    border-color: rgba(22, 48, 21, .13);
    background: rgba(255, 255, 255, .48);
}

body.aynoot-theme.ay-light.ay-shop-page .table > :not(caption) > * > * {
    border-color: rgba(22, 48, 21, .12) !important;
    color: #172a19 !important;
}

body.aynoot-theme .ay-shop-cart-layout {
    display: grid;
    grid-template-columns: minmax(230px, 280px) minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
}

body.aynoot-theme .ay-shop-cart-user-card {
    display: grid;
    gap: 1rem;
    position: sticky;
    top: 6rem;
}

body.aynoot-theme .ay-shop-cart-panel .card-body {
    display: grid;
    gap: 1rem;
    padding: clamp(1rem, 2.4vw, 1.6rem) !important;
}

body.aynoot-theme .ay-shop-cart-items {
    display: grid;
    gap: .75rem;
}

body.aynoot-theme .ay-shop-cart-table {
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    background: rgba(4, 12, 7, .26);
}

body.aynoot-theme.ay-light .ay-shop-cart-table {
    border-color: rgba(22, 48, 21, .13);
    background: rgba(255, 255, 255, .5);
}

body.aynoot-theme .ay-shop-cart-table .form-control-sm {
    width: 90px;
    min-height: 40px;
}

body.aynoot-theme .ay-shop-cart-inline-actions,
body.aynoot-theme .ay-shop-clear-cart {
    display: flex;
    justify-content: flex-end;
}

body.aynoot-theme .ay-shop-cart-tools {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: .55rem;
}

body.aynoot-theme .ay-shop-collapse-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    background: rgba(4, 12, 7, .22);
}

body.aynoot-theme.ay-light .ay-shop-collapse-card {
    border-color: rgba(22, 48, 21, .13);
    background: rgba(255, 255, 255, .52);
}

body.aynoot-theme .ay-shop-collapse-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    width: 100%;
    min-height: 48px;
    padding: .78rem .95rem;
    border: 0;
    color: var(--ay-text);
    background: transparent;
    font-weight: 950;
    text-align: left;
}

body.aynoot-theme .ay-shop-collapse-toggle span {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
}

body.aynoot-theme .ay-shop-collapse-toggle > .bi-chevron-down {
    color: var(--ay-primary);
    transition: transform .18s ease;
}

body.aynoot-theme .ay-shop-collapse-toggle:not(.collapsed) > .bi-chevron-down {
    transform: rotate(180deg);
}

body.aynoot-theme .ay-shop-collapse-body {
    padding: .95rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

body.aynoot-theme .ay-shop-collapse-table {
    margin: 0 .95rem .95rem;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
}

body.aynoot-theme .ay-shop-payable-total,
body.aynoot-theme .ay-shop-cart-total {
    justify-self: end;
    color: var(--ay-text);
    font-size: 1.12rem;
    font-weight: 950;
    font-variant-numeric: tabular-nums;
}

body.aynoot-theme .ay-shop-cart-checkout {
    display: grid;
    gap: .85rem;
}

body.aynoot-theme .ay-shop-cart-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 360px));
    gap: .75rem;
    justify-content: end;
    align-items: stretch;
}

body.aynoot-theme .ay-shop-cart-actions .btn {
    min-height: 54px !important;
    width: 100%;
    font-family: inherit !important;
    font-weight: 950 !important;
}

body.aynoot-theme .ay-shop-back-btn {
    min-width: 0;
    width: 100%;
    border: 0 !important;
    color: #061006 !important;
    background: linear-gradient(135deg, var(--ay-primary), color-mix(in srgb, var(--ay-primary), #5bd152 18%)) !important;
    box-shadow: 0 12px 26px rgba(58, 170, 53, .18) !important;
    font-weight: 950 !important;
}

body.aynoot-theme .ay-shop-back-btn:hover,
body.aynoot-theme .ay-shop-back-btn:focus-visible {
    color: #061006 !important;
    background: linear-gradient(135deg, color-mix(in srgb, var(--ay-primary), #ffffff 9%), color-mix(in srgb, var(--ay-primary), #5bd152 25%)) !important;
    transform: translateY(-1px);
}

body.aynoot-theme .ay-shop-head-actions .ay-shop-back-btn,
body.aynoot-theme .ay-shop-back-btn--compact {
    width: auto;
    min-width: 150px;
    max-width: 240px;
    min-height: 42px !important;
    padding: .65rem 1.15rem !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

body.aynoot-theme .ay-shop-cart-actions {
    grid-template-columns: minmax(150px, 240px) minmax(280px, 1fr);
    align-items: stretch;
    justify-content: stretch;
}

body.aynoot-theme .ay-shop-cart-actions .ay-shop-cart-back-btn {
    min-height: 52px !important;
    height: 52px !important;
    padding: 0 1rem !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: .45rem !important;
    line-height: 1 !important;
    text-align: center;
    width: 100%;
    align-self: stretch;
}

body.aynoot-theme .ay-shop-cart-actions .ay-shop-checkout-btn {
    min-height: 52px !important;
    height: 52px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: .45rem !important;
    line-height: 1 !important;
    text-align: center;
}

body.aynoot-theme .ay-shop-cart-actions .ay-shop-cart-back-btn i,
body.aynoot-theme .ay-shop-cart-actions .ay-shop-checkout-btn i {
    margin: 0 !important;
    line-height: 1 !important;
    flex: 0 0 auto;
}

body.aynoot-theme .ay-shop-cart-checkout .ay-shop-cart-actions {
    display: grid !important;
    grid-template-columns: minmax(240px, 280px) minmax(320px, 1fr) !important;
    align-items: center !important;
    gap: .75rem !important;
}

body.aynoot-theme .ay-shop-cart-checkout .ay-shop-cart-actions > .ay-shop-cart-back-btn,
body.aynoot-theme .ay-shop-cart-checkout .ay-shop-cart-actions > .ay-shop-checkout-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: .5rem !important;
    width: 100% !important;
    height: 56px !important;
    min-height: 56px !important;
    max-height: 56px !important;
    padding: 0 1.15rem !important;
    margin: 0 !important;
    align-self: center !important;
    justify-self: stretch !important;
    line-height: 1 !important;
    font-size: 1.05rem !important;
    font-weight: 950 !important;
    vertical-align: middle !important;
}

body.aynoot-theme .ay-shop-cart-checkout .ay-shop-cart-actions > .ay-shop-cart-back-btn i,
body.aynoot-theme .ay-shop-cart-checkout .ay-shop-cart-actions > .ay-shop-checkout-btn i {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    line-height: 1 !important;
}

body.aynoot-theme .ay-shop-cart-checkout .ay-shop-button-label {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

body.aynoot-theme .ay-shop-empty-actions {
    display: flex;
    margin-top: 1rem;
}

@media (max-width: 767.98px) {
    body.aynoot-theme .ay-shop-cart-actions {
        grid-template-columns: 1fr;
    }
}

/* Final native cursor and navbar alignment */
body.aynoot-theme {
    --ay-spear-cursor: auto !important;
    cursor: auto !important;
}

body.aynoot-theme a,
body.aynoot-theme button,
body.aynoot-theme [role="button"],
body.aynoot-theme .btn,
body.aynoot-theme summary,
body.aynoot-theme select,
body.aynoot-theme label[for],
body.aynoot-theme input[type="checkbox"],
body.aynoot-theme input[type="radio"],
body.aynoot-theme input[type="button"],
body.aynoot-theme input[type="submit"],
body.aynoot-theme input[type="reset"] {
    cursor: pointer !important;
}

body.aynoot-theme input,
body.aynoot-theme textarea,
body.aynoot-theme [contenteditable="true"] {
    cursor: text !important;
}

body.aynoot-theme .ay-navbar-controls,
body.aynoot-theme .ay-auth-actions {
    align-items: center !important;
}

body.aynoot-theme .ay-navbar-controls > *,
body.aynoot-theme .ay-auth-actions .btn,
body.aynoot-theme .ay-auth-actions .dropdown,
body.aynoot-theme .ay-theme-toggle {
    margin-top: 0 !important;
    align-self: center !important;
}

body.aynoot-theme .ay-shop-checkout-btn {
    width: 100%;
    font-size: 1.05rem !important;
    box-shadow: 0 18px 38px rgba(58, 170, 53, .22) !important;
}

body.aynoot-theme .ay-shop-remove-item,
body.aynoot-theme .ay-shop-cart-table .btn-danger.ay-shop-remove-item,
body.aynoot-theme .ay-shop-collapse-table .btn-danger.ay-shop-remove-item {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    min-height: 34px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 8px !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #ef4444, #dc2626) !important;
    box-shadow: 0 10px 22px rgba(220, 38, 38, .22) !important;
    font-family: inherit !important;
    font-weight: 950 !important;
}

body.aynoot-theme .ay-shop-remove-item i {
    color: #ffffff !important;
    font-size: .92rem;
    line-height: 1;
}

body.aynoot-theme .ay-shop-remove-item:hover,
body.aynoot-theme .ay-shop-remove-item:focus-visible {
    color: #ffffff !important;
    background: linear-gradient(135deg, #f87171, #dc2626) !important;
    transform: translateY(-1px);
}

body.aynoot-theme .ay-shop-clear-btn,
body.aynoot-theme .ay-shop-clear-cart .btn-danger.ay-shop-clear-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: .42rem !important;
    min-height: 44px !important;
    padding: .68rem .95rem !important;
    border: 0 !important;
    border-radius: 8px !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #ef4444, #dc2626) !important;
    box-shadow: 0 12px 26px rgba(220, 38, 38, .22) !important;
    font-family: inherit !important;
    font-weight: 950 !important;
}

body.aynoot-theme .ay-shop-clear-btn:hover,
body.aynoot-theme .ay-shop-clear-btn:focus-visible {
    color: #ffffff !important;
    background: linear-gradient(135deg, #f87171, #dc2626) !important;
    transform: translateY(-1px);
}

@media (max-width: 991.98px) {
    body.aynoot-theme .ay-shop-sidebar {
        position: static;
    }

    body.aynoot-theme .ay-shop-cart-layout {
        grid-template-columns: 1fr;
    }

    body.aynoot-theme .ay-shop-cart-user-card {
        position: static;
    }
}

@media (max-width: 767.98px) {
    body.aynoot-theme.ay-shop-page .ay-content:has(.ay-shop-shell),
    body.aynoot-theme.ay-shop-page .ay-content:has(#shop) {
        padding: .5rem 0 1.25rem !important;
    }

    body.aynoot-theme .ay-shop-shell {
        width: min(100% - 1rem, 1180px);
        padding: 1rem;
    }

    body.aynoot-theme .ay-shop-head h2,
    body.aynoot-theme .ay-shop-head h1,
    body.aynoot-theme.ay-shop-page .ay-content:has(.ay-shop-shell) > h2 {
        font-size: clamp(1.95rem, 9vw, 2.7rem) !important;
        line-height: 1 !important;
    }

    body.aynoot-theme .ay-shop-cart-tools {
        grid-template-columns: 1fr;
    }

    body.aynoot-theme .ay-shop-cart-actions {
        grid-template-columns: 1fr;
        justify-content: stretch;
    }

    body.aynoot-theme .ay-shop-cart-inline-actions,
    body.aynoot-theme .ay-shop-clear-cart,
    body.aynoot-theme .ay-shop-cart-total,
    body.aynoot-theme .ay-shop-payable-total {
        justify-content: stretch;
        justify-self: stretch;
    }

    body.aynoot-theme .ay-shop-product-image {
        aspect-ratio: 16 / 11;
    }

    body.aynoot-theme #itemModal .modal-footer {
        align-items: stretch;
        flex-direction: column;
    }

    body.aynoot-theme #itemModal .modal-footer .btn,
    body.aynoot-theme #itemModal .modal-footer > span {
        width: 100% !important;
        justify-content: center !important;
    }
}
