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 h1 {
    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 h1,
.ay-auth-card h2,
.ay-profile-summary h1,
.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 h1 {
    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);
}

.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 h1 {
    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 h1 {
        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 h1 {
        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 h1,
    .ay-profile-summary h1 {
        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 h1 {
    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 h1 {
    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 h1 {
        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;
}
