/* ===========================
   NkeysWorld Gitea Home
   All selectors scoped under .nkey-home
   Critical layout properties use !important to override Fomantic UI
   =========================== */

/* --- Layout --- */
.nkey-home {
    position: relative !important;
    padding: 56px 0 80px !important;
    overflow: hidden !important;
}

.nkey-home .nkey-bg {
    position: absolute !important;
    inset: 0 !important;
    background:
        radial-gradient(900px 600px at 20% 20%, rgba(120, 170, 255, 0.1), transparent 60%),
        radial-gradient(900px 600px at 80% 30%, rgba(80, 255, 200, 0.08), transparent 60%),
        radial-gradient(900px 700px at 60% 80%, rgba(255, 180, 80, 0.06), transparent 60%) !important;
    filter: saturate(110%) !important;
}

.nkey-home .nkey-bg .orb {
    position: absolute !important;
    width: 520px !important;
    height: 520px !important;
    border-radius: 999px !important;
    background: radial-gradient(circle at 30% 30%, rgba(130, 200, 255, 0.22), rgba(0, 0, 0, 0)) !important;
    filter: blur(16px) !important;
    opacity: 0.9 !important;
    animation: nkey-floaty 8s ease-in-out infinite !important;
}

.nkey-home .nkey-bg .o1 { left: -140px !important; top: 40px !important; }
.nkey-home .nkey-bg .o2 {
    right: -180px !important; top: 120px !important;
    animation-delay: -2s !important;
    background: radial-gradient(circle at 30% 30%, rgba(80, 255, 200, 0.18), rgba(0, 0, 0, 0)) !important;
}
.nkey-home .nkey-bg .o3 {
    left: 35% !important; bottom: -220px !important;
    animation-delay: -4s !important;
    background: radial-gradient(circle at 30% 30%, rgba(255, 190, 100, 0.14), rgba(0, 0, 0, 0)) !important;
}

@keyframes nkey-floaty {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(0, -18px, 0) scale(1.03); }
}

.nkey-home .nkey-wrap {
    position: relative !important;
    max-width: 1120px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
}

/* --- Hero / Profile --- */
.nkey-home .hero {
    padding: 18px 0 28px !important;
    animation: nkey-enter 700ms ease-out both !important;
}

@keyframes nkey-enter {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.nkey-home .badge {
    display: inline-flex !important;
    gap: 8px !important;
    align-items: center !important;
    padding: 8px 12px !important;
    border-radius: 999px !important;
    background: rgba(25, 35, 55, 0.55) !important;
    border: 1px solid rgba(120, 160, 255, 0.18) !important;
    color: rgba(220, 230, 255, 0.85) !important;
    font-size: 12px !important;
    letter-spacing: 0.2px !important;
    backdrop-filter: blur(10px) !important;
}

.nkey-home .title {
    margin: 16px 0 10px !important;
    font-size: 48px !important;
    line-height: 1.08 !important;
    font-weight: 800 !important;
    color: rgba(245, 248, 255, 0.95) !important;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35) !important;
}

.nkey-home .title .accent {
    background: linear-gradient(90deg, rgba(120, 170, 255, 1), rgba(80, 255, 200, 1)) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
}

.nkey-home .title .accent-sub {
    margin-left: 12px !important;
    font-size: 28px !important;
    font-weight: 600 !important;
    color: rgba(200, 215, 245, 0.85) !important;
}

.nkey-home .subtitle {
    max-width: 820px !important;
    color: rgba(200, 215, 245, 0.85) !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
}

.nkey-home .profile-info {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin-top: 12px !important;
}

.nkey-home .profile-tag {
    padding: 5px 12px !important;
    border-radius: 999px !important;
    background: rgba(120, 170, 255, 0.12) !important;
    border: 1px solid rgba(120, 170, 255, 0.2) !important;
    color: rgba(200, 220, 255, 0.9) !important;
    font-size: 12px !important;
    font-weight: 500 !important;
}

.nkey-home .cta {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    margin-top: 16px !important;
}

.nkey-home .btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 10px 14px !important;
    border-radius: 14px !important;
    border: 1px solid rgba(120, 160, 255, 0.14) !important;
    background: rgba(20, 28, 45, 0.55) !important;
    color: rgba(235, 242, 255, 0.92) !important;
    text-decoration: none !important;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease !important;
    backdrop-filter: blur(10px) !important;
    font-size: 14px !important;
    box-shadow: none !important;
}

.nkey-home .btn:hover {
    transform: translateY(-1px) !important;
    border-color: rgba(120, 160, 255, 0.22) !important;
    background: rgba(25, 35, 55, 0.62) !important;
}

.nkey-home .btn.primary {
    border-color: rgba(80, 255, 200, 0.25) !important;
    background: rgba(20, 55, 55, 0.55) !important;
}

.nkey-home .btn.ghost {
    background: rgba(15, 18, 25, 0.35) !important;
}

/* --- Projects Section --- */
.nkey-home .projects-section {
    margin-top: 40px !important;
    animation: nkey-enter 700ms ease-out both !important;
    animation-delay: 200ms !important;
}

.nkey-home .section-title {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: rgba(235, 242, 255, 0.95) !important;
    margin-bottom: 20px !important;
    padding-left: 4px !important;
}

.nkey-home .projects-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px !important;
}

/* --- Project Card --- */
.nkey-home .project-card {
    display: flex !important;
    flex-direction: column !important;
    border-radius: 18px !important;
    background: rgba(15, 20, 35, 0.55) !important;
    border: 1px solid rgba(120, 160, 255, 0.12) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25) !important;
    padding: 22px 20px !important;
    backdrop-filter: blur(10px) !important;
    text-decoration: none !important;
    color: inherit !important;
    transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease !important;
    position: relative !important;
    overflow: hidden !important;
    cursor: pointer !important;
}

.nkey-home .project-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 3px !important;
    border-radius: 18px 18px 0 0 !important;
    opacity: 0 !important;
    transition: opacity 260ms ease !important;
}

.nkey-home .project-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35) !important;
}

.nkey-home .project-card:hover::before {
    opacity: 1 !important;
}

