:root {
    --accent-pink: #ff00cd;
    --accent-cyan: #00e1ff;
    --base-black: #15171a;
    --base-navy: #0a141d;
    --text-main: #e8f9ff;
}

body {
    background: var(--base-navy);
    color: var(--text-main);
    font-family: "Rajdhani", sans-serif;
}

.neo-header .container,
.neo-home .container,
.neo-about-page .container,
.neo-footer .container {
    max-width: 1540px;
    width: calc(100% - 36px);
    margin-left: auto;
    margin-right: auto;
}

/* Main page gets wider side gutters than other sections */
.neo-home .container {
    width: calc(100% - 128px);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Orbitron", sans-serif;
    letter-spacing: 0.03em;
}

.neo-header {
    border-bottom: 0;
    background: var(--base-navy);
    backdrop-filter: none;
    position: sticky;
    top: 0;
    z-index: 30;
}

.neo-header-inner {
    min-height: 92px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: center;
}

.neo-social {
    display: flex;
    gap: 1.55rem;
    align-items: center;
}

.neo-social-link {
    display: inline-block;
    color: var(--text-main);
    border: 0;
    background: transparent;
    padding: 0;
    font-size: 1.45rem;
    line-height: 1;
    transition: all 0.2s ease;
}

.neo-social-link:hover {
    color: var(--accent-cyan);
}

.neo-logo-wrap {
    text-align: center;
}

.neo-brand {
    color: var(--text-main);
    font-family: "Orbitron", sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease;
}

.neo-brand img {
    max-height: 144px;
    width: auto;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.neo-brand:hover,
.neo-brand:focus-visible {
    transform: translateY(-2px);
}

.neo-brand:hover img,
.neo-brand:focus-visible img {
    transform: scale(1.04);
    filter: drop-shadow(0 0 10px rgba(255, 0, 205, 0.5)) drop-shadow(0 0 22px rgba(255, 0, 205, 0.28));
}

.neo-right-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.25rem;
}

