/* GooleGoole — clearnet browser (Google-style, light UI) */

#win-goolegoole.gg-window {
    width: 920px;
    height: 640px;
    background: #fff;
    border: 1px solid #dadce0;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    font-family: Arial, "Segoe UI", Roboto, system-ui, sans-serif;
    color: #202124;
    display: none;
    flex-direction: column;
}

#win-goolegoole .w-header.gg-header {
    background: #f1f3f4 !important;
    border-bottom: 1px solid #dadce0 !important;
    color: #202124 !important;
    text-shadow: none !important;
    font-family: Arial, "Segoe UI", sans-serif !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
    height: 36px;
    min-height: 36px;
    padding: 0 10px !important;
}

#win-goolegoole .w-header .w-close {
    color: #5f6368 !important;
    text-shadow: none !important;
}

#win-goolegoole .w-header .w-close:hover {
    color: #202124 !important;
}

.gg-header__brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.gg-header__logo {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: conic-gradient(from 180deg, #4285f4, #ea4335, #fbbc04, #34a853, #4285f4);
}

#win-goolegoole .w-content.gg-shell {
    padding: 0 !important;
    background: #fff !important;
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.gg-toolbar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    background: #fff;
    border-bottom: 1px solid #ebebeb;
    flex-shrink: 0;
}

.gg-nav-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    border-radius: 50%;
    color: #5f6368;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.12s;
}

.gg-nav-btn:hover:not(:disabled) {
    background: #f1f3f4;
    color: #202124;
}

.gg-nav-btn:disabled {
    opacity: 0.35;
    cursor: default;
}

.gg-url-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    background: #f1f3f4;
    border-radius: 20px;
    padding: 0 14px;
    height: 36px;
    border: 1px solid transparent;
    transition: background 0.15s, box-shadow 0.15s;
}

.gg-url-wrap:focus-within {
    background: #fff;
    box-shadow: 0 1px 6px rgba(32, 33, 36, 0.18);
    border-color: #dadce0;
}

.gg-url-lock {
    font-size: 12px;
    margin-right: 8px;
    color: #5f6368;
}

.gg-url-input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 13px;
    color: #202124;
    font-family: inherit;
}

.gg-body {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    background: #fff;
}

/* ── Home ── */
.gg-home {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px 60px;
    box-sizing: border-box;
}

.gg-logo {
    font-size: 72px;
    font-weight: 700;
    letter-spacing: -3px;
    line-height: 1;
    margin-bottom: 28px;
    user-select: none;
}