.nkey-home .card-nkeysworld { border-color: rgba(80, 255, 200, 0.15) !important; }
.nkey-home .card-nkeysworld::before { background: linear-gradient(90deg, rgba(80, 255, 200, 0.8), rgba(120, 170, 255, 0.6)) !important; }
.nkey-home .card-nkeysworld:hover { border-color: rgba(80, 255, 200, 0.3) !important; }

.nkey-home .card-capstone { border-color: rgba(255, 160, 80, 0.15) !important; }
.nkey-home .card-capstone::before { background: linear-gradient(90deg, rgba(255, 160, 80, 0.8), rgba(255, 120, 120, 0.6)) !important; }
.nkey-home .card-capstone:hover { border-color: rgba(255, 160, 80, 0.3) !important; }

.nkey-home .card-colio { border-color: rgba(160, 130, 255, 0.15) !important; }
.nkey-home .card-colio::before { background: linear-gradient(90deg, rgba(160, 130, 255, 0.8), rgba(120, 170, 255, 0.6)) !important; }
.nkey-home .card-colio:hover { border-color: rgba(160, 130, 255, 0.3) !important; }

.nkey-home .project-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: 12px !important;
}

.nkey-home .project-icon {
    font-size: 28px !important;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3)) !important;
}

.nkey-home .project-period {
    font-size: 11px !important;
    color: rgba(200, 215, 245, 0.6) !important;
    font-weight: 500 !important;
}

.nkey-home .project-name {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: rgba(235, 242, 255, 0.95) !important;
    margin: 0 0 10px !important;
}

.nkey-home .project-desc {
    color: rgba(200, 215, 245, 0.78) !important;
    font-size: 13px !important;
    line-height: 1.7 !important;
    flex: 1 !important;
    margin: 0 0 14px !important;
}

.nkey-home .project-chips {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
}

.nkey-home .chip {
    padding: 4px 9px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(120, 160, 255, 0.14) !important;
    background: rgba(10, 14, 24, 0.45) !important;
    color: rgba(220, 230, 255, 0.88) !important;
    font-size: 11px !important;
}

.nkey-home .project-arrow {
    position: absolute !important;
    bottom: 18px !important;
    right: 18px !important;
    font-size: 18px !important;
    color: rgba(200, 215, 245, 0.3) !important;
    transition: color 260ms ease, transform 260ms ease !important;
}

.nkey-home .project-card:hover .project-arrow {
    color: rgba(200, 215, 245, 0.7) !important;
    transform: translateX(4px) !important;
}

/* --- Activity Section --- */
.nkey-home .activity-section {
    margin-top: 40px !important;
    animation: nkey-enter 700ms ease-out both !important;
    animation-delay: 300ms !important;
}

.nkey-home .activity-timeline {
    position: relative !important;
    padding-left: 28px !important;
}

.nkey-home .activity-timeline::before {
    content: '' !important;
    position: absolute !important;
    left: 7px !important;
    top: 8px !important;
    bottom: 8px !important;
    width: 2px !important;
    background: linear-gradient(180deg, rgba(120, 170, 255, 0.4), rgba(80, 255, 200, 0.2), rgba(255, 180, 80, 0.2)) !important;
    border-radius: 2px !important;
}

.nkey-home .activity-item {
    position: relative !important;
    margin-bottom: 18px !important;
}

.nkey-home .activity-item:last-child {
    margin-bottom: 0 !important;
}

.nkey-home .activity-dot {
    position: absolute !important;
    left: -24px !important;
    top: 18px !important;
    width: 12px !important;
    height: 12px !important;
    border-radius: 999px !important;
    background: rgba(120, 170, 255, 0.6) !important;
    border: 2px solid rgba(120, 170, 255, 0.3) !important;
    box-shadow: 0 0 8px rgba(120, 170, 255, 0.2) !important;
}

.nkey-home .activity-dot.dot-accent { background: rgba(80, 255, 200, 0.6) !important; border-color: rgba(80, 255, 200, 0.3) !important; box-shadow: 0 0 8px rgba(80, 255, 200, 0.2) !important; }
.nkey-home .activity-dot.dot-green { background: rgba(80, 200, 120, 0.6) !important; border-color: rgba(80, 200, 120, 0.3) !important; }
.nkey-home .activity-dot.dot-orange { background: rgba(255, 180, 80, 0.6) !important; border-color: rgba(255, 180, 80, 0.3) !important; }
.nkey-home .activity-dot.dot-purple { background: rgba(160, 130, 255, 0.6) !important; border-color: rgba(160, 130, 255, 0.3) !important; }
.nkey-home .activity-dot.dot-blue { background: rgba(100, 160, 255, 0.6) !important; border-color: rgba(100, 160, 255, 0.3) !important; }
.nkey-home .activity-dot.dot-red { background: rgba(255, 100, 100, 0.6) !important; border-color: rgba(255, 100, 100, 0.3) !important; }

.nkey-home .activity-content {
    border-radius: 14px !important;
    background: rgba(15, 20, 35, 0.45) !important;
    border: 1px solid rgba(120, 160, 255, 0.1) !important;
    padding: 16px 18px !important;
    backdrop-filter: blur(8px) !important;
    transition: border-color 200ms ease, transform 200ms ease !important;
}

.nkey-home .activity-content:hover {
    border-color: rgba(120, 160, 255, 0.2) !important;
    transform: translateX(4px) !important;
}

.nkey-home .activity-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: 6px !important;
    gap: 12px !important;
}

.nkey-home .activity-title {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: rgba(235, 242, 255, 0.95) !important;
}

.nkey-home .activity-period {
    font-size: 11px !important;
    color: rgba(200, 215, 245, 0.55) !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
}

