/* ===== CSS Variables & Reset ===== */
:root {
    --primary: #FF6F61;
    --primary-dark: #E85A4F;
    --secondary: #6C5CE7;
    --accent: #00B894;
    --text-primary: #2D3436;
    --text-secondary: #636E72;
    --text-light: #B2BEC3;
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8F9FA;
    --bg-dark: #1A1A2E;
    --border: #E9ECEF;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    --max-width: 1200px;
    --header-height: 72px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-sans); color: var(--text-primary); background: var(--bg-primary); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; border: none; outline: none; }
button { cursor: pointer; }

/* ===== Header ===== */
.c0c55403f { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); height: var(--header-height); transition: transform var(--transition), box-shadow var(--transition); }
.c0c55403f.scrolled { box-shadow: var(--shadow-sm); }
.cf8ac83c9 { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; height: 100%; display: flex; align-items: center; justify-content: space-between; }
.c9487a398 { display: flex; align-items: center; gap: 8px; }
.c9f274db6 { font-size: 1.25rem; font-weight: 700; background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.c01528c4d { display: flex; gap: 32px; }
.cae2e9c0d { font-size: 0.95rem; font-weight: 500; color: var(--text-secondary); padding: 8px 0; position: relative; transition: color var(--transition); }
.cae2e9c0d:hover, .cae2e9c0d.cdd580987 { color: var(--primary); }
.cae2e9c0d.cdd580987::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--primary); border-radius: 1px; }
.cd6520e29 { display: flex; align-items: center; gap: 16px; }
.c76b8b05d { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: var(--radius-full); color: var(--text-secondary); transition: background var(--transition), color var(--transition); }
.c76b8b05d:hover { background: var(--bg-secondary); color: var(--primary); }

