:root {
--accent: #22d3ee;
--accent-dark: #06b6d4;
--text: #ffffff;
--text-muted: #94a3b8;
--text-subtle: #64748b;
--bg-primary: #0f172a;
--bg-secondary: #1e293b;
--bg-tertiary: #334155;
--border: rgba(255, 255, 255, 0.1);
--border-accent: rgba(34, 211, 238, 0.3);
} body:has(.dsc-guide-wrapper),
body:has(.dsc-guides-wrapper) {
background: var(--bg-primary) !important;
} .reading-progress {
position: fixed;
top: 0;
left: 0;
height: 3px;
background: linear-gradient(90deg, var(--accent), #6366f1);
width: 0%;
z-index: 9999;
transition: width 0.1s ease-out;
} .guide-hero {
background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
padding: 60px 0 50px;
border-bottom: 1px solid var(--border);
}
.guide-breadcrumb {
display: flex;
align-items: center;
gap: 12px;
font-size: 0.9rem;
color: var(--text-muted);
margin-bottom: 24px;
}
.guide-breadcrumb a {
color: var(--accent) !important;
text-decoration: none !important;
transition: opacity 0.2s;
}
.guide-breadcrumb a:hover {
opacity: 0.8;
}
.guide-hero-content {
max-width: 800px;
}
.guide-category-badge {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 8px 16px;
background: rgba(34, 211, 238, 0.1);
border: 1px solid var(--border-accent);
border-radius: 20px;
font-size: 0.85rem;
font-weight: 500;
margin-bottom: 20px;
}
.guide-category-badge svg {
width: 16px;
height: 16px;
}
.guide-hero h1 {
font-size: 2.75rem;
font-weight: 700;
color: var(--text);
margin: 0 0 16px;
line-height: 1.2;
}
.guide-subtitle {
font-size: 1.35rem;
color: var(--text-muted);
margin: 0 0 24px;
line-height: 1.5;
}
.guide-meta {
display: flex;
gap: 24px;
flex-wrap: wrap;
}
.meta-item {
display: inline-flex;
align-items: center;
gap: 8px;
font-size: 0.95rem;
color: var(--text-muted);
}
.meta-item svg {
width: 18px;
height: 18px;
color: var(--accent);
} .guide-content {
padding: 60px 0 80px;
background: var(--bg-primary);
}
.guide-layout {
display: grid;
grid-template-columns: 1fr 300px;
gap: 60px;
align-items: start;
} .guide-article {
min-width: 0;
font-size: 1.05rem;
line-height: 1.8;
color: var(--text);
}
.guide-article p {
margin: 0 0 24px;
color: var(--text);
}
.guide-article a {
color: var(--accent) !important;
text-decoration: none;
border-bottom: 1px dashed var(--accent);
transition: all 0.2s;
}
.guide-article a:hover {
border-bottom-style: solid;
} .guide-article a.inline-service-link {
color: var(--accent) !important;
font-weight: 500;
border-bottom: 1px solid var(--accent);
padding: 0 2px;
transition: all 0.2s;
}
.guide-article a.inline-service-link:hover {
background: rgba(34, 211, 238, 0.15);
border-radius: 4px;
border-bottom-color: transparent;
} .guide-h2 {
font-size: 1.75rem;
font-weight: 700;
color: var(--text);
margin: 48px 0 24px;
padding-top: 24px;
border-top: 1px solid var(--border);
scroll-margin-top: 80px;
}
.guide-h2:first-child {
margin-top: 0;
padding-top: 0;
border-top: none;
}
.guide-h3 {
font-size: 1.35rem;
font-weight: 600;
color: var(--text);
margin: 36px 0 16px;
scroll-margin-top: 80px;
}
.guide-h4 {
font-size: 1.1rem;
font-weight: 600;
color: var(--accent);
margin: 24px 0 12px;
} .guide-list {
margin: 0 0 24px;
padding-left: 24px;
list-style: none;
}
.guide-list li {
position: relative;
margin-bottom: 12px;
padding-left: 24px;
color: var(--text);
}
.guide-list li::before {
content: '';
position: absolute;
left: 0;
top: 10px;
width: 6px;
height: 6px;
background: var(--accent);
border-radius: 50%;
}
.guide-list .checkbox {
margin-right: 8px;
color: var(--accent);
}
.guide-list .checkbox.checked {
color: #22c55e;
}
.guide-list .checkbox.unchecked {
color: var(--text-muted);
} .table-wrapper {
overflow-x: auto;
margin: 24px 0;
border-radius: 12px;
border: 1px solid var(--border);
}
.guide-article table {
width: 100%;
border-collapse: collapse;
background: var(--bg-secondary);
}
.guide-article th {
background: var(--bg-tertiary);
padding: 14px 16px;
text-align: left;
font-weight: 600;
color: var(--text);
border-bottom: 1px solid var(--border);
}
.guide-article td {
padding: 12px 16px;
border-bottom: 1px solid var(--border);
color: var(--text-muted);
}
.guide-article tr:last-child td {
border-bottom: none;
}
.guide-article tr:hover td {
background: rgba(34, 211, 238, 0.05);
} .code-block {
background: var(--bg-secondary);
border: 1px solid var(--border);
border-radius: 12px;
padding: 20px;
margin: 24px 0;
overflow-x: auto;
font-family: 'Fira Code', 'Monaco', monospace;
font-size: 0.9rem;
line-height: 1.6;
}
.code-block code {
color: var(--text);
}
.inline-code {
background: var(--bg-secondary);
padding: 2px 8px;
border-radius: 4px;
font-family: 'Fira Code', 'Monaco', monospace;
font-size: 0.9em;
color: var(--accent);
} .guide-article strong {
color: var(--text);
font-weight: 600;
} .guide-sidebar {
position: sticky;
top: 100px; display: flex;
flex-direction: column;
gap: 20px;
max-height: calc(100vh - 120px);
overflow-y: auto;
} .guide-toc {
background: var(--bg-secondary);
border: 1px solid var(--border);
border-radius: 12px;
padding: 20px;
}
.guide-toc h3 {
font-size: 0.9rem;
text-transform: uppercase;
letter-spacing: 0.05em;
color: var(--text-muted);
margin: 0 0 16px;
}
.guide-toc ul {
list-style: none;
padding: 0;
margin: 0;
}
.guide-toc li {
margin-bottom: 8px;
}
.guide-toc li.toc-indent {
padding-left: 16px;
}
.guide-toc a {
display: block;
color: var(--text-muted) !important;
text-decoration: none !important;
font-size: 0.9rem;
padding: 6px 12px;
border-radius: 6px;
transition: all 0.2s;
border-left: 2px solid transparent;
}
.guide-toc a:hover {
color: var(--text) !important;
background: rgba(255, 255, 255, 0.05);
}
.guide-toc a.active {
color: var(--accent) !important;
background: rgba(34, 211, 238, 0.1);
border-left-color: var(--accent);
} .sidebar-cta-card {
background: var(--bg-secondary);
border: 1px solid var(--border);
border-radius: 12px;
padding: 24px;
}
.sidebar-cta-card h3 {
display: flex;
align-items: center;
gap: 10px;
font-size: 1rem;
color: var(--text);
margin: 0 0 12px;
}
.sidebar-cta-card h3 svg {
width: 20px;
height: 20px;
color: var(--accent);
}
.sidebar-cta-card p {
font-size: 0.9rem;
color: var(--text-muted);
margin: 0 0 16px;
line-height: 1.6;
}
.sidebar-cta-btn,
.dsc-guide-wrapper .sidebar-cta-btn,
body .dsc-guide-wrapper .sidebar-cta-btn,
a.sidebar-cta-btn {
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
width: 100%;
padding: 14px 20px;
background: var(--accent) !important;
background-color: #22d3ee !important;
color: #0f172a !important; text-decoration: none !important;
border-radius: 8px;
font-weight: 600;
font-size: 0.95rem;
transition: all 0.2s;
border: none !important;
}
.sidebar-cta-btn:hover,
.dsc-guide-wrapper .sidebar-cta-btn:hover,
a.sidebar-cta-btn:hover {
background: #06b6d4 !important;
background-color: #06b6d4 !important;
color: #0f172a !important;
transform: translateY(-2px);
box-shadow: 0 4px 16px rgba(34, 211, 238, 0.3);
}
.sidebar-cta-btn svg {
width: 16px;
height: 16px;
color: #0f172a !important;
}
.sidebar-back {
text-align: center;
}
.sidebar-back a {
display: inline-flex;
align-items: center;
gap: 8px;
color: var(--text-muted) !important;
text-decoration: none !important;
font-size: 0.9rem;
transition: color 0.2s;
}
.sidebar-back a:hover {
color: var(--accent) !important;
}
.sidebar-back svg {
width: 16px;
height: 16px;
} .related-guides {
margin-top: 60px;
padding-top: 40px;
border-top: 1px solid var(--border);
}
.related-guides h3 {
font-size: 1.25rem;
color: var(--text);
margin: 0 0 24px;
}
.related-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 16px;
}
.related-card {
display: flex;
flex-direction: column;
gap: 8px;
padding: 20px;
background: var(--bg-secondary);
border: 1px solid var(--border);
border-radius: 12px;
text-decoration: none !important;
transition: all 0.2s;
}
.related-card:hover {
border-color: var(--accent);
transform: translateY(-2px);
}
.related-category {
font-size: 0.8rem;
color: var(--accent);
text-transform: uppercase;
letter-spacing: 0.05em;
}
.related-title {
font-size: 1rem;
color: var(--text);
font-weight: 500;
}  .guides-hero {
background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
padding: 80px 0 60px;
border-bottom: 1px solid var(--border);
text-align: center;
}
.hero-badge {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 8px 16px;
background: rgba(34, 211, 238, 0.1);
border: 1px solid var(--border-accent);
border-radius: 20px;
font-size: 0.9rem;
color: var(--accent);
margin-bottom: 24px;
}
.hero-badge svg {
width: 18px;
height: 18px;
}
.guides-hero h1 {
font-size: 3rem;
font-weight: 700;
margin: 0 0 16px;
background: linear-gradient(135deg, var(--accent), #6366f1);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.hero-description {
font-size: 1.25rem;
color: var(--text-muted);
max-width: 700px;
margin: 0 auto 32px;
line-height: 1.6;
}
.hero-stats {
display: flex;
justify-content: center;
gap: 48px;
}
.stat-item {
display: flex;
flex-direction: column;
gap: 8px;
}
.stat-number {
font-size: 2.5rem;
font-weight: 700;
color: var(--accent);
line-height: 1;
}
.stat-label {
font-size: 0.9rem;
color: var(--text-muted);
text-transform: uppercase;
letter-spacing: 0.05em;
} .guides-featured {
padding: 60px 0;
background: var(--bg-primary);
}
.section-title {
display: flex;
align-items: center;
gap: 10px;
font-size: 1rem;
color: var(--text-muted);
text-transform: uppercase;
letter-spacing: 0.05em;
margin: 0 0 24px;
}
.section-title svg {
width: 20px;
height: 20px;
color: var(--accent);
}
.featured-guide {
display: grid;
grid-template-columns: 1fr auto;
gap: 24px;
align-items: center;
padding: 40px;
background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(34, 211, 238, 0.05) 100%);
border: 1px solid var(--border-accent);
border-radius: 16px;
text-decoration: none !important;
transition: all 0.3s;
position: relative;
overflow: hidden;
}
.featured-guide::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
background: linear-gradient(90deg, var(--accent), #6366f1);
}
.featured-guide:hover {
border-color: var(--accent);
transform: translateY(-2px);
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.featured-badge {
position: absolute;
top: 20px;
right: 20px;
display: flex;
align-items: center;
gap: 6px;
padding: 6px 12px;
background: rgba(34, 211, 238, 0.1);
border-radius: 20px;
font-size: 0.8rem;
color: var(--accent);
}
.featured-badge svg {
width: 14px;
height: 14px;
}
.featured-content {
flex: 1;
}
.featured-category {
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 0.85rem;
font-weight: 500;
margin-bottom: 12px;
}
.featured-category svg {
width: 16px;
height: 16px;
}
.featured-title {
font-size: 1.75rem;
font-weight: 700;
color: var(--text);
margin: 0 0 8px;
}
.featured-subtitle {
font-size: 1.1rem;
color: var(--text-muted);
margin: 0 0 16px;
}
.featured-meta {
display: flex;
gap: 24px;
}
.featured-meta span {
display: flex;
align-items: center;
gap: 6px;
font-size: 0.9rem;
color: var(--text-subtle);
}
.featured-meta svg {
width: 16px;
height: 16px;
color: var(--accent);
}
.featured-arrow {
display: flex;
align-items: center;
justify-content: center;
width: 48px;
height: 48px;
background: var(--accent);
border-radius: 50%;
color: var(--bg-primary);
transition: transform 0.2s;
}
.featured-guide:hover .featured-arrow {
transform: translateX(4px);
}
.featured-arrow svg {
width: 24px;
height: 24px;
} .guides-list {
padding: 60px 0 80px;
background: var(--bg-secondary);
}
.guides-header {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 24px;
margin-bottom: 32px;
}
.category-filters {
display: flex;
flex-wrap: wrap;
gap: 8px;
}
.category-pill {
padding: 10px 18px;
background: rgba(30, 41, 59, 0.6);
border: 1px solid var(--border);
border-radius: 24px;
color: var(--text-muted);
font-size: 0.9rem;
font-weight: 500;
cursor: pointer;
transition: all 0.2s;
}
.category-pill:hover {
border-color: var(--accent);
color: var(--text);
}
.category-pill.active {
background: var(--accent);
color: var(--bg-primary);
border-color: var(--accent);
font-weight: 600;
} .guides-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
gap: 24px;
}
.guide-card {
display: flex;
flex-direction: column;
padding: 28px;
background: var(--bg-primary);
border: 1px solid var(--border);
border-radius: 16px;
text-decoration: none !important;
transition: all 0.3s;
position: relative;
overflow: hidden;
}
.guide-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
background: linear-gradient(90deg, var(--accent), #6366f1);
transform: scaleX(0);
transform-origin: left;
transition: transform 0.3s;
}
.guide-card:hover::before {
transform: scaleX(1);
}
.guide-card:hover {
border-color: var(--accent);
transform: translateY(-4px);
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.guide-card-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 16px;
}
.guide-card-category {
display: flex;
align-items: center;
gap: 6px;
font-size: 0.8rem;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 0.03em;
}
.guide-card-category svg {
width: 14px;
height: 14px;
}
.guide-card-time {
display: flex;
align-items: center;
gap: 6px;
font-size: 0.85rem;
color: var(--text-subtle);
}
.guide-card-time svg {
width: 14px;
height: 14px;
}
.guide-card-title {
font-size: 1.25rem;
font-weight: 600;
color: var(--text);
margin: 0 0 8px;
line-height: 1.3;
}
.guide-card-subtitle {
font-size: 0.95rem;
color: var(--accent);
margin: 0 0 12px;
font-weight: 500;
}
.guide-card-description {
font-size: 0.9rem;
color: var(--text-muted);
margin: 0;
line-height: 1.6;
flex: 1;
}
.guide-card-footer {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 20px;
padding-top: 16px;
border-top: 1px solid var(--border);
}
.guide-card-date {
font-size: 0.85rem;
color: var(--text-subtle);
}
.guide-card-arrow {
display: flex;
align-items: center;
gap: 6px;
font-size: 0.9rem;
font-weight: 500;
color: var(--accent);
transition: gap 0.2s;
}
.guide-card:hover .guide-card-arrow {
gap: 10px;
}
.guide-card-arrow svg {
width: 16px;
height: 16px;
} .no-results {
display: flex;
flex-direction: column;
align-items: center;
gap: 16px;
padding: 60px 20px;
text-align: center;
}
.no-results svg {
width: 48px;
height: 48px;
color: var(--text-subtle);
}
.no-results p {
font-size: 1.1rem;
color: var(--text-muted);
} .guides-cta {
padding: 80px 0;
background: var(--bg-primary);
}
.cta-card {
display: flex;
justify-content: space-between;
align-items: center;
gap: 40px;
padding: 48px;
background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(34, 211, 238, 0.05) 100%);
border: 1px solid var(--border-accent);
border-radius: 20px;
}
.cta-content h2 {
font-size: 1.75rem;
color: var(--text);
margin: 0 0 12px;
}
.cta-content p {
font-size: 1.05rem;
color: var(--text-muted);
margin: 0;
max-width: 500px;
line-height: 1.6;
}
.cta-actions {
display: flex;
gap: 16px;
flex-shrink: 0;
}
.cta-btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 14px 28px;
border-radius: 10px;
font-weight: 600;
font-size: 1rem;
text-decoration: none !important;
transition: all 0.2s;
}
.cta-btn.primary {
background: var(--accent);
color: var(--bg-primary) !important;
}
.cta-btn.primary:hover {
background: var(--accent-dark);
transform: translateY(-2px);
}
.cta-btn.primary svg {
width: 18px;
height: 18px;
}
.cta-btn.secondary {
background: transparent;
border: 1px solid var(--border);
color: var(--text) !important;
}
.cta-btn.secondary:hover {
border-color: var(--accent);
color: var(--accent) !important;
} @media (max-width: 1024px) {
.guide-layout {
grid-template-columns: 1fr;
gap: 40px;
}
.guide-sidebar {
position: static;
flex-direction: row;
flex-wrap: wrap;
}
.guide-toc {
flex: 1;
min-width: 280px;
}
.sidebar-cta-card {
flex: 1;
min-width: 280px;
}
}
@media (max-width: 900px) {
.guide-hero h1 {
font-size: 2.25rem;
}
.guides-hero h1 {
font-size: 2.5rem;
}
.featured-guide {
grid-template-columns: 1fr;
padding: 32px;
}
.featured-badge {
position: static;
width: fit-content;
margin-bottom: 16px;
}
.featured-arrow {
display: none;
}
.cta-card {
flex-direction: column;
text-align: center;
padding: 40px 32px;
}
.cta-content {
max-width: none;
}
.cta-content p {
max-width: none;
}
}
@media (max-width: 640px) {
.guide-hero {
padding: 40px 0 36px;
}
.guide-hero h1 {
font-size: 1.85rem;
}
.guide-subtitle {
font-size: 1.15rem;
}
.guide-meta {
flex-direction: column;
gap: 12px;
}
.guide-content {
padding: 40px 0 60px;
}
.guide-sidebar {
flex-direction: column;
}
.guides-hero h1 {
font-size: 2rem;
}
.hero-description {
font-size: 1.1rem;
}
.hero-stats {
gap: 32px;
}
.guides-grid {
grid-template-columns: 1fr;
}
.guide-card {
padding: 24px;
}
.guides-header {
flex-direction: column;
align-items: flex-start;
}
.cta-actions {
flex-direction: column;
width: 100%;
}
.cta-btn {
justify-content: center;
}
} @media print {
.reading-progress,
.guide-sidebar,
.related-guides,
.guides-cta {
display: none !important;
}
.guide-layout {
display: block;
}
.guide-article {
max-width: none;
}
.guide-hero {
background: none;
border: none;
}
body,
.dsc-guide-wrapper,
.guide-article,
.guide-article p {
color: #000 !important;
background: #fff !important;
}
}