.neo-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.neo-nav ul li a {
    color: var(--text-main);
    font-family: "Orbitron", sans-serif;
    font-size: clamp(0.96rem, 1.02vw, 1.12rem);
    font-weight: 600;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.neo-nav ul li.active a,
.neo-nav ul li a:hover {
    color: var(--accent-cyan);
}

.neo-account-link {
    color: var(--text-main);
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-family: "Orbitron", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: clamp(0.96rem, 1.02vw, 1.12rem);
    letter-spacing: 0.035em;
}

.neo-account-link:hover {
    color: var(--accent-cyan);
}

.neo-about-link {
    color: var(--text-main);
    font-family: "Orbitron", sans-serif;
    font-size: clamp(0.96rem, 1.02vw, 1.12rem);
    font-weight: 600;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.neo-about-link:hover {
    color: var(--accent-cyan);
}

.neo-home {
    padding: 2.25rem 0 3rem;
}

.neo-about-page {
    padding: 2rem 0 3rem;
}

.neo-about-layout {
    display: grid;
    grid-template-columns: minmax(0, 2.45fr) minmax(220px, 0.7fr);
    gap: 2rem;
    align-items: stretch;
}

.neo-about-card {
    border: 2px solid var(--accent-cyan);
    border-radius: 12px;
    background: #001730;
    padding: 1.8rem 2rem 2rem;
    height: 100%;
    min-height: 460px;
    display: flex;
    flex-direction: column;
}

.neo-about-top {
    text-align: center;
    margin-bottom: 1rem;
}

.neo-about-top img {
    width: min(100%, 122px);
    height: auto;
}

.neo-about-top h1 {
    margin: 1rem 0 0;
    color: #eef8ff;
    text-transform: uppercase;
    font-size: clamp(2.1rem, 2.6vw, 3rem);
    letter-spacing: 0.045em;
}

.neo-about-intro {
    color: #dceef9;
}

.neo-about-intro p,
.neo-about-intro li {
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(1.35rem, 1.45vw, 1.8rem);
    line-height: 1.32;
    margin: 0 0 1rem;
}

.neo-about-intro p:last-child {
    margin-bottom: 0;
}

.neo-about-projects h2 {
    margin: 0 0 1rem;
    font-size: 2rem;
    text-transform: uppercase;
}

.neo-about-projects {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.neo-about-projects .neo-project-list {
    flex: 1;
    gap: 1rem;
}

.neo-about-extra {
    margin-top: 1.6rem;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    color: #dceef9;
    font-family: "Manrope", "Rajdhani", sans-serif;
    font-size: clamp(1.06rem, 1.1vw, 1.2rem);
    line-height: 1.78;
    letter-spacing: 0.008em;
}

.neo-about-extra > * {
    max-width: 78ch;
    margin-left: auto;
    margin-right: auto;
}

.neo-about-extra > .kg-card,
.neo-about-extra > figure,
.neo-about-extra > pre {
    max-width: min(100%, 1160px);
}

.neo-about-extra > .kg-width-full {
    max-width: none;
}

.neo-about-extra p,
.neo-about-extra li {
    color: #dceef9;
}

.neo-about-extra p + p {
    margin-top: 1.05rem;
}

.neo-about-extra ul,
.neo-about-extra ol {
    padding-left: 1.2rem;
}

.neo-about-extra img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.neo-about-extra figure,
.neo-about-extra .kg-image-card,
.neo-about-extra .kg-gallery-card {
    margin-left: auto;
    margin-right: auto;
}

.neo-about-extra figcaption {
    text-align: center;
}

.neo-about-extra a {
    color: #00e1ff;
    text-decoration: underline;
    text-decoration-color: rgba(0, 225, 255, 0.45);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.14em;
}

.neo-about-extra a:hover {
    color: #ff00cd;
    text-decoration-color: #ff00cd;
}

.neo-about-extra pre,
.neo-about-extra .kg-code-card pre {
    background: #021227 !important;
    border: 1px solid rgba(0, 225, 255, 0.45);
    border-radius: 12px;
    color: #dff4ff;
    padding: 0.9rem 1rem;
}

.neo-about-extra pre code,
.neo-about-extra .kg-code-card pre code {
    background: transparent !important;
    color: inherit !important;
}

.neo-about-extra :not(pre) > code {
    background: rgba(0, 225, 255, 0.1);
    color: #8defff;
    border-radius: 4px;
    padding: 0.06rem 0.32rem;
}

.neo-about-extra-skip-first > p:first-of-type {
    display: none;
}

.neo-about-extra h1,
.neo-about-extra h2,
.neo-about-extra h3,
.neo-about-extra h4 {
    color: #eef8ff;
    text-transform: uppercase;
    line-height: 1.22;
    letter-spacing: 0.016em;
    margin-top: 2rem;
    margin-bottom: 0.95rem;
}

.neo-feature-grid {
    display: grid;
    grid-template-columns: minmax(0, 2.45fr) minmax(220px, 0.7fr);
    gap: 2rem;
    align-items: stretch;
}

.neo-lead-post {
    border: 2px solid var(--accent-cyan);
    border-radius: 12px;
    overflow: hidden;
    background: #05101a;
    position: relative;
    min-height: 460px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.neo-lead-post:hover {
    border-color: #00e1ff;
    box-shadow: 0 0 0 2px rgba(0, 225, 255, 0.45), 0 0 34px rgba(0, 225, 255, 0.38), 0 0 72px rgba(0, 100, 215, 0.2);
}

.neo-lead-post-noimage {
    min-height: 460px;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(145deg, rgba(41, 63, 115, 0.8), rgba(10, 20, 29, 0.96));
}

.neo-lead-media {
    display: block;
}

.neo-lead-media img {
    width: 100%;
    min-height: 560px;
    max-height: 720px;
    object-fit: cover;
    filter: saturate(1.2) contrast(1.05);
}

.neo-lead-content {
    position: relative;
    padding: 1.8rem;
    background: transparent;
}

.neo-lead-post-hasimage .neo-lead-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.2rem 1.2rem 1.4rem;
    background: linear-gradient(180deg, rgba(10, 20, 29, 0.01) 0%, rgba(10, 20, 29, 0.92) 55%, rgba(10, 20, 29, 0.98) 100%);
}

.neo-lead-post-noimage .neo-lead-media {
    display: none;
}

.neo-lead-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    background: #293f73;
    color: #fff;
    text-transform: uppercase;
    padding: 0.45rem 0.8rem;
    border-radius: 6px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.neo-lead-meta span + span::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    display: inline-block;
    margin-right: 0.9rem;
    vertical-align: middle;
}

.neo-lead-content h1 {
    margin: 0 0 0.55rem;
    font-size: clamp(1.55rem, 2.3vw, 2.55rem);
    line-height: 1.15;
}

.neo-lead-content h1 a {
    color: #f8fdff;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.neo-lead-content h1 a::after {
    content: "\2192";
    color: #00e1ff;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.neo-lead-content h1 a:hover {
    color: var(--accent-pink);
}

.neo-lead-post:hover .neo-lead-content h1 a::after {
    opacity: 1;
    transform: translateX(0);
}

.neo-lead-content p {
    margin: 0;
    font-family: "Manrope", "Rajdhani", sans-serif;
    font-size: clamp(1rem, 1.06vw, 1.15rem);
    line-height: 1.52;
    color: #d3e8f6;
    max-width: none;
    width: 100%;
}

.neo-projects {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.neo-projects h2 {
    margin: 0 0 1rem;
    font-size: 2rem;
    text-transform: uppercase;
}

.neo-project-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.neo-project-item {
    border: 1px solid var(--accent-pink);
    border-radius: 10px;
    padding: 1rem 0.95rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    justify-content: center;
    min-height: 0;
    flex: 1;
    background: linear-gradient(110deg, #090726 0%, #1b0f32 55%, #2a113f 100%);
    color: #f7fbff;
    text-align: center;
}

.neo-project-item:hover {
    border-color: var(--accent-pink);
    box-shadow: 0 0 0 2px rgba(255, 0, 205, 0.45), 0 0 28px rgba(255, 0, 205, 0.42), 0 0 56px rgba(255, 0, 205, 0.28);
    color: #fff;
}

.neo-project-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.neo-project-logo img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.neo-project-name {
    font-family: "Orbitron", sans-serif;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 0.03em;
    text-align: center;
    line-height: 1.24;
    max-width: 20ch;
}

.neo-article-list {
    margin-top: 4.2rem;
    display: grid;
    gap: 2.2rem;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
}

.neo-pair-row {
    margin-top: 2rem;
    display: grid;
    gap: 2.1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.neo-pair-card {
    border: 1px solid rgba(232, 249, 255, 0.45);
    border-radius: 12px;
    overflow: hidden;
    min-height: 380px;
    background: linear-gradient(160deg, rgba(41, 63, 115, 0.42), rgba(10, 20, 29, 0.9));
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.neo-pair-card:hover {
    border-color: #00e1ff;
    box-shadow: 0 0 0 1px rgba(0, 225, 255, 0.25), 0 0 16px rgba(0, 225, 255, 0.2);
}

.neo-pair-link {
    display: block;
    height: 100%;
    position: relative;
}

.neo-pair-link img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
}

.neo-pair-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem 1.1rem 1.2rem;
    background: linear-gradient(180deg, rgba(10, 20, 29, 0.04) 8%, rgba(10, 20, 29, 0.72) 55%, rgba(10, 20, 29, 0.98) 100%);
}

.neo-pair-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #293f73;
    color: #fff;
    text-transform: uppercase;
    padding: 0.42rem 0.72rem;
    border-radius: 4px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.neo-pair-meta span + span::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
    display: inline-block;
    margin-right: 0.8rem;
    vertical-align: middle;
}

.neo-pair-content h2 {
    margin: 0;
    color: #f5fbff;
    text-transform: uppercase;
    font-size: clamp(1.2rem, 1.7vw, 1.75rem);
    line-height: 1.25;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.neo-pair-content h2::after {
    content: "\2192";
    color: #00e1ff;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.neo-pair-card:hover .neo-pair-content h2::after {
    opacity: 1;
    transform: translateX(0);
}

.neo-pair-card:hover .neo-pair-content h2 {
    color: var(--accent-pink);
}

.neo-pair-content p {
    margin: 0.5rem 0 0;
    color: #d2e7f4;
    font-family: "Manrope", "Rajdhani", sans-serif;
    font-size: clamp(0.95rem, 1vw, 1.08rem);
    line-height: 1.5;
    max-width: none;
    width: 100%;
}

.neo-subscribe-cta {
    margin-top: 4.2rem;
    border: 2px solid rgba(0, 225, 255, 0.72);
    border-radius: 9px;
    background: #0a3b78;
    padding: 2rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.6rem;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.neo-subscribe-cta:hover {
    border-color: var(--accent-pink);
    box-shadow: 0 0 0 1px rgba(255, 0, 205, 0.28), 0 0 20px rgba(255, 0, 205, 0.22);
}

.neo-subscribe-copy h2 {
    margin: 0;
    text-transform: uppercase;
    color: #f2fbff;
    font-size: clamp(2rem, 2.3vw, 2.7rem);
    line-height: 1.1;
    letter-spacing: 0.035em;
}

.neo-list-card {
    border: 1px solid rgba(232, 249, 255, 0.45);
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(10, 20, 29, 0.88), rgba(21, 23, 26, 0.96));
    min-height: 332px;
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(320px, 1fr);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.neo-list-card:hover {
    border-color: #00e1ff;
    box-shadow: 0 0 0 1px rgba(0, 225, 255, 0.25), 0 0 16px rgba(0, 225, 255, 0.2);
}

.neo-list-media {
    display: block;
    min-height: 332px;
}

.neo-list-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.neo-list-content {
    padding: 1.7rem 1.7rem 1.35rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.neo-list-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    width: fit-content;
    background: #293f73;
    color: #fff;
    text-transform: uppercase;
    padding: 0.42rem 0.72rem;
    border-radius: 4px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.neo-list-meta span + span::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
    display: inline-block;
    margin-right: 0.8rem;
    vertical-align: middle;
}

.neo-list-content h2 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.45rem, 2vw, 2.4rem);
    line-height: 1.2;
    text-transform: uppercase;
}

.neo-list-content h2 a {
    color: #f5fbff;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.neo-list-content h2 a::after {
    content: "\2192";
    color: #00e1ff;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.neo-list-content h2 a:hover {
    color: var(--accent-pink);
}

.neo-list-card:hover .neo-list-content h2 a::after {
    opacity: 1;
    transform: translateX(0);
}

.neo-list-content p {
    margin: 0;
    color: #d2e7f4;
    opacity: 0.98;
    font-family: "Manrope", "Rajdhani", sans-serif;
    font-size: clamp(0.98rem, 1.02vw, 1.08rem);
    line-height: 1.6;
    max-width: none;
    width: 100%;
}

.neo-subscribe-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    min-height: 66px;
    padding: 0.7rem 2.1rem;
    border-radius: 10px;
    border: 0;
    background: var(--accent-cyan);
    color: var(--base-black);
    font-family: "Orbitron", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 1.55rem;
    font-weight: 700;
}

.neo-subscribe-btn:hover {
    background: var(--accent-pink);
    color: #fff;
}

.neo-pagination {
    margin-top: 1.7rem;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
}

.neo-pagination .post-pagi-text {
    gap: 0.85rem;
}

.neo-pagination .post-pagi-text p {
    margin: 0;
}

.neo-pagination .post-pagi-text a {
    display: inline-block;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 225, 255, 0.42);
    background: rgba(2, 18, 39, 0.55);
    color: #e6f6ff;
    font-family: "Orbitron", sans-serif;
    font-size: 0.86rem;
    letter-spacing: 0.02em;
    transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.neo-pagination .post-pagi-text a:hover {
    border-color: #ff00cd;
    color: #00e1ff;
    background: rgba(255, 0, 205, 0.08);
}

.neo-load-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 0.7rem;
}

.neo-load-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 196px;
    min-height: 58px;
    border: 2px solid var(--accent-cyan);
    border-radius: 10px;
    color: var(--accent-cyan);
    font-family: "Orbitron", sans-serif;
    text-transform: uppercase;
    font-size: 1.05rem;
    letter-spacing: 0.06em;
    padding: 0.5rem 1rem;
}

