@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Manrope:wght@400;500;600;700&display=swap');

:root {
    --bg: #0b0c0f;
    --surface: rgba(255, 255, 255, 0.055);
    --surface-hover: rgba(255, 255, 255, 0.085);
    --border: rgba(255, 255, 255, 0.11);
    --text: #f3f3f0;
    --muted: #8d9098;
    --accent: #d8ff65;
    --danger: #ff7676;
    --radius: 18px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background: var(--bg);
    color: var(--text);
    font-family: "Manrope", sans-serif;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    width: 550px;
    height: 550px;
    top: -250px;
    right: -150px;
    background: rgba(216, 255, 101, 0.055);
    filter: blur(100px);
    border-radius: 50%;
    pointer-events: none;
}

body::after {
    content: "";
    position: fixed;
    width: 450px;
    height: 450px;
    bottom: -250px;
    left: -150px;
    background: rgba(120, 130, 255, 0.045);
    filter: blur(100px);
    border-radius: 50%;
    pointer-events: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

.app {
    position: relative;
    z-index: 1;
    width: min(1050px, calc(100% - 40px));
    margin: auto;
    padding: 25px 0 70px;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: "DM Mono", monospace;
    font-size: 13px;
    letter-spacing: 0.08em;
}

.settings-btn {
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--muted);
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 11px;
    transition: 0.2s ease;
}

.settings-btn:hover {
    background: var(--surface-hover);
    color: var(--text);
}

.browser-tabs {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 25px;
    border-bottom: 1px solid var(--border);
}

.browser-tab {
    border: 1px solid transparent;
    border-bottom: 0;
    background: transparent;
    color: var(--muted);
    padding: 10px 18px;
    border-radius: 10px 10px 0 0;
    font-size: 11px;
}

.browser-tab:hover {
    color: var(--text);
}

.browser-tab.active {
    background: var(--surface);
    border-color: var(--border);
    color: var(--text);
}

.new-tab-btn {
    border: 0;
    background: transparent;
    color: var(--muted);
    width: 32px;
    height: 32px;
    font-size: 20px;
}

.new-tab-btn:hover {
    color: var(--accent);
}

.page {
    display: none;
}

.active-page {
    display: block;
}

.time-section {
    text-align: center;
    margin-top: 80px;
}

.time-section p {
    color: var(--muted);
    font-family: "DM Mono", monospace;
    font-size: 11px;
    margin-bottom: 12px;
}

.time-section h1 {
    font-size: clamp(70px, 13vw, 140px);
    font-weight: 600;
    letter-spacing: -0.09em;
    line-height: 0.9;
}

.search-section {
    width: min(700px, 100%);
    margin: 55px auto 0;
}

#searchForm {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 8px 6px 17px;
    border: 1px solid var(--border);
    background: var(--surface);
    border-radius: 14px;
    transition: 0.2s ease;
}

#searchForm:focus-within {
    border-color: rgba(216, 255, 101, 0.4);
    background: var(--surface-hover);
}

.search-icon {
    color: var(--muted);
    font-size: 23px;
}

#searchInput {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text);
    font-size: 14px;
}

#searchInput::placeholder {
    color: #62656d;
}

#searchForm button {
    border: 0;
    background: var(--accent);
    color: #10120b;
    padding: 9px 13px;
    border-radius: 9px;
    font-size: 10px;
    font-weight: 700;
}

.links-section,
.productivity-section,
.capsules-section {
    width: min(900px, 100%);
    margin: 65px auto 0;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.section-heading h2 {
    font-size: 22px;
    letter-spacing: -0.03em;
}

.eyebrow {
    color: var(--accent);
    font-family: "DM Mono", monospace;
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 7px;
}

.section-heading > button,
#addLinkBtn {
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--muted);
    padding: 8px 13px;
    border-radius: 9px;
    font-size: 11px;
}

.section-heading > button:hover,
#addLinkBtn:hover {
    color: var(--text);
    background: var(--surface-hover);
}

.quick-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.link-card {
    min-height: 145px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--border);
    background: var(--surface);
    border-radius: var(--radius);
    transition: 0.25s ease;
}

.link-card:hover {
    background: var(--surface-hover);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.18);
}

.link-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    font-family: "DM Mono", monospace;
    font-size: 12px;
}

.link-card strong {
    font-size: 14px;
    margin-top: 20px;
}

.link-card span {
    color: var(--muted);
    font-size: 9px;
    margin-top: 3px;
}

.productivity-section {
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
}