.gg-logo__g1 { color: #4285f4; }
.gg-logo__o1 { color: #ea4335; }
.gg-logo__o2 { color: #fbbc04; }
.gg-logo__l  { color: #4285f4; }
.gg-logo__e1 { color: #34a853; }
.gg-logo__g2 { color: #ea4335; }
.gg-logo__o3 { color: #4285f4; }
.gg-logo__o4 { color: #fbbc04; }
.gg-logo__l2 { color: #ea4335; }
.gg-logo__e2 { color: #34a853; }

.gg-search-box {
    width: min(100%, 584px);
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #dfe1e5;
    border-radius: 24px;
    padding: 0 16px;
    height: 46px;
    box-shadow: 0 1px 6px rgba(32, 33, 36, 0.08);
    transition: box-shadow 0.2s;
}

.gg-search-box:hover,
.gg-search-box:focus-within {
    box-shadow: 0 1px 8px rgba(32, 33, 36, 0.16);
    border-color: rgba(223, 225, 229, 0);
}

.gg-search-icon {
    color: #9aa0a6;
    font-size: 16px;
    margin-right: 12px;
}

.gg-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    color: #202124;
    font-family: inherit;
    background: transparent;
}

.gg-search-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.gg-btn {
    background: #f8f9fa;
    border: 1px solid #f8f9fa;
    border-radius: 4px;
    color: #3c4043;
    font-size: 14px;
    padding: 10px 16px;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.12s, border-color 0.12s, box-shadow 0.12s;
}

.gg-btn:hover {
    background: #f1f3f4;
    border-color: #dadce0;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
}

.gg-home-foot {
    margin-top: 32px;
    font-size: 12px;
    color: #70757a;
    text-align: center;
    max-width: 420px;
    line-height: 1.5;
}

/* ── Search results ── */
.gg-results {
    max-width: 652px;
    margin: 0 auto;
    padding: 16px 20px 40px;
}

.gg-results-meta {
    font-size: 13px;
    color: #70757a;
    margin-bottom: 20px;
}

.gg-result {
    margin-bottom: 22px;
    cursor: pointer;
}

.gg-result:hover .gg-result__title {
    text-decoration: underline;
}

.gg-result__url {
    font-size: 12px;
    color: #202124;
    line-height: 1.3;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.gg-result__favicon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #f1f3f4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
}

.gg-result__title {
    font-size: 20px;
    color: #1a0dab;
    line-height: 1.3;
    margin-bottom: 4px;
    font-weight: 400;
}

.gg-result__snippet {
    font-size: 14px;
    color: #4d5156;
    line-height: 1.58;
}

.gg-no-results {
    padding: 40px 20px;
    text-align: center;
    color: #70757a;
}

.gg-no-results h2 {
    font-size: 20px;
    font-weight: 400;
    color: #202124;
    margin: 0 0 8px;
}

/* ── Article page ── */
.gg-page {
    max-width: 720px;
    margin: 0 auto;
    padding: 24px 24px 48px;
}

.gg-page__site {
    font-size: 12px;
    color: #70757a;
    margin-bottom: 4px;
}

.gg-page__title {
    font-size: 28px;
    font-weight: 400;
    color: #202124;
    margin: 0 0 12px;
    line-height: 1.25;
}

.gg-page__meta {
    font-size: 12px;
    color: #70757a;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #ebebeb;
}

.gg-page__content {
    font-size: 15px;
    line-height: 1.7;
    color: #3c4043;
}

.gg-page__content p {
    margin: 0 0 14px;
}

.gg-page__content a {
    color: #1a0dab;
    cursor: pointer;
}

.gg-page__content a:hover {
    text-decoration: underline;
}

.gg-banner {
    margin-top: 20px;
    padding: 12px 14px;
    background: #e8f0fe;
    border-radius: 8px;
    font-size: 13px;
    color: #174ea6;
    line-height: 1.45;
}

.gg-banner--warn {
    background: #fef7e0;
    color: #8f6000;
}

.gg-error-page {
    text-align: center;
    padding: 60px 20px;
}

.gg-error-page h1 {
    font-size: 120px;
    font-weight: 400;
    color: #4285f4;
    margin: 0;
    line-height: 1;
}

.gg-error-page p {
    font-size: 16px;
    color: #70757a;
    margin: 16px 0 24px;
}

#win-goolegoole ::-webkit-scrollbar {
    width: 10px;
}

#win-goolegoole ::-webkit-scrollbar-thumb {
    background: #dadce0;
    border-radius: 8px;
}

#win-goolegoole ::-webkit-scrollbar-track {
    background: #fff;
}

/* ── Home quick apps ── */
.gg-home-apps {
    margin-top: 28px;
    text-align: center;
}

.gg-home-apps__label {
    display: block;
    font-size: 11px;
    color: #70757a;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.gg-home-apps__row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.gg-home-app {
    border: 1px solid #dadce0;
    background: #fff;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 13px;
    color: #3c4043;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.12s, box-shadow 0.12s;
}

.gg-home-app:hover {
    background: #f8f9fa;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.gg-home-app--tt:hover { border-color: #fe2c55; color: #fe2c55; }
.gg-home-app--phasebook:hover { border-color: #1877f2; color: #1877f2; }
.gg-home-app--goomail:hover { border-color: #ea4335; color: #ea4335; }

/* ── Embedded apps ── */
.gg-app {
    min-height: 100%;
    font-size: 14px;
}

/* Phasebook (Facebook parody) */
.gg-app--phasebook {
    background: #f0f2f5;
    color: #050505;
}

.gg-phasebook-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 2;
}

.gg-phasebook-logo {
    font-size: 28px;
    font-weight: 700;
    color: #1877f2;
    letter-spacing: -1px;
}

.gg-phasebook-logo span { color: #1877f2; }

.gg-phasebook-search {
    background: #f0f2f5;
    border-radius: 20px;
    padding: 8px 14px;
    font-size: 13px;
    color: #65676b;
    min-width: 200px;
}

.gg-phasebook-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 16px;
    max-width: 900px;
    margin: 16px auto;
    padding: 0 12px 24px;
}

.gg-phasebook-profile {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.gg-phasebook-profile__cover {
    height: 80px;
    background: linear-gradient(90deg, #1877f2, #42b72a);
}

.gg-phasebook-profile__avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 3px solid #fff;
    background: #e4e6eb;
    margin: -32px auto 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #1877f2;
}

.gg-phasebook-profile__name {
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    padding: 0 8px;
}

.gg-phasebook-profile__meta {
    text-align: center;
    font-size: 12px;
    color: #65676b;
    padding: 4px 8px 12px;
}

.gg-phasebook-compose {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    padding: 12px;
    margin-bottom: 12px;
}

.gg-phasebook-compose__input {
    width: 100%;
    min-height: 60px;
    border: none;
    resize: none;
    outline: none;
    font-family: inherit;
    font-size: 14px;
    box-sizing: border-box;
    cursor: pointer;
}

.gg-phasebook-compose__btn {
    margin-top: 8px;
    background: #1877f2;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}

.gg-phasebook-post {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    padding: 12px;
    margin-bottom: 10px;
}

.gg-phasebook-post--own {
    border-left: 3px solid #1877f2;
}

.gg-phasebook-post__head {
    font-size: 13px;
    color: #65676b;
    margin-bottom: 8px;
}

.gg-phasebook-post__head b { color: #050505; }

.gg-phasebook-post__text {
    margin: 0 0 10px;
    line-height: 1.45;
    font-size: 14px;
}

.gg-phasebook-post__actions {
    font-size: 12px;
    color: #65676b;
    border-top: 1px solid #e4e6eb;
    padding-top: 8px;
}

/* GooMail — Gmail-like interface */
.gg-app--goomail {
    background: #f6f8fc;
    color: #202124;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
}

.gg-app--goomail-auth {
    background: #f0f4f9;
}

.gm-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px 8px 8px;
    background: #f6f8fc;
    border-bottom: 1px solid transparent;
    flex-shrink: 0;
}

.gm-header__menu {
    width: 48px;
    height: 48px;
    border: none;
    background: transparent;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    color: #5f6368;
    flex-shrink: 0;
}

.gm-header__menu:hover {
    background: rgba(60, 64, 67, 0.08);
}

.gm-header__logo {
    font-size: 22px;
    font-weight: 400;
    color: #5f6368;
    letter-spacing: -0.5px;
    flex-shrink: 0;
    margin-right: 4px;
}

.gm-header__logo-g {
    background: linear-gradient(135deg, #ea4335, #fbbc04, #34a853, #4285f4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 500;
}

.gm-search {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #eaf1fb;
    border-radius: 24px;
    padding: 0 16px;
    height: 48px;
    max-width: 720px;
    margin: 0 auto;
}

.gm-search__icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.gm-search__input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 16px;
    font-family: inherit;
    color: #202124;
}

.gm-search__filter {
    border: none;
    background: transparent;
    cursor: pointer;
    color: #5f6368;
    font-size: 16px;
    padding: 4px;
    border-radius: 50%;
}

.gm-search__filter:hover {
    background: rgba(60, 64, 67, 0.08);
}

.gm-header__actions {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.gm-header__btn {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    color: #5f6368;
    font-size: 16px;
}

.gm-header__btn:hover {
    background: rgba(60, 64, 67, 0.08);
}

.gm-header__avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #1a73e8;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    margin-left: 4px;
}

.gm-body {
    display: flex;
    flex: 1;
    min-height: 0;
}

.gm-sidebar {
    width: 256px;
    flex-shrink: 0;
    padding: 8px 8px 8px 4px;
}

.gm-compose {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 8px 8px 16px 12px;
    padding: 0 24px 0 16px;
    height: 56px;
    border: none;
    border-radius: 16px;
    background: #c2e7ff;
    color: #001d35;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
    transition: box-shadow 0.15s;
}

.gm-compose:hover {
    box-shadow: 0 1px 3px 0 rgba(60, 64, 67, 0.3), 0 4px 8px 3px rgba(60, 64, 67, 0.15);
}

.gm-compose svg {
    flex-shrink: 0;
}

.gm-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.gm-nav__item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 24px 0 16px;
    height: 32px;
    border: none;
    background: transparent;
    border-radius: 0 16px 16px 0;
    font-size: 14px;
    color: #202124;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    width: 100%;
}

.gm-nav__item:hover {
    background: rgba(60, 64, 67, 0.08);
}

.gm-nav__item--active {
    background: #d3e3fd;
    font-weight: 700;
    color: #001d35;
}

.gm-nav__icon {
    width: 20px;
    text-align: center;
    font-size: 16px;
}

.gm-nav__count {
    margin-left: auto;
    font-weight: 700;
    font-size: 12px;
    color: #1a73e8;
}

.gm-main {
    flex: 1;
    min-width: 0;
    background: #fff;
    border-radius: 16px 0 0 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.gm-toolbar {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
}

.gm-toolbar__check {
    display: flex;
    align-items: center;
    padding: 0 8px;
}

.gm-toolbar__btn {
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    color: #5f6368;
    font-size: 16px;
}

.gm-toolbar__btn:hover {
    background: rgba(60, 64, 67, 0.08);
}

.gm-toolbar__spacer {
    flex: 1;
}

.gm-toolbar__meta,
.gm-toolbar__title {
    font-size: 13px;
    color: #5f6368;
    padding-right: 8px;
}

.gm-list {
    flex: 1;
    overflow-y: auto;
}

.gm-row {
    display: grid;
    grid-template-columns: auto auto 160px 1fr auto;
    align-items: center;
    gap: 0;
    padding: 0 12px 0 4px;
    height: 40px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    font-size: 14px;
}

.gm-row:hover {
    box-shadow: inset 1px 0 0 #dadce0, inset -1px 0 0 #dadce0, 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
    z-index: 1;
    position: relative;
}

.gm-row--unread .gm-row__from,
.gm-row--unread .gm-row__subject {
    font-weight: 700;
    color: #202124;
}

.gm-row__check {
    display: flex;
    align-items: center;
    padding: 0 8px;
}

.gm-row__star {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    color: #5f6368;
    font-size: 18px;
    line-height: 1;
}

.gm-row__star:hover {
    background: rgba(60, 64, 67, 0.08);
}

.gm-row__from {
    color: #202124;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 12px;
}

.gm-row__content {
    display: flex;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    color: #5f6368;
}

.gm-row__subject {
    color: #202124;
    flex-shrink: 0;
    max-width: 45%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gm-row--unread .gm-row__subject {
    color: #202124;
}

.gm-row__dash {
    flex-shrink: 0;
}

.gm-row__preview {
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 400;
}

.gm-row__date {
    color: #5f6368;
    font-size: 12px;
    font-weight: 400;
    white-space: nowrap;
    padding-left: 12px;
    min-width: 48px;
    text-align: right;
}

.gm-empty {
    padding: 48px 24px;
    text-align: center;
    color: #5f6368;
    font-size: 14px;
}

/* Read view */
.gm-read {
    flex: 1;
    overflow-y: auto;
    padding: 0 0 24px;
}

.gm-read__subject {
    font-size: 22px;
    font-weight: 400;
    color: #202124;
    margin: 16px 24px 20px;
    line-height: 1.3;
}

.gm-read__head {
    display: flex;
    gap: 16px;
    padding: 0 24px 20px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 20px;
}

.gm-read__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1a73e8;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.gm-read__from-line {
    font-size: 14px;
    margin-bottom: 2px;
}

.gm-read__email {
    color: #5f6368;
    font-size: 12px;
    margin-left: 6px;
}

.gm-read__to-line {
    font-size: 12px;
    color: #5f6368;
}

.gm-read__body {
    padding: 0 24px 0 80px;
    font-size: 14px;
    line-height: 1.6;
    color: #202124;
}

.gm-read__body p {
    margin: 0 0 12px;
}

.gm-read__body ul {
    margin: 0 0 12px;
    padding-left: 20px;
}

.gm-read__body code {
    background: #f1f3f4;
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 13px;
}

.gm-read__sig {
    color: #5f6368;
    margin-top: 20px !important;
}

.gm-read__table {
    border-collapse: collapse;
    margin: 12px 0;
    font-size: 13px;
}

.gm-read__table td {
    padding: 6px 16px 6px 0;
    vertical-align: top;
}

.gm-read__table td:first-child {
    color: #5f6368;
    white-space: nowrap;
}

/* Settings */
.gm-settings {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 24px;
}

.gm-settings__card {
    margin: 16px 24px;
    padding: 20px 24px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e8eaed;
}

.gm-settings__card h2 {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 16px;
    color: #202124;
}

.gm-settings__row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 14px;
    margin: 0 0 8px;
    color: #5f6368;
}

.gm-settings__row b {
    color: #202124;
    text-align: right;
    word-break: break-all;
}

.gm-settings__form {
    max-width: 400px;
}

/* Registration / auth */
.gm-auth {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    padding: 32px 16px;
}

.gm-auth__card {
    width: 100%;
    max-width: 450px;
    background: #fff;
    border: 1px solid #dadce0;
    border-radius: 8px;
    padding: 48px 40px 36px;
    box-shadow: 0 1px 3px rgba(60, 64, 67, 0.12);
}

.gm-auth__logo {
    font-size: 24px;
    color: #5f6368;
    margin-bottom: 8px;
}

.gm-auth__logo-g {
    background: linear-gradient(135deg, #ea4335, #fbbc04, #34a853, #4285f4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 500;
}

.gm-auth__title {
    font-size: 24px;
    font-weight: 400;
    color: #202124;
    margin: 0 0 8px;
}

.gm-auth__sub {
    font-size: 14px;
    color: #5f6368;
    margin: 0 0 32px;
}

.gm-auth__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gm-auth__field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gm-auth__label {
    font-size: 14px;
    color: #202124;
    font-weight: 500;
}

.gm-auth__optional {
    font-weight: 400;
    color: #5f6368;
}

.gm-auth__hint {
    font-size: 12px;
    color: #5f6368;
}

.gm-auth__input {
    border: 1px solid #dadce0;
    border-radius: 4px;
    padding: 13px 15px;
    font-size: 16px;
    font-family: inherit;
    color: #202124;
    outline: none;
    transition: border-color 0.15s;
}

.gm-auth__input:focus {
    border-color: #1a73e8;
    border-width: 2px;
    padding: 12px 14px;
}

.gm-auth__email-row {
    display: flex;
    align-items: center;
    gap: 0;
}

.gm-auth__input--local {
    border-radius: 4px 0 0 4px;
    flex: 1;
    min-width: 0;
}

.gm-auth__domain {
    padding: 13px 12px;
    background: #f1f3f4;
    border: 1px solid #dadce0;
    border-left: none;
    border-radius: 0 4px 4px 0;
    font-size: 14px;
    color: #5f6368;
    white-space: nowrap;
}

.gm-auth__error {
    background: #fce8e6;
    color: #c5221f;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 14px;
}

.gm-auth__actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 8px;
}

.gm-auth__submit {
    background: #1a73e8;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.15s, box-shadow 0.15s;
}

.gm-auth__submit:hover {
    background: #1765cc;
    box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3);
}

.gm-auth__submit--inline {
    margin-top: 8px;
}

.gm-auth__foot {
    margin: 24px 0 0;
    font-size: 12px;
    color: #5f6368;
    line-height: 1.5;
}

/* GooMail ↔ service registration block */
.gm-service-auth {
    background: #f8f9fa;
    border: 1px solid #dadce0;
    border-radius: 8px;
    padding: 14px 16px;
    margin: 4px 0 8px;
}

.gm-service-auth--warn {
    display: flex;
    gap: 12px;
    background: #fef7e0;
    border-color: #f9ab00;
}

.gm-service-auth__icon {
    font-size: 24px;
    flex-shrink: 0;
}

.gm-service-auth__body strong {
    display: block;
    font-size: 14px;
    color: #202124;
    margin-bottom: 4px;
}

.gm-service-auth__body p {
    margin: 0 0 10px;
    font-size: 13px;
    color: #5f6368;
    line-height: 1.45;
}

.gm-service-auth__link,
.gm-service-auth__open {
    border: none;
    background: transparent;
    color: #1a73e8;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    padding: 0;
    text-decoration: underline;
}

.gm-service-auth__head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.gm-service-auth__badge {
    background: #e8f0fe;
    color: #1a73e8;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.gm-service-auth__email {
    font-size: 13px;
    font-family: Consolas, monospace;
    color: #202124;
}

.gm-service-auth__hint {
    font-size: 12px;
    color: #5f6368;
    margin: 0 0 10px;
    line-height: 1.4;
}

.gm-service-auth__field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 8px;
}

.gm-service-auth__label {
    font-size: 13px;
    font-weight: 600;
    color: #202124;
}

.gm-service-auth__sublabel {
    font-size: 11px;
    color: #5f6368;
    line-height: 1.4;
}

.gm-service-auth__email {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #dadce0;
    border-radius: 4px;
    padding: 10px 12px;
    font-size: 14px;
    font-family: Consolas, monospace;
    color: #202124;
    outline: none;
}

.gm-service-auth__email:focus {
    border-color: #1a73e8;
}

.gm-service-auth__row {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.gm-service-auth__send {
    background: #1a73e8;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
}

.gm-service-auth__send:hover {
    background: #1765cc;
}

.gm-service-auth__code {
    flex: 1;
    min-width: 100px;
    max-width: 140px;
    border: 1px solid #dadce0;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 18px;
    font-family: Consolas, monospace;
    letter-spacing: 0.15em;
    text-align: center;
    outline: none;
}

.gm-service-auth__code:focus {
    border-color: #1a73e8;
}

.gm-verify-code {
    display: inline-block;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.2em;
    font-family: Consolas, monospace;
    background: #f1f3f4;
    padding: 12px 24px;
    border-radius: 8px;
    margin: 16px 0;
    color: #1a73e8;
}

/* Darknot embed overrides */
.ix-auth .gm-service-auth,
.bc-auth .gm-service-auth {
    text-align: left;
}

.ix-auth .gm-service-auth__send,
.bc-auth .gm-service-auth__send {
    font-family: inherit;
}

.ix-auth .gm-service-auth__email,
.bc-auth .gm-service-auth__email {
    background: rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.12);
    color: #e8eaed;
}

.ix-auth .gm-service-auth__email:focus,
.bc-auth .gm-service-auth__email:focus {
    border-color: #4ade80;
}

.ix-auth .gm-service-auth__label,
.bc-auth .gm-service-auth__label {
    color: #e8eaed;
}

.ix-auth .gm-service-auth,
.bc-auth .gm-service-auth {
    background: rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.1);
}

/* ── ShenGix status easter egg ── */
.gg-app--shengix {
    background: #f8f9fa;
    min-height: 100%;
    padding: 32px 20px 48px;
}

.gg-shengix {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

.gg-shengix__head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 28px;
}

.gg-shengix__avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4285f4, #34a853);
    color: #fff;
    font-weight: 800;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.35);
}

.gg-shengix__name {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    text-align: left;
    line-height: 1.1;
}

.gg-shengix__name-shimmer {
    display: inline-block;
    background: linear-gradient(
        110deg,
        #ea4335 0%,
        #fbbc04 18%,
        #34a853 36%,
        #4285f4 54%,
        #a142f4 72%,
        #ea4335 100%
    );
    background-size: 250% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gg-shengix-shimmer 5s linear infinite;
    filter: drop-shadow(0 0 12px rgba(66, 133, 244, 0.15));
}

.gg-shengix__name-shimmer--sm {
    font-size: inherit;
    font-weight: 600;
}

@keyframes gg-shengix-shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 250% center; }
}

.gg-shengix__role {
    margin: 4px 0 0;
    font-size: 13px;
    color: #5f6368;
    text-align: left;
}

.gg-shengix__question {
    font-size: 15px;
    color: #70757a;
    margin: 0 0 16px;
}

.gg-shengix__badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    border-radius: 999px;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    animation: gg-shengix-pulse 2.5s ease-in-out infinite;
}

@keyframes gg-shengix-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.gg-shengix__badge-icon {
    font-size: 28px;
    line-height: 1;
}

.gg-shengix__badge--sleep { background: #e8eaf6; color: #3949ab; border: 2px solid #9fa8da; }
.gg-shengix__badge--bugs { background: #fce4ec; color: #c62828; border: 2px solid #ef9a9a; }
.gg-shengix__badge--features { background: #fff8e1; color: #f57f17; border: 2px solid #ffe082; }
.gg-shengix__badge--smoke { background: #eceff1; color: #455a64; border: 2px solid #b0bec5; }
.gg-shengix__badge--docs { background: #e3f2fd; color: #1565c0; border: 2px solid #90caf9; }
.gg-shengix__badge--play { background: #e8f5e9; color: #2e7d32; border: 2px solid #a5d6a7; }
.gg-shengix__badge--site { background: #f3e5f5; color: #6a1b9a; border: 2px solid #ce93d8; }

.gg-shengix__foot {
    margin-top: 32px;
    font-size: 11px;
    color: #9aa0a6;
    font-style: italic;
}

@media (max-width: 720px) {
    .gg-phasebook-layout {
        grid-template-columns: 1fr;
    }
    .gg-phasebook-sidebar { display: none; }
    .gm-sidebar { display: none; }
    .gm-search { display: none; }
    .gm-row {
        grid-template-columns: auto auto 1fr auto;
    }
    .gm-row__content { display: none; }
    .gm-read__body { padding-left: 24px; }
    .gm-auth__card { padding: 32px 24px; }
}

/* Popular queries (home) */
.gg-popular {
    margin-top: 28px;
    max-width: 584px;
    width: 100%;
    text-align: center;
}

.gg-popular__label {
    display: block;
    font-size: 12px;
    color: #5f6368;
    margin-bottom: 10px;
}

.gg-popular__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.gg-popular-chip {
    border: 1px solid #dadce0;
    background: #f8f9fa;
    color: #3c4043;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 16px;
    cursor: pointer;
    font-family: inherit;
}

.gg-popular-chip:hover {
    background: #e8f0fe;
    border-color: #d2e3fc;
    color: #1967d2;
}

/* News & portal site layouts (static, lightweight) */
.gg-site {
    max-width: 720px;
    margin: 0 auto;
    padding: 24px 20px 40px;
}

.gg-site-head {
    border-bottom: 3px solid var(--gg-site-accent, #1a73e8);
    margin-bottom: 24px;
    padding-bottom: 12px;
}

.gg-site-head__inner {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}

.gg-site-head__logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--gg-site-accent, #1a73e8);
    letter-spacing: -0.02em;
}

.gg-site-head__cat {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #5f6368;
}

.gg-site-article__title {
    font-size: 28px;
    font-weight: 400;
    line-height: 1.25;
    color: #202124;
    margin: 0 0 8px;
}

.gg-site-article__meta {
    font-size: 13px;
    color: #5f6368;
    margin-bottom: 16px;
}

.gg-site-article__lead {
    font-size: 17px;
    line-height: 1.5;
    color: #3c4043;
    margin: 0 0 20px;
    font-weight: 500;
}

.gg-site-article__body {
    font-size: 15px;
    line-height: 1.65;
    color: #3c4043;
}

.gg-site-article__body p {
    margin: 0 0 14px;
}

.gg-news-related {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid #ebebeb;
}

.gg-news-related__label {
    display: block;
    font-size: 12px;
    color: #5f6368;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.gg-news-related__item {
    display: block;
    color: #1a73e8;
    font-size: 14px;
    text-decoration: none;
    padding: 6px 0;
    cursor: pointer;
}

.gg-news-related__item:hover {
    text-decoration: underline;
}

.gg-portal-head {
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 16px;
    margin-bottom: 20px;
}

.gg-portal-head__logo {
    font-size: 24px;
    font-weight: 500;
    color: #4285f4;
}

.gg-portal-hero h1 {
    font-size: 32px;
    font-weight: 400;
    margin: 0 0 8px;
    color: #202124;
}

.gg-portal-hero p {
    font-size: 16px;
    color: #5f6368;
    margin: 0 0 20px;
}

.gg-portal-body {
    font-size: 15px;
    line-height: 1.6;
    color: #3c4043;
    margin-bottom: 24px;
}

.gg-portal-body p {
    margin: 0 0 12px;
}

.gg-portal-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gg-portal-link {
    display: block;
    padding: 12px 14px;
    border: 1px solid #dadce0;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    background: #fff;
}

.gg-portal-link:hover {
    background: #f8f9fa;
    border-color: #4285f4;
}

.gg-portal-link__title {
    display: block;
    color: #1a73e8;
    font-size: 15px;
    font-weight: 500;
}

.gg-portal-link__desc {
    display: block;
    font-size: 13px;
    color: #5f6368;
    margin-top: 2px;
}

/* Darknot Index / onion clearnet cards */
.gg-site--portal-darknot .gg-portal-head {
    background: linear-gradient(90deg, #1a1f2e, #252b3d);
    border-bottom: 1px solid #3d4660;
}

.gg-site--portal-darknot .gg-portal-head__logo {
    color: #8ab4f8;
}

.gg-site--portal-darknot .gg-portal-hero {
    background: linear-gradient(180deg, rgba(41, 98, 255, 0.08), transparent);
    border-bottom: 1px solid #e8eaed;
}

.gg-site--portal-darknot .gg-portal-hero h1 {
    font-size: 26px;
}

.gg-site--portal-darknot .gg-portal-body code {
    font-family: Consolas, monospace;
    font-size: 12px;
    background: #f1f3f4;
    padding: 2px 6px;
    border-radius: 3px;
    color: #7c3aed;
}

.gg-site--portal-darknot .gg-portal-link {
    border-left: 3px solid #2962ff;
}

/* Darknot Index — GooMail registration gate */
.gg-darknot-gate__form-wrap {
    max-width: 520px;
    margin: 0 auto 32px;
    padding: 0 20px 24px;
}

.gg-darknot-gate__title {
    margin: 0 0 14px;
    font-size: 18px;
    font-weight: 500;
    color: #202124;
}

.gg-darknot-gate__form .gm-service-auth {
    margin-bottom: 16px;
}

.gg-darknot-gate__account {
    font-size: 13px;
    color: #5f6368;
}

.gg-darknot-gate__account b {
    color: #1a73e8;
}

.gg-darknot-gate__error {
    margin: 0 0 12px;
    padding: 10px 12px;
    border-radius: 4px;
    background: #fce8e6;
    color: #c5221f;
    font-size: 13px;
}

.gg-darknot-gate__submit {
    width: 100%;
    margin-top: 4px;
}

.gg-darknot-gate__foot {
    margin: 14px 0 0;
    font-size: 12px;
    color: #5f6368;
    text-align: center;
}

.gg-darknot-gate__inline-link {
    appearance: none;
    -webkit-appearance: none;
    border: none;
    background: none;
    padding: 0;
    color: #1a73e8;
    font-size: inherit;
    cursor: pointer;
    text-decoration: underline;
}

.gg-darknot-gate .gm-service-auth__send {
    background: #2962ff;
}

.gg-darknot-gate .gm-service-auth__send:hover {
    background: #1e53e5;
}

.gg-banner--ok {
    background: #e6f4ea;
    border: 1px solid #ceead6;
    color: #137333;
    padding: 10px 12px;
    border-radius: 4px;
    font-size: 13px;
    margin-bottom: 12px;
}

/* Phishing / fake onion mirrors */
.gg-phish-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 14px;
    padding: 8px 14px;
    background: #fce8e6;
    border-bottom: 1px solid #f5c6c2;
    font-size: 11px;
}

.gg-phish-bar__warn {
    color: #c5221f;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.gg-phish-bar__host {
    color: #b31412;
    font-family: Consolas, monospace;
}

.gg-phish-bar__onion {
    color: #5f6368;
    margin-left: auto;
}

.gg-site--phish .gg-portal-head--phish {
    background: linear-gradient(90deg, #3d1a1a, #2a1515);
}

.gg-site--phish .gg-portal-head__logo {
    color: #f28b82;
}

.gg-portal-hero--phish {
    background: linear-gradient(180deg, rgba(197, 34, 31, 0.06), transparent);
}

.gg-phish-fake-trust {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #188038;
    margin-bottom: 10px;
    padding: 4px 10px;
    background: #e6f4ea;
    border-radius: 4px;
}

.gg-phish-lure {
    color: #3c4043;
    margin-bottom: 16px;
}

.gg-phish-block {
    background: #f8f9fa;
    border: 1px solid #dadce0;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
}

.gg-phish-block h3 {
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 500;
}

.gg-phish-block--download {
    border-color: #fdd663;
    background: #fef7e0;
}

.gg-phish-dl-btn {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    width: 100%;
    margin-top: 10px;
    padding: 12px 14px;
    border: 1px solid #f9ab00;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    text-align: left;
    transition: background 0.15s, border-color 0.15s;
}

.gg-phish-dl-btn:hover {
    background: #fffbf0;
    border-color: #e37400;
}

.gg-phish-dl-btn__icon {
    font-size: 18px;
}

.gg-phish-dl-btn__text {
    font-size: 14px;
    font-weight: 600;
    color: #202124;
}

.gg-phish-dl-btn__meta {
    font-size: 11px;
    color: #5f6368;
}

.gg-phish-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.gg-phish-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gg-phish-field span {
    font-size: 12px;
    color: #5f6368;
}

.gg-phish-field__req {
    color: #c5221f;
    font-weight: 700;
}

.gg-phish-field input {
    padding: 10px 12px;
    border: 1px solid #dadce0;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
}

.gg-phish-field input:focus {
    border-color: #1a73e8;
}

.gg-phish-error {
    padding: 8px 10px;
    background: #fce8e6;
    color: #c5221f;
    border-radius: 4px;
    font-size: 12px;
}

.gg-phish-submit {
    margin-top: 4px;
}

.gg-phish-fineprint {
    font-size: 10px;
    color: #9aa0a6;
    margin-top: 8px;
}

.gg-phish-success {
    text-align: center;
    padding: 20px 10px;
}

.gg-phish-success__icon {
    font-size: 36px;
    color: #188038;
    margin-bottom: 8px;
}

.gg-phish-success h3 {
    margin: 0 0 6px;
}

.gg-phish-success__sub {
    font-size: 12px;
    color: #5f6368;
}

/* Phish recovery quest — Solo Leveling neon UI */
.gg-phish-recovery-notify {
    --sl-gold: #ffc857;
    --sl-gold-rgb: 255, 200, 87;
    --sl-cyan: #4ee6ff;
    --sl-cyan-rgb: 78, 230, 255;
    --sl-violet: #8b6cff;
    --sl-pink: #ff4e91;
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 200010;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: min(400px, calc(100vw - 48px));
    padding: 0;
    border: 1px solid rgba(var(--sl-gold-rgb), .55);
    background: transparent;
    color: #edf4f6;
    font-family: 'JetBrains Mono', monospace;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    isolation: isolate;
    box-shadow:
        0 0 0 1px rgba(var(--sl-cyan-rgb), .06) inset,
        0 20px 56px rgba(0, 0, 0, .72),
        0 0 32px rgba(var(--sl-gold-rgb), .16),
        0 0 80px rgba(var(--sl-cyan-rgb), .08);
    animation: ggPhishRecoveryNotifyIn .65s cubic-bezier(.22, .61, .36, 1) both, ggPhishRecoveryNeonPulse 3s ease-in-out infinite;
    transition: transform .28s, border-color .28s, box-shadow .28s;
}

.gg-phish-recovery-notify--active {
    border-color: rgba(var(--sl-cyan-rgb), .58);
    animation: ggPhishRecoveryNotifyIn .65s cubic-bezier(.22, .61, .36, 1) both, ggPhishRecoveryNeonPulseActive 3s ease-in-out infinite;
}

.gg-phish-recovery-notify:hover {
    transform: translateY(-4px) scale(1.01);
    border-color: var(--sl-gold);
    box-shadow:
        0 0 0 1px rgba(var(--sl-cyan-rgb), .18) inset,
        0 28px 64px rgba(0, 0, 0, .78),
        0 0 48px rgba(var(--sl-gold-rgb), .32),
        0 0 96px rgba(var(--sl-cyan-rgb), .16);
}

.gg-phish-recovery-notify--active:hover {
    border-color: var(--sl-cyan);
}

.gg-phish-recovery-notify__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 120% 80% at 100% 0%, rgba(var(--sl-cyan-rgb), .14) 0%, transparent 55%),
        radial-gradient(ellipse 90% 70% at 0% 100%, rgba(var(--sl-violet), .1) 0%, transparent 50%),
        linear-gradient(165deg, rgba(10, 14, 22, .99) 0%, rgba(4, 6, 10, .995) 100%);
}

.gg-phish-recovery-notify__beam {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 0%, rgba(var(--sl-cyan-rgb), .07) 48%, transparent 100%);
    background-size: 100% 220%;
    animation: ggPhishRecoveryBeam 4.2s linear infinite;
    opacity: .55;
    mix-blend-mode: screen;
}

.gg-phish-recovery-notify__accent {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    z-index: 2;
    background: linear-gradient(180deg, var(--sl-cyan), var(--sl-gold) 45%, var(--sl-pink) 100%);
    box-shadow: 0 0 16px rgba(var(--sl-cyan-rgb), .55);
}

.gg-phish-recovery-notify--active .gg-phish-recovery-notify__accent {
    background: linear-gradient(180deg, #5dff9a, var(--sl-cyan) 50%, var(--sl-gold));
}

.gg-phish-recovery-notify__corner {
    position: absolute;
    width: 16px;
    height: 16px;
    pointer-events: none;
    z-index: 3;
}

.gg-phish-recovery-notify__corner--tl {
    top: 7px;
    left: 7px;
    border-top: 2px solid rgba(var(--sl-cyan-rgb), .9);
    border-left: 2px solid rgba(var(--sl-cyan-rgb), .9);
    box-shadow: -2px -2px 12px rgba(var(--sl-cyan-rgb), .25);
}

.gg-phish-recovery-notify__corner--tr {
    top: 7px;
    right: 7px;
    border-top: 2px solid rgba(var(--sl-gold-rgb), .9);
    border-right: 2px solid rgba(var(--sl-gold-rgb), .9);
    box-shadow: 2px -2px 12px rgba(var(--sl-gold-rgb), .25);
}

.gg-phish-recovery-notify__corner--bl {
    bottom: 7px;
    left: 7px;
    border-bottom: 2px solid rgba(var(--sl-gold-rgb), .6);
    border-left: 2px solid rgba(var(--sl-gold-rgb), .6);
}

.gg-phish-recovery-notify__corner--br {
    bottom: 7px;
    right: 7px;
    border-bottom: 2px solid rgba(var(--sl-cyan-rgb), .6);
    border-right: 2px solid rgba(var(--sl-cyan-rgb), .6);
}

.gg-phish-recovery-notify__scan {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: repeating-linear-gradient(
        0deg,
        rgba(var(--sl-cyan-rgb), .04) 0,
        rgba(var(--sl-cyan-rgb), .04) 1px,
        transparent 1px,
        transparent 4px
    );
    mix-blend-mode: screen;
    opacity: .35;
}

.gg-phish-recovery-notify__top,
.gg-phish-recovery-notify__main,
.gg-phish-recovery-notify__footer {
    position: relative;
    z-index: 4;
}

.gg-phish-recovery-notify__top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 16px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    background: rgba(0, 0, 0, .28);
}

.gg-phish-recovery-notify__status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 0;
    flex: 1;
}

.gg-phish-recovery-notify__pulse {
    width: 7px;
    height: 7px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--sl-pink);
    box-shadow: 0 0 14px rgba(255, 78, 145, .85);
    animation: ggPhishRecoveryDotPulse 1.6s ease-in-out infinite;
}

.gg-phish-recovery-notify--active .gg-phish-recovery-notify__pulse {
    background: var(--sl-cyan);
    box-shadow: 0 0 16px rgba(var(--sl-cyan-rgb), .9);
}

.gg-phish-recovery-notify__kicker {
    font: 700 9px/1 'Orbitron', sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--sl-cyan);
    text-shadow: 0 0 12px rgba(var(--sl-cyan-rgb), .4);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gg-phish-recovery-notify--active .gg-phish-recovery-notify__kicker {
    color: #5dff9a;
    text-shadow: 0 0 12px rgba(93, 255, 154, .4);
}

.gg-phish-recovery-notify__tag {
    position: absolute;
    top: 10px;
    right: 12px;
    flex-shrink: 0;
    padding: 3px 8px;
    font: 700 8px/1 'Orbitron', sans-serif;
    letter-spacing: 1.2px;
    color: #fff;
    background: linear-gradient(135deg, rgba(var(--sl-pink), .95), rgba(255, 73, 103, .85));
    box-shadow: 0 0 14px rgba(255, 78, 145, .45);
    animation: ggPhishRecoveryTagPulse 2.2s ease-in-out infinite;
}

.gg-phish-recovery-notify--active .gg-phish-recovery-notify__tag {
    background: linear-gradient(135deg, rgba(var(--sl-cyan-rgb), .95), rgba(93, 255, 154, .75));
    box-shadow: 0 0 14px rgba(var(--sl-cyan-rgb), .4);
}

.gg-phish-recovery-notify__main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 20px 14px;
    text-align: center;
}

.gg-phish-recovery-notify__icon-wrap {
    position: relative;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
}

.gg-phish-recovery-notify__icon-ring {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(var(--sl-gold-rgb), .4);
    background: rgba(var(--sl-gold-rgb), .05);
    transform: rotate(45deg);
    box-shadow: 0 0 20px rgba(var(--sl-gold-rgb), .15);
    animation: ggPhishRecoveryRingSpin 8s linear infinite;
}

.gg-phish-recovery-notify--active .gg-phish-recovery-notify__icon-ring {
    border-color: rgba(var(--sl-cyan-rgb), .45);
    background: rgba(var(--sl-cyan-rgb), .07);
    box-shadow: 0 0 22px rgba(var(--sl-cyan-rgb), .22);
}

.gg-phish-recovery-notify__icon {
    position: relative;
    z-index: 1;
    font-size: 20px;
    line-height: 1;
    color: var(--sl-gold);
    text-shadow: 0 0 16px rgba(var(--sl-gold-rgb), .65);
}

.gg-phish-recovery-notify--active .gg-phish-recovery-notify__icon {
    color: var(--sl-cyan);
    text-shadow: 0 0 18px rgba(var(--sl-cyan-rgb), .7);
}

.gg-phish-recovery-notify__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 100%;
    max-width: 320px;
}

.gg-phish-recovery-notify__title {
    font: 700 14px/1.35 'Orbitron', sans-serif;
    letter-spacing: .35px;
    color: #fff;
    text-shadow: 0 0 16px rgba(var(--sl-gold-rgb), .25);
    text-wrap: balance;
}

.gg-phish-recovery-notify--active .gg-phish-recovery-notify__title {
    text-shadow: 0 0 14px rgba(var(--sl-cyan-rgb), .22);
}

.gg-phish-recovery-notify__sub {
    font-size: 11px;
    line-height: 1.5;
    color: #8a939e;
    letter-spacing: .15px;
    text-wrap: balance;
}

.gg-phish-recovery-notify__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 16px 12px;
    border-top: 1px dashed rgba(255, 255, 255, .07);
    background: rgba(0, 0, 0, .22);
}

.gg-phish-recovery-notify__channel {
    font-size: 9px;
    letter-spacing: .9px;
    color: #5c6670;
    text-transform: uppercase;
    text-align: center;
}

.gg-phish-recovery-notify__open {
    font: 700 10px/1 'Orbitron', sans-serif;
    letter-spacing: 1.6px;
    color: var(--sl-gold);
    text-shadow: 0 0 10px rgba(var(--sl-gold-rgb), .35);
    transition: color .25s, text-shadow .25s;
}

.gg-phish-recovery-notify__open span {
    display: inline-block;
    transition: transform .25s;
}

.gg-phish-recovery-notify:hover .gg-phish-recovery-notify__open {
    color: var(--sl-cyan);
    text-shadow: 0 0 12px rgba(var(--sl-cyan-rgb), .45);
}

.gg-phish-recovery-notify:hover .gg-phish-recovery-notify__open span {
    transform: translateX(3px);
}

.gg-phish-recovery-notify__progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    z-index: 5;
    background: rgba(255, 255, 255, .06);
    overflow: hidden;
}

.gg-phish-recovery-notify__progress i {
    display: block;
    height: 100%;
    width: 35%;
    background: linear-gradient(90deg, var(--sl-cyan), var(--sl-gold));
    box-shadow: 0 0 12px rgba(var(--sl-cyan-rgb), .55);
    animation: ggPhishRecoveryProgress 2.4s ease-in-out infinite;
}

@keyframes ggPhishRecoveryBeam {
    0% { background-position: 0 -120%; }
    100% { background-position: 0 220%; }
}

@keyframes ggPhishRecoveryRingSpin {
    from { transform: rotate(45deg); }
    to { transform: rotate(405deg); }
}

@keyframes ggPhishRecoveryTagPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .88; transform: scale(1.04); }
}