.neo-load-more-btn:hover {
    border-color: var(--accent-pink);
    color: var(--accent-pink);
}

.neo-single-page {
    padding: 1.5rem 0 2rem;
}

.neo-single-hero {
    border: 2px solid var(--accent-cyan);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    min-height: 520px;
    background: linear-gradient(140deg, rgba(41, 63, 115, 0.72), rgba(10, 20, 29, 0.96));
}

.neo-single-hero-image {
    width: 100%;
    min-height: 520px;
    max-height: 760px;
    object-fit: cover;
    filter: saturate(1.15) contrast(1.03);
}

.neo-single-hero-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.2rem 1.4rem 1.35rem;
    background: linear-gradient(180deg, rgba(10, 20, 29, 0.04) 8%, rgba(10, 20, 29, 0.74) 55%, rgba(10, 20, 29, 0.98) 100%);
}

.neo-single-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.82rem;
    background: #293f73;
    color: #fff;
    text-transform: uppercase;
    padding: 0.42rem 0.74rem;
    border-radius: 4px;
    font-weight: 700;
    margin-bottom: 0.95rem;
}

.neo-single-meta span + span::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    display: inline-block;
    margin-right: 0.82rem;
    vertical-align: middle;
}

.neo-single-hero-content h1 {
    margin: 0;
    color: #f6fbff;
    text-transform: uppercase;
    font-size: clamp(1.7rem, 2.7vw, 3.35rem);
    line-height: 1.15;
    max-width: 22ch;
}

.neo-single-hero-noimage {
    min-height: 380px;
}

.neo-single-hero-noimage .neo-single-hero-content {
    position: relative;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: transparent;
}

.neo-single-body {
    margin-top: 1.6rem;
}

.neo-single-page .entry-content,
.neo-single-page .content-meta,
.neo-single-page .blog-author-area,
.neo-single-page .post-pagination,
.neo-single-page .comments-area {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.neo-single-page .entry-content {
    color: #dceef9;
    font-family: "Manrope", "Rajdhani", sans-serif;
    font-size: clamp(1.06rem, 1.1vw, 1.2rem);
    line-height: 1.78;
    letter-spacing: 0.008em;
}

.neo-single-page .entry-content > * {
    max-width: 78ch;
    margin-left: auto;
    margin-right: auto;
}

.neo-single-page .entry-content > .kg-card,
.neo-single-page .entry-content > figure,
.neo-single-page .entry-content > pre {
    max-width: min(100%, 1160px);
}

.neo-single-page .entry-content > .kg-width-full {
    max-width: none;
}

.neo-single-page .entry-content p,
.neo-single-page .entry-content li {
    color: #dceef9;
}

.neo-single-page .entry-content img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.neo-single-page .entry-content figure,
.neo-single-page .entry-content .kg-image-card,
.neo-single-page .entry-content .kg-gallery-card {
    margin-left: auto;
    margin-right: auto;
}

.neo-single-page .entry-content figcaption {
    text-align: center;
}

.neo-single-page .entry-content .kg-gallery-card,
.neo-about-extra .kg-gallery-card {
    width: 100%;
    max-width: min(100%, 1160px);
}

.neo-single-page .entry-content .kg-gallery-container,
.neo-about-extra .kg-gallery-container {
    width: 100%;
    max-width: 100%;
}

.neo-single-page .entry-content .kg-gallery-row,
.neo-about-extra .kg-gallery-row {
    display: flex;
    gap: 0.75rem;
    margin: 0;
}

.neo-single-page .entry-content .kg-gallery-row:not(:first-of-type),
.neo-about-extra .kg-gallery-row:not(:first-of-type) {
    margin-top: 0.75rem;
}

.neo-single-page .entry-content .kg-gallery-image,
.neo-about-extra .kg-gallery-image {
    border: 1px solid rgba(232, 249, 255, 0.35);
    border-radius: 10px;
    overflow: hidden;
    background: #021227;
    min-height: 220px;
}

.neo-single-page .entry-content .kg-gallery-image img,
.neo-about-extra .kg-gallery-image img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    cursor: zoom-in;
}