#taskCount {
    color: var(--muted);
    font-family: "DM Mono", monospace;
    font-size: 10px;
}

.task-input {
    display: flex;
    gap: 8px;
}

.task-input input {
    flex: 1;
    min-width: 0;
    border: 1px solid var(--border);
    outline: 0;
    background: rgba(0, 0, 0, 0.12);
    color: var(--text);
    padding: 11px 13px;
    border-radius: 10px;
    font-size: 12px;
}

.task-input button {
    width: 42px;
    border: 0;
    background: var(--accent);
    color: #10120b;
    border-radius: 10px;
    font-size: 20px;
}

.task-list {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: 12px;
}

.task {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    border: 1px solid var(--border);
    border-radius: 10px;
}

.task-checkbox {
    width: 17px;
    height: 17px;
    accent-color: var(--accent);
}

.task span {
    flex: 1;
    font-size: 12px;
}

.task.completed span {
    color: var(--muted);
    text-decoration: line-through;
}

.delete-task {
    border: 0;
    background: transparent;
    color: var(--muted);
    font-size: 16px;
}

.delete-task:hover {
    color: var(--danger);
}

.capsule-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.capsule-card {
    padding: 18px;
    min-height: 130px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    transition: 0.2s ease;
}

.capsule-card:hover {
    background: var(--surface-hover);
}

.capsule-card p {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.5;
}

.capsule-card strong {
    display: block;
    margin-bottom: 10px;
    font-size: 12px;
}

.capsule-status {
    display: inline-block;
    margin-top: 15px;
    color: var(--accent);
    font-family: "DM Mono", monospace;
    font-size: 8px;
    text-transform: uppercase;
}

.internal-page {
    min-height: 600px;
    margin-top: 25px;
    overflow-y: auto;
}

.internal-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
}

.internal-header button {
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--muted);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 11px;
}

#internalTitle {
    font-family: "DM Mono", monospace;
    font-size: 11px;
}

.internal-content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 500px;
    padding: 20px;
}

.modal {
    position: fixed;
    z-index: 30;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
}

.modal-content {
    position: relative;
    width: min(560px, 100%);
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
}

.modal-content h2 {
    margin-bottom: 25px;
    font-size: 25px;
    letter-spacing: -0.04em;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 17px;
    border: 0;
    background: transparent;
    color: var(--muted);
    font-size: 24px;
}

.modal-content textarea,
.modal-content input {
    width: 100%;
    border: 1px solid var(--border);
    outline: 0;
    background: var(--surface);
    color: var(--text);
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 13px;
}

.modal-content textarea {
    min-height: 150px;
    resize: vertical;
}

.modal-content label {
    display: block;
    color: var(--muted);
    font-family: "DM Mono", monospace;
    font-size: 9px;
    text-transform: uppercase;
    margin-bottom: 7px;
}

.modal-content button:not(.modal-close) {
    width: 100%;
    border: 0;
    background: var(--accent);
    color: #10120b;
    padding: 12px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 11px;
}

.modal-content blockquote {
    margin: 25px 0;
    font-size: 25px;
    line-height: 1.4;
}

.settings-panel {
    position: fixed;
    z-index: 40;
    top: 20px;
    right: 20px;
    width: min(320px, calc(100% - 40px));
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg);
    backdrop-filter: blur(25px);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.5);
}

.settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.settings-header h2 {
    font-size: 18px;
}

#closeSettingsBtn {
    border: 0;
    background: transparent;
    color: var(--muted);
    font-size: 24px;
}

.settings-panel label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--muted);
    font-size: 11px;
}

select {
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 9px;
    padding: 9px;
    outline: none;
}

.close-tab {
    margin-left: 8px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.15s ease;
}

.browser-tab:hover .close-tab {
    opacity: 1;
}

.close-tab:hover {
    color: var(--danger);
}

.fake-site {
    width: 100%;
    text-align: left;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg);
}

.gh-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 20px;
    background: #161b22;
    border-bottom: 1px solid #30363d;
}

.gh-logo {
    font-size: 20px;
    color: #f0f6fc;
}

.gh-search {
    flex: 1;
    max-width: 320px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 10px;
    border: 1px solid #30363d;
    border-radius: 6px;
    background: #0d1117;
    font-size: 11px;
}

.gh-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #c9d1d9;
    font-size: 11px;
}

.gh-search input::placeholder {
    color: #8b949e;
}

.gh-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 11px;
}

.gh-nav span {
    color: #c9d1d9;
    cursor: pointer;
    transition: color 0.15s ease;
}

.gh-nav span:hover {
    color: #f0f6fc;
}

