/* ===== 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 ===== */
.c3b00a4e1 { 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); }
.c3b00a4e1.scrolled { box-shadow: var(--shadow-sm); }
.c48587ae2 { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; height: 100%; display: flex; align-items: center; justify-content: space-between; }
.c5348cacc { display: flex; align-items: center; gap: 8px; }
.c14e83787 { 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; }
.c2a77bfaf { display: flex; gap: 32px; }
.caeae7e87 { font-size: 0.95rem; font-weight: 500; color: var(--text-secondary); padding: 8px 0; position: relative; transition: color var(--transition); }
.caeae7e87:hover, .caeae7e87.c7a0874bc { color: var(--primary); }
.caeae7e87.c7a0874bc::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--primary); border-radius: 1px; }
.cdaf8c0e4 { display: flex; align-items: center; gap: 16px; }
.ce9b15c1e { 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); }
.ce9b15c1e:hover { background: var(--bg-secondary); color: var(--primary); }

/* Buttons */
.cea616864 { 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); }
.cea616864:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(255,111,97,0.4); }
.cea616864.c997ebf0d { padding: 8px 20px; font-size: 0.875rem; }
.cea616864.cecfc942e { padding: 16px 36px; font-size: 1.1rem; }
.cd00b16f3 { 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); }
.cd00b16f3:hover { background: var(--primary); color: #fff; }

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

/* ===== Hero Section ===== */
.c4f1be786 { position: relative; padding: calc(var(--header-height) + 60px) 24px 60px; overflow: hidden; min-height: 90vh; display: flex; flex-direction: column; justify-content: center; }
.c024174a2 { position: absolute; inset: 0; background: linear-gradient(135deg, #FFF5F4 0%, #F0E6FF 50%, #E8F8F5 100%); z-index: -1; }
.c5fe093ec { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.c68c82d92 { 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; }
.c6ae633e6 { font-size: 1.1rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 32px; }
.c1bad4997 { display: flex; gap: 16px; flex-wrap: wrap; }
.c26f2682d { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.c26f2682d img { width: 100%; height: auto; object-fit: cover; }
.c0d65f35e { max-width: var(--max-width); margin: 48px auto 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.c291cee64 { text-align: center; padding: 20px; background: rgba(255,255,255,0.8); border-radius: var(--radius-md); backdrop-filter: blur(8px); }
.c77bac5c9 { display: block; font-size: 1.75rem; font-weight: 800; color: var(--primary); }
.cd10419ea { font-size: 0.875rem; color: var(--text-secondary); margin-top: 4px; }

/* ===== Section Common ===== */
.cba1428cc { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.cee527c8a { text-align: center; margin-bottom: 48px; }
.c3ed84ab7 { font-size: 2rem; font-weight: 700; margin-bottom: 12px; }
.c47463bb3 { 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 ===== */
.cbf3bc784 { columns: 3; column-gap: 20px; }
.c2b2e27ea { break-inside: avoid; margin-bottom: 20px; }
.c2dcba163 { 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); }
.c2dcba163:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.c97cac3a9 { position: relative; overflow: hidden; }
.c97cac3a9 img { width: 100%; transition: transform var(--transition); }
.c2dcba163:hover .c97cac3a9 img { transform: scale(1.03); }
.c92a0d3ed { 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); }
.c2dcba163:hover .c92a0d3ed { opacity: 1; }
.c92a4c3c9 { color: #fff; font-weight: 700; font-size: 1rem; }
.cf0cd62d8 { 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); }
.ce1b2cd4c { padding: 16px; }
.ce5391d1b { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.c232eb8c8 { font-size: 0.85rem; color: var(--text-secondary); }

/* ===== Style Navigation ===== */
.cbd0b37ef { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.c70c6c873 { 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; }
.c70c6c873:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.c94e3598b { width: 48px; height: 48px; border-radius: var(--radius-full); background: var(--card-color); margin-bottom: 12px; }
.cb15d3960 { font-weight: 600; font-size: 0.95rem; margin-bottom: 4px; }
.ce4dda52a { font-size: 0.8rem; color: var(--text-secondary); }

/* ===== Artists ===== */
.cfb98744b { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.c21152621 { 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; }
.c21152621:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.c53ea98b1 { width: 80px; height: 80px; border-radius: var(--radius-full); overflow: hidden; margin-bottom: 12px; border: 3px solid var(--bg-secondary); }
.c53ea98b1 img { width: 100%; height: 100%; object-fit: cover; }
.c184bd0a0 { font-weight: 600; font-size: 1.05rem; margin-bottom: 8px; }
.c3f2a6ca9 { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-bottom: 8px; }
.c3d10c41b { display: inline-block; padding: 3px 10px; font-size: 0.75rem; background: var(--bg-secondary); color: var(--text-secondary); border-radius: var(--radius-full); }
.c2bdf5e13 { font-size: 0.8rem; padding: 4px 12px; border-radius: var(--radius-full); }
.c2bdf5e13.c934d12c4 { background: #D4EDDA; color: #155724; }
.c2bdf5e13.cd8b7eb68 { background: #FFF3CD; color: #856404; }
.ceae63f62 { margin-top: 12px; }
.ceae63f62 img { width: 60px; height: 60px; border-radius: var(--radius-sm); object-fit: cover; }

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

/* ===== Creator Growth ===== */
.cbd5fc746 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 40px; }
.c5f5d85d6 { text-align: center; padding: 32px 20px; background: var(--bg-primary); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.cc84cf972 { font-size: 2rem; margin-bottom: 12px; }
.c96930fac { font-size: 1.75rem; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.c53939b73 { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 8px; }
.c8e4491b4 { font-size: 0.8rem; padding: 3px 10px; border-radius: var(--radius-full); display: inline-block; }
.c8e4491b4.cb1247d62 { background: #D4EDDA; color: #155724; }
.c8e4491b4.cb8f3d816 { background: #E2E3E5; color: #383D41; }
.c1207f1dc { text-align: center; }
.c7227db87 { font-size: 1rem; color: var(--text-secondary); max-width: 640px; margin: 0 auto 24px; line-height: 1.8; }

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

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

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

/* ===== Filter Section ===== */
.c9735265e { margin-bottom: 40px; }
.c927bedb3 { display: flex; gap: 16px; flex-wrap: wrap; padding: 20px; background: var(--bg-secondary); border-radius: var(--radius-md); }
.c0fd76707 { display: flex; flex-direction: column; gap: 4px; }
.c56c627df { font-size: 0.8rem; color: var(--text-secondary); font-weight: 500; }
.c633be042 { 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 ===== */
.c6bdcb0ce, .pricing-section { padding: 60px 0; }
.c6bdcb0ce h2, .pricing-section h2 { font-size: 1.75rem; font-weight: 700; text-align: center; margin-bottom: 36px; }
.c932e6a09 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.c9f485639 { padding: 32px 24px; border: 1px solid var(--border); border-radius: var(--radius-md); text-align: center; transition: transform var(--transition), box-shadow var(--transition); }
.c9f485639:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.c9f485639.ca6939321 { border-color: var(--primary); position: relative; }
.c9f485639.ca6939321::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; }
.c9f485639 h3 { font-size: 1.2rem; margin-bottom: 12px; }
.c9f485639 .c1456b260 { font-size: 2rem; font-weight: 800; color: var(--primary); margin-bottom: 20px; }
.c9f485639 ul { text-align: left; }
.c9f485639 ul li { padding: 8px 0; font-size: 0.9rem; color: var(--text-secondary); border-bottom: 1px solid var(--border); }
.c9f485639 ul li:last-child { border-bottom: none; }

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

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

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

/* ===== Detail Page ===== */
.c25253b65 { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; margin-bottom: 60px; }
.c29a0ffb3 { border-radius: var(--radius-md); overflow: hidden; }
.c29a0ffb3 img { width: 100%; height: auto; }
.c801be080 h1 { font-size: 1.75rem; font-weight: 700; margin-bottom: 12px; }
.c42d2a094 { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.c00fb340f { width: 48px; height: 48px; border-radius: var(--radius-full); object-fit: cover; }
.c42d2a094 a { color: var(--primary); font-weight: 500; }
.c1792adcf { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.ccb6db537 { margin-bottom: 24px; color: var(--text-secondary); line-height: 1.8; }
.cb8808083 { margin-bottom: 24px; padding: 20px; background: var(--bg-secondary); border-radius: var(--radius-md); }
.cf193fed0 { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.cf193fed0:last-child { border-bottom: none; }
.cd3c800b4 { color: var(--text-secondary); }
.c2cd1ed51 { font-weight: 500; }
.cce75bb84 h3 { font-size: 1.2rem; margin-bottom: 16px; }
.c347c9e9a { margin-bottom: 20px; }
.c4abef25e { margin-bottom: 12px; }
.c4abef25e 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); }
.c4abef25e input:checked + label { border-color: var(--primary); background: #FFF5F4; }
.cd1c616ab { font-weight: 600; flex: 1; }
.cd27f85ce { font-size: 1.1rem; font-weight: 700; color: var(--primary); }
.c44bd10ea { font-size: 0.8rem; color: var(--text-secondary); }

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

/* ===== Process Steps ===== */
.c728dd8de { padding: 60px 0; }
.c728dd8de h2 { font-size: 1.75rem; font-weight: 700; text-align: center; margin-bottom: 36px; }
.c57252c5e { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.c45a62c02 { text-align: center; padding: 24px; }
.c3252e49d { 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; }
.c45a62c02 h3 { font-size: 1rem; margin-bottom: 8px; }
.c45a62c02 p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

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

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

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

/* ===== Community ===== */
.ca1a99332 { display: flex; flex-direction: column; gap: 16px; }
.c0fa80529 { padding: 20px; border: 1px solid var(--border); border-radius: var(--radius-md); }
.c74461d4f { 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; }
.c0fa80529 h3 { font-size: 1.05rem; margin-bottom: 6px; }
.c0fa80529 p { font-size: 0.9rem; color: var(--text-secondary); }

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

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

/* ===== Contact Form ===== */
.c58c95a43 { margin-top: 40px; padding-top: 40px; border-top: 1px solid var(--border); }
.c58c95a43 h2 { font-size: 1.25rem; margin-bottom: 20px; }
.c7bf5a975 { max-width: 500px; }
.c3a5e9e3a { margin-bottom: 20px; }
.c3a5e9e3a label { display: block; font-size: 0.9rem; font-weight: 500; margin-bottom: 6px; }
.c3a5e9e3a input, .c3a5e9e3a select, .c3a5e9e3a 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); }
.c3a5e9e3a input:focus, .c3a5e9e3a select:focus, .c3a5e9e3a textarea:focus { border-color: var(--primary); }

/* ===== Search Page ===== */
.c8efbbb35 { padding-top: calc(var(--header-height) + 60px); }
.c4d6f783e { max-width: 640px; margin: 0 auto; text-align: center; }
.c4d6f783e h1 { font-size: 2rem; margin-bottom: 24px; }
.c3fae6cfa { display: flex; gap: 0; margin-bottom: 32px; }
.c76886305 { flex: 1; padding: 16px 24px; border: 2px solid var(--border); border-radius: var(--radius-full) 0 0 var(--radius-full); font-size: 1rem; }
.c76886305:focus { border-color: var(--primary); }
.c0d602c71 { padding: 16px 32px; background: var(--primary); color: #fff; font-weight: 600; border-radius: 0 var(--radius-full) var(--radius-full) 0; }
.cfc38555c { text-align: left; }
.cfc38555c h3 { font-size: 1rem; margin-bottom: 12px; color: var(--text-secondary); }
.c17811881 { display: flex; flex-wrap: wrap; gap: 10px; }
.c17811881 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); }
.c17811881 a:hover { background: var(--primary); color: #fff; }
.c6a9a4ea8 { color: var(--text-light); margin-top: 40px; }

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

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

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

/* ===== Mobile Nav Overlay ===== */
.cb85a7a69 { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 999; opacity: 0; pointer-events: none; transition: opacity var(--transition); }
.cb85a7a69.c7a0874bc { opacity: 1; pointer-events: all; }
.c98eeb8fb { position: absolute; top: 0; right: 0; width: 280px; height: 100%; background: var(--bg-primary); padding: 80px 24px 24px; }
.c98eeb8fb ul li { margin-bottom: 16px; }
.c98eeb8fb 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) {
    .c5fe093ec { grid-template-columns: 1fr; gap: 40px; }
    .c0d65f35e { grid-template-columns: repeat(2, 1fr); }
    .cbf3bc784 { columns: 2; }
    .cbd0b37ef { grid-template-columns: repeat(3, 1fr); }
    .cfb98744b { grid-template-columns: repeat(2, 1fr); }
    .ce8e51b9a { grid-template-columns: repeat(2, 1fr); }
    .cbd5fc746 { grid-template-columns: repeat(2, 1fr); }
    .c72fcbd1e { grid-template-columns: repeat(2, 1fr); }
    .caa1add7a { grid-template-columns: 1fr; gap: 40px; }
    .c25253b65 { grid-template-columns: 1fr; }
    .c0c22202b { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    :root { --header-height: 60px; }
    .c1001a491 { display: none; }
    .ca2cb890b { display: flex; }
    .c4f1be786 { min-height: auto; padding: calc(var(--header-height) + 40px) 16px 40px; }
    .c68c82d92 { font-size: 1.75rem; }
    .c6ae633e6 { font-size: 1rem; }
    .c0d65f35e { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .c77bac5c9 { font-size: 1.25rem; }
    .c3ed84ab7 { font-size: 1.5rem; }
    .cbf3bc784 { columns: 1; }
    .cbd0b37ef { grid-template-columns: repeat(2, 1fr); }
    .cfb98744b { grid-template-columns: 1fr; }
    .ce8e51b9a { grid-template-columns: 1fr; }
    .cbd5fc746 { grid-template-columns: 1fr; }
    .c72fcbd1e { grid-template-columns: 1fr; }
    .c932e6a09 { grid-template-columns: 1fr; }
    .c75f4217e { grid-template-columns: 1fr; }
    .c9d59f7d2, .ced1affca { grid-template-columns: 1fr; }
    .cdb762b79 { grid-template-columns: 1fr; }
    .c4f5bba03 { grid-template-columns: 1fr; }
    .cecac7cda { font-size: 1.75rem; }
    .c2d171825 { flex-direction: column; text-align: center; }
    .c5368ba04 { justify-content: center; flex-wrap: wrap; }
    .c39328cf1 { flex-direction: column; align-items: center; text-align: center; }
    .c927bedb3 { flex-direction: column; }
    .cc3e3caa9 { flex-direction: column; align-items: center; }
    section { padding: 50px 0; }
}

@media (max-width: 480px) {
    .c68c82d92 { font-size: 1.5rem; }
    .c1bad4997 { flex-direction: column; }
    .cea616864, .cd00b16f3 { width: 100%; text-align: center; }
    .cbd0b37ef { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}