@keyframes ggPhishRecoveryProgress {
    0% { transform: translateX(-120%); }
    100% { transform: translateX(380%); }
}

@keyframes ggPhishRecoveryNotifyIn {
    from {
        opacity: 0;
        transform: translateX(32px) skewX(-1.2deg);
        filter: blur(6px) brightness(1.25);
    }
    55% {
        opacity: .88;
        transform: translateX(-3px) skewX(.5deg);
        filter: blur(0) brightness(1.1);
    }
    to {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0) brightness(1);
    }
}

@keyframes ggPhishRecoveryNeonPulse {
    0%, 100% {
        box-shadow:
            0 0 0 1px rgba(var(--sl-cyan-rgb), .06) inset,
            0 20px 56px rgba(0, 0, 0, .72),
            0 0 28px rgba(var(--sl-gold-rgb), .14),
            0 0 64px rgba(var(--sl-cyan-rgb), .06);
    }
    50% {
        box-shadow:
            0 0 0 1px rgba(var(--sl-cyan-rgb), .12) inset,
            0 20px 56px rgba(0, 0, 0, .72),
            0 0 44px rgba(var(--sl-gold-rgb), .26),
            0 0 88px rgba(var(--sl-cyan-rgb), .12);
    }
}

@keyframes ggPhishRecoveryNeonPulseActive {
    0%, 100% {
        box-shadow:
            0 0 0 1px rgba(var(--sl-gold-rgb), .08) inset,
            0 20px 56px rgba(0, 0, 0, .72),
            0 0 32px rgba(var(--sl-cyan-rgb), .18),
            0 0 72px rgba(var(--sl-gold-rgb), .08);
    }
    50% {
        box-shadow:
            0 0 0 1px rgba(var(--sl-gold-rgb), .14) inset,
            0 20px 56px rgba(0, 0, 0, .72),
            0 0 48px rgba(var(--sl-cyan-rgb), .3),
            0 0 96px rgba(var(--sl-gold-rgb), .14);
    }
}