.gh-avatar-nav {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #21262d;
    border: 1px solid #30363d;
    display: grid;
    place-items: center;
    font-size: 9px;
    color: #8b949e;
}

.gh-body {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 0;
}

.gh-sidebar {
    padding: 20px;
    border-right: 1px solid #30363d;
}

.gh-avatar-large {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1f6feb, #388bfd);
    display: grid;
    place-items: center;
    font-size: 36px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 16px;
}

.gh-name {
    font-size: 20px;
    font-weight: 600;
    color: #f0f6fc;
}

.gh-username {
    font-size: 12px;
    color: #8b949e;
    margin-bottom: 12px;
}

.gh-bio {
    font-size: 12px;
    color: #c9d1d9;
    line-height: 1.5;
    margin-bottom: 16px;
}

.gh-stats {
    display: flex;
    gap: 6px;
    font-size: 11px;
    color: #8b949e;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.gh-stats span::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #8b949e;
    margin-right: 5px;
    vertical-align: middle;
}

.gh-main {
    padding: 20px;
}

.gh-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid #30363d;
    margin-bottom: 20px;
}

.gh-tab {
    padding: 10px 16px;
    font-size: 12px;
    color: #8b949e;
    border-bottom: 2px solid transparent;
    cursor: pointer;
}

.gh-tab.active {
    color: #f0f6fc;
    border-bottom-color: #f78166;
}

.gh-repo-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gh-repo-item {
    padding: 14px 16px;
    border: 1px solid #30363d;
    border-radius: 8px;
    background: #0d1117;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.gh-repo-item-top {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gh-repo-name {
    font-size: 13px;
    color: #58a6ff;
    font-weight: 500;
}

.gh-repo-badge {
    font-size: 9px;
    padding: 1px 7px;
    border: 1px solid #30363d;
    border-radius: 999px;
    color: #8b949e;
}

.gh-repo-desc {
    font-size: 11px;
    color: #8b949e;
    line-height: 1.4;
}

.gh-repo-meta {
    display: flex;
    gap: 14px;
    font-size: 10px;
    color: #8b949e;
    margin-top: 4px;
}

.gh-lang-dot {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    margin-right: 4px;
    vertical-align: middle;
}

.yt-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 8px 16px;
    background: #0f0f0f;
    border-bottom: 1px solid #333;
}

.yt-logo {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.yt-logo-icon {
    width: 28px;
    height: 20px;
    background: #ff0000;
    border-radius: 4px;
    display: grid;
    place-items: center;
    font-size: 10px;
    color: #fff;
}

.yt-search-bar {
    flex: 1;
    max-width: 480px;
    display: flex;
    align-items: center;
    margin: 0 auto;
}

.yt-search-bar input {
    flex: 1;
    min-width: 0;
    border: 1px solid #333;
    border-right: 0;
    outline: 0;
    background: #121212;
    color: #fff;
    padding: 8px 12px;
    border-radius: 20px 0 0 20px;
    font-size: 12px;
}

.yt-search-bar input::placeholder {
    color: #888;
}

.yt-search-bar button {
    border: 1px solid #333;
    background: #222;
    color: #fff;
    padding: 8px 16px;
    border-radius: 0 20px 20px 0;
    font-size: 12px;
}

.yt-icons {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
}

.yt-icon-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #272727;
    display: grid;
    place-items: center;
    font-size: 12px;
    color: #fff;
}

.yt-body {
    display: grid;
    grid-template-columns: 180px 1fr;
    min-height: 400px;
}

.yt-sidebar {
    padding: 12px 0;
    border-right: 1px solid #272727;
}

.yt-sidebar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    font-size: 11px;
    color: #aaa;
    cursor: pointer;
    border-radius: 8px;
    margin: 0 8px;
}

.yt-sidebar-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.yt-sidebar-item.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.yt-sidebar-icon {
    font-size: 14px;
}

.yt-main {
    padding: 16px 20px;
}

.yt-chips {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.yt-chip {
    padding: 6px 14px;
    border-radius: 8px;
    background: #272727;
    color: #fff;
    font-size: 11px;
    cursor: pointer;
    border: none;
}

.yt-chip.active {
    background: #fff;
    color: #0f0f0f;
}

.yt-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.yt-card {
    cursor: pointer;
}

.yt-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.yt-thumb-inner {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    font-size: 24px;
}

.yt-duration {
    position: absolute;
    bottom: 6px;
    right: 6px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 3px;
}

.yt-card-info {
    display: flex;
    gap: 10px;
    padding: 10px 2px 0;
}

.yt-channel-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    font-size: 10px;
    color: #fff;
}