.nkey-home .activity-desc {
    color: rgba(200, 215, 245, 0.78) !important;
    font-size: 13px !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

.nkey-home .activity-list {
    margin: 6px 0 0 !important;
    padding-left: 16px !important;
    color: rgba(200, 215, 245, 0.78) !important;
    font-size: 13px !important;
    line-height: 1.7 !important;
}

.nkey-home .activity-list li {
    margin-bottom: 4px !important;
}

.nkey-home .activity-list strong {
    color: rgba(80, 255, 200, 0.9) !important;
    font-weight: 600 !important;
}

/* --- Info Section --- */
.nkey-home .info-section {
    margin-top: 48px !important;
    animation: nkey-enter 700ms ease-out both !important;
    animation-delay: 400ms !important;
}

.nkey-home .info-grid {
    display: grid !important;
    grid-template-columns: repeat(12, 1fr) !important;
    gap: 14px !important;
}

.nkey-home .info-card {
    grid-column: span 6 !important;
    border-radius: 18px !important;
    background: rgba(15, 20, 35, 0.55) !important;
    border: 1px solid rgba(120, 160, 255, 0.12) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25) !important;
    padding: 18px 18px !important;
    backdrop-filter: blur(10px) !important;
}

.nkey-home .info-card.info-card-full {
    grid-column: span 12 !important;
    border-color: rgba(255, 190, 100, 0.14) !important;
    background: rgba(20, 18, 25, 0.45) !important;
    cursor: text !important;
}

.nkey-home .info-card.info-card-full .info-card-title {
    cursor: text !important;
}

.nkey-home .info-card.info-card-full .info-text {
    cursor: text !important;
}

.nkey-home .info-card-title {
    font-weight: 700 !important;
    color: rgba(235, 242, 255, 0.95) !important;
    margin-bottom: 10px !important;
}

.nkey-home .info-text {
    color: rgba(200, 215, 245, 0.85) !important;
    line-height: 1.7 !important;
    font-size: 14px !important;
}

.nkey-home .info-text + .info-text {
    margin-top: 6px !important;
}

.nkey-home .info-list {
    margin: 10px 0 0 !important;
    padding-left: 16px !important;
    color: rgba(200, 215, 245, 0.85) !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
}

.nkey-home .info-card.fade {
    animation: nkey-enter 700ms ease-out both !important;
    animation-delay: 420ms !important;
}
.nkey-home .info-card.slide {
    animation: nkey-enter 700ms ease-out both !important;
    animation-delay: 520ms !important;
}
.nkey-home .info-card.glow {
    animation: nkey-enter 700ms ease-out both !important;
    animation-delay: 620ms !important;
}

/* --- Animated finger --- */
.nkey-home .nkey-btn-profile { position: relative !important; }

.nkey-home .nkey-btn-profile .nkey-finger {
    display: inline-flex !important;
    align-items: center !important;
    margin-right: 8px !important;
    filter: drop-shadow(0 0 10px rgba(80, 255, 200, 0.25)) drop-shadow(0 0 16px rgba(120, 170, 255, 0.18)) !important;
    animation: nkey-finger-wiggle 1.15s ease-in-out infinite !important;
    pointer-events: none !important;
}

@keyframes nkey-finger-wiggle {
    0%, 100% { transform: translateX(0); opacity: 0.92; }
    50% { transform: translateX(8px); opacity: 1; }
}

/* --- Hide nav links --- */
a[href^="/explore"],
a[href^="/gitea/explore"],
a[href^="/help"],
a[href^="/gitea/help"],
a[href*="gitea.com"],
a[href*="/user/login"] {
    display: none !important;
}

/* ===========================
   Modal
   =========================== */
.nkey-home .nkey-modal-overlay {
    display: none !important;
    position: fixed !important;
    inset: 0 !important;
    z-index: 10000 !important;
    background: rgba(0, 0, 0, 0.65) !important;
    backdrop-filter: blur(6px) !important;
    align-items: flex-start !important;
    justify-content: center !important;
    padding: 40px 20px !important;
    overflow-y: auto !important;
}

.nkey-home .nkey-modal-overlay.active {
    display: flex !important;
}

.nkey-home .nkey-modal {
    position: relative !important;
    width: 100% !important;
    max-width: 720px !important;
    background: rgba(18, 22, 38, 0.96) !important;
    border: 1px solid rgba(120, 160, 255, 0.15) !important;
    border-radius: 20px !important;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5) !important;
    padding: 32px 28px !important;
    animation: nkey-modal-enter 300ms ease-out both !important;
}

@keyframes nkey-modal-enter {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.nkey-home .nkey-modal-close {
    position: absolute !important;
    top: 16px !important;
    right: 16px !important;
    width: 36px !important;
    height: 36px !important;
    border: none !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    color: rgba(220, 230, 255, 0.7) !important;
    font-size: 22px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: background 160ms ease, color 160ms ease !important;
}

.nkey-home .nkey-modal-close:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    color: rgba(255, 255, 255, 0.95) !important;
}

.nkey-home .nkey-modal-header {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    margin-bottom: 16px !important;
    padding-bottom: 16px !important;
    border-bottom: 1px solid rgba(120, 160, 255, 0.1) !important;
}

.nkey-home .nkey-modal-header--nkeysworld { border-color: rgba(80, 255, 200, 0.2) !important; }
.nkey-home .nkey-modal-header--capstone { border-color: rgba(255, 160, 80, 0.2) !important; }
.nkey-home .nkey-modal-header--colio { border-color: rgba(160, 130, 255, 0.2) !important; }

.nkey-home .nkey-modal-icon {
    font-size: 40px !important;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3)) !important;
}

.nkey-home .nkey-modal-title {
    font-size: 28px !important;
    font-weight: 800 !important;
    color: rgba(245, 248, 255, 0.95) !important;
    margin: 0 !important;
}

.nkey-home .nkey-modal-period {
    font-size: 13px !important;
    color: rgba(200, 215, 245, 0.55) !important;
    font-weight: 500 !important;
}

.nkey-home .nkey-modal-summary {
    color: rgba(200, 215, 245, 0.88) !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
    margin-bottom: 20px !important;
}

.nkey-home .nkey-modal-section {
    padding: 16px 0 !important;
    border-bottom: 1px solid rgba(120, 160, 255, 0.08) !important;
}

.nkey-home .nkey-modal-section:last-of-type {
    border-bottom: none !important;
}

.nkey-home .nkey-modal-subtitle {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: rgba(235, 242, 255, 0.92) !important;
    margin: 0 0 10px !important;
}