@keyframes ggPhishRecoveryDotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: .7; }
}

/* Dev-кнопка теста уведомления (рабочий стол) */
.gg-phish-recovery-dev-btn {
    --sl-gold: #ffc857;
    --sl-gold-rgb: 255, 200, 87;
    --sl-cyan: #4ee6ff;
    --sl-cyan-rgb: 78, 230, 255;
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 200005;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid rgba(var(--sl-gold-rgb), .45);
    background: rgba(7, 9, 13, .92);
    color: var(--sl-gold);
    font: 700 10px/1 'Orbitron', sans-serif;
    letter-spacing: .8px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 0 18px rgba(var(--sl-gold-rgb), .12);
    transition: .22s;
}

.gg-phish-recovery-dev-btn:hover {
    color: #fff;
    border-color: var(--sl-cyan);
    background: rgba(var(--sl-cyan-rgb), .08);
    box-shadow: 0 0 24px rgba(var(--sl-cyan-rgb), .2);
}

.gg-phish-recovery-dev-btn__icon {
    font-size: 14px;
    text-shadow: 0 0 10px rgba(var(--sl-gold-rgb), .45);
}

.gg-phish-recovery-overlay {
    --sl-gold: #ffc857;
    --sl-gold-rgb: 255, 200, 87;
    --sl-cyan: #4ee6ff;
    --sl-cyan-rgb: 78, 230, 255;
    --sl-pink: #ff4e91;
    position: fixed;
    inset: 0;
    z-index: 200020;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background:
        radial-gradient(circle at 50% 20%, rgba(var(--sl-cyan-rgb), .12), transparent 42%),
        radial-gradient(circle at 50% 80%, rgba(139, 108, 255, .08), transparent 38%),
        rgba(2, 4, 8, .82);
    backdrop-filter: blur(8px);
}

.gg-phish-recovery-dialog {
    position: relative;
    width: min(500px, 100%);
    overflow: hidden;
    border: 1px solid rgba(var(--sl-gold-rgb), .42);
    background:
        linear-gradient(165deg, rgba(12, 16, 24, .98) 0%, rgba(5, 8, 12, .99) 55%, rgba(8, 12, 20, .98) 100%);
    color: #edf4f6;
    padding: 0 0 20px;
    box-shadow:
        0 0 0 1px rgba(var(--sl-cyan-rgb), .08) inset,
        0 30px 90px rgba(0, 0, 0, .75),
        0 0 60px rgba(var(--sl-cyan-rgb), .1),
        0 0 120px rgba(var(--sl-gold-rgb), .08);
    font-family: 'JetBrains Mono', monospace;
    animation: ggPhishRecoveryDialogIn .65s cubic-bezier(.22, .61, .36, 1) both;
}

.gg-phish-recovery-dialog__corner {
    position: absolute;
    width: 18px;
    height: 18px;
    pointer-events: none;
    z-index: 3;
}

.gg-phish-recovery-dialog__corner--tl {
    top: 8px;
    left: 8px;
    border-top: 2px solid rgba(var(--sl-cyan-rgb), .75);
    border-left: 2px solid rgba(var(--sl-cyan-rgb), .75);
}

.gg-phish-recovery-dialog__corner--tr {
    top: 8px;
    right: 8px;
    border-top: 2px solid rgba(var(--sl-gold-rgb), .75);
    border-right: 2px solid rgba(var(--sl-gold-rgb), .75);
}

.gg-phish-recovery-dialog__corner--bl {
    bottom: 8px;
    left: 8px;
    border-bottom: 2px solid rgba(var(--sl-gold-rgb), .55);
    border-left: 2px solid rgba(var(--sl-gold-rgb), .55);
}

.gg-phish-recovery-dialog__corner--br {
    bottom: 8px;
    right: 8px;
    border-bottom: 2px solid rgba(var(--sl-cyan-rgb), .55);
    border-right: 2px solid rgba(var(--sl-cyan-rgb), .55);
}

.gg-phish-recovery-dialog__scan {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(180deg, transparent 0%, rgba(var(--sl-cyan-rgb), .05) 48%, transparent 100%);
    background-size: 100% 220%;
    animation: ggPhishRecoveryBeam 4.5s linear infinite;
    opacity: .45;
    mix-blend-mode: screen;
}

.gg-phish-recovery-dialog__system {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(var(--sl-gold-rgb), .18);
    background: rgba(5, 8, 11, .78);
}

.gg-phish-recovery-dialog__pulse {
    width: 8px;
    height: 8px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--sl-cyan);
    box-shadow: 0 0 14px rgba(var(--sl-cyan-rgb), .75);
    animation: ggPhishRecoveryDotPulse 1.8s ease-in-out infinite;
}

.gg-phish-recovery-dialog__system-label {
    flex: 1;
    font: 700 10px/1 'Orbitron', sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(var(--sl-cyan-rgb), .92);
    text-shadow: 0 0 16px rgba(var(--sl-cyan-rgb), .25);
}

.gg-phish-recovery-dialog__close {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, .09);
    background: transparent;
    color: #77818d;
    font-size: 18px;
    cursor: pointer;
    line-height: 1;
    transition: .2s;
}

.gg-phish-recovery-dialog__close:hover {
    color: #fff;
    border-color: rgba(var(--sl-gold-rgb), .45);
}

.gg-phish-recovery-dialog__head {
    position: relative;
    z-index: 2;
    padding: 18px 22px 0;
    text-align: center;
}

.gg-phish-recovery-dialog__badge {
    display: inline-block;
    font: 700 10px/1 'Orbitron', sans-serif;
    letter-spacing: 1.8px;
    color: var(--sl-cyan);
    text-shadow: 0 0 10px rgba(var(--sl-cyan-rgb), .35);
    margin-bottom: 8px;
}

.gg-phish-recovery-dialog__head h2 {
    margin: 0;
    font: 700 17px/1.3 'Orbitron', sans-serif;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--sl-gold);
    text-shadow: 0 0 16px rgba(var(--sl-gold-rgb), .22);
    text-align: center;
    text-wrap: balance;
}

.gg-phish-recovery-dialog__divider {
    position: relative;
    z-index: 2;
    height: 1px;
    margin: 14px 22px 0;
    background: linear-gradient(90deg, transparent, rgba(var(--sl-gold-rgb), .45), rgba(var(--sl-cyan-rgb), .45), transparent);
    box-shadow: 0 0 12px rgba(var(--sl-cyan-rgb), .15);
}

.gg-phish-recovery-panel {
    position: relative;
    z-index: 2;
    border: 1px solid rgba(var(--sl-cyan-rgb), .22);
    background: rgba(var(--sl-cyan-rgb), .04);
    padding: 20px 22px;
    margin: 14px 22px 0;
    font-size: 13px;
    line-height: 1.65;
    text-align: center;
    animation: ggPhishRecoveryFadeIn .45s ease;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}

.gg-phish-recovery-panel--intro {
    border-color: rgba(var(--sl-cyan-rgb), .28);
    border-top: 2px solid rgba(var(--sl-cyan-rgb), .55);
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(var(--sl-cyan-rgb), .1), transparent 70%),
        rgba(var(--sl-cyan-rgb), .04);
}

.gg-phish-recovery-panel__glyph {
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    display: grid;
    place-items: center;
    font-size: 24px;
    border: 1px solid rgba(var(--sl-cyan-rgb), .35);
    background: rgba(var(--sl-cyan-rgb), .08);
    box-shadow: 0 0 24px rgba(var(--sl-cyan-rgb), .12);
}

.gg-phish-recovery-panel__lead {
    margin: 0 0 12px;
    font: 700 14px/1.45 'Orbitron', sans-serif;
    letter-spacing: .3px;
    color: #edf4f6;
    text-wrap: balance;
}

.gg-phish-recovery-panel__wait {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.gg-phish-recovery-panel__wait-bar {
    display: block;
    width: min(220px, 100%);
    height: 3px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    overflow: hidden;
}

.gg-phish-recovery-panel__wait-bar i {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--sl-cyan), var(--sl-gold));
    box-shadow: 0 0 12px rgba(var(--sl-cyan-rgb), .45);
    animation: ggPhishRecoveryWaitFill 3s linear forwards;
}

.gg-phish-recovery-panel__wait.is-done .gg-phish-recovery-panel__wait-bar i {
    width: 100%;
    animation: none;
}

.gg-phish-recovery-panel__wait-label {
    font-size: 10px;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: #6a7580;
}

.gg-phish-recovery-panel__wait.is-done .gg-phish-recovery-panel__wait-label {
    color: #5dff9a;
}

.gg-phish-recovery-panel.is-hidden {
    display: none;
}

.gg-phish-recovery-panel--confirm {
    border-color: rgba(var(--sl-gold-rgb), .35);
    border-top: 2px solid var(--sl-gold);
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(var(--sl-gold-rgb), .12), transparent 70%),
        rgba(var(--sl-gold-rgb), .06);
}

.gg-phish-recovery-panel--confirm.is-revealed {
    animation: ggPhishRecoveryConfirmIn .55s cubic-bezier(.22, .61, .36, 1) both;
}

.gg-phish-recovery-panel--decline {
    border-color: rgba(255, 73, 103, .35);
    border-top: 2px solid #ff4967;
    background: rgba(255, 73, 103, .06);
}

.gg-phish-recovery-panel--recover,
.gg-phish-recovery-panel--done {
    border-color: rgba(93, 255, 154, .28);
    border-top: 2px solid #5dff9a;
    background: rgba(93, 255, 154, .05);
}

.gg-phish-recovery-panel__hint {
    margin: 10px 0 14px;
    font-size: 12px;
    color: #9aa5b1;
}

.gg-phish-recovery-panel__hint strong {
    color: var(--sl-cyan);
    text-shadow: 0 0 8px rgba(var(--sl-cyan-rgb), .25);
}

.gg-phish-recovery-panel__sum {
    margin: 8px 0 0;
    font: 700 22px/1 'Orbitron', sans-serif;
    color: #5dff9a;
    text-shadow: 0 0 16px rgba(93, 255, 154, .35);
}

.gg-phish-recovery-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.gg-phish-recovery-actions--center {
    justify-content: center;
}

.gg-phish-recovery-btn {
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .04);
    color: #edf4f6;
    padding: 10px 18px;
    font: 700 11px/1 'Orbitron', sans-serif;
    letter-spacing: .6px;
    text-transform: uppercase;
    cursor: pointer;
    transition: .22s;
}

.gg-phish-recovery-btn:hover {
    background: rgba(255, 255, 255, .08);
}

.gg-phish-recovery-btn--primary {
    border-color: rgba(var(--sl-cyan-rgb), .55);
    background: rgba(var(--sl-cyan-rgb), .1);
    color: #fff;
    text-shadow: 0 0 10px rgba(var(--sl-cyan-rgb), .25);
}

.gg-phish-recovery-btn--primary:hover {
    border-color: var(--sl-cyan);
    background: rgba(var(--sl-cyan-rgb), .18);
    box-shadow: 0 0 22px rgba(var(--sl-cyan-rgb), .22);
}

.gg-phish-recovery-btn--ghost {
    border-color: rgba(255, 73, 103, .45);
    color: #ff6b85;
}

.gg-phish-recovery-notify--argus {
    border-color: rgba(255, 73, 103, .55);
}

.gg-phish-recovery-notify--argus .gg-phish-recovery-notify__accent {
    background: linear-gradient(180deg, #ff4967, #ffc857 50%, #4ee6ff);
}

.gg-phish-recovery-notify--argus .gg-phish-recovery-notify__tag {
    background: linear-gradient(135deg, rgba(255, 73, 103, .95), rgba(255, 200, 87, .75));
    box-shadow: 0 0 14px rgba(255, 73, 103, .45);
}

.gg-phish-recovery-panel--pending {
    border-color: rgba(255, 200, 87, .28);
    border-left-color: var(--sl-gold);
    background: rgba(255, 200, 87, .05);
}

.gg-phish-recovery-panel--argus {
    border-color: rgba(255, 73, 103, .32);
    border-left-color: #ff4967;
    background: rgba(255, 73, 103, .06);
}

.gg-phish-recovery-pending {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    font-size: 11px;
    color: #9aa5b1;
}

.gg-phish-recovery-pending__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sl-gold);
    box-shadow: 0 0 12px rgba(255, 200, 87, .55);
    animation: ggPhishRecoveryDotPulse 1.4s ease-in-out infinite;
}

.gg-phish-recovery-btn--argus {
    border-color: rgba(255, 73, 103, .55);
    background: rgba(255, 73, 103, .12);
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 73, 103, .25);
}

.gg-phish-recovery-btn--argus:hover {
    border-color: #ff4967;
    background: rgba(255, 73, 103, .22);
    box-shadow: 0 0 22px rgba(255, 73, 103, .25);
}

.gg-phish-argus-overlay {
    background:
        radial-gradient(circle at 50% 18%, rgba(255, 73, 103, .16), transparent 44%),
        radial-gradient(circle at 50% 82%, rgba(255, 200, 87, .1), transparent 40%),
        rgba(2, 4, 8, .88);
    overflow-y: auto;
    align-items: flex-start;
    padding-top: max(16px, 2vh);
    padding-bottom: max(16px, 2vh);
}

.gg-phish-argus-overlay .gg-phish-argus-dialog {
    margin: auto;
    flex-shrink: 0;
}

.gg-phish-argus-dialog {
    --argus-red: #ff4967;
    --argus-red-rgb: 255, 73, 103;
    --argus-gold: #ffc857;
    --argus-cyan: #4ee6ff;
    position: relative;
    width: min(540px, 100%);
    overflow: hidden;
    border: 1px solid rgba(var(--argus-red-rgb), .48);
    background: linear-gradient(165deg, rgba(18, 10, 14, .98) 0%, rgba(8, 4, 6, .99) 100%);
    color: #edf4f6;
    padding-bottom: 22px;
    box-shadow:
        0 0 0 1px rgba(255, 200, 87, .08) inset,
        0 30px 90px rgba(0, 0, 0, .78),
        0 0 60px rgba(var(--argus-red-rgb), .14);
    font-family: 'JetBrains Mono', monospace;
    animation: ggPhishArgusDialogIn .7s cubic-bezier(.22, .61, .36, 1) both;
}

.gg-phish-argus-dialog.is-closing {
    animation: ggPhishArgusDialogOut .42s ease both;
}

.gg-phish-argus-dialog__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 90% 60% at 50% 0%, rgba(var(--argus-red-rgb), .12), transparent 60%),
        radial-gradient(ellipse 70% 50% at 100% 100%, rgba(255, 200, 87, .08), transparent 55%);
}

.gg-phish-argus-dialog__corner {
    position: absolute;
    width: 18px;
    height: 18px;
    pointer-events: none;
    z-index: 3;
}

.gg-phish-argus-dialog__corner--tl { top: 8px; left: 8px; border-top: 2px solid rgba(var(--argus-red-rgb), .85); border-left: 2px solid rgba(var(--argus-red-rgb), .85); }
.gg-phish-argus-dialog__corner--tr { top: 8px; right: 8px; border-top: 2px solid rgba(255, 200, 87, .85); border-right: 2px solid rgba(255, 200, 87, .85); }
.gg-phish-argus-dialog__corner--bl { bottom: 8px; left: 8px; border-bottom: 2px solid rgba(255, 200, 87, .6); border-left: 2px solid rgba(255, 200, 87, .6); }
.gg-phish-argus-dialog__corner--br { bottom: 8px; right: 8px; border-bottom: 2px solid rgba(var(--argus-red-rgb), .6); border-right: 2px solid rgba(var(--argus-red-rgb), .6); }

.gg-phish-argus-dialog__scan {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(180deg, transparent 0%, rgba(var(--argus-red-rgb), .06) 48%, transparent 100%);
    background-size: 100% 220%;
    animation: ggPhishRecoveryBeam 4.5s linear infinite;
    opacity: .45;
    mix-blend-mode: screen;
}

.gg-phish-argus-dialog__system {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(var(--argus-red-rgb), .22);
    background: rgba(20, 6, 10, .82);
}

.gg-phish-argus-dialog__pulse {
    width: 8px;
    height: 8px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--argus-red);
    box-shadow: 0 0 14px rgba(var(--argus-red-rgb), .75);
    animation: ggPhishRecoveryDotPulse 1.8s ease-in-out infinite;
}

.gg-phish-argus-dialog__system-label {
    flex: 1;
    font: 700 10px/1 'Orbitron', sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(var(--argus-red-rgb), .92);
    text-shadow: 0 0 16px rgba(var(--argus-red-rgb), .25);
}

.gg-phish-argus-dialog__close {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, .09);
    background: transparent;
    color: #77818d;
    font-size: 18px;
    cursor: pointer;
    line-height: 1;
    transition: .2s;
}

.gg-phish-argus-dialog__close:hover {
    color: #fff;
    border-color: rgba(var(--argus-red-rgb), .45);
}

.gg-phish-argus-dialog__hero {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 24px 0;
}

.gg-phish-argus-dialog__avatar-wrap {
    position: relative;
    width: 72px;
    height: 72px;
    margin-bottom: 12px;
    display: grid;
    place-items: center;
}

.gg-phish-argus-dialog__avatar-ring {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(var(--argus-red-rgb), .45);
    transform: rotate(45deg);
    box-shadow: 0 0 24px rgba(var(--argus-red-rgb), .18);
    animation: ggPhishRecoveryRingSpin 10s linear infinite;
}

.gg-phish-argus-dialog__avatar {
    position: relative;
    z-index: 1;
    font-size: 30px;
    filter: drop-shadow(0 0 12px rgba(var(--argus-red-rgb), .45));
}

.gg-phish-argus-dialog__badge {
    display: inline-block;
    font: 700 10px/1 'Orbitron', sans-serif;
    letter-spacing: 1.8px;
    color: var(--argus-red);
    text-shadow: 0 0 10px rgba(var(--argus-red-rgb), .35);
    margin-bottom: 8px;
}

.gg-phish-argus-dialog__hero h2 {
    margin: 0;
    font: 700 18px/1.3 'Orbitron', sans-serif;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--argus-gold);
    text-shadow: 0 0 16px rgba(255, 200, 87, .22);
    text-wrap: balance;
}

.gg-phish-argus-dialog__rank {
    margin: 8px 0 0;
    max-width: 360px;
    font-size: 11px;
    line-height: 1.5;
    color: #9aa5b1;
    text-wrap: balance;
}

.gg-phish-argus-dialog__live {
    display: inline-flex;
    margin-top: 10px;
    padding: 4px 10px;
    font: 700 9px/1 'Orbitron', sans-serif;
    letter-spacing: 1px;
    color: #5dff9a;
    border: 1px solid rgba(93, 255, 154, .35);
    background: rgba(93, 255, 154, .08);
    box-shadow: 0 0 14px rgba(93, 255, 154, .12);
}

.gg-phish-argus-dialog--chat {
    width: min(920px, 96vw);
    max-height: min(88vh, 680px);
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
    overflow: hidden;
}

.gg-phish-argus-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 240px 1fr;
    flex: 1 1 auto;
    min-height: 0;
    max-height: none;
    overflow: hidden;
}

.gg-phish-argus-layout > * {
    min-height: 0;
}

.gg-phish-argus-dialog--chat .gg-phish-argus-dialog__system {
    flex-shrink: 0;
    position: relative;
    z-index: 3;
}