.yt-card-text {
    flex: 1;
    min-width: 0;
}

.yt-card-title {
    font-size: 12px;
    font-weight: 500;
    color: #f1f1f1;
    line-height: 1.3;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.yt-card-meta {
    font-size: 10px;
    color: #aaa;
}

.hc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    background: #111;
    border-bottom: 1px solid #333;
}

.hc-logo {
    font-size: 15px;
    font-weight: 700;
    color: #ff6b35;
}

.hc-nav {
    display: flex;
    gap: 20px;
    font-size: 12px;
    color: #ccc;
}

.hc-nav span {
    cursor: pointer;
}

.hc-nav span:hover {
    color: #ff6b35;
}

.hc-hero {
    text-align: center;
    padding: 60px 24px 50px;
    background: linear-gradient(180deg, #1a0a00 0%, #0d0500 100%);
    position: relative;
    overflow: hidden;
}

.hc-hero::before {
    content: "";
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hc-hero-badge {
    display: inline-block;
    padding: 4px 12px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 999px;
    font-size: 10px;
    color: #ff6b35;
    margin-bottom: 20px;
    font-family: "DM Mono", monospace;
    letter-spacing: 0.08em;
}

.hc-hero h1 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.hc-hero p {
    color: #999;
    font-size: 13px;
    max-width: 500px;
    margin: 0 auto 24px;
    line-height: 1.6;
}

.hc-cta {
    display: inline-block;
    padding: 10px 24px;
    background: #ff6b35;
    color: #fff;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

.hc-projects {
    padding: 40px 24px;
}

.hc-projects h2 {
    font-size: 20px;
    margin-bottom: 24px;
    color: #fff;
}

.hc-project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.hc-project-card {
    padding: 20px;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    background: #111;
}

.hc-project-card h3 {
    font-size: 14px;
    color: #fff;
    margin-bottom: 6px;
}

.hc-project-card p {
    font-size: 11px;
    color: #888;
    line-height: 1.5;
    margin-bottom: 12px;
}

.hc-project-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.hc-tag {
    font-size: 9px;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(255, 107, 53, 0.12);
    color: #ff6b35;
}

.hc-community {
    padding: 0 24px 40px;
}

.hc-community h2 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
}

.hc-stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.hc-stat {
    text-align: center;
    padding: 24px;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    background: #111;
}

.hc-stat-num {
    font-size: 28px;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 4px;
}

.hc-stat-label {
    font-size: 11px;
    color: #888;
}

.vc-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 16px;
    background: #000;
    border-bottom: 1px solid #222;
}

.vc-logo {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
}

.vc-nav {
    display: flex;
    gap: 18px;
    font-size: 12px;
    color: #888;
    margin-left: auto;
}

.vc-nav span {
    cursor: pointer;
    transition: color 0.15s ease;
}

.vc-nav span:hover {
    color: #fff;
}

.vc-nav span.active {
    color: #fff;
}

.vc-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, #666, #333);
    display: grid;
    place-items: center;
    font-size: 9px;
    color: #fff;
}

.vc-body {
    display: grid;
    grid-template-columns: 200px 1fr;
    min-height: 400px;
}

.vc-sidebar {
    padding: 16px 0;
    border-right: 1px solid #222;
    background: #000;
}

.vc-sidebar-section {
    padding: 0 12px;
    margin-bottom: 16px;
}

.vc-sidebar-label {
    font-size: 9px;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    padding: 0 8px;
    font-family: "DM Mono", monospace;
}

.vc-sidebar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 8px;
    border-radius: 6px;
    font-size: 12px;
    color: #888;
    cursor: pointer;
}

.vc-sidebar-item:hover {
    background: #111;
    color: #fff;
}

.vc-sidebar-item.active {
    background: #111;
    color: #fff;
}

.vc-sidebar-icon {
    font-size: 13px;
}

.vc-main {
    padding: 24px;
    background: #000;
}

.vc-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.vc-top-bar h1 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.vc-btn-new {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
}

.vc-project-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: #222;
    border: 1px solid #222;
    border-radius: 8px;
    overflow: hidden;
}

.vc-project-row {
    display: grid;
    grid-template-columns: 1fr 120px 120px 100px;
    align-items: center;
    padding: 12px 16px;
    background: #0a0a0a;
    gap: 12px;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.1s ease;
}

.vc-project-row:hover {
    background: #111;
}

