:root {
--primary-gradient: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
--secondary-gradient: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
--accent-gradient: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
--neutral-bg: #fefefe;
--card-bg: #ffffff;
--subtle-bg: #f8fafc;
--border-light: #f1f5f9;
--border-subtle: #e2e8f0;
--text-primary: #0f172a;
--text-secondary: #475569;
--text-muted: #64748b;
--accent-purple: #8b5cf6;
--accent-cyan: #06b6d4;
--accent-amber: #f59e0b;
--shadow-subtle: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
--shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
--shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
--z-header: 1000;
--z-mobile-nav: 999;
--z-floating: 10;
--z-overlay: 50;
--spacing-xs: 4px;
--spacing-sm: 8px;
--spacing-md: 16px;
--spacing-lg: 24px;
--spacing-xl: 32px;
--spacing-2xl: 48px;
--border-radius-sm: 6px;
--border-radius-md: 12px;
--border-radius-lg: 16px;
--border-radius-xl: 24px;
--accent-line-width: 80px;
--accent-line-height: 4px;
}
* {
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', Roboto, 'Helvetica Neue', Arial, sans-serif;
background: var(--neutral-bg);
color: var(--text-primary);
overflow-x: hidden;
line-height: 1.4;
margin: 0;
padding: 0;
font-weight: 400;
font-size: 14px;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.divider {
border: none;
height: 1px;
background: var(--border-subtle);;
}
a:focus-visible, button:focus-visible, .btn-base:focus-visible {
outline: 3px solid var(--accent-cyan);
outline-offset: 3px;
border-radius: var(--border-radius-sm);
}
::selection {
background: rgba(139, 92, 246, 0.15);
color: var(--text-primary);
}
::-moz-selection {
background: rgba(139, 92, 246, 0.15);
color: var(--text-primary);
}
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
background: var(--subtle-bg);
}
::-webkit-scrollbar-thumb {
background: var(--border-subtle);
border-radius: var(--border-radius-sm);
}
::-webkit-scrollbar-thumb:hover {
background: var(--text-muted);
}
.mb-1 {
margin-bottom: 4px;
}
.mb-2 {
margin-bottom: 8px;
}
.mb-3 {
margin-bottom: 12px;
}
.mb-4 {
margin-bottom: 16px;
}
.mb-5 {
margin-bottom: 20px;
}
.mt-1 {
margin-top: 4px;
}
.mt-2 {
margin-top: 8px;
}
.mt-3 {
margin-top: 12px;
}
.mt-4 {
margin-top: 16px;
}
.mt-5 {
margin-top: 20px;
}
.p-1 {
padding: var(--spacing-sm);
}
.p-2 {
padding: var(--spacing-md);
}
.p-3 {
padding: var(--spacing-lg);
}
.p-4 {
padding: var(--spacing-xl);
}
.text-center {
text-align: center;
}
.text-left {
text-align: left;
}
.text-right {
text-align: right;
}
.text-bold {
font-weight: 700;
}
.text-semi-bold {
font-weight: 600;
}
.text-normal {
font-weight: 400;
}
.btn-base {
padding: 12px 20px;
border-radius: var(--border-radius-md);
font-weight: 600;
transition: all 0.3s ease;
border: 1px solid transparent;
text-decoration: none;
display: inline-block;
cursor: pointer;
position: relative;
overflow: hidden;
font-size: clamp(0.9rem, 2.5vw, 1rem);
}
.btn-primary {
background: var(--primary-gradient);
color: white;
box-shadow: var(--shadow-medium);
}
.btn-primary::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
transition: left 0.5s;
}
.btn-primary:hover::before {
left: 100%;
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-large);
color: white;
text-decoration: none;
}
.btn-secondary {
background: var(--card-bg);
color: var(--text-secondary);
box-shadow: var(--shadow-subtle);
border: 1px solid var(--border-subtle);
}
.btn-secondary:hover {
color: var(--accent-purple);
border-color: var(--accent-purple);
transform: translateY(-2px);
box-shadow: var(--shadow-medium);
text-decoration: none;
}
.btn-lg {
padding: 18px 48px;
font-size: clamp(1rem, 3vw, 1.1rem);
border-radius: var(--border-radius-lg);
}
.btn-sm {
padding: var(--spacing-sm) var(--spacing-md);
font-size: clamp(0.8rem, 2vw, 0.9rem);
border-radius: var(--spacing-sm);
}
.ol_decimal_1 {
list-style-type: decimal;
}
.ol_decimal_contents_1 {
list-style-type: decimal;
}
.ol_upper_latin_1 {
list-style-type: upper-latin;
}
.ol_lower_latin_1 {
list-style-type: lower-latin;
}
.ol_lower_latin_contents_1 {
list-style-type: lower-latin;
}
.ol_upper_roman_1 {
list-style-type: upper-roman;
}
.ol_lower_roman_1 {
list-style-type: lower-roman;
}
.ol_lower_roman_contents_1 {
list-style-type: lower-roman;
}
.ul_square_1 {
list-style-type: none;
}
.ul_circle_1 {
list-style-type: none;
}
.ul_disc_1 {
list-style-type: none;
}
.ul_none_2 {
list-style-type: none;
}
.ul_none_1 {
list-style-type: none;
}
code {
color: var(--accent-purple);
font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
background: var(--subtle-bg);
padding: 2px 4px;
border-radius: 4px;
font-size: 0.85em;
border: 1px solid var(--border-subtle);
font-weight: 500;
}
code.code1, .code1 {
margin: 0;
padding: 2px 4px;
color: var(--accent-purple);
background: var(--subtle-bg);
border-radius: 4px;
font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
font-size: 0.8em;
border: 1px solid var(--border-subtle);
transition: all 0.3s ease;
font-weight: 500;
}
.code1:hover {
background: var(--card-bg);
border-color: var(--accent-purple);
}
table.iconstable1, table.iconstable2, table.csstable3 {
margin: 16px 0;
padding: 0;
border-collapse: collapse;
width: 100%;
max-width: 100%;
background: var(--card-bg);
border-radius: 8px;
overflow: hidden;
box-shadow: var(--shadow-subtle);
border: 1px solid var(--border-subtle);
}
tr.csstr1 {
vertical-align: top;
transition: background-color 0.3s ease;
}
tr.csstr1:hover {
background: var(--subtle-bg);
}
td.csstd1 {
border: 1px solid var(--border-subtle);
padding: 8px;
vertical-align: top;
color: var(--text-secondary);
font-size: 0.85rem;
}
th.cssth1 {
border: 1px solid var(--border-subtle);
padding: 8px;
background: var(--primary-gradient);
color: white;
font-weight: 700;
text-align: left;
font-size: 0.85rem;
}
pre[class*="-code"] {
font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
font-size: 12px;
line-height: 1.4;
padding: 12px;
margin: 12px 0;
border-radius: 8px;
overflow-x: auto;
overflow-wrap: break-word;
white-space: pre-wrap;
border-left: 4px solid;
position: relative;
box-shadow: var(--shadow-subtle);
min-height: 60px;
background: var(--subtle-bg);
border: 1px solid var(--border-subtle);
transition: box-shadow 0.3s ease;
}
pre[class*="-code"]:hover {
box-shadow: var(--shadow-medium);
}
pre[class*="-code"]::-webkit-scrollbar {
height: 8px;
}
pre[class*="-code"]::-webkit-scrollbar-track {
background: transparent;
}
pre[class*="-code"]::-webkit-scrollbar-thumb {
background: var(--border-subtle);
border-radius: 4px;
}
.java-code {
background: #fef3c7;
color: var(--text-primary);
border-left-color: var(--accent-amber);
}
.text-code {
background: var(--subtle-bg);
color: var(--text-primary);
border-left-color: var(--text-muted);
}
.xml-code {
background: #fef2f2;
color: var(--text-primary);
border-left-color: #ef4444;
}
.sh-code {
background: #f0fdf4;
color: var(--text-primary);
border-left-color: #22c55e;
}
.sh-code::before {
content: "$ ";
color: #22c55e;
font-weight: bold;
}
.sql-code {
background: #f0f9ff;
color: var(--text-primary);
border-left-color: var(--accent-cyan);
}
.swift-code {
background: #fff7ed;
color: var(--text-primary);
border-left-color: #ea580c;
}
.yaml-code {
background: #ecfdf5;
color: var(--text-primary);
border-left-color: #10b981;
}
.python-code {
background: #fefce8;
color: var(--text-primary);
border-left-color: #eab308;
}
.dockerfile-code {
background: #f0f9ff;
color: var(--text-primary);
border-left-color: #0ea5e9;
}
pre[class*="-code"]:before {
position: absolute;
top: 8px;
right: 12px;
font-size: 10px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
opacity: 0.7;
padding: 2px 4px;
border-radius: 4px;
background: rgba(255, 255, 255, 0.9);
pointer-events: none;
box-shadow: var(--shadow-subtle);
}
.java-code:before {
content: "Java";
color: var(--accent-amber);
}
.text-code:before {
content: "Text";
color: var(--text-muted);
}
.xml-code:before {
content: "XML";
color: #ef4444;
}
.sh-code:before {
content: "Shell";
color: #22c55e;
}
.sql-code:before {
content: "SQL";
color: var(--accent-cyan);
}
.swift-code:before {
content: "Swift";
color: #ea580c;
}
.yaml-code:before {
content: "YAML";
color: #10b981;
}
.python-code:before {
content: "Python";
color: #eab308;
}
.dockerfile-code:before {
content: "Docker";
color: #0ea5e9;
}