.gg-phish-argus-case {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px 14px;
    border-right: 1px solid rgba(var(--argus-red-rgb), .18);
    background: rgba(0, 0, 0, .28);
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.gg-phish-argus-case__head {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gg-phish-argus-case__label {
    font: 700 8px/1 'Orbitron', sans-serif;
    letter-spacing: 1px;
    color: #6a7580;
    text-transform: uppercase;
}

.gg-phish-argus-case__id {
    font: 700 13px/1 'Orbitron', sans-serif;
    color: var(--argus-gold);
}

.gg-phish-argus-case__operator {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(var(--argus-red-rgb), .22);
    background: rgba(var(--argus-red-rgb), .06);
}

.gg-phish-argus-case__avatar {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    font-size: 18px;
    border: 1px solid rgba(var(--argus-red-rgb), .35);
    background: rgba(var(--argus-red-rgb), .1);
}

.gg-phish-argus-case__operator strong {
    display: block;
    font: 700 10px/1.3 'Orbitron', sans-serif;
    color: #edf4f6;
}

.gg-phish-argus-case__operator span {
    font-size: 9px;
    color: var(--argus-red);
    letter-spacing: .8px;
}

.gg-phish-argus-case__phases {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.gg-phish-argus-case__phases li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    color: #6a7580;
    transition: .25s;
}

.gg-phish-argus-case__phases li i {
    width: 8px;
    height: 8px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, .15);
    background: rgba(255, 255, 255, .04);
}

.gg-phish-argus-case__phases li.is-active {
    color: var(--argus-gold);
}

.gg-phish-argus-case__phases li.is-active i {
    border-color: var(--argus-gold);
    background: rgba(255, 200, 87, .2);
    box-shadow: 0 0 10px rgba(255, 200, 87, .35);
    animation: ggPhishRecoveryDotPulse 1.5s ease-in-out infinite;
}

.gg-phish-argus-case__phases li.is-done {
    color: #5dff9a;
}

.gg-phish-argus-case__phases li.is-done i {
    border-color: #5dff9a;
    background: rgba(93, 255, 154, .25);
}

.gg-phish-argus-case__facts {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .07);
    background: rgba(0, 0, 0, .2);
    font-size: 10px;
}

.gg-phish-argus-case__facts span {
    display: block;
    color: #6a7580;
    margin-bottom: 2px;
    font: 700 8px/1 'Orbitron', sans-serif;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.gg-phish-argus-case__facts strong {
    color: #edf4f6;
    word-break: break-all;
}

.gg-phish-argus-case__sum {
    color: #5dff9a !important;
    font: 700 12px/1 'Orbitron', sans-serif !important;
}

.gg-phish-argus-case__status {
    margin-top: auto;
    padding: 8px 10px;
    font: 700 9px/1.4 'Orbitron', sans-serif;
    letter-spacing: .6px;
    text-align: center;
    color: var(--argus-cyan);
    border: 1px solid rgba(78, 230, 255, .25);
    background: rgba(78, 230, 255, .06);
}

.gg-phish-argus-viz {
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 10px;
    border: 1px solid rgba(var(--argus-red-rgb), .2);
    background: rgba(var(--argus-red-rgb), .04);
    animation: ggPhishArgusCardIn .4s ease both;
}

.gg-phish-argus-viz.is-active {
    display: flex;
}

.gg-phish-argus-viz__title {
    font: 700 9px/1 'Orbitron', sans-serif;
    letter-spacing: 1px;
    color: var(--argus-red);
    text-align: center;
}

.gg-phish-argus-viz__map,
.gg-phish-argus-viz__transfer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    font-size: 9px;
}

.gg-phish-argus-viz__node {
    flex: 1;
    padding: 6px 4px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, .1);
    background: rgba(0, 0, 0, .25);
    word-break: break-all;
}

.gg-phish-argus-viz__node--you {
    color: var(--argus-cyan);
    border-color: rgba(78, 230, 255, .3);
}

.gg-phish-argus-viz__node--target {
    color: var(--argus-red);
    border-color: rgba(var(--argus-red-rgb), .35);
}

.gg-phish-argus-viz__line {
    position: relative;
    flex: 0 0 28px;
    height: 2px;
    background: rgba(255, 255, 255, .1);
    overflow: hidden;
}

.gg-phish-argus-viz__pulse {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, var(--argus-gold), transparent);
    animation: ggPhishArgusTracePulse 1.2s linear infinite;
}

.gg-phish-argus-viz__arrow {
    flex-shrink: 0;
    color: #5dff9a;
    font-size: 16px;
    animation: ggPhishArgusArrowPulse 1s ease-in-out infinite;
}

.gg-phish-argus-viz__wallet {
    flex: 1;
    padding: 6px 4px;
    text-align: center;
    font-size: 8px;
    border: 1px solid rgba(255, 255, 255, .1);
    word-break: break-all;
}

.gg-phish-argus-viz__wallet--from {
    color: var(--argus-red);
}

.gg-phish-argus-viz__wallet--to {
    color: #5dff9a;
}

.gg-phish-argus-viz__sum {
    text-align: center;
    font: 700 16px/1 'Orbitron', sans-serif;
    color: #5dff9a;
    text-shadow: 0 0 14px rgba(93, 255, 154, .4);
    animation: ggPhishArgusSumPop .6s ease both;
}

.gg-phish-argus-viz__bar {
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    overflow: hidden;
}

.gg-phish-argus-viz__bar i {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--argus-red), var(--argus-gold));
    animation: ggPhishArgusVerdictBar linear forwards;
}

.gg-phish-argus-viz__bar--green i {
    background: linear-gradient(90deg, #5dff9a, var(--argus-cyan));
}

.gg-phish-argus-viz__hint {
    font-size: 9px;
    text-align: center;
    color: #8a939e;
}

.gg-phish-argus-chat {
    display: flex;
    flex-direction: column;
    min-height: 0;
    min-width: 0;
    height: 100%;
    overflow: hidden;
}

.gg-phish-argus-chat__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    flex-shrink: 0;
    padding: 14px 18px 10px;
    border-bottom: 1px solid rgba(var(--argus-red-rgb), .15);
}

.gg-phish-argus-chat__head h2 {
    margin: 0;
    font: 700 14px/1.3 'Orbitron', sans-serif;
    color: var(--argus-gold);
}

.gg-phish-argus-chat__head p {
    margin: 4px 0 0;
    font-size: 10px;
    color: #9aa5b1;
    line-height: 1.45;
}

.gg-phish-argus-chat__feed {
    flex: 1 1 auto;
    min-height: 120px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    scrollbar-width: thin;
    scrollbar-color: rgba(var(--argus-red-rgb), .45) rgba(255, 255, 255, .04);
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.gg-phish-argus-msg {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    max-width: 92%;
}

.gg-phish-argus-msg--argus {
    align-self: flex-start;
}

.gg-phish-argus-msg--player {
    align-self: flex-end;
    flex-direction: row;
}

.gg-phish-argus-msg.is-entering {
    animation: ggPhishArgusMsgIn .4s cubic-bezier(.22, .61, .36, 1) both;
}

.gg-phish-argus-msg__avatar {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    font-size: 14px;
    border: 1px solid rgba(var(--argus-red-rgb), .35);
    background: rgba(var(--argus-red-rgb), .1);
}

.gg-phish-argus-msg__avatar--player {
    border-color: rgba(78, 230, 255, .35);
    background: rgba(78, 230, 255, .08);
    color: var(--argus-cyan);
    font-size: 12px;
}

.gg-phish-argus-msg__bubble {
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .03);
}

.gg-phish-argus-msg--argus .gg-phish-argus-msg__bubble {
    border-left: 2px solid var(--argus-red);
    background: rgba(var(--argus-red-rgb), .06);
}

.gg-phish-argus-msg--player .gg-phish-argus-msg__bubble {
    border-right: 2px solid var(--argus-cyan);
    background: rgba(78, 230, 255, .06);
}

.gg-phish-argus-msg__from {
    display: block;
    margin-bottom: 4px;
    font: 700 9px/1 'Orbitron', sans-serif;
    letter-spacing: .5px;
    color: #ffc857;
}

.gg-phish-argus-msg--player .gg-phish-argus-msg__from {
    color: var(--argus-cyan);
    text-align: right;
}

.gg-phish-argus-msg__text {
    font-size: 12px;
    line-height: 1.6;
    color: #ddd;
}

.gg-phish-argus-msg__time {
    display: block;
    margin-top: 6px;
    font-size: 9px;
    color: #6a7580;
    text-align: right;
}

.gg-phish-argus-highlight {
    color: var(--argus-cyan);
}

.gg-phish-argus-sum {
    color: #5dff9a;
    font: 700 14px/1 'Orbitron', sans-serif;
    text-shadow: 0 0 10px rgba(93, 255, 154, .35);
}

.gg-phish-argus-chat__typing {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    padding: 0 18px 8px;
    font-size: 10px;
    color: #8a939e;
}

.gg-phish-argus-chat__typing.is-hidden {
    display: none;
}

.gg-phish-argus-chat__typing-dots {
    display: inline-flex;
    gap: 3px;
}

.gg-phish-argus-chat__typing-dots i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--argus-red);
    animation: ggPhishArgusTypingDot 1.2s ease-in-out infinite;
}

.gg-phish-argus-chat__typing-dots i:nth-child(2) { animation-delay: .15s; }
.gg-phish-argus-chat__typing-dots i:nth-child(3) { animation-delay: .3s; }

.gg-phish-argus-chat__replies {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
    padding: 10px 18px 16px;
    border-top: 1px solid rgba(var(--argus-red-rgb), .12);
    background: rgba(0, 0, 0, .18);
    position: relative;
    z-index: 4;
}

.gg-phish-argus-chat__replies.gg-phish-argus-verdict {
    flex-direction: row;
}

.gg-phish-argus-reply {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid rgba(78, 230, 255, .28);
    background: rgba(78, 230, 255, .06);
    color: #edf4f6;
    font: 600 11px/1.4 'JetBrains Mono', monospace;
    text-align: left;
    cursor: pointer;
    transition: .2s;
    position: relative;
    z-index: 5;
    pointer-events: auto;
}

.gg-phish-argus-reply:hover {
    border-color: var(--argus-cyan);
    background: rgba(78, 230, 255, .12);
    box-shadow: 0 0 16px rgba(78, 230, 255, .15);
}

@keyframes ggPhishArgusMsgIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes ggPhishArgusTypingDot {
    0%, 80%, 100% { opacity: .35; transform: scale(.85); }
    40% { opacity: 1; transform: scale(1); }
}

@keyframes ggPhishArgusTracePulse {
    from { transform: translateX(-100%); }
    to { transform: translateX(100%); }
}

@keyframes ggPhishArgusArrowPulse {
    0%, 100% { opacity: .5; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(3px); }
}

@keyframes ggPhishArgusSumPop {
    from { opacity: 0; transform: scale(.9); }
    to { opacity: 1; transform: scale(1); }
}

@media (max-width: 720px) {
    .gg-phish-argus-layout {
        grid-template-columns: 1fr;
    }

    .gg-phish-argus-case {
        border-right: none;
        border-bottom: 1px solid rgba(var(--argus-red-rgb), .18);
        max-height: 160px;
    }

    .gg-phish-argus-chat__replies.gg-phish-argus-verdict {
        flex-direction: column;
    }

    .gg-phish-argus-dialog--chat {
        max-height: min(92vh, 720px);
    }
}

.gg-phish-argus-dialog__divider {
    position: relative;
    z-index: 2;
    height: 1px;
    margin: 16px 24px 0;
    background: linear-gradient(90deg, transparent, rgba(var(--argus-red-rgb), .45), rgba(255, 200, 87, .45), transparent);
}

.gg-phish-argus-feed {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: min(46vh, 380px);
    margin: 16px 24px 0;
    padding-right: 4px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(var(--argus-red-rgb), .45) rgba(255, 255, 255, .04);
}

.gg-phish-argus-card {
    position: relative;
    padding: 18px 18px 16px;
    border: 1px solid rgba(var(--argus-red-rgb), .2);
    border-top: 2px solid rgba(var(--argus-red-rgb), .45);
    background: rgba(var(--argus-red-rgb), .05);
    text-align: center;
    animation: ggPhishArgusCardIn .55s cubic-bezier(.22, .61, .36, 1) both;
}

.gg-phish-argus-card:nth-child(1) { animation-delay: .08s; }
.gg-phish-argus-card:nth-child(2) { animation-delay: .2s; }
.gg-phish-argus-card:nth-child(3) { animation-delay: .34s; }

.gg-phish-argus-card--greeting {
    border-top-color: var(--argus-gold);
    background:
        radial-gradient(ellipse 80% 70% at 50% 0%, rgba(255, 200, 87, .12), transparent 70%),
        rgba(255, 200, 87, .05);
}

.gg-phish-argus-card--report {
    border-top-color: #5dff9a;
    background:
        radial-gradient(ellipse 80% 70% at 50% 0%, rgba(93, 255, 154, .1), transparent 70%),
        rgba(93, 255, 154, .04);
}

.gg-phish-argus-card--verdict {
    border-top-color: var(--argus-cyan);
    background:
        radial-gradient(ellipse 80% 70% at 50% 0%, rgba(78, 230, 255, .1), transparent 70%),
        rgba(78, 230, 255, .04);
}

.gg-phish-argus-card__step {
    position: absolute;
    top: 10px;
    left: 12px;
    font: 700 10px/1 'Orbitron', sans-serif;
    letter-spacing: 1px;
    color: #6a7580;
}

.gg-phish-argus-card__icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 12px;
    display: grid;
    place-items: center;
    font-size: 22px;
    border: 1px solid rgba(var(--argus-gold), .35);
    background: rgba(255, 200, 87, .08);
    box-shadow: 0 0 18px rgba(255, 200, 87, .12);
}

.gg-phish-argus-card__lead {
    margin: 0 0 10px;
    font: 700 13px/1.45 'Orbitron', sans-serif;
    letter-spacing: .25px;
    color: #edf4f6;
    text-wrap: balance;
}

.gg-phish-argus-card__text,
.gg-phish-argus-card__question {
    margin: 0;
    font-size: 12px;
    line-height: 1.65;
    color: #aeb6bf;
    text-wrap: balance;
}

.gg-phish-argus-card__question {
    margin-bottom: 14px;
    color: #edf4f6;
    font-weight: 600;
}

.gg-phish-argus-card__metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 12px;
}

.gg-phish-argus-metric {
    padding: 12px 10px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(0, 0, 0, .22);
}