.vc-project-name {
    color: #fff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vc-project-icon {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    background: linear-gradient(135deg, #666, #333);
    display: grid;
    place-items: center;
    font-size: 8px;
    color: #fff;
}

.vc-status {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
}

.vc-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.vc-status-dot.green {
    background: #00c853;
}

.vc-project-domain {
    color: #666;
    font-size: 11px;
}

.vc-project-time {
    color: #555;
    font-size: 11px;
}

.vc-deployments {
    margin-top: 24px;
}

.vc-deployments h2 {
    font-size: 14px;
    color: #fff;
    margin-bottom: 12px;
}

.vc-deploy-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    border: 1px solid #222;
    border-radius: 6px;
    margin-bottom: 6px;
    font-size: 11px;
}

.vc-deploy-project {
    color: #fff;
    font-weight: 500;
}

.vc-deploy-status {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #00c853;
}

.vc-deploy-time {
    color: #555;
}

.fake-browser-home {
    text-align: center;
    width: 100%;
    max-width: 500px;
}

.fake-browser-logo {
    font-family: "DM Mono", monospace;
    font-size: 12px;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 16px;
}

.fake-browser-home h1 {
    font-size: 22px;
    margin-bottom: 24px;
}

.fake-browser-search {
    display: flex;
    gap: 8px;
}

.fake-browser-search input {
    flex: 1;
    min-width: 0;
    border: 1px solid var(--border);
    outline: 0;
    background: var(--surface);
    color: var(--text);
    padding: 11px 13px;
    border-radius: 10px;
    font-size: 12px;
}

.fake-browser-search input::placeholder {
    color: #62656d;
}

.fake-browser-search button {
    border: 0;
    background: var(--accent);
    color: #10120b;
    padding: 9px 16px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 11px;
}

.browser-suggestions {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.browser-suggestions button {
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--muted);
    padding: 9px 16px;
    border-radius: 999px;
    font-size: 11px;
    transition: 0.2s ease;
}

.browser-suggestions button:hover {
    background: var(--surface-hover);
    color: var(--text);
}

.fake-search-page {
    width: 100%;
    max-width: 600px;
}

.fake-search-bar {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.fake-search-bar input {
    flex: 1;
    min-width: 0;
    border: 1px solid var(--border);
    outline: 0;
    background: var(--surface);
    color: var(--text);
    padding: 11px 13px;
    border-radius: 10px;
    font-size: 12px;
}

.fake-search-bar button {
    border: 0;
    background: var(--accent);
    color: #10120b;
    padding: 9px 16px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 11px;
}

.search-label {
    color: var(--muted);
    font-size: 11px;
    margin-bottom: 16px;
}

.search-results {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.search-result {
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--surface);
}

.search-result small {
    color: var(--muted);
    font-size: 10px;
}

.search-result h2 {
    font-size: 14px;
    margin-top: 6px;
    color: var(--accent);
}

.search-result p {
    color: var(--muted);
    font-size: 11px;
    margin-top: 6px;
    line-height: 1.5;
}

.hidden {
    display: none !important;
}

@media (max-width: 800px) {
    .quick-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .capsule-list {
        grid-template-columns: 1fr 1fr;
    }

    .yt-grid {
        grid-template-columns: 1fr;
    }

    .yt-body {
        grid-template-columns: 1fr;
    }

    .yt-sidebar {
        display: none;
    }

    .gh-body {
        grid-template-columns: 1fr;
    }

    .gh-sidebar {
        border-right: none;
        border-bottom: 1px solid #30363d;
        text-align: center;
    }

    .gh-stats {
        justify-content: center;
    }

    .vc-body {
        grid-template-columns: 1fr;
    }

    .vc-sidebar {
        display: none;
    }

    .hc-project-grid {
        grid-template-columns: 1fr;
    }

    .hc-stat-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 550px) {
    .app {
        width: min(100% - 24px, 700px);
        padding-top: 18px;
    }

    .time-section {
        margin-top: 65px;
    }

    .quick-links {
        grid-template-columns: 1fr 1fr;
    }

    .link-card {
        min-height: 125px;
        padding: 15px;
    }

    .capsule-list {
        grid-template-columns: 1fr;
    }

    .section-heading h2 {
        font-size: 18px;
    }

    .productivity-section {
        padding: 18px;
    }

    #searchForm button {
        display: none;
    }

    .modal-content {
        padding: 25px 20px;
    }

    .vc-project-row {
        grid-template-columns: 1fr 100px;
    }

    .vc-project-domain,
    .vc-project-time {
        display: none;
    }
}