.neo-single-page .entry-content .kg-image-card img,
.neo-about-extra .kg-image-card img {
    cursor: zoom-in;
    border-radius: 10px;
}

.neo-single-page .entry-content p + p {
    margin-top: 1.05rem;
}

.neo-single-page .entry-content ul,
.neo-single-page .entry-content ol {
    padding-left: 1.2rem;
}

.neo-single-page .entry-content h1,
.neo-single-page .entry-content h2,
.neo-single-page .entry-content h3,
.neo-single-page .entry-content h4 {
    color: #eef8ff;
    text-transform: uppercase;
    line-height: 1.22;
    letter-spacing: 0.016em;
    margin-top: 2rem;
    margin-bottom: 0.95rem;
}

.neo-single-page .entry-content .kg-card.kg-bookmark-card {
    margin: 0.9rem 0;
}

.neo-single-page .entry-content .kg-bookmark-container {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    border: 1px solid #00e1ff;
    border-radius: 10px;
    background: #021227 !important;
    color: #e6f6ff !important;
    overflow: hidden;
    padding: 0.8rem 0.9rem;
    text-decoration: none;
}

.neo-single-page .entry-content .kg-bookmark-thumbnail {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex: 0 0 170px;
    width: 170px;
    height: 130px;
    min-height: 130px;
    border-radius: 6px;
    overflow: hidden;
}

.neo-single-page .entry-content .kg-bookmark-thumbnail:empty {
    display: none;
}

.neo-single-page .entry-content .kg-bookmark-thumbnail img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    visibility: visible !important;
    opacity: 1 !important;
}

.neo-single-page .entry-content .kg-bookmark-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.45rem;
    min-width: 0;
    width: 100%;
    max-width: none;
}

.neo-single-page .entry-content .kg-bookmark-title {
    margin: 0;
    color: #f4fbff !important;
    font-family: "Orbitron", sans-serif;
    text-transform: uppercase;
    font-size: clamp(0.9rem, 1.2vw, 1.25rem);
    line-height: 1.18;
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    transition: color 0.2s ease;
}

.neo-single-page .entry-content .kg-bookmark-title::after {
    content: "\2192";
    color: #00e1ff;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.neo-single-page .entry-content .kg-bookmark-metadata {
    order: 2;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 0.78rem;
    padding: 0.28rem 0.52rem;
    border-radius: 4px;
    text-transform: uppercase;
    color: #fff !important;
    background: rgba(255, 0, 205, 0.95) !important;
    font-weight: 700;
    line-height: 1;
    font-size: 0.78rem;
}

.neo-single-page .entry-content .kg-bookmark-metadata * {
    color: inherit;
}

.neo-single-page .entry-content .kg-bookmark-metadata .kg-bookmark-icon {
    display: inline-block !important;
    width: 16px;
    height: 16px;
    border-radius: 3px;
    object-fit: cover;
    flex-shrink: 0;
    visibility: visible !important;
    opacity: 1 !important;
}

.neo-single-page .entry-content .kg-bookmark-description {
    order: 3;
    margin: 0;
    color: #d3e6f3 !important;
    font-size: 0.97rem;
    line-height: 1.55;
    width: 100%;
    max-width: none;
    white-space: normal !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 4 !important;
    -webkit-box-orient: vertical !important;
}

.neo-single-page .entry-content .kg-bookmark-content::after {
    content: none;
}

.neo-single-page .entry-content a {
    color: #00e1ff;
    text-decoration: underline;
    text-decoration-color: rgba(0, 225, 255, 0.45);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.14em;
}

.neo-single-page .entry-content a:hover {
    color: #ff00cd;
    text-decoration-color: #ff00cd;
}

.neo-single-page .entry-content .kg-bookmark-container,
.neo-single-page .entry-content .kg-bookmark-container:hover {
    text-decoration: none;
}

.neo-single-page .entry-content .kg-bookmark-container:hover {
    border-color: #ff00cd !important;
    background: #021227 !important;
    color: #e6f6ff !important;
    box-shadow: 0 0 0 1px rgba(255, 0, 205, 0.35), 0 0 18px rgba(255, 0, 205, 0.2) !important;
    transform: none !important;
}

.neo-single-page .entry-content .kg-bookmark-container:hover .kg-bookmark-title,
.neo-single-page .entry-content .kg-bookmark-container:hover .kg-bookmark-description,
.neo-single-page .entry-content .kg-bookmark-container:hover .kg-bookmark-metadata,
.neo-single-page .entry-content .kg-bookmark-container:hover .kg-bookmark-metadata * {
    color: inherit !important;
}

.neo-single-page .entry-content .kg-bookmark-container:hover .kg-bookmark-title {
    color: #00e1ff !important;
}

.neo-single-page .entry-content .kg-bookmark-container:hover .kg-bookmark-title::after {
    opacity: 1;
    transform: translateX(0);
}

.neo-single-page .entry-content .kg-bookmark-container:hover .kg-bookmark-metadata {
    background: rgba(255, 0, 205, 0.95) !important;
}

.neo-single-page .post-pagination {
    margin-top: 1.6rem;
}

.neo-single-page .post-pagi-text {
    gap: 0.85rem;
}

.neo-single-page .post-pagi-text p {
    margin: 0;
}

.neo-single-page .post-pagi-text a {
    display: inline-block;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 225, 255, 0.42);
    background: rgba(2, 18, 39, 0.55);
    color: #e6f6ff;
    font-family: "Orbitron", sans-serif;
    font-size: 0.86rem;
    letter-spacing: 0.02em;
    transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.neo-single-page .post-pagi-text a:hover {
    border-color: #ff00cd;
    color: #00e1ff;
    background: rgba(255, 0, 205, 0.08);
}

.neo-single-page .entry-content pre,
.neo-single-page .entry-content .kg-code-card pre {
    background: #021227 !important;
    border: 1px solid rgba(0, 225, 255, 0.45);
    border-radius: 12px;
    color: #dff4ff;
    padding: 0.9rem 1rem;
}