.gg-phish-argus-metric__label {
    display: block;
    margin-bottom: 6px;
    font: 700 8px/1 'Orbitron', sans-serif;
    letter-spacing: .9px;
    text-transform: uppercase;
    color: #6a7580;
}

.gg-phish-argus-metric__value {
    display: block;
    font: 700 12px/1.3 'Orbitron', sans-serif;
    color: var(--argus-cyan);
    word-break: break-all;
}

.gg-phish-argus-metric--sum .gg-phish-argus-metric__value {
    color: #5dff9a;
    font-size: 15px;
    text-shadow: 0 0 12px rgba(93, 255, 154, .35);
}

.gg-phish-argus-verdict {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.gg-phish-argus-verdict__btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 10px;
    border: 1px solid rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .03);
    color: #edf4f6;
    cursor: pointer;
    transition: .22s;
    text-align: center;
}

.gg-phish-argus-verdict__btn:hover {
    transform: translateY(-2px);
}

.gg-phish-argus-verdict__btn--arrest {
    border-color: rgba(var(--argus-red-rgb), .45);
    background: rgba(var(--argus-red-rgb), .1);
}

.gg-phish-argus-verdict__btn--arrest:hover {
    border-color: var(--argus-red);
    box-shadow: 0 0 24px rgba(var(--argus-red-rgb), .25);
}

.gg-phish-argus-verdict__btn--release {
    border-color: rgba(78, 230, 255, .35);
    background: rgba(78, 230, 255, .06);
}

.gg-phish-argus-verdict__btn--release:hover {
    border-color: var(--argus-cyan);
    box-shadow: 0 0 24px rgba(78, 230, 255, .2);
}

.gg-phish-argus-verdict__icon {
    font-size: 22px;
    line-height: 1;
}

.gg-phish-argus-verdict__label {
    font: 700 11px/1 'Orbitron', sans-serif;
    letter-spacing: .5px;
}

.gg-phish-argus-verdict__hint {
    font-size: 9px;
    color: #8a939e;
    letter-spacing: .2px;
}

.gg-phish-argus-dialog--verdict {
    padding: 28px 24px 24px;
}

.gg-phish-argus-verdict-result {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 8px 6px 0;
}

.gg-phish-argus-verdict-result__glyph {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: grid;
    place-items: center;
    font-size: 28px;
    border: 1px solid rgba(255, 200, 87, .4);
    background: rgba(255, 200, 87, .08);
    box-shadow: 0 0 28px rgba(255, 200, 87, .15);
}

.gg-phish-argus-dialog--arrest .gg-phish-argus-verdict-result__glyph {
    border-color: rgba(var(--argus-red-rgb), .45);
    background: rgba(var(--argus-red-rgb), .1);
    box-shadow: 0 0 28px rgba(var(--argus-red-rgb), .2);
}

.gg-phish-argus-dialog--release .gg-phish-argus-verdict-result__glyph {
    border-color: rgba(78, 230, 255, .4);
    background: rgba(78, 230, 255, .08);
    box-shadow: 0 0 28px rgba(78, 230, 255, .18);
}

.gg-phish-argus-verdict-result__code {
    display: block;
    margin-bottom: 10px;
    font: 700 10px/1 'Orbitron', sans-serif;
    letter-spacing: 1.4px;
    color: var(--argus-red);
}

.gg-phish-argus-verdict-result__title {
    margin: 0 0 12px;
    font: 700 18px/1.3 'Orbitron', sans-serif;
    letter-spacing: .4px;
    color: var(--argus-gold);
    text-wrap: balance;
}

.gg-phish-argus-verdict-result__lead {
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.55;
    color: #edf4f6;
    font-weight: 600;
    text-wrap: balance;
}

.gg-phish-argus-verdict-result__text {
    margin: 0;
    font-size: 12px;
    line-height: 1.6;
    color: #9aa5b1;
    text-wrap: balance;
}

.gg-phish-argus-verdict-result__bar {
    height: 3px;
    margin-top: 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    overflow: hidden;
}

.gg-phish-argus-verdict-result__bar i {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--argus-red), var(--argus-gold));
    animation: ggPhishArgusVerdictBar 3.4s linear forwards;
}

/* ARGUS — боковой канал (unknown-chat) */
.argus-side-msg {
    text-align: left;
    font-family: 'JetBrains Mono', monospace;
}

.argus-side-msg__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px dashed rgba(255, 73, 103, .35);
}

.argus-side-msg__code {
    font: 700 10px/1 'Orbitron', sans-serif;
    letter-spacing: 1px;
    color: #ff4967;
}

.argus-side-msg__live {
    font: 700 9px/1 'Orbitron', sans-serif;
    letter-spacing: 1px;
    color: #5dff9a;
}

.argus-side-msg__operator {
    font: 700 13px/1.3 'Orbitron', sans-serif;
    color: #ffc857;
    margin-bottom: 4px;
}

.argus-side-msg__rank {
    font-size: 10px;
    color: #9aa5b1;
    margin-bottom: 10px;
    line-height: 1.45;
}

.argus-side-msg__lead {
    margin: 0 0 10px;
    color: #ffc857;
    font-weight: 600;
    line-height: 1.5;
}

.argus-side-msg__body {
    font-size: 12px;
    line-height: 1.65;
    color: #ddd;
}

.argus-side-msg__sum {
    color: #5dff9a;
    font: 700 14px/1 'Orbitron', sans-serif;
    text-shadow: 0 0 10px rgba(93, 255, 154, .35);
}

.argus-side-msg__node {
    color: #4ee6ff;
}

.argus-side-msg__btn {
    margin-top: 12px;
    padding: 9px 14px;
    border: 1px solid rgba(255, 73, 103, .55);
    background: rgba(255, 73, 103, .12);
    color: #fff;
    font: 700 10px/1 'Orbitron', sans-serif;
    letter-spacing: .8px;
    cursor: pointer;
    transition: .2s;
}

.argus-side-msg__btn:hover {
    background: rgba(255, 73, 103, .22);
    box-shadow: 0 0 18px rgba(255, 73, 103, .2);
}