/* Buttons */
.cd2e67d0c { display: inline-flex; align-items: center; justify-content: center; padding: 12px 28px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; font-weight: 600; border-radius: var(--radius-full); transition: transform var(--transition), box-shadow var(--transition); }
.cd2e67d0c:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(255,111,97,0.4); }
.cd2e67d0c.cf6f5da7b { padding: 8px 20px; font-size: 0.875rem; }
.cd2e67d0c.c74f5a328 { padding: 16px 36px; font-size: 1.1rem; }
.c6b73bd22 { display: inline-flex; align-items: center; justify-content: center; padding: 12px 28px; border: 2px solid var(--primary); color: var(--primary); font-weight: 600; border-radius: var(--radius-full); transition: all var(--transition); }
.c6b73bd22:hover { background: var(--primary); color: #fff; }

/* Mobile menu toggle */
.c6d35e245 { display: none; flex-direction: column; gap: 5px; width: 28px; padding: 4px 0; background: none; }
.c6d35e245 span { display: block; height: 2px; background: var(--text-primary); border-radius: 1px; transition: var(--transition); }

/* ===== Hero Section ===== */
.c48d8de74 { position: relative; padding: calc(var(--header-height) + 60px) 24px 60px; overflow: hidden; min-height: 90vh; display: flex; flex-direction: column; justify-content: center; }
.cae3e0aff { position: absolute; inset: 0; background: linear-gradient(135deg, #FFF5F4 0%, #F0E6FF 50%, #E8F8F5 100%); z-index: -1; }
.c51cdd5d3 { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.c55969fc0 { font-size: 2.75rem; font-weight: 800; line-height: 1.3; margin-bottom: 20px; background: linear-gradient(135deg, var(--text-primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cb5db7591 { font-size: 1.1rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 32px; }
.c37c11837 { display: flex; gap: 16px; flex-wrap: wrap; }
.ce6de31ce { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.ce6de31ce img { width: 100%; height: auto; object-fit: cover; }
.c02182c49 { max-width: var(--max-width); margin: 48px auto 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.c5ba71611 { text-align: center; padding: 20px; background: rgba(255,255,255,0.8); border-radius: var(--radius-md); backdrop-filter: blur(8px); }
.c2732bb49 { display: block; font-size: 1.75rem; font-weight: 800; color: var(--primary); }
.ce46a96ff { font-size: 0.875rem; color: var(--text-secondary); margin-top: 4px; }

/* ===== Section Common ===== */
.c70cb6fe2 { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.c6d9dc1f3 { text-align: center; margin-bottom: 48px; }
.ca0e9df03 { font-size: 2rem; font-weight: 700; margin-bottom: 12px; }
.c9c8a2166 { font-size: 1rem; color: var(--text-secondary); max-width: 640px; margin: 0 auto; }
section { padding: 80px 0; }
section:nth-child(even) { background: var(--bg-secondary); }

/* ===== Masonry Grid ===== */
.c7e7984c8 { columns: 3; column-gap: 20px; }
.c458ebfb8 { break-inside: avoid; margin-bottom: 20px; }
.c309d7282 { display: block; border-radius: var(--radius-md); overflow: hidden; background: var(--bg-primary); box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition); }
.c309d7282:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.c2fc359cc { position: relative; overflow: hidden; }
.c2fc359cc img { width: 100%; transition: transform var(--transition); }
.c309d7282:hover .c2fc359cc img { transform: scale(1.03); }
.c1fa0f58b { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px; background: linear-gradient(transparent, rgba(0,0,0,0.7)); display: flex; justify-content: space-between; align-items: center; opacity: 0; transition: opacity var(--transition); }
.c309d7282:hover .c1fa0f58b { opacity: 1; }
.c0c491d79 { color: #fff; font-weight: 700; font-size: 1rem; }
.cbb7ebab6 { color: rgba(255,255,255,0.8); font-size: 0.8rem; padding: 3px 8px; background: rgba(255,255,255,0.2); border-radius: var(--radius-sm); }
.c745e75dd { padding: 16px; }
.c14f52314 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.c3606dadd { font-size: 0.85rem; color: var(--text-secondary); }

/* ===== Style Navigation ===== */
.c302fcec0 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.c97456cf0 { display: flex; flex-direction: column; align-items: center; padding: 24px 16px; border-radius: var(--radius-md); background: var(--bg-primary); box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition); text-align: center; }
.c97456cf0:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.c2a606ffa { width: 48px; height: 48px; border-radius: var(--radius-full); background: var(--card-color); margin-bottom: 12px; }
.c66203b5c { font-weight: 600; font-size: 0.95rem; margin-bottom: 4px; }
.c443e5409 { font-size: 0.8rem; color: var(--text-secondary); }

/* ===== Artists ===== */
.c53e99abc { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.c9fc5d8ba { display: flex; flex-direction: column; align-items: center; padding: 28px 20px; border-radius: var(--radius-md); background: var(--bg-primary); box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition); text-align: center; }
.c9fc5d8ba:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.c29895cf6 { width: 80px; height: 80px; border-radius: var(--radius-full); overflow: hidden; margin-bottom: 12px; border: 3px solid var(--bg-secondary); }
.c29895cf6 img { width: 100%; height: 100%; object-fit: cover; }
.cc6c1c52f { font-weight: 600; font-size: 1.05rem; margin-bottom: 8px; }
.ce1b75106 { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-bottom: 8px; }
.cf94df241 { display: inline-block; padding: 3px 10px; font-size: 0.75rem; background: var(--bg-secondary); color: var(--text-secondary); border-radius: var(--radius-full); }
.c7ac95e2e { font-size: 0.8rem; padding: 4px 12px; border-radius: var(--radius-full); }
.c7ac95e2e.cc2c94028 { background: #D4EDDA; color: #155724; }
.c7ac95e2e.c657de68c { background: #FFF3CD; color: #856404; }
.c63bd36e2 { margin-top: 12px; }
.c63bd36e2 img { width: 60px; height: 60px; border-radius: var(--radius-sm); object-fit: cover; }

/* ===== Cases ===== */
.cc09a1ed9 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.c26410096 { border-radius: var(--radius-md); overflow: hidden; background: var(--bg-primary); box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition); }
.c26410096:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.c72ca2ca6 img { width: 100%; height: 200px; object-fit: cover; }
.c97bc1e0e { padding: 20px; }
.c9934a8de { font-size: 0.8rem; color: var(--primary); font-weight: 600; text-transform: uppercase; }
.c1d4ac1c1 { font-size: 1.1rem; font-weight: 600; margin: 8px 0; }
.cf8cb01d2 { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

/* ===== Creator Growth ===== */
.cd864dfe7 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 40px; }
.c2156354f { text-align: center; padding: 32px 20px; background: var(--bg-primary); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.c7e4d625e { font-size: 2rem; margin-bottom: 12px; }
.c54e828d0 { font-size: 1.75rem; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.cc9b61579 { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 8px; }
.c58bb80c0 { font-size: 0.8rem; padding: 3px 10px; border-radius: var(--radius-full); display: inline-block; }
.c58bb80c0.ce3de73c3 { background: #D4EDDA; color: #155724; }
.c58bb80c0.c63b17910 { background: #E2E3E5; color: #383D41; }
.ce398d890 { text-align: center; }
.c89c43924 { font-size: 1rem; color: var(--text-secondary); max-width: 640px; margin: 0 auto 24px; line-height: 1.8; }

/* ===== Topics ===== */
.cf1a4135c { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.c4002836e { border-radius: var(--radius-md); overflow: hidden; background: var(--bg-primary); box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition); }
.c4002836e:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cbdbea82d img { width: 100%; height: 180px; object-fit: cover; }
.cb9f3ec9d { padding: 20px; }
.cd81ec1d7 { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; line-height: 1.4; }
.c9fd7fb3d { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

/* ===== Footer ===== */
.c2323f192 { background: var(--bg-dark); color: rgba(255,255,255,0.8); padding: 60px 0 30px; }
.c22bfaaf1 { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.c0db3df90 { display: grid; grid-template-columns: 1.5fr 2fr; gap: 60px; margin-bottom: 40px; }
.c4c64df46 { font-size: 1.25rem; font-weight: 700; color: #fff; display: block; margin-bottom: 12px; }
.c81c7b1d5 { font-size: 0.9rem; line-height: 1.7; opacity: 0.8; }
.cebe9cbb1 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.c0d3a7e0b h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.c0d3a7e0b ul li { margin-bottom: 10px; }
.c0d3a7e0b ul li a { font-size: 0.9rem; opacity: 0.7; transition: opacity var(--transition); }
.c0d3a7e0b ul li a:hover { opacity: 1; color: var(--primary); }
.c5af7a498 { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; text-align: center; font-size: 0.85rem; opacity: 0.6; }
.c5af7a498 a { color: var(--primary); }

/* ===== Page Common ===== */
.c5238c6fb { padding-top: calc(var(--header-height) + 24px); max-width: var(--max-width); margin: 0 auto; padding-left: 24px; padding-right: 24px; padding-bottom: 80px; }
.ccc35dad2 { margin-bottom: 24px; }
.ccc35dad2 ol { display: flex; gap: 8px; font-size: 0.85rem; color: var(--text-secondary); }
.ccc35dad2 ol li::after { content: '/'; margin-left: 8px; }
.ccc35dad2 ol li:last-child::after { content: ''; }
.ccc35dad2 a { color: var(--text-secondary); }
.ccc35dad2 a:hover { color: var(--primary); }
.c2dddb0d8 { margin-bottom: 48px; }
.c25785e5c { font-size: 2.25rem; font-weight: 700; margin-bottom: 16px; }
.c62ae2666 { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.9; max-width: 800px; }

/* ===== Filter Section ===== */
.c0ad0cb7e { margin-bottom: 40px; }
.c36294903 { display: flex; gap: 16px; flex-wrap: wrap; padding: 20px; background: var(--bg-secondary); border-radius: var(--radius-md); }
.cbf27b204 { display: flex; flex-direction: column; gap: 4px; }
.cfb8a0199 { font-size: 0.8rem; color: var(--text-secondary); font-weight: 500; }
.cb468bf05 { padding: 8px 16px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--bg-primary); font-size: 0.9rem; min-width: 140px; }

/* ===== Pricing Cards ===== */
.c01429b00, .pricing-section { padding: 60px 0; }
.c01429b00 h2, .pricing-section h2 { font-size: 1.75rem; font-weight: 700; text-align: center; margin-bottom: 36px; }
.c79a53678 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cfcf41b68 { padding: 32px 24px; border: 1px solid var(--border); border-radius: var(--radius-md); text-align: center; transition: transform var(--transition), box-shadow var(--transition); }
.cfcf41b68:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cfcf41b68.cc4c80b60 { border-color: var(--primary); position: relative; }
.cfcf41b68.cc4c80b60::before { content: '推荐'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #fff; padding: 4px 16px; border-radius: var(--radius-full); font-size: 0.8rem; font-weight: 600; }
.cfcf41b68 h3 { font-size: 1.2rem; margin-bottom: 12px; }
.cfcf41b68 .c4ceaf1e2 { font-size: 2rem; font-weight: 800; color: var(--primary); margin-bottom: 20px; }
.cfcf41b68 ul { text-align: left; }
.cfcf41b68 ul li { padding: 8px 0; font-size: 0.9rem; color: var(--text-secondary); border-bottom: 1px solid var(--border); }
.cfcf41b68 ul li:last-child { border-bottom: none; }

/* ===== FAQ ===== */
.ca16ceb57 { padding: 60px 0; }
.ca16ceb57 h2 { font-size: 1.75rem; font-weight: 700; margin-bottom: 24px; }
.cb5247430 { border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; }
.cb5247430 summary { padding: 16px 20px; font-weight: 600; cursor: pointer; transition: background var(--transition); }
.cb5247430 summary:hover { background: var(--bg-secondary); }
.cb5247430 p { padding: 0 20px 16px; color: var(--text-secondary); line-height: 1.8; }

/* ===== Related Links ===== */
.c49d51eff { padding: 40px 0; border-top: 1px solid var(--border); margin-top: 40px; }
.c49d51eff h2 { font-size: 1.25rem; margin-bottom: 16px; }
.c49d51eff ul li { margin-bottom: 8px; }
.c49d51eff ul li a { color: var(--primary); font-size: 0.95rem; }
.c49d51eff ul li a:hover { text-decoration: underline; }

/* ===== Article Page ===== */
.ccc479e4c .c93ffb286 { margin-bottom: 40px; }
.ccc479e4c .cb84f64f7 { border-radius: var(--radius-md); overflow: hidden; margin-bottom: 32px; }
.ccc479e4c .cb84f64f7 img { width: 100%; height: auto; }
.ccc479e4c h1 { font-size: 2.25rem; font-weight: 700; margin-bottom: 16px; line-height: 1.3; }
.c88f85eed { display: flex; gap: 20px; color: var(--text-secondary); font-size: 0.9rem; }
.cb8797445 { max-width: 760px; }
.cb8797445 p { margin-bottom: 20px; line-height: 1.9; }
.cb8797445 p.c68a76340 { font-size: 1.15rem; color: var(--text-secondary); border-left: 3px solid var(--primary); padding-left: 20px; }
.cb8797445 h2 { font-size: 1.5rem; font-weight: 700; margin: 40px 0 16px; }
.cb8797445 strong { color: var(--primary); }

/* ===== Detail Page ===== */
.cfc93403a { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; margin-bottom: 60px; }
.c5832f50c { border-radius: var(--radius-md); overflow: hidden; }
.c5832f50c img { width: 100%; height: auto; }
.c87c5cc61 h1 { font-size: 1.75rem; font-weight: 700; margin-bottom: 12px; }
.ceaab5f93 { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.c052fdf64 { width: 48px; height: 48px; border-radius: var(--radius-full); object-fit: cover; }
.ceaab5f93 a { color: var(--primary); font-weight: 500; }
.c5c86c8b0 { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.cd853a2e7 { margin-bottom: 24px; color: var(--text-secondary); line-height: 1.8; }
.cb1b11662 { margin-bottom: 24px; padding: 20px; background: var(--bg-secondary); border-radius: var(--radius-md); }
.c16095790 { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.c16095790:last-child { border-bottom: none; }
.cd0d3e3a3 { color: var(--text-secondary); }
.c506b0ddf { font-weight: 500; }
.c9724d9d7 h3 { font-size: 1.2rem; margin-bottom: 16px; }
.c3b49d6e1 { margin-bottom: 20px; }
.c57019cae { margin-bottom: 12px; }
.c57019cae label { display: flex; align-items: center; gap: 12px; padding: 16px; border: 1px solid var(--border); border-radius: var(--radius-sm); cursor: pointer; transition: border-color var(--transition); }
.c57019cae input:checked + label { border-color: var(--primary); background: #FFF5F4; }
.c63b0631e { font-weight: 600; flex: 1; }
.c016f6583 { font-size: 1.1rem; font-weight: 700; color: var(--primary); }
.cea90b006 { font-size: 0.8rem; color: var(--text-secondary); }

/* ===== Artists Page ===== */
.cf0d064dc { display: flex; gap: 16px; margin-bottom: 32px; flex-wrap: wrap; }
.cbbf45d0b { display: flex; gap: 20px; padding: 24px; border: 1px solid var(--border); border-radius: var(--radius-md); margin-bottom: 16px; transition: box-shadow var(--transition); }
.cbbf45d0b:hover { box-shadow: var(--shadow-md); }
.cbbf45d0b .c29895cf6 { width: 80px; height: 80px; border-radius: var(--radius-full); overflow: hidden; flex-shrink: 0; }
.cbbf45d0b .c29895cf6 img { width: 100%; height: 100%; object-fit: cover; }
.cb5d9a99f h3 { font-size: 1.1rem; margin-bottom: 8px; }
.c74ea21db { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; margin: 8px 0; }
.c00453c9c { display: flex; gap: 16px; font-size: 0.85rem; color: var(--text-secondary); flex-wrap: wrap; }
.cd0f5c83f { padding: 3px 10px; background: var(--bg-secondary); border-radius: var(--radius-full); }
.cf6e1f3ea { background: #D4EDDA !important; color: #155724 !important; }
.ca7922ebb { background: #FFF3CD !important; color: #856404 !important; }

/* ===== Process Steps ===== */
.c30214e27 { padding: 60px 0; }
.c30214e27 h2 { font-size: 1.75rem; font-weight: 700; text-align: center; margin-bottom: 36px; }
.c793301a5 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.c1d4f01b7 { text-align: center; padding: 24px; }
.c6cf32525 { display: inline-block; width: 40px; height: 40px; line-height: 40px; border-radius: var(--radius-full); background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; font-weight: 700; margin-bottom: 12px; }
.c1d4f01b7 h3 { font-size: 1rem; margin-bottom: 8px; }
.c1d4f01b7 p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

/* ===== Services Grid ===== */
.c36f120d2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.cf68d4856 { padding: 32px; border: 1px solid var(--border); border-radius: var(--radius-md); transition: box-shadow var(--transition); }
.cf68d4856:hover { box-shadow: var(--shadow-md); }
.cf68d4856 h3 { font-size: 1.15rem; margin-bottom: 12px; }
.cf68d4856 p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 12px; }
.c827bae0d { font-weight: 700; color: var(--primary); }

/* ===== License Grid ===== */
.cfe889e3a { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.c5b9f667b { padding: 28px; border: 1px solid var(--border); border-radius: var(--radius-md); }
.c5b9f667b h3 { font-size: 1.15rem; margin-bottom: 8px; color: var(--primary); }
.c3ea68d5a { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 16px; line-height: 1.6; }
.c08c6d0cc { margin-bottom: 16px; }
.c08c6d0cc li { padding: 6px 0; font-size: 0.9rem; padding-left: 20px; position: relative; }
.c08c6d0cc li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.c53c1937a { font-size: 1.25rem; font-weight: 700; color: var(--primary); }

/* ===== Tutorials ===== */
.ca88dbed7, .c2898d3d5 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 40px; }
.c50deba76, .cd5e0005b { padding: 24px; border: 1px solid var(--border); border-radius: var(--radius-md); transition: box-shadow var(--transition); }
.c50deba76:hover, .cd5e0005b:hover { box-shadow: var(--shadow-md); }
.c50deba76 h3, .cd5e0005b h3 { font-size: 1.05rem; margin-bottom: 8px; }
.c50deba76 p, .cd5e0005b p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }
.cbd9974f2 { display: flex; gap: 16px; margin-top: 12px; font-size: 0.8rem; color: var(--text-light); }

/* ===== Community ===== */
.c1a8962da { display: flex; flex-direction: column; gap: 16px; }
.ced0fad9a { padding: 20px; border: 1px solid var(--border); border-radius: var(--radius-md); }
.cb6ad8b77 { display: inline-block; padding: 3px 10px; font-size: 0.75rem; font-weight: 600; background: var(--primary); color: #fff; border-radius: var(--radius-full); margin-bottom: 8px; }
.ced0fad9a h3 { font-size: 1.05rem; margin-bottom: 6px; }
.ced0fad9a p { font-size: 0.9rem; color: var(--text-secondary); }

/* ===== Profile Page ===== */
.c24040e42 { display: flex; gap: 32px; align-items: center; margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--border); }
.c6a0328f6 { width: 120px; height: 120px; border-radius: var(--radius-full); overflow: hidden; flex-shrink: 0; border: 4px solid var(--bg-secondary); }
.c6a0328f6 img { width: 100%; height: 100%; object-fit: cover; }
.c5d0b22b7 { color: var(--text-secondary); margin-bottom: 12px; }
.c6a7ab7c3 { display: flex; gap: 20px; font-size: 0.9rem; color: var(--text-secondary); margin-top: 12px; }
.c41d78512 { margin-bottom: 40px; }
.c41d78512 h2 { font-size: 1.25rem; margin-bottom: 12px; }
.c41d78512 p { color: var(--text-secondary); line-height: 1.8; }
.cb884c0cd { margin-bottom: 40px; }
.cb884c0cd h2 { font-size: 1.25rem; margin-bottom: 16px; }
.cc383187b { border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.caf03026a { display: flex; justify-content: space-between; padding: 14px 20px; border-bottom: 1px solid var(--border); }
.caf03026a:last-child { border-bottom: none; }
.caf03026a:nth-child(even) { background: var(--bg-secondary); }

/* ===== Works Grid (small) ===== */
.cc00ba1b2, .cba942a50 { display: flex; gap: 16px; flex-wrap: wrap; }
.c21650de5 { display: flex; flex-direction: column; align-items: center; gap: 8px; width: 120px; }
.c21650de5 img { width: 120px; height: 120px; object-fit: cover; border-radius: var(--radius-sm); }
.c21650de5 span { font-size: 0.85rem; text-align: center; }

/* ===== Contact Form ===== */
.c6a63a551 { margin-top: 40px; padding-top: 40px; border-top: 1px solid var(--border); }
.c6a63a551 h2 { font-size: 1.25rem; margin-bottom: 20px; }
.c6077c5eb { max-width: 500px; }
.c01cde3a5 { margin-bottom: 20px; }
.c01cde3a5 label { display: block; font-size: 0.9rem; font-weight: 500; margin-bottom: 6px; }
.c01cde3a5 input, .c01cde3a5 select, .c01cde3a5 textarea { width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 0.95rem; transition: border-color var(--transition); }
.c01cde3a5 input:focus, .c01cde3a5 select:focus, .c01cde3a5 textarea:focus { border-color: var(--primary); }

/* ===== Search Page ===== */
.c9a0bc4ee { padding-top: calc(var(--header-height) + 60px); }
.ca42caac6 { max-width: 640px; margin: 0 auto; text-align: center; }
.ca42caac6 h1 { font-size: 2rem; margin-bottom: 24px; }
.c512827c5 { display: flex; gap: 0; margin-bottom: 32px; }
.c38fc97af { flex: 1; padding: 16px 24px; border: 2px solid var(--border); border-radius: var(--radius-full) 0 0 var(--radius-full); font-size: 1rem; }
.c38fc97af:focus { border-color: var(--primary); }
.c4d0a7adb { padding: 16px 32px; background: var(--primary); color: #fff; font-weight: 600; border-radius: 0 var(--radius-full) var(--radius-full) 0; }
.cbf338486 { text-align: left; }
.cbf338486 h3 { font-size: 1rem; margin-bottom: 12px; color: var(--text-secondary); }
.c465728e1 { display: flex; flex-wrap: wrap; gap: 10px; }
.c465728e1 a { padding: 6px 16px; background: var(--bg-secondary); border-radius: var(--radius-full); font-size: 0.9rem; color: var(--text-secondary); transition: all var(--transition); }
.c465728e1 a:hover { background: var(--primary); color: #fff; }
.c35d416f9 { color: var(--text-light); margin-top: 40px; }

/* ===== Download Page ===== */
.c753a75e2 { text-align: center; padding-top: calc(var(--header-height) + 80px); }
.cb0ce44d4 h1 { font-size: 2.25rem; margin-bottom: 16px; }
.c7967699b { font-size: 1.05rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto 32px; line-height: 1.8; }
.c70d5f04b { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }
.c60cad1d3 { display: flex; align-items: center; gap: 12px; padding: 14px 28px; border: 2px solid var(--border); border-radius: var(--radius-md); transition: all var(--transition); }
.c60cad1d3:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.c2ec733ea { font-size: 1.5rem; }
.c64198980 { text-align: left; line-height: 1.3; }
.c64198980 small { display: block; font-size: 0.75rem; color: var(--text-secondary); }
.c4b4629dc { text-align: left; }
.c4b4629dc h2 { text-align: center; font-size: 1.75rem; margin-bottom: 32px; }
.c4a27040d { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.c311b1b88 { padding: 24px; border: 1px solid var(--border); border-radius: var(--radius-md); }
.c311b1b88 h3 { margin-bottom: 8px; }
.c311b1b88 p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

/* ===== Legal Pages ===== */
.c78f9a7fd .cb4d11e02 { max-width: 760px; }
.cb4d11e02 h1 { font-size: 2rem; margin-bottom: 8px; }
.ce7cd3712 { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 32px; }
.cb4d11e02 h2 { font-size: 1.25rem; margin: 32px 0 12px; }
.cb4d11e02 p { color: var(--text-secondary); line-height: 1.9; margin-bottom: 16px; }

/* ===== About Page ===== */
.c1a68529a h1 { font-size: 2rem; margin-bottom: 32px; }
.c2453177d { margin-bottom: 32px; }
.c2453177d h2 { font-size: 1.25rem; margin-bottom: 12px; }
.c2453177d p { color: var(--text-secondary); line-height: 1.9; }

/* ===== Mobile Nav Overlay ===== */
.c87e98ed8 { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 999; opacity: 0; pointer-events: none; transition: opacity var(--transition); }
.c87e98ed8.cdd580987 { opacity: 1; pointer-events: all; }
.c4b4d98ec { position: absolute; top: 0; right: 0; width: 280px; height: 100%; background: var(--bg-primary); padding: 80px 24px 24px; }
.c4b4d98ec ul li { margin-bottom: 16px; }
.c4b4d98ec ul li a { font-size: 1.1rem; font-weight: 500; display: block; padding: 12px 0; border-bottom: 1px solid var(--border); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .c51cdd5d3 { grid-template-columns: 1fr; gap: 40px; }
    .c02182c49 { grid-template-columns: repeat(2, 1fr); }
    .c7e7984c8 { columns: 2; }
    .c302fcec0 { grid-template-columns: repeat(3, 1fr); }
    .c53e99abc { grid-template-columns: repeat(2, 1fr); }
    .cc09a1ed9 { grid-template-columns: repeat(2, 1fr); }
    .cd864dfe7 { grid-template-columns: repeat(2, 1fr); }
    .cf1a4135c { grid-template-columns: repeat(2, 1fr); }
    .c0db3df90 { grid-template-columns: 1fr; gap: 40px; }
    .cfc93403a { grid-template-columns: 1fr; }
    .cfe889e3a { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    :root { --header-height: 60px; }
    .c3d277c94 { display: none; }
    .c6d35e245 { display: flex; }
    .c48d8de74 { min-height: auto; padding: calc(var(--header-height) + 40px) 16px 40px; }
    .c55969fc0 { font-size: 1.75rem; }
    .cb5db7591 { font-size: 1rem; }
    .c02182c49 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .c2732bb49 { font-size: 1.25rem; }
    .ca0e9df03 { font-size: 1.5rem; }
    .c7e7984c8 { columns: 1; }
    .c302fcec0 { grid-template-columns: repeat(2, 1fr); }
    .c53e99abc { grid-template-columns: 1fr; }
    .cc09a1ed9 { grid-template-columns: 1fr; }
    .cd864dfe7 { grid-template-columns: 1fr; }
    .cf1a4135c { grid-template-columns: 1fr; }
    .c79a53678 { grid-template-columns: 1fr; }
    .c36f120d2 { grid-template-columns: 1fr; }
    .ca88dbed7, .c2898d3d5 { grid-template-columns: 1fr; }
    .c4a27040d { grid-template-columns: 1fr; }
    .cebe9cbb1 { grid-template-columns: 1fr; }
    .c25785e5c { font-size: 1.75rem; }
    .c24040e42 { flex-direction: column; text-align: center; }
    .c6a7ab7c3 { justify-content: center; flex-wrap: wrap; }
    .cbbf45d0b { flex-direction: column; align-items: center; text-align: center; }
    .c36294903 { flex-direction: column; }
    .c70d5f04b { flex-direction: column; align-items: center; }
    section { padding: 50px 0; }
}

@media (max-width: 480px) {
    .c55969fc0 { font-size: 1.5rem; }
    .c37c11837 { flex-direction: column; }
    .cd2e67d0c, .c6b73bd22 { width: 100%; text-align: center; }
    .c302fcec0 { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}