.neo-single-page .entry-content pre code,
.neo-single-page .entry-content .kg-code-card pre code {
    background: transparent !important;
    color: inherit !important;
}

.neo-single-page .entry-content :not(pre) > code {
    background: rgba(0, 225, 255, 0.1);
    color: #8defff;
    border-radius: 4px;
    padding: 0.06rem 0.32rem;
}

.neo-single-locked {
    margin-top: 1.5rem;
    border: 1px solid rgba(0, 225, 255, 0.45);
    border-radius: 10px;
    padding: 1.3rem;
    background: rgba(10, 20, 29, 0.7);
}

.site-signup,
.site-signin,
.site-account,
.main-content-area.section-padding {
    background: var(--base-navy);
}

.site-signup .member-page-content,
.site-signin .member-page-content,
.site-account .member-page-content {
    max-width: 1240px;
    margin: 0 auto;
}

.signup-form,
.signin-form,
.account-box,
.checkout-form {
    border: 1px solid rgba(0, 225, 255, 0.55);
    border-radius: 12px;
    background: #021227;
    padding: 1.4rem 1.5rem;
    color: #dceef9;
    font-family: "Rajdhani", sans-serif;
}

.signup-form h1,
.signin-form h1,
.account-box h1,
.account-box h2,
.checkout-form h1 {
    margin: 0 0 0.8rem;
    color: #eef8ff;
    font-family: "Orbitron", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.signup-form p,
.signin-form p,
.account-box p,
.checkout-form p {
    color: #d3e6f3;
    font-size: 1.18rem;
    line-height: 1.55;
}

.signup-box,
.signin-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.7rem;
    margin: 0.95rem 0;
}

.signup-box input,
.signin-box input {
    height: 48px;
    border-radius: 8px;
    border: 1px solid var(--accent-cyan);
    background: #f4fbff;
    color: #000;
    caret-color: #000;
    padding: 0 0.75rem;
    font-size: 1.04rem;
}

.signup-box input::placeholder,
.signin-box input::placeholder {
    color: rgba(0, 0, 0, 0.58);
}

.site-signup .signup-box input[type="email"],
.site-signin .signin-box input[type="email"] {
    color: #000 !important;
    -webkit-text-fill-color: #000 !important;
    opacity: 1;
}

.site-signup .signup-box input[type="email"]::placeholder,
.site-signin .signin-box input[type="email"]::placeholder {
    color: rgba(0, 0, 0, 0.62) !important;
    opacity: 1;
}

.site-signup .signup-box input[type="email"]:focus,
.site-signin .signin-box input[type="email"]:focus {
    color: #000 !important;
    -webkit-text-fill-color: #000 !important;
    background: #fff;
}

.site-signup .signup-box input[type="email"]:-webkit-autofill,
.site-signup .signup-box input[type="email"]:-webkit-autofill:hover,
.site-signup .signup-box input[type="email"]:-webkit-autofill:focus,
.site-signin .signin-box input[type="email"]:-webkit-autofill,
.site-signin .signin-box input[type="email"]:-webkit-autofill:hover,
.site-signin .signin-box input[type="email"]:-webkit-autofill:focus {
    -webkit-text-fill-color: #000 !important;
    box-shadow: 0 0 0 1000px #fff inset !important;
    transition: background-color 9999s ease-out 0s;
}

.signup-form .button.primary,
.signin-form .button.primary,
.account-box .button.primary {
    min-height: 48px;
    border: 0;
    border-radius: 8px;
    padding: 0.55rem 1rem;
    background: var(--accent-cyan);
    color: #00131d;
    font-family: "Orbitron", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-weight: 700;
}

.signup-form .button.primary:hover,
.signin-form .button.primary:hover,
.account-box .button.primary:hover {
    background: var(--accent-pink);
    color: #fff;
}

.signup-form a,
.signin-form a,
.account-box a,
.checkout-form a {
    color: var(--accent-cyan);
}

.signup-form a:hover,
.signin-form a:hover,
.account-box a:hover,
.checkout-form a:hover {
    color: var(--accent-pink);
}

.signup-form .message-success,
.signin-form .message-success {
    color: #b7fff2;
}

.signup-form .message-error,
.signin-form .message-error {
    color: #ff9ecf;
}

.page-header {
    background: var(--base-navy);
    padding-top: 1.2rem !important;
    padding-bottom: 1.2rem !important;
}

.page-title h2,
.archive-title-content h2 {
    color: #eef8ff;
    font-family: "Orbitron", sans-serif;
    text-transform: uppercase;
}

.page-title p,
.archive-title-content p {
    color: #cde3f1;
}

.tag-page-content .single-column,
.author-page-content .single-column {
    border: 1px solid rgba(232, 249, 255, 0.45);
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(10, 20, 29, 0.88), rgba(21, 23, 26, 0.96));
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 1.5rem;
}

.tag-page-content .single-column:hover,
.author-page-content .single-column:hover {
    border-color: #00e1ff;
    box-shadow: 0 0 0 1px rgba(0, 225, 255, 0.25), 0 0 16px rgba(0, 225, 255, 0.2);
}

.tag-page-content .post-thumb img,
.author-page-content .post-thumb img {
    width: 100%;
    min-height: 280px;
    object-fit: cover;
}

.tag-page-content .post-details,
.author-page-content .post-details {
    padding: 1.1rem 1.2rem 1.2rem;
}

.tag-page-content .post-meta p,
.author-page-content .post-meta p {
    margin: 0 0 0.8rem;
}

.tag-page-content .post-meta a,
.author-page-content .post-meta a {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: #293f73;
    color: #fff;
    text-transform: uppercase;
    padding: 0.42rem 0.72rem;
    border-radius: 4px;
    font-weight: 700;
}

.tag-page-content .title h2,
.author-page-content .title h2 {
    margin: 0 0 0.7rem;
}

.tag-page-content .title h2 a,
.author-page-content .title h2 a {
    color: #f5fbff;
    font-family: "Orbitron", sans-serif;
    text-transform: uppercase;
    line-height: 1.24;
}

.tag-page-content .title h2 a:hover,
.author-page-content .title h2 a:hover {
    color: #00e1ff;
}

.tag-page-content .post-centent,
.author-page-content .post-centent {
    color: #d2e7f4;
    font-family: "Manrope", "Rajdhani", sans-serif;
    line-height: 1.55;
}

.tag-page-content .btn-more,
.author-page-content .btn-more {
    margin-top: 0.75rem;
}