.nkey-home .nkey-modal-list {
    margin: 0 !important;
    padding-left: 20px !important;
    color: rgba(200, 215, 245, 0.82) !important;
    font-size: 14px !important;
    line-height: 1.8 !important;
}

.nkey-home .nkey-modal-list li {
    margin-bottom: 8px !important;
}

.nkey-home .nkey-modal-list li:last-child {
    margin-bottom: 0 !important;
}

.nkey-home .nkey-modal-list--ordered {
    list-style-type: decimal !important;
}

.nkey-home .nkey-modal-list strong {
    color: rgba(235, 242, 255, 0.95) !important;
    font-weight: 600 !important;
}

.nkey-home .nkey-modal-img-wrap {
    margin: 20px 0 !important;
    padding: 12px !important;
    border-radius: 14px !important;
    background: rgba(10, 14, 24, 0.5) !important;
    border: 1px solid rgba(120, 160, 255, 0.1) !important;
    text-align: center !important;
}

.nkey-home .nkey-modal-img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    border-radius: 8px !important;
}

.nkey-home .nkey-modal-footer {
    margin-top: 20px !important;
    padding-top: 16px !important;
    border-top: 1px solid rgba(120, 160, 255, 0.1) !important;
    display: flex !important;
    justify-content: center !important;
}

.nkey-home .nkey-modal-footer .btn.primary {
    font-size: 15px !important;
    padding: 12px 24px !important;
    font-weight: 600 !important;
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 920px) {
    .nkey-home .title { font-size: 38px !important; }
    .nkey-home .activity-header { flex-direction: column !important; align-items: flex-start !important; gap: 2px !important; }
    .nkey-home .projects-grid {
        grid-template-columns: 1fr !important;
    }
    .nkey-home .info-card {
        grid-column: span 12 !important;
    }
}

@media (min-width: 921px) and (max-width: 1100px) {
    .nkey-home .projects-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .nkey-home .project-card:last-child {
        grid-column: span 2 !important;
    }
}

@media (max-width: 600px) {
    .nkey-home .nkey-modal {
        padding: 24px 18px !important;
    }
    .nkey-home .nkey-modal-title {
        font-size: 22px !important;
    }
    .nkey-home .nkey-modal-overlay {
        padding: 20px 12px !important;
    }
}

/* ===========================
   Light mode overrides
   =========================== */