@keyframes ggPhishArgusDialogIn {
    from { opacity: 0; transform: translateY(20px) scale(.96); filter: blur(4px); }
    to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

@keyframes ggPhishArgusDialogOut {
    from { opacity: 1; transform: scale(1); }
    to { opacity: 0; transform: scale(.97); filter: blur(3px); }
}

@keyframes ggPhishArgusCardIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes ggPhishArgusVerdictBar {
    from { width: 0; }
    to { width: 100%; }
}

.gg-phish-recovery-btn--ghost:hover {
    border-color: rgba(255, 73, 103, .75);
    background: rgba(255, 73, 103, .1);
}

@keyframes ggPhishRecoveryWaitFill {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes ggPhishRecoveryConfirmIn {
    from {
        opacity: 0;
        transform: translateY(14px) scale(.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

@keyframes ggPhishRecoveryDialogIn {
    from {
        opacity: 0;
        transform: translateY(24px) scale(.96);
        filter: blur(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

body.gg-phish-infected {
    animation: ggPhishFlicker 4s ease-in-out infinite;
}

@keyframes ggPhishFlicker {
    0%, 100% { filter: none; }
    48% { filter: none; }
    49% { filter: hue-rotate(20deg) brightness(1.05); }
    50% { filter: none; }
}

/* NeoPulse news channel */
.gg-channel {
    --gg-channel-accent: #c41e3a;
    max-width: 960px;
    margin: 0 auto;
    padding-bottom: 32px;
}

.gg-channel-masthead {
    background: var(--gg-channel-accent);
    color: #fff;
    padding: 16px 20px 12px;
}

.gg-channel-masthead__top {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.gg-channel-masthead__logo {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.gg-channel-masthead__tag {
    font-size: 12px;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.gg-channel-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 16px;
    font-size: 13px;
}

.gg-channel-nav a {
    color: #fff;
    text-decoration: none;
    opacity: 0.92;
    cursor: pointer;
}

.gg-channel-nav a:hover {
    text-decoration: underline;
    opacity: 1;
}

.gg-channel-ticker {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    padding: 10px 20px;
    background: #1a1a1a;
    color: #e8eaed;
    font-size: 12px;
    font-family: "Consolas", monospace;
}

.gg-channel-ticker__pair {
    color: #9aa0a6;
    margin-right: 6px;
}

.gg-channel-ticker__val {
    margin-right: 6px;
}

.gg-channel-ticker__chg--up { color: #34a853; }
.gg-channel-ticker__chg--down { color: #ea4335; }

.gg-channel-hero {
    padding: 24px 20px 8px;
    border-bottom: 1px solid #ebebeb;
}

.gg-channel-hero h1 {
    font-family: Georgia, serif;
    font-size: 26px;
    font-weight: 400;
    margin: 0 0 6px;
    color: #202124;
}

.gg-channel-hero p {
    margin: 0;
    font-size: 14px;
    color: #5f6368;
}

.gg-channel-section {
    padding: 24px 20px 8px;
}

.gg-channel-section__title {
    font-size: 20px;
    font-weight: 600;
    color: var(--gg-channel-accent);
    margin: 0 0 4px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gg-channel-accent);
}

.gg-channel-section__sub {
    font-size: 13px;
    color: #5f6368;
    margin: 0 0 16px;
}

.gg-channel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 14px;
}

.gg-channel-card {
    border: 1px solid #dadce0;
    border-radius: 8px;
    padding: 14px 16px;
    cursor: pointer;
    background: #fff;
    transition: box-shadow 0.15s, border-color 0.15s;
}

.gg-channel-card:hover {
    border-color: var(--gg-channel-accent);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.gg-channel-card__badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: var(--gg-channel-accent);
    color: #fff;
    padding: 2px 8px;
    border-radius: 3px;
    margin-bottom: 8px;
}

.gg-channel-card__title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    margin: 0 0 6px;
    color: #202124;
}

.gg-channel-card__excerpt {
    font-size: 13px;
    line-height: 1.45;
    color: #5f6368;
    margin: 0 0 8px;
}

.gg-channel-card__date {
    font-size: 11px;
    color: #9aa0a6;
}

.gg-channel-foot {
    text-align: center;
    font-size: 11px;
    color: #9aa0a6;
    padding: 20px;
    border-top: 1px solid #ebebeb;
    margin-top: 16px;
}

.gg-channel-back {
    font-size: 12px;
    color: var(--gg-site-accent, #1a73e8);
    text-decoration: none;
    margin-right: 12px;
    cursor: pointer;
}

.gg-channel-back:hover { text-decoration: underline; }

.gg-corp-list {
    margin: 12px 0;
    padding-left: 20px;
    line-height: 1.6;
}

.gg-corp-list li { margin-bottom: 8px; }

/* ── Police department sites (NTPD / FCCB) ── */
.gg-pd {
    max-width: 920px;
    margin: 0 auto;
    padding-bottom: 28px;
    font-family: "Segoe UI", Arial, system-ui, sans-serif;
}

.gg-pd--ntpd { --gg-pd-accent: #0d47a1; --gg-pd-accent2: #1565c0; --gg-pd-bg: #e3f2fd; }
.gg-pd--fccb { --gg-pd-accent: #1b2a4a; --gg-pd-accent2: #283593; --gg-pd-bg: #eceff1; }

.gg-pd-header {
    background: linear-gradient(135deg, var(--gg-pd-accent) 0%, var(--gg-pd-accent2) 100%);
    color: #fff;
    padding: 20px 22px 14px;
    margin: -8px -8px 0;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 16px rgba(13, 71, 161, 0.25);
}

.gg-pd-header__top {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.gg-pd-badge {
    font-size: 36px;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.gg-pd-header__titles { flex: 1; min-width: 160px; }

.gg-pd-header__dept {
    display: block;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.gg-pd-header__site {
    font-size: 11px;
    opacity: 0.75;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.gg-pd-header__hotline {
    text-align: right;
    background: rgba(255,255,255,0.12);
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
}

.gg-pd-header__hotline-lbl {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    opacity: 0.8;
}

.gg-pd-header__hotline-num {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.gg-pd-motto {
    margin: 12px 0 0;
    font-size: 12px;
    opacity: 0.85;
    font-style: italic;
}

.gg-pd-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 4px;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.gg-pd-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    background: rgba(255,255,255,0.1);
    cursor: pointer;
}

.gg-pd-nav a:hover { background: rgba(255,255,255,0.22); }

.gg-pd-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 18px 16px;
    background: var(--gg-pd-bg);
    border-bottom: 1px solid #cfd8dc;
}

@media (max-width: 640px) {
    .gg-pd-stats { grid-template-columns: repeat(2, 1fr); }
}

.gg-pd-stat {
    text-align: center;
    padding: 10px 6px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #b0bec5;
}

.gg-pd-stat__val {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--gg-pd-accent);
}

.gg-pd-stat__lbl {
    font-size: 10px;
    color: #546e7a;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.gg-pd-alerts { padding: 12px 16px 0; }

.gg-pd-alert {
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 13px;
    margin-bottom: 8px;
    border-left: 4px solid;
}

.gg-pd-alert--warn { background: #fff3e0; border-color: #ef6c00; color: #e65100; }
.gg-pd-alert--info { background: #e3f2fd; border-color: #1565c0; color: #0d47a1; }

.gg-pd-intro {
    padding: 16px 18px;
    font-size: 14px;
    line-height: 1.55;
    color: #37474f;
}

.gg-pd-intro p { margin: 0; }

.gg-pd-section {
    padding: 18px 16px 8px;
}

.gg-pd-section__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.gg-pd-section__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--gg-pd-accent);
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.gg-pd-section__head .gg-pd-section__title { margin-bottom: 0; }

.gg-pd-section__more {
    font-size: 12px;
    color: var(--gg-pd-accent2);
    text-decoration: none;
    cursor: pointer;
}

.gg-pd-section__more:hover { text-decoration: underline; }

.gg-pd-dept-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.gg-pd-dept-card {
    display: flex;
    flex-direction: column;
    padding: 16px;
    background: #fff;
    border: 1px solid #cfd8dc;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.15s, box-shadow 0.15s, transform 0.1s;
}

.gg-pd-dept-card:hover {
    border-color: var(--gg-pd-accent);
    box-shadow: 0 4px 12px rgba(13, 71, 161, 0.12);
    transform: translateY(-1px);
}

.gg-pd-dept-card__icon { font-size: 28px; margin-bottom: 8px; }

.gg-pd-dept-card__title {
    font-size: 14px;
    font-weight: 600;
    color: #263238;
    margin-bottom: 4px;
}

.gg-pd-dept-card__desc {
    font-size: 12px;
    color: #78909c;
    line-height: 1.4;
}

.gg-pd-wanted-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

@media (max-width: 640px) {
    .gg-pd-wanted-row { grid-template-columns: 1fr; }
}

.gg-pd-wanted-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px 10px;
    background: #fff8e1;
    border: 2px dashed #ff8f00;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
}

.gg-pd-wanted-mini:hover { background: #ffecb3; }

.gg-pd-wanted-mini__photo { font-size: 32px; margin-bottom: 6px; }

.gg-pd-wanted-mini__name {
    font-size: 13px;
    font-weight: 700;
    color: #bf360c;
}

.gg-pd-wanted-mini__crime {
    font-size: 11px;
    color: #6d4c41;
    margin-top: 4px;
}

.gg-pd-body {
    padding: 0 18px 12px;
    font-size: 14px;
    color: #455a64;
}

.gg-pd-foot {
    padding: 16px 18px;
    border-top: 1px solid #eceff1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
}

.gg-pd-sibling {
    font-size: 13px;
    color: var(--gg-pd-accent);
    text-decoration: none;
    cursor: pointer;
}

.gg-pd-sibling:hover { text-decoration: underline; }

.gg-pd-foot__copy { font-size: 11px; color: #90a4ae; }

/* Police sub-pages */
.gg-pd-subhead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--gg-pd-bg);
    border-bottom: 1px solid #b0bec5;
    margin: -8px -8px 0;
}

.gg-pd-back {
    font-size: 13px;
    color: var(--gg-pd-accent);
    text-decoration: none;
    cursor: pointer;
    font-weight: 600;
}

.gg-pd-back:hover { text-decoration: underline; }

.gg-pd-subhead__badge {
    font-size: 11px;
    font-weight: 700;
    color: var(--gg-pd-accent);
    text-transform: uppercase;
}

.gg-pd-subhero {
    display: flex;
    gap: 16px;
    padding: 20px 18px;
    align-items: flex-start;
}

.gg-pd-subhero__icon { font-size: 40px; line-height: 1; }

.gg-pd-subhero__title {
    font-size: 22px;
    font-weight: 700;
    color: #263238;
    margin: 0 0 6px;
}

.gg-pd-subhero__lead {
    margin: 0;
    font-size: 14px;
    color: #546e7a;
    line-height: 1.45;
}

/* Murder cases */
.gg-pd-case-list { padding: 0 16px 20px; }

.gg-pd-case {
    background: #fff;
    border: 1px solid #cfd8dc;
    border-left: 4px solid var(--gg-pd-accent);
    border-radius: 0 8px 8px 0;
    padding: 14px 16px;
    margin-bottom: 12px;
}

.gg-pd-case__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.gg-pd-case__id {
    font-family: Consolas, monospace;
    font-size: 12px;
    color: #78909c;
}

.gg-pd-case__status {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
}

.gg-pd-case__status--open { background: #ffebee; color: #c62828; }
.gg-pd-case__status--suspect { background: #fff3e0; color: #e65100; }
.gg-pd-case__status--closed { background: #e8f5e9; color: #2e7d32; }

.gg-pd-case__title {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 6px;
    color: #263238;
}

.gg-pd-case__meta {
    font-size: 12px;
    color: #78909c;
    margin-bottom: 8px;
}

.gg-pd-case__desc {
    font-size: 13px;
    line-height: 1.5;
    color: #455a64;
    margin: 0 0 8px;
}

.gg-pd-case__tags { display: flex; flex-wrap: wrap; gap: 6px; }

.gg-pd-tag {
    font-size: 10px;
    padding: 3px 8px;
    background: #eceff1;
    border-radius: 4px;
    color: #546e7a;
}

/* Forensics labs */
.gg-pd-lab-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 12px;
    padding: 0 16px 16px;
}

.gg-pd-lab {
    display: flex;
    gap: 12px;
    padding: 14px;
    background: #fff;
    border: 1px solid #cfd8dc;
    border-radius: 10px;
}

.gg-pd-lab__icon { font-size: 28px; flex-shrink: 0; }

.gg-pd-lab h3 {
    font-size: 14px;
    margin: 0 0 4px;
    color: var(--gg-pd-accent);
}

.gg-pd-lab p {
    font-size: 12px;
    margin: 0 0 6px;
    color: #546e7a;
    line-height: 1.4;
}

.gg-pd-lab__active {
    font-size: 11px;
    font-weight: 600;
    color: #ef6c00;
}

/* Detectives */
.gg-pd-detective-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
    padding: 0 16px 20px;
}

.gg-pd-detective {
    text-align: center;
    padding: 16px 12px;
    background: #fff;
    border: 1px solid #cfd8dc;
    border-radius: 10px;
}

.gg-pd-detective__avatar { font-size: 36px; margin-bottom: 8px; }

.gg-pd-detective__name {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 2px;
    color: #263238;
}

.gg-pd-detective__rank {
    display: block;
    font-size: 11px;
    color: var(--gg-pd-accent);
    font-weight: 600;
}

.gg-pd-detective__unit {
    display: block;
    font-size: 11px;
    color: #78909c;
    margin: 4px 0;
}

.gg-pd-detective__cases {
    font-size: 11px;
    color: #546e7a;
    margin: 0;
}

/* Identity check */
.gg-pd-id-panel { padding: 0 16px 24px; }

.gg-pd-id-note {
    font-size: 13px;
    color: #546e7a;
    background: #fff8e1;
    border-left: 4px solid #ffa000;
    padding: 10px 14px;
    margin-bottom: 16px;
    border-radius: 0 6px 6px 0;
}

.gg-pd-id-form {
    background: #fff;
    border: 1px solid #cfd8dc;
    border-radius: 10px;
    padding: 18px;
    max-width: 420px;
}

.gg-pd-id-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #37474f;
    margin: 10px 0 4px;
}

.gg-pd-id-label:first-child { margin-top: 0; }

.gg-pd-id-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #b0bec5;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    box-sizing: border-box;
}

.gg-pd-id-input:focus {
    outline: none;
    border-color: var(--gg-pd-accent);
    box-shadow: 0 0 0 2px rgba(13, 71, 161, 0.15);
}

.gg-pd-id-btn {
    margin-top: 16px;
    width: 100%;
    padding: 12px;
    background: var(--gg-pd-accent);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}

.gg-pd-id-btn:hover { filter: brightness(1.08); }

.gg-pd-id-services {
    margin-top: 16px;
    display: grid;
    gap: 8px;
    max-width: 420px;
}

.gg-pd-id-svc {
    padding: 10px 12px;
    background: #eceff1;
    border-radius: 6px;
    font-size: 12px;
}

.gg-pd-id-svc b { display: block; color: var(--gg-pd-accent); margin-bottom: 2px; }

/* Wanted posters */
.gg-pd-wanted-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
    padding: 0 16px 24px;
}

.gg-pd-wanted-card {
    position: relative;
    text-align: center;
    padding: 20px 14px 16px;
    background: #fffde7;
    border: 3px solid #f9a825;
    border-radius: 4px;
    box-shadow: 2px 3px 0 #f57f17;
}

.gg-pd-wanted-card--high {
    background: #ffebee;
    border-color: #c62828;
    box-shadow: 2px 3px 0 #b71c1c;
}

.gg-pd-wanted-card--info {
    background: #eceff1;
    border-color: #78909c;
    box-shadow: 2px 3px 0 #546e7a;
}

.gg-pd-wanted-card__ribbon {
    position: absolute;
    top: 8px;
    right: -4px;
    background: #c62828;
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    padding: 3px 10px;
    letter-spacing: 0.06em;
}

.gg-pd-wanted-card--info .gg-pd-wanted-card__ribbon { background: #546e7a; }

.gg-pd-wanted-card__photo {
    font-size: 48px;
    margin: 8px 0;
    filter: grayscale(30%);
}

.gg-pd-wanted-card__name {
    font-size: 16px;
    font-weight: 800;
    color: #bf360c;
    margin: 0 0 2px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.gg-pd-wanted-card--high .gg-pd-wanted-card__name { color: #b71c1c; }

.gg-pd-wanted-card__alias {
    font-size: 11px;
    color: #6d4c41;
    margin: 0 0 8px;
    font-style: italic;
    min-height: 14px;
}

.gg-pd-wanted-card__crime {
    font-size: 12px;
    color: #37474f;
    margin: 0 0 6px;
    line-height: 1.35;
}

.gg-pd-wanted-card__meta {
    font-size: 10px;
    color: #78909c;
    margin: 0 0 8px;
}

.gg-pd-wanted-card__reward {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #1b5e20;
    background: #c8e6c9;
    padding: 4px 10px;
    border-radius: 4px;
}

/* MirrorHost clearnet landing (mirrorhost.io) */
.gg-site--portal-mirrorhost .gg-portal-head { background: #1a2332; border-bottom: 3px solid #2563eb; }
.gg-site--portal-mirrorhost .gg-portal-head__logo { color: #f1f5f9; font-weight: 700; letter-spacing: 0.02em; }
.gg-site--portal-mirrorhost .gg-portal-hero { background: linear-gradient(180deg, #f8fafc 0%, #fff 100%); border-bottom: 1px solid #e2e8f0; padding-bottom: 0; }
.gg-site--portal-mirrorhost .gg-portal-hero h1 { color: #0f172a; font-size: 28px; }
.gg-site--portal-mirrorhost .gg-portal-hero p { color: #64748b; }

.gg-mh-landing { max-width: 820px; margin: 0 auto; }
.gg-mh-lead { font-size: 15px; line-height: 1.65; color: #334155; margin: 0 0 20px; }
.gg-mh-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.gg-mh-btn { display: inline-flex; align-items: center; justify-content: center; padding: 11px 20px; border-radius: 6px; font-size: 13px; font-weight: 600; text-decoration: none; cursor: pointer; border: 1px solid transparent; font-family: inherit; }
.gg-mh-btn--primary { background: #2563eb; color: #fff; border-color: #2563eb; }
.gg-mh-btn--primary:hover { background: #1d4ed8; }
.gg-mh-btn--ghost { background: #fff; color: #475569; border-color: #cbd5e1; }
.gg-mh-btn--ghost:hover { background: #f8fafc; }

.gg-mh-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 28px; }
.gg-mh-feature { background: #fff; border: 1px solid #e2e8f0; border-radius: 8px; padding: 18px; box-shadow: 0 1px 3px rgba(15,23,42,0.06); }
.gg-mh-feature h3 { margin: 0 0 8px; font-size: 14px; color: #0f172a; }
.gg-mh-feature p { margin: 0; font-size: 12px; line-height: 1.55; color: #64748b; }

.gg-mh-pricing { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 10px; padding: 22px; margin-bottom: 20px; }
.gg-mh-pricing h2 { margin: 0 0 14px; font-size: 16px; color: #0f172a; }
.gg-mh-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 12px; }
.gg-mh-plan { background: #fff; border: 1px solid #e2e8f0; border-radius: 8px; padding: 14px; text-align: center; }
.gg-mh-plan--featured { border-color: #2563eb; box-shadow: 0 0 0 1px #2563eb; }
.gg-mh-plan strong { display: block; font-size: 13px; margin-bottom: 4px; }
.gg-mh-plan span { display: block; font-size: 22px; font-weight: 700; color: #2563eb; }
.gg-mh-plan small { display: block; font-size: 11px; color: #94a3b8; margin-top: 4px; }
.gg-mh-note { margin: 0; font-size: 12px; color: #64748b; }
.gg-mh-trust { text-align: center; font-size: 11px; color: #94a3b8; padding: 12px 0 4px; border-top: 1px solid #e2e8f0; }

@media (max-width: 720px) {
    .gg-mh-features, .gg-mh-plans { grid-template-columns: 1fr; }
}

/* Phish site navigation blocks */
.gg-phish-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 16px;
    background: #1a2332;
    color: #e2e8f0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin: 0 0 12px;
}
.gg-phish-nav__logo { font-weight: 700; font-size: 14px; letter-spacing: 0.02em; }
.gg-phish-nav__links { display: flex; gap: 14px; flex-wrap: wrap; }
.gg-phish-nav__links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
}
.gg-phish-nav__links a:hover { color: #fff; }
.gg-phish-nav--burger { flex-direction: column; align-items: stretch; padding: 0; }
.gg-phish-nav--burger .gg-phish-nav__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
}
.gg-phish-nav__burger {
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.06);
    color: #fff;
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 16px;
    cursor: pointer;
}
.gg-phish-nav__drawer {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #0f172a;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.gg-phish-nav__drawer a {
    padding: 10px 16px;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.gg-phish-nav__drawer a:hover { background: rgba(255,255,255,0.04); color: #fff; }