.tag-page-content .btn-more a,
.author-page-content .btn-more a {
    color: #00e1ff;
    font-family: "Orbitron", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.tag-page-content .btn-more a:hover,
.author-page-content .btn-more a:hover {
    color: #ff00cd;
}

.tag-page-content .post-author,
.author-page-content .post-author {
    margin-top: 0.9rem;
    color: #b8cfdd;
}

.tag-page-content .post-author a,
.author-page-content .post-author a {
    color: #dceef9;
}

.tag-page-content .post-author a:hover,
.author-page-content .post-author a:hover {
    color: #00e1ff;
}

.tag-page-content .post-author .author-details .author,
.author-page-content .post-author .author-details .author,
.tag-page-content .post-author .author-list,
.author-page-content .post-author .author-list {
    display: none !important;
}

.main-content-area .post-pagi-text {
    gap: 0.85rem;
}

.main-content-area .post-pagi-text p {
    margin: 0;
}

.main-content-area .post-pagi-text a {
    display: inline-block;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 225, 255, 0.42);
    background: rgba(2, 18, 39, 0.55);
    color: #e6f6ff;
    font-family: "Orbitron", sans-serif;
    font-size: 0.86rem;
    letter-spacing: 0.02em;
    transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.main-content-area .post-pagi-text a:hover {
    border-color: #ff00cd;
    color: #00e1ff;
    background: rgba(255, 0, 205, 0.08);
}

.neo-about-extra .kg-card.kg-bookmark-card {
    margin: 0.9rem 0;
}

.neo-about-extra .kg-bookmark-container {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    border: 1px solid #00e1ff;
    border-radius: 10px;
    background: #021227 !important;
    color: #e6f6ff !important;
    overflow: hidden;
    padding: 0.8rem 0.9rem;
    text-decoration: none;
}

.neo-about-extra .kg-bookmark-thumbnail {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex: 0 0 170px;
    width: 170px;
    height: 130px;
    min-height: 130px;
    border-radius: 6px;
    overflow: hidden;
}

.neo-about-extra .kg-bookmark-thumbnail:empty {
    display: none;
}

.neo-about-extra .kg-bookmark-thumbnail img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    visibility: visible !important;
    opacity: 1 !important;
}

.neo-about-extra .kg-bookmark-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.45rem;
    min-width: 0;
    width: 100%;
    max-width: none;
}

.neo-about-extra .kg-bookmark-title {
    margin: 0;
    color: #f4fbff !important;
    font-family: "Orbitron", sans-serif;
    text-transform: uppercase;
    font-size: clamp(0.9rem, 1.2vw, 1.25rem);
    line-height: 1.18;
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    transition: color 0.2s ease;
}

.neo-about-extra .kg-bookmark-title::after {
    content: "\2192";
    color: #00e1ff;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.neo-about-extra .kg-bookmark-metadata {
    order: 2;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 0.78rem;
    padding: 0.28rem 0.52rem;
    border-radius: 4px;
    text-transform: uppercase;
    color: #fff !important;
    background: rgba(255, 0, 205, 0.95) !important;
    font-weight: 700;
    line-height: 1;
    font-size: 0.78rem;
}

.neo-about-extra .kg-bookmark-metadata * {
    color: inherit;
}

.neo-about-extra .kg-bookmark-metadata .kg-bookmark-icon {
    display: inline-block !important;
    width: 16px;
    height: 16px;
    border-radius: 3px;
    object-fit: cover;
    flex-shrink: 0;
    visibility: visible !important;
    opacity: 1 !important;
}

.neo-about-extra .kg-bookmark-description {
    order: 3;
    margin: 0;
    color: #d3e6f3 !important;
    font-size: 0.97rem;
    line-height: 1.55;
    width: 100%;
    max-width: none;
    white-space: normal !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 4 !important;
    -webkit-box-orient: vertical !important;
}

.neo-about-extra .kg-bookmark-content::after {
    content: none;
}

.neo-about-extra .kg-bookmark-container,
.neo-about-extra .kg-bookmark-container:hover {
    text-decoration: none;
}

.neo-about-extra .kg-bookmark-container:hover {
    border-color: #ff00cd !important;
    background: #021227 !important;
    color: #e6f6ff !important;
    box-shadow: 0 0 0 1px rgba(255, 0, 205, 0.35), 0 0 18px rgba(255, 0, 205, 0.2) !important;
    transform: none !important;
}

.neo-about-extra .kg-bookmark-container:hover .kg-bookmark-title,
.neo-about-extra .kg-bookmark-container:hover .kg-bookmark-description,
.neo-about-extra .kg-bookmark-container:hover .kg-bookmark-metadata,
.neo-about-extra .kg-bookmark-container:hover .kg-bookmark-metadata * {
    color: inherit !important;
}

.neo-about-extra .kg-bookmark-container:hover .kg-bookmark-title {
    color: #00e1ff !important;
}

.neo-about-extra .kg-bookmark-container:hover .kg-bookmark-title::after {
    opacity: 1;
    transform: translateX(0);
}

.neo-about-extra .kg-bookmark-container:hover .kg-bookmark-metadata {
    background: rgba(255, 0, 205, 0.95) !important;
}

.medium-zoom-overlay {
    background: rgba(1, 14, 26, 0.94) !important;
}

.medium-zoom-image--opened {
    border-radius: 12px;
    box-shadow: 0 0 0 1px rgba(0, 225, 255, 0.35), 0 0 24px rgba(0, 225, 255, 0.25);
}

.medium-zoom--opened .medium-zoom-image {
    cursor: zoom-out;
}

.neo-footer {
    margin-top: 3rem;
    padding: 2.4rem 0 1rem;
    border-top: 1px solid rgba(0, 225, 255, 0.25);
    background: var(--base-navy);
    font-family: "Rajdhani", sans-serif;
}

.neo-footer-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 150px minmax(0, 1.4fr) minmax(0, 1fr) minmax(290px, 1fr);
    align-items: start;
}

.neo-footer-logo img {
    width: 150px;
    height: auto;
}

.neo-footer h3 {
    margin: 0 0 0.7rem;
    text-transform: uppercase;
    font-size: 1.5rem;
    letter-spacing: 0.03em;
}

.neo-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.neo-tag-list a {
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
    padding: 0.22rem 0.52rem;
    text-transform: capitalize;
    font-size: 1rem;
    line-height: 1;
}

.neo-tag-list a:hover {
    border-color: var(--accent-pink);
    color: var(--accent-pink);
}

.neo-footer-contact p {
    margin: 0 0 1.05rem;
    font-size: 1.08rem;
    color: var(--text-main);
    line-height: 1.45;
}

.neo-footer-links {
    display: grid;
    gap: 0.6rem;
}