@media (prefers-color-scheme: light) {
    .nkey-home { color: rgba(15, 20, 35, 0.92) !important; }

    .nkey-home .nkey-bg {
        background:
            radial-gradient(900px 600px at 20% 20%, rgba(80, 140, 255, 0.18), transparent 62%),
            radial-gradient(900px 600px at 80% 30%, rgba(40, 210, 170, 0.14), transparent 62%),
            radial-gradient(900px 700px at 60% 80%, rgba(255, 180, 80, 0.1), transparent 62%) !important;
        filter: saturate(105%) !important;
    }
    .nkey-home .nkey-bg .orb { opacity: 0.55 !important; filter: blur(20px) !important; }

    .nkey-home .badge { background: rgba(255, 255, 255, 0.65) !important; border-color: rgba(30, 70, 160, 0.12) !important; color: rgba(25, 35, 55, 0.78) !important; }
    .nkey-home .title { color: rgba(15, 20, 35, 0.92) !important; text-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important; }
    .nkey-home .accent-sub { color: rgba(25, 35, 55, 0.7) !important; }
    .nkey-home .subtitle { color: rgba(25, 35, 55, 0.72) !important; }
    .nkey-home .profile-tag { background: rgba(80, 140, 255, 0.1) !important; border-color: rgba(30, 70, 160, 0.15) !important; color: rgba(25, 35, 55, 0.75) !important; }

    .nkey-home .btn { background: rgba(255, 255, 255, 0.7) !important; border-color: rgba(30, 70, 160, 0.12) !important; color: rgba(15, 20, 35, 0.82) !important; }
    .nkey-home .btn:hover { background: rgba(255, 255, 255, 0.82) !important; border-color: rgba(30, 70, 160, 0.18) !important; }
    .nkey-home .btn.primary { background: rgba(35, 210, 170, 0.18) !important; border-color: rgba(35, 210, 170, 0.35) !important; color: rgba(15, 20, 35, 0.86) !important; }
    .nkey-home .btn.ghost { background: rgba(255, 255, 255, 0.4) !important; }

    .nkey-home .section-title { color: rgba(15, 20, 35, 0.9) !important; }

    .nkey-home .project-card { background: rgba(255, 255, 255, 0.6) !important; box-shadow: 0 14px 35px rgba(10, 20, 40, 0.1) !important; }
    .nkey-home .card-nkeysworld { border-color: rgba(35, 210, 170, 0.2) !important; }
    .nkey-home .card-nkeysworld:hover { border-color: rgba(35, 210, 170, 0.4) !important; }
    .nkey-home .card-capstone { border-color: rgba(255, 140, 50, 0.2) !important; }
    .nkey-home .card-capstone:hover { border-color: rgba(255, 140, 50, 0.4) !important; }
    .nkey-home .card-colio { border-color: rgba(130, 100, 220, 0.2) !important; }
    .nkey-home .card-colio:hover { border-color: rgba(130, 100, 220, 0.4) !important; }
    .nkey-home .project-card:hover { box-shadow: 0 18px 45px rgba(10, 20, 40, 0.15) !important; }
    .nkey-home .project-name { color: rgba(15, 20, 35, 0.9) !important; }
    .nkey-home .project-desc { color: rgba(25, 35, 55, 0.7) !important; }
    .nkey-home .project-period { color: rgba(25, 35, 55, 0.5) !important; }
    .nkey-home .chip { background: rgba(255, 255, 255, 0.55) !important; border-color: rgba(30, 70, 160, 0.12) !important; color: rgba(15, 20, 35, 0.78) !important; }
    .nkey-home .project-arrow { color: rgba(25, 35, 55, 0.2) !important; }
    .nkey-home .project-card:hover .project-arrow { color: rgba(25, 35, 55, 0.5) !important; }

    .nkey-home .info-card { background: rgba(255, 255, 255, 0.6) !important; border-color: rgba(30, 70, 160, 0.1) !important; box-shadow: 0 14px 35px rgba(10, 20, 40, 0.1) !important; }
    .nkey-home .info-card.info-card-full { border-color: rgba(200, 150, 50, 0.15) !important; background: rgba(255, 252, 245, 0.5) !important; }
    .nkey-home .info-card-title { color: rgba(15, 20, 35, 0.9) !important; }
    .nkey-home .info-text, .nkey-home .info-list { color: rgba(25, 35, 55, 0.75) !important; }

    .nkey-home .nkey-btn-profile .nkey-finger { filter: drop-shadow(0 0 10px rgba(40, 210, 170, 0.18)) drop-shadow(0 0 14px rgba(80, 140, 255, 0.12)) !important; }

    /* Light activity */
    .nkey-home .activity-timeline::before { background: linear-gradient(180deg, rgba(30, 80, 200, 0.25), rgba(35, 210, 170, 0.15), rgba(255, 140, 50, 0.15)) !important; }
    .nkey-home .activity-content { background: rgba(255, 255, 255, 0.55) !important; border-color: rgba(30, 70, 160, 0.1) !important; }
    .nkey-home .activity-content:hover { border-color: rgba(30, 70, 160, 0.2) !important; }
    .nkey-home .activity-title { color: rgba(15, 20, 35, 0.9) !important; }
    .nkey-home .activity-period { color: rgba(25, 35, 55, 0.5) !important; }
    .nkey-home .activity-desc { color: rgba(25, 35, 55, 0.72) !important; }
    .nkey-home .activity-list { color: rgba(25, 35, 55, 0.72) !important; }
    .nkey-home .activity-list strong { color: rgba(20, 140, 100, 0.95) !important; }

    /* Light modal */
    .nkey-home .nkey-modal-overlay { background: rgba(240, 242, 248, 0.7) !important; }
    .nkey-home .nkey-modal { background: rgba(255, 255, 255, 0.95) !important; border-color: rgba(30, 70, 160, 0.12) !important; box-shadow: 0 25px 80px rgba(10, 20, 40, 0.18) !important; }
    .nkey-home .nkey-modal-close { color: rgba(15, 20, 35, 0.5) !important; background: rgba(0, 0, 0, 0.05) !important; }
    .nkey-home .nkey-modal-close:hover { color: rgba(15, 20, 35, 0.8) !important; background: rgba(0, 0, 0, 0.1) !important; }
    .nkey-home .nkey-modal-title { color: rgba(15, 20, 35, 0.92) !important; }
    .nkey-home .nkey-modal-period { color: rgba(25, 35, 55, 0.5) !important; }
    .nkey-home .nkey-modal-summary { color: rgba(25, 35, 55, 0.8) !important; }
    .nkey-home .nkey-modal-subtitle { color: rgba(15, 20, 35, 0.88) !important; }
    .nkey-home .nkey-modal-list { color: rgba(25, 35, 55, 0.75) !important; }
    .nkey-home .nkey-modal-list strong { color: rgba(15, 20, 35, 0.92) !important; }
    .nkey-home .nkey-modal-header { border-color: rgba(30, 70, 160, 0.1) !important; }
    .nkey-home .nkey-modal-section { border-color: rgba(30, 70, 160, 0.08) !important; }
    .nkey-home .nkey-modal-img-wrap { background: rgba(245, 247, 252, 0.8) !important; border-color: rgba(30, 70, 160, 0.1) !important; }
    .nkey-home .nkey-modal-footer { border-color: rgba(30, 70, 160, 0.08) !important; }
    .nkey-home .nkey-modal .btn.primary { background: rgba(35, 210, 170, 0.18) !important; border-color: rgba(35, 210, 170, 0.35) !important; color: rgba(15, 20, 35, 0.86) !important; }
    .nkey-home .nkey-modal .chip { background: rgba(255, 255, 255, 0.55) !important; border-color: rgba(30, 70, 160, 0.12) !important; color: rgba(15, 20, 35, 0.78) !important; }
}

/* ===========================
   Theme toggle button (top-right, text style)
   =========================== */
.nkey-home .nkey-theme-toggle {
    position: absolute !important;
    top: 18px !important;
    right: 0 !important;
    z-index: 100 !important;
    padding: 8px 16px !important;
    border-radius: 12px !important;
    border: 1px solid rgba(120, 160, 255, 0.18) !important;
    background: rgba(20, 28, 45, 0.55) !important;
    color: rgba(235, 242, 255, 0.9) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2) !important;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease !important;
    white-space: nowrap !important;
    width: auto !important;
    height: auto !important;
}
.nkey-home .nkey-theme-toggle:hover {
    transform: translateY(-1px) !important;
    background: rgba(25, 35, 55, 0.7) !important;
    border-color: rgba(120, 160, 255, 0.28) !important;
}

@media (prefers-color-scheme: light) {
    .nkey-home .nkey-theme-toggle {
        background: rgba(255, 255, 255, 0.7) !important;
        border-color: rgba(30, 70, 160, 0.12) !important;
        color: rgba(15, 20, 35, 0.82) !important;
        box-shadow: 0 2px 12px rgba(10, 20, 40, 0.08) !important;
    }
    .nkey-home .nkey-theme-toggle:hover {
        background: rgba(255, 255, 255, 0.85) !important;
        border-color: rgba(30, 70, 160, 0.2) !important;
    }
}

/* ===========================
   Manual toggle: body.nkey-light (light on dark OS)
   =========================== */