.neo-footer-links a {
    color: var(--text-main);
    font-size: 1.08rem;
}

.neo-footer-links a:hover {
    color: var(--accent-cyan);
}

.neo-footer-subscribe {
    border: 1px solid rgba(232, 249, 255, 0.4);
    border-radius: 12px;
    padding: 0.6rem;
}

.neo-footer-form {
    display: grid;
    gap: 0.72rem;
}

.neo-footer-form input[type="email"] {
    height: 44px;
    border-radius: 6px;
    border: 1px solid var(--accent-cyan);
    background: #f4fbff;
    color: #000;
    caret-color: #000;
    padding: 0 0.7rem;
    font-size: 1rem;
}

.neo-footer-form input[type="email"]::placeholder {
    color: rgba(0, 0, 0, 0.6);
}

.neo-footer-form button {
    height: 44px;
    border: 0;
    border-radius: 8px;
    background: var(--accent-cyan);
    color: #00131d;
    font-family: "Orbitron", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 1.1rem;
    font-weight: 700;
}

.neo-footer-form button:hover {
    background: var(--accent-pink);
    color: #fff;
}

.neo-footer-form .message-success,
.neo-footer-form .message-error {
    display: none;
    margin: 0;
    font-size: 0.9rem;
}

.neo-footer-form.success .message-success,
.neo-footer-form.invalid .message-error,
.neo-footer-form.error .message-error {
    display: block;
}

.neo-footer-bottom {
    margin-top: 2.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.neo-footer-bottom p {
    margin: 0;
    font-size: 1.08rem;
    color: var(--text-main);
}

.neo-footer-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.neo-footer-social a {
    color: #fff;
    font-size: 1.4rem;
}

.neo-footer-social a:hover {
    color: var(--accent-cyan);
}

/* Unified style overrides for legacy theme components */
.main-content-area,
.page-wrapper {
    font-family: "Rajdhani", sans-serif;
}

.message-success,
.message-error {
    display: none;
    margin-top: 0.8rem;
    padding: 0.62rem 0.78rem;
    border-radius: 8px;
    font-family: "Rajdhani", sans-serif;
    font-size: 1rem;
    line-height: 1.35;
}

form.success .message-success,
form.invalid .message-error,
form.error .message-error {
    display: block;
}

.message-success {
    border: 1px solid rgba(0, 225, 255, 0.5);
    background: rgba(0, 225, 255, 0.12);
    color: #c9fbff;
}

.message-error {
    border: 1px solid rgba(255, 0, 205, 0.55);
    background: rgba(255, 0, 205, 0.12);
    color: #ffd1ee;
}

.signup-form .message-success,
.signin-form .message-success,
.neo-footer-form .message-success {
    color: #c9fbff;
}

.signup-form .message-error,
.signin-form .message-error,
.neo-footer-form .message-error {
    color: #ffd1ee;
}

form[data-members-form] .message-error,
form[data-members-form] .message-success {
    font-family: "Rajdhani", sans-serif !important;
}

form[data-members-form].error .message-error,
form[data-members-form].invalid .message-error,
form[data-members-form].success .message-success {
    position: static !important;
    inset: auto !important;
    z-index: auto !important;
    display: block !important;
    margin-top: 0.8rem !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 0.62rem 0.78rem !important;
    border-radius: 8px !important;
    text-align: center !important;
    box-shadow: none !important;
}

form[data-members-form].error .message-error,
form[data-members-form].invalid .message-error {
    border: 1px solid rgba(255, 0, 205, 0.5) !important;
    background: rgba(255, 0, 205, 0.12) !important;
    color: #ffd1ee !important;
}

form[data-members-form].success .message-success {
    border: 1px solid rgba(0, 225, 255, 0.5) !important;
    background: rgba(0, 225, 255, 0.12) !important;
    color: #c9fbff !important;
}

form[data-members-form].error .message-error svg,
form[data-members-form].invalid .message-error svg,
form[data-members-form].success .message-success svg {
    fill: currentColor !important;
}

.tags-page-content .categories-block,
.entry-content .author-block {
    border: 1px solid rgba(0, 225, 255, 0.42);
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(10, 20, 29, 0.88), rgba(21, 23, 26, 0.96));
    margin-bottom: 1.2rem;
}

.tags-page-content .categories-block:hover,
.entry-content .author-block:hover {
    border-color: var(--accent-pink);
    box-shadow: 0 0 0 1px rgba(255, 0, 205, 0.28), 0 0 18px rgba(255, 0, 205, 0.2);
}

.tags-page-content .author-pic img,
.entry-content .author-block .author-pic img {
    width: 260px;
    height: 100%;
    object-fit: cover;
}

.tags-page-content .right-text,
.entry-content .author-block .right-text {
    background: transparent;
    padding: 1.05rem 1.2rem;
    color: #d2e7f4;
    transition: none;
}

.tags-page-content .right-text:hover,
.entry-content .author-block .right-text:hover {
    background: transparent;
    color: #d2e7f4;
}

.tags-page-content .right-text p,
.entry-content .author-block .right-text p {
    color: #d2e7f4;
    margin-bottom: 0.45rem;
    font-size: 1.02rem;
}

.tags-page-content .author-name a,
.entry-content .author-block .author-name a {
    color: #eef8ff;
    font-family: "Orbitron", sans-serif;
    text-transform: uppercase;
}

.tags-page-content .author-name a:hover,
.entry-content .author-block .author-name a:hover {
    color: var(--accent-pink);
}

.tags-page-content .btn-author a,
.entry-content .author-block .btn-author a {
    color: var(--accent-cyan);
    font-family: "Orbitron", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.tags-page-content .btn-author a:hover,
.entry-content .author-block .btn-author a:hover {
    color: var(--accent-pink);
}

#sarch-modal .modal-content {
    background: #021227;
    border: 1px solid rgba(0, 225, 255, 0.45);
    border-radius: 12px;
    color: #dceef9;
}

#sarch-modal .modal-header {
    border-bottom: 1px solid rgba(0, 225, 255, 0.32);
}

#sarch-modal .modal-title {
    color: #eef8ff;
    font-family: "Orbitron", sans-serif;
    text-transform: uppercase;
}

#sarch-modal .close {
    color: #e8f9ff;
    opacity: 0.9;
}

#sarch-modal .close:hover {
    color: var(--accent-pink);
}

#gh-search-text {
    border: 1px solid var(--accent-cyan);
    border-radius: 8px;
    background: #f4fbff;
    color: #000;
    -webkit-text-fill-color: #000;
}

#gh-search-results a {
    color: #dceef9;
    font-family: "Rajdhani", sans-serif;
}

#gh-search-results a:hover {
    color: var(--accent-pink);
}

.box-wrapper {
    max-width: 760px;
    margin: 0 auto;
    border: 1px solid rgba(0, 225, 255, 0.42);
    border-radius: 12px;
    background: #021227;
    padding: 2rem 1.4rem;
}

.error-bug {
    color: #eef8ff;
    font-family: "Orbitron", sans-serif;
    text-transform: uppercase;
    margin-bottom: 0.45rem;
}

.error-text {
    color: #d2e7f4;
    font-family: "Rajdhani", sans-serif;
    font-size: 1.15rem;
}

.error-btn.btn.btn-primary {
    border: 1px solid var(--accent-cyan);
    background: transparent;
    color: var(--accent-cyan);
    border-radius: 8px;
    font-family: "Orbitron", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.error-btn.btn.btn-primary:hover {
    border-color: var(--accent-pink);
    color: var(--accent-pink);
    background: rgba(255, 0, 205, 0.08);
}

.day-night-switch {
    display: none;
}

@media (max-width: 1100px) {
    .neo-header .container,
    .neo-home .container,
    .neo-about-page .container,
    .neo-footer .container {
        width: calc(100% - 26px);
    }

    .neo-home .container {
        width: calc(100% - 72px);
    }

    .neo-header-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0.9rem 0;
        gap: 0.8rem;
    }

    .neo-social,
    .neo-right-links,
    .neo-nav ul {
        justify-content: center;
    }

    .neo-feature-grid {
        grid-template-columns: 1fr;
    }

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

    .neo-about-card {
        padding: 1.4rem 1.2rem 1.5rem;
    }

    .neo-about-intro p,
    .neo-about-intro li {
        font-size: clamp(1.25rem, 4vw, 1.7rem);
    }

    .neo-subscribe-cta {
        padding: 1.6rem 1.7rem;
    }

    .neo-subscribe-copy h2 {
        font-size: clamp(1.5rem, 3.4vw, 2.1rem);
    }

    .neo-pair-row {
        grid-template-columns: 1fr;
    }

    .neo-pair-link img {
        min-height: 300px;
    }

    .neo-list-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .neo-list-media {
        min-height: 300px;
    }

    .neo-list-content {
        padding: 1.2rem 1.3rem;
    }

    .neo-single-hero,
    .neo-single-hero-image {
        min-height: 430px;
    }

    .neo-single-page .entry-content,
    .neo-single-page .content-meta,
    .neo-single-page .blog-author-area,
    .neo-single-page .post-pagination,
    .neo-single-page .comments-area {
        max-width: 100%;
    }

    .neo-single-page .entry-content .kg-bookmark-thumbnail {
        flex-basis: 150px;
        width: 150px;
    }

    .signup-box,
    .signin-box {
        grid-template-columns: 1fr;
    }

    .neo-about-extra .kg-bookmark-thumbnail {
        flex-basis: 150px;
        width: 150px;
    }

    .neo-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .neo-footer-bottom {
        margin-top: 2rem;
    }
}

@media (max-width: 700px) {
    .neo-header .container,
    .neo-home .container,
    .neo-about-page .container,
    .neo-footer .container {
        width: calc(100% - 16px);
    }

    .neo-header {
        position: relative;
        top: auto;
    }

    .neo-home .container {
        width: calc(100% - 34px);
    }

    .neo-nav ul {
        flex-wrap: wrap;
        gap: 0.8rem 1.1rem;
    }

    .neo-right-links {
        flex-direction: column;
        gap: 0.7rem;
    }

    .neo-about-page {
        padding-top: 1.1rem;
    }

    .neo-about-card {
        border-radius: 10px;
    }

    .neo-about-top img {
        width: 98px;
    }

    .neo-about-top h1 {
        font-size: clamp(1.5rem, 8vw, 2rem);
    }

    .neo-about-intro p,
    .neo-about-intro li {
        font-size: clamp(1.08rem, 6vw, 1.35rem);
        line-height: 1.35;
        margin-bottom: 1rem;
    }

    .neo-lead-media img {
        min-height: 360px;
    }

    .neo-project-item {
        min-height: 120px;
    }

    .neo-project-logo img {
        width: 48px;
        height: 48px;
    }

    .neo-list-media {
        min-height: 230px;
    }

    .neo-pair-link img {
        min-height: 250px;
    }

    .neo-subscribe-cta {
        padding: 1.3rem 1rem;
        gap: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .neo-subscribe-copy h2 {
        font-size: clamp(1.2rem, 7vw, 1.7rem);
    }

    .neo-subscribe-btn {
        min-width: 190px;
        min-height: 56px;
        font-size: 1.12rem;
    }

    .neo-single-page {
        padding-top: 1rem;
    }

    .neo-single-hero,
    .neo-single-hero-image {
        min-height: 300px;
    }

    .neo-single-hero-content {
        padding: 1rem;
    }

    .neo-single-hero-content h1 {
        max-width: none;
        font-size: clamp(1.4rem, 7vw, 2.2rem);
    }

    .neo-single-page .entry-content .kg-bookmark-container {
        flex-direction: column;
        gap: 0.65rem;
        padding: 0.65rem;
    }

    .neo-single-page .entry-content .kg-bookmark-thumbnail {
        width: 100%;
        flex-basis: auto;
        height: 175px;
        min-height: 175px;
    }

    .neo-single-page .entry-content .kg-bookmark-content {
        width: 100%;
    }

    .neo-single-page .entry-content .kg-bookmark-description {
        -webkit-line-clamp: 3 !important;
    }

    .neo-single-page .entry-content .kg-gallery-image,
    .neo-about-extra .kg-gallery-image {
        min-height: 180px;
    }

    .neo-about-extra .kg-bookmark-container {
        flex-direction: column;
        gap: 0.65rem;
        padding: 0.65rem;
    }

    .neo-about-extra .kg-bookmark-thumbnail {
        width: 100%;
        flex-basis: auto;
        height: 175px;
        min-height: 175px;
    }

    .neo-about-extra .kg-bookmark-content {
        width: 100%;
    }

    .neo-about-extra .kg-bookmark-description {
        -webkit-line-clamp: 3 !important;
    }

    .neo-footer {
        padding-top: 1.8rem;
    }

    .neo-footer-grid {
        grid-template-columns: 1fr;
        gap: 1.3rem;
    }

    .neo-footer h3 {
        font-size: 1.25rem;
    }

    .neo-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .neo-footer-social {
        gap: 1.15rem;
    }

    .neo-footer-social a {
        font-size: 1.3rem;
    }
}