body.nkey-light { background: #f6f8fa !important; color-scheme: light !important; }
body.nkey-light .full.height { background: #f6f8fa !important; }
body.nkey-light .ui.secondary.menu .item { color: rgba(15, 20, 35, 0.7) !important; }
body.nkey-light footer { background: rgba(246, 248, 250, 0.8) !important; color: rgba(15, 20, 35, 0.5) !important; }
body.nkey-light .nkey-home { color: rgba(15, 20, 35, 0.92) !important; }
body.nkey-light .nkey-home .nkey-bg {
    background:
        radial-gradient(900px 600px at 20% 20%, rgba(80, 140, 255, 0.18), transparent 62%),
        radial-gradient(900px 600px at 80% 30%, rgba(40, 210, 170, 0.14), transparent 62%),
        radial-gradient(900px 700px at 60% 80%, rgba(255, 180, 80, 0.1), transparent 62%) !important;
    filter: saturate(105%) !important;
}
body.nkey-light .nkey-home .nkey-bg .orb { opacity: 0.55 !important; filter: blur(20px) !important; }
body.nkey-light .nkey-home .badge { background: rgba(255, 255, 255, 0.65) !important; border-color: rgba(30, 70, 160, 0.12) !important; color: rgba(25, 35, 55, 0.78) !important; }
body.nkey-light .nkey-home .title { color: rgba(15, 20, 35, 0.92) !important; text-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important; }
body.nkey-light .nkey-home .accent-sub { color: rgba(25, 35, 55, 0.7) !important; }
body.nkey-light .nkey-home .subtitle { color: rgba(25, 35, 55, 0.72) !important; }
body.nkey-light .nkey-home .profile-tag { background: rgba(80, 140, 255, 0.1) !important; border-color: rgba(30, 70, 160, 0.15) !important; color: rgba(25, 35, 55, 0.75) !important; }
body.nkey-light .nkey-home .btn { background: rgba(255, 255, 255, 0.7) !important; border-color: rgba(30, 70, 160, 0.12) !important; color: rgba(15, 20, 35, 0.82) !important; }
body.nkey-light .nkey-home .btn:hover { background: rgba(255, 255, 255, 0.82) !important; border-color: rgba(30, 70, 160, 0.18) !important; }
body.nkey-light .nkey-home .btn.primary { background: rgba(35, 210, 170, 0.18) !important; border-color: rgba(35, 210, 170, 0.35) !important; color: rgba(15, 20, 35, 0.86) !important; }
body.nkey-light .nkey-home .btn.ghost { background: rgba(255, 255, 255, 0.4) !important; }
body.nkey-light .nkey-home .section-title { color: rgba(15, 20, 35, 0.9) !important; }
body.nkey-light .nkey-home .project-card { background: rgba(255, 255, 255, 0.6) !important; box-shadow: 0 14px 35px rgba(10, 20, 40, 0.1) !important; }
body.nkey-light .nkey-home .card-nkeysworld { border-color: rgba(35, 210, 170, 0.2) !important; }
body.nkey-light .nkey-home .card-nkeysworld:hover { border-color: rgba(35, 210, 170, 0.4) !important; }
body.nkey-light .nkey-home .card-capstone { border-color: rgba(255, 140, 50, 0.2) !important; }
body.nkey-light .nkey-home .card-capstone:hover { border-color: rgba(255, 140, 50, 0.4) !important; }
body.nkey-light .nkey-home .card-colio { border-color: rgba(130, 100, 220, 0.2) !important; }
body.nkey-light .nkey-home .card-colio:hover { border-color: rgba(130, 100, 220, 0.4) !important; }
body.nkey-light .nkey-home .project-card:hover { box-shadow: 0 18px 45px rgba(10, 20, 40, 0.15) !important; }
body.nkey-light .nkey-home .project-name { color: rgba(15, 20, 35, 0.9) !important; }
body.nkey-light .nkey-home .project-desc { color: rgba(25, 35, 55, 0.7) !important; }
body.nkey-light .nkey-home .project-period { color: rgba(25, 35, 55, 0.5) !important; }
body.nkey-light .nkey-home .chip { background: rgba(255, 255, 255, 0.55) !important; border-color: rgba(30, 70, 160, 0.12) !important; color: rgba(15, 20, 35, 0.78) !important; }
body.nkey-light .nkey-home .project-arrow { color: rgba(25, 35, 55, 0.2) !important; }
body.nkey-light .nkey-home .project-card:hover .project-arrow { color: rgba(25, 35, 55, 0.5) !important; }
body.nkey-light .nkey-home .info-card { background: rgba(255, 255, 255, 0.6) !important; border-color: rgba(30, 70, 160, 0.1) !important; box-shadow: 0 14px 35px rgba(10, 20, 40, 0.1) !important; }
body.nkey-light .nkey-home .info-card.info-card-full { border-color: rgba(200, 150, 50, 0.15) !important; background: rgba(255, 252, 245, 0.5) !important; }
body.nkey-light .nkey-home .info-card-title { color: rgba(15, 20, 35, 0.9) !important; }
body.nkey-light .nkey-home .info-text, body.nkey-light .nkey-home .info-list { color: rgba(25, 35, 55, 0.75) !important; }
body.nkey-light .nkey-home .nkey-btn-profile .nkey-finger { filter: drop-shadow(0 0 10px rgba(40, 210, 170, 0.18)) drop-shadow(0 0 14px rgba(80, 140, 255, 0.12)) !important; }
body.nkey-light .nkey-home .activity-timeline::before { background: linear-gradient(180deg, rgba(30, 80, 200, 0.25), rgba(35, 210, 170, 0.15), rgba(255, 140, 50, 0.15)) !important; }
body.nkey-light .nkey-home .activity-content { background: rgba(255, 255, 255, 0.55) !important; border-color: rgba(30, 70, 160, 0.1) !important; }
body.nkey-light .nkey-home .activity-content:hover { border-color: rgba(30, 70, 160, 0.2) !important; }
body.nkey-light .nkey-home .activity-title { color: rgba(15, 20, 35, 0.9) !important; }
body.nkey-light .nkey-home .activity-period { color: rgba(25, 35, 55, 0.5) !important; }
body.nkey-light .nkey-home .activity-desc { color: rgba(25, 35, 55, 0.72) !important; }
body.nkey-light .nkey-home .activity-list { color: rgba(25, 35, 55, 0.72) !important; }
body.nkey-light .nkey-home .activity-list strong { color: rgba(20, 140, 100, 0.95) !important; }
body.nkey-light .nkey-home .nkey-modal-overlay { background: rgba(240, 242, 248, 0.7) !important; }
body.nkey-light .nkey-home .nkey-modal { background: rgba(255, 255, 255, 0.95) !important; border-color: rgba(30, 70, 160, 0.12) !important; box-shadow: 0 25px 80px rgba(10, 20, 40, 0.18) !important; }
body.nkey-light .nkey-home .nkey-modal-close { color: rgba(15, 20, 35, 0.5) !important; background: rgba(0, 0, 0, 0.05) !important; }
body.nkey-light .nkey-home .nkey-modal-close:hover { color: rgba(15, 20, 35, 0.8) !important; background: rgba(0, 0, 0, 0.1) !important; }
body.nkey-light .nkey-home .nkey-modal-title { color: rgba(15, 20, 35, 0.92) !important; }
body.nkey-light .nkey-home .nkey-modal-period { color: rgba(25, 35, 55, 0.5) !important; }
body.nkey-light .nkey-home .nkey-modal-summary { color: rgba(25, 35, 55, 0.8) !important; }
body.nkey-light .nkey-home .nkey-modal-subtitle { color: rgba(15, 20, 35, 0.88) !important; }
body.nkey-light .nkey-home .nkey-modal-list { color: rgba(25, 35, 55, 0.75) !important; }
body.nkey-light .nkey-home .nkey-modal-list strong { color: rgba(15, 20, 35, 0.92) !important; }
body.nkey-light .nkey-home .nkey-modal-header { border-color: rgba(30, 70, 160, 0.1) !important; }
body.nkey-light .nkey-home .nkey-modal-section { border-color: rgba(30, 70, 160, 0.08) !important; }
body.nkey-light .nkey-home .nkey-modal-img-wrap { background: rgba(245, 247, 252, 0.8) !important; border-color: rgba(30, 70, 160, 0.1) !important; }
body.nkey-light .nkey-home .nkey-modal-footer { border-color: rgba(30, 70, 160, 0.08) !important; }
body.nkey-light .nkey-home .nkey-modal .btn.primary { background: rgba(35, 210, 170, 0.18) !important; border-color: rgba(35, 210, 170, 0.35) !important; color: rgba(15, 20, 35, 0.86) !important; }
body.nkey-light .nkey-home .nkey-modal .chip { background: rgba(255, 255, 255, 0.55) !important; border-color: rgba(30, 70, 160, 0.12) !important; color: rgba(15, 20, 35, 0.78) !important; }
body.nkey-light .nkey-home .nkey-theme-toggle { background: rgba(255, 255, 255, 0.7) !important; border-color: rgba(30, 70, 160, 0.12) !important; color: rgba(15, 20, 35, 0.82) !important; box-shadow: 0 2px 12px rgba(10, 20, 40, 0.08) !important; }
body.nkey-light .nkey-home .nkey-theme-toggle:hover { background: rgba(255, 255, 255, 0.85) !important; border-color: rgba(30, 70, 160, 0.2) !important; }

/* ===========================
   Manual toggle: body.nkey-dark (dark on light OS)
   =========================== */
body.nkey-dark { background: #0d1117 !important; color-scheme: dark !important; }
body.nkey-dark .full.height { background: #0d1117 !important; }
body.nkey-dark .ui.secondary.menu .item { color: rgba(235, 242, 255, 0.7) !important; }
body.nkey-dark footer { background: rgba(13, 17, 23, 0.8) !important; color: rgba(235, 242, 255, 0.4) !important; }
body.nkey-dark .nkey-home { color: rgba(235, 242, 255, 0.92) !important; }
body.nkey-dark .nkey-home .nkey-bg {
    background:
        radial-gradient(900px 600px at 20% 20%, rgba(120, 170, 255, 0.1), transparent 60%),
        radial-gradient(900px 600px at 80% 30%, rgba(80, 255, 200, 0.08), transparent 60%),
        radial-gradient(900px 700px at 60% 80%, rgba(255, 180, 80, 0.06), transparent 60%) !important;
    filter: saturate(110%) !important;
}
body.nkey-dark .nkey-home .nkey-bg .orb { opacity: 0.9 !important; filter: blur(16px) !important; }
body.nkey-dark .nkey-home .badge { background: rgba(25, 35, 55, 0.55) !important; border-color: rgba(120, 160, 255, 0.18) !important; color: rgba(220, 230, 255, 0.85) !important; }
body.nkey-dark .nkey-home .title { color: rgba(245, 248, 255, 0.95) !important; text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35) !important; }
body.nkey-dark .nkey-home .accent-sub { color: rgba(200, 215, 245, 0.85) !important; }
body.nkey-dark .nkey-home .subtitle { color: rgba(200, 215, 245, 0.85) !important; }
body.nkey-dark .nkey-home .profile-tag { background: rgba(120, 170, 255, 0.12) !important; border-color: rgba(120, 170, 255, 0.2) !important; color: rgba(200, 220, 255, 0.9) !important; }
body.nkey-dark .nkey-home .btn { background: rgba(20, 28, 45, 0.55) !important; border-color: rgba(120, 160, 255, 0.14) !important; color: rgba(235, 242, 255, 0.92) !important; }
body.nkey-dark .nkey-home .btn:hover { background: rgba(25, 35, 55, 0.62) !important; border-color: rgba(120, 160, 255, 0.22) !important; }
body.nkey-dark .nkey-home .btn.primary { background: rgba(20, 55, 55, 0.55) !important; border-color: rgba(80, 255, 200, 0.25) !important; color: rgba(235, 242, 255, 0.92) !important; }
body.nkey-dark .nkey-home .btn.ghost { background: rgba(15, 18, 25, 0.35) !important; }
body.nkey-dark .nkey-home .section-title { color: rgba(235, 242, 255, 0.95) !important; }
body.nkey-dark .nkey-home .project-card { background: rgba(15, 20, 35, 0.55) !important; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25) !important; border-color: rgba(120, 160, 255, 0.12) !important; }
body.nkey-dark .nkey-home .card-nkeysworld { border-color: rgba(80, 255, 200, 0.15) !important; }
body.nkey-dark .nkey-home .card-nkeysworld:hover { border-color: rgba(80, 255, 200, 0.3) !important; }
body.nkey-dark .nkey-home .card-capstone { border-color: rgba(255, 160, 80, 0.15) !important; }
body.nkey-dark .nkey-home .card-capstone:hover { border-color: rgba(255, 160, 80, 0.3) !important; }
body.nkey-dark .nkey-home .card-colio { border-color: rgba(160, 130, 255, 0.15) !important; }
body.nkey-dark .nkey-home .card-colio:hover { border-color: rgba(160, 130, 255, 0.3) !important; }
body.nkey-dark .nkey-home .project-card:hover { box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35) !important; }
body.nkey-dark .nkey-home .project-name { color: rgba(235, 242, 255, 0.95) !important; }
body.nkey-dark .nkey-home .project-desc { color: rgba(200, 215, 245, 0.78) !important; }
body.nkey-dark .nkey-home .project-period { color: rgba(200, 215, 245, 0.6) !important; }
body.nkey-dark .nkey-home .chip { background: rgba(10, 14, 24, 0.45) !important; border-color: rgba(120, 160, 255, 0.14) !important; color: rgba(220, 230, 255, 0.88) !important; }
body.nkey-dark .nkey-home .project-arrow { color: rgba(200, 215, 245, 0.3) !important; }
body.nkey-dark .nkey-home .project-card:hover .project-arrow { color: rgba(200, 215, 245, 0.7) !important; }
body.nkey-dark .nkey-home .info-card { background: rgba(15, 20, 35, 0.55) !important; border-color: rgba(120, 160, 255, 0.12) !important; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25) !important; }
body.nkey-dark .nkey-home .info-card.info-card-full { border-color: rgba(255, 190, 100, 0.14) !important; background: rgba(20, 18, 25, 0.45) !important; }
body.nkey-dark .nkey-home .info-card-title { color: rgba(235, 242, 255, 0.95) !important; }
body.nkey-dark .nkey-home .info-text, body.nkey-dark .nkey-home .info-list { color: rgba(200, 215, 245, 0.85) !important; }
body.nkey-dark .nkey-home .nkey-btn-profile .nkey-finger { filter: drop-shadow(0 0 10px rgba(80, 255, 200, 0.25)) drop-shadow(0 0 16px rgba(120, 170, 255, 0.18)) !important; }
body.nkey-dark .nkey-home .activity-timeline::before { background: linear-gradient(180deg, rgba(120, 170, 255, 0.4), rgba(80, 255, 200, 0.2), rgba(255, 180, 80, 0.2)) !important; }
body.nkey-dark .nkey-home .activity-content { background: rgba(15, 20, 35, 0.45) !important; border-color: rgba(120, 160, 255, 0.1) !important; }
body.nkey-dark .nkey-home .activity-content:hover { border-color: rgba(120, 160, 255, 0.2) !important; }
body.nkey-dark .nkey-home .activity-title { color: rgba(235, 242, 255, 0.95) !important; }
body.nkey-dark .nkey-home .activity-period { color: rgba(200, 215, 245, 0.55) !important; }
body.nkey-dark .nkey-home .activity-desc { color: rgba(200, 215, 245, 0.78) !important; }
body.nkey-dark .nkey-home .activity-list { color: rgba(200, 215, 245, 0.78) !important; }
body.nkey-dark .nkey-home .activity-list strong { color: rgba(80, 255, 200, 0.9) !important; }
body.nkey-dark .nkey-home .nkey-modal-overlay { background: rgba(0, 0, 0, 0.65) !important; }
body.nkey-dark .nkey-home .nkey-modal { background: rgba(18, 22, 38, 0.96) !important; border-color: rgba(120, 160, 255, 0.15) !important; box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5) !important; }
body.nkey-dark .nkey-home .nkey-modal-close { color: rgba(220, 230, 255, 0.7) !important; background: rgba(255, 255, 255, 0.08) !important; }
body.nkey-dark .nkey-home .nkey-modal-close:hover { color: rgba(255, 255, 255, 0.95) !important; background: rgba(255, 255, 255, 0.15) !important; }
body.nkey-dark .nkey-home .nkey-modal-title { color: rgba(245, 248, 255, 0.95) !important; }
body.nkey-dark .nkey-home .nkey-modal-period { color: rgba(200, 215, 245, 0.55) !important; }
body.nkey-dark .nkey-home .nkey-modal-summary { color: rgba(200, 215, 245, 0.88) !important; }
body.nkey-dark .nkey-home .nkey-modal-subtitle { color: rgba(235, 242, 255, 0.92) !important; }
body.nkey-dark .nkey-home .nkey-modal-list { color: rgba(200, 215, 245, 0.82) !important; }
body.nkey-dark .nkey-home .nkey-modal-list strong { color: rgba(235, 242, 255, 0.95) !important; }
body.nkey-dark .nkey-home .nkey-modal-section { border-color: rgba(120, 160, 255, 0.08) !important; }
body.nkey-dark .nkey-home .nkey-modal-img-wrap { background: rgba(10, 14, 24, 0.5) !important; border-color: rgba(120, 160, 255, 0.1) !important; }
body.nkey-dark .nkey-home .nkey-modal-footer { border-color: rgba(120, 160, 255, 0.1) !important; }
body.nkey-dark .nkey-home .nkey-modal .btn.primary { background: rgba(20, 55, 55, 0.55) !important; border-color: rgba(80, 255, 200, 0.25) !important; color: rgba(235, 242, 255, 0.92) !important; }
body.nkey-dark .nkey-home .nkey-modal .chip { background: rgba(10, 14, 24, 0.45) !important; border-color: rgba(120, 160, 255, 0.14) !important; color: rgba(220, 230, 255, 0.88) !important; }
body.nkey-dark .nkey-home .nkey-theme-toggle { background: rgba(20, 28, 45, 0.55) !important; border-color: rgba(120, 160, 255, 0.18) !important; color: rgba(235, 242, 255, 0.9) !important; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2) !important; }
body.nkey-dark .nkey-home .nkey-theme-toggle:hover { background: rgba(25, 35, 55, 0.7) !important; border-color: rgba(120, 160, 255, 0.28) !important; }
