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

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

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

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

/* ===== Section Common ===== */
.c495e92c1 { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.cafcf951d { text-align: center; margin-bottom: 48px; }
.cea3fb612 { font-size: 2rem; font-weight: 700; margin-bottom: 12px; }
.c088ae41b { 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 ===== */
.c4ee614c1 { columns: 3; column-gap: 20px; }
.cee65a0be { break-inside: avoid; margin-bottom: 20px; }
.c1ae9d943 { 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); }
.c1ae9d943:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.c2e21b45b { position: relative; overflow: hidden; }
.c2e21b45b img { width: 100%; transition: transform var(--transition); }
.c1ae9d943:hover .c2e21b45b img { transform: scale(1.03); }
.c8f2886ba { 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); }
.c1ae9d943:hover .c8f2886ba { opacity: 1; }
.cb8ed7770 { color: #fff; font-weight: 700; font-size: 1rem; }
.cbb3dd273 { 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); }
.c14364664 { padding: 16px; }
.c20e0f53a { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.c110e05b3 { font-size: 0.85rem; color: var(--text-secondary); }

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

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

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

/* ===== Creator Growth ===== */
.c56d8609a { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 40px; }
.c0e31e45d { text-align: center; padding: 32px 20px; background: var(--bg-primary); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.c38011648 { font-size: 2rem; margin-bottom: 12px; }
.cbb35a684 { font-size: 1.75rem; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.c58f671a8 { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 8px; }
.cff038849 { font-size: 0.8rem; padding: 3px 10px; border-radius: var(--radius-full); display: inline-block; }
.cff038849.cf8bec8e2 { background: #D4EDDA; color: #155724; }
.cff038849.c149f74d1 { background: #E2E3E5; color: #383D41; }
.c04c5a9ed { text-align: center; }
.c49304dbb { font-size: 1rem; color: var(--text-secondary); max-width: 640px; margin: 0 auto 24px; line-height: 1.8; }

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

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

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

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

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

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

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

/* ===== Detail Page ===== */
.c62ebc190 { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; margin-bottom: 60px; }
.c46882ef3 { border-radius: var(--radius-md); overflow: hidden; }
.c46882ef3 img { width: 100%; height: auto; }
.cebcd3eda h1 { font-size: 1.75rem; font-weight: 700; margin-bottom: 12px; }
.cd315408e { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.c6ff02597 { width: 48px; height: 48px; border-radius: var(--radius-full); object-fit: cover; }
.cd315408e a { color: var(--primary); font-weight: 500; }
.c51c2abf0 { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.c3d8640c9 { margin-bottom: 24px; color: var(--text-secondary); line-height: 1.8; }
.cbd865542 { margin-bottom: 24px; padding: 20px; background: var(--bg-secondary); border-radius: var(--radius-md); }
.c3c73a86d { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.c3c73a86d:last-child { border-bottom: none; }
.c762a0765 { color: var(--text-secondary); }
.ceccbd4cb { font-weight: 500; }
.c1ec2e0da h3 { font-size: 1.2rem; margin-bottom: 16px; }
.c4e1f8f15 { margin-bottom: 20px; }
.c8f2b897f { margin-bottom: 12px; }
.c8f2b897f 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); }
.c8f2b897f input:checked + label { border-color: var(--primary); background: #FFF5F4; }
.c7e2e3243 { font-weight: 600; flex: 1; }
.c60bb426f { font-size: 1.1rem; font-weight: 700; color: var(--primary); }
.c70f945f6 { font-size: 0.8rem; color: var(--text-secondary); }

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ===== Mobile Nav Overlay ===== */
.c958006e3 { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 999; opacity: 0; pointer-events: none; transition: opacity var(--transition); }
.c958006e3.ceb246503 { opacity: 1; pointer-events: all; }
.cbf68c8d4 { position: absolute; top: 0; right: 0; width: 280px; height: 100%; background: var(--bg-primary); padding: 80px 24px 24px; }
.cbf68c8d4 ul li { margin-bottom: 16px; }
.cbf68c8d4 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) {
    .c82919254 { grid-template-columns: 1fr; gap: 40px; }
    .cc5d296d2 { grid-template-columns: repeat(2, 1fr); }
    .c4ee614c1 { columns: 2; }
    .c1c5ad0dd { grid-template-columns: repeat(3, 1fr); }
    .c851bf34f { grid-template-columns: repeat(2, 1fr); }
    .c7f335bf8 { grid-template-columns: repeat(2, 1fr); }
    .c56d8609a { grid-template-columns: repeat(2, 1fr); }
    .caf7f9c6e { grid-template-columns: repeat(2, 1fr); }
    .ca1c934dc { grid-template-columns: 1fr; gap: 40px; }
    .c62ebc190 { grid-template-columns: 1fr; }
    .c7b3083aa { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    :root { --header-height: 60px; }
    .c26381d6f { display: none; }
    .c507df676 { display: flex; }
    .c1b8b1b36 { min-height: auto; padding: calc(var(--header-height) + 40px) 16px 40px; }
    .c2efd8ee5 { font-size: 1.75rem; }
    .c8ebf84f2 { font-size: 1rem; }
    .cc5d296d2 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .ce886ba45 { font-size: 1.25rem; }
    .cea3fb612 { font-size: 1.5rem; }
    .c4ee614c1 { columns: 1; }
    .c1c5ad0dd { grid-template-columns: repeat(2, 1fr); }
    .c851bf34f { grid-template-columns: 1fr; }
    .c7f335bf8 { grid-template-columns: 1fr; }
    .c56d8609a { grid-template-columns: 1fr; }
    .caf7f9c6e { grid-template-columns: 1fr; }
    .cf632398d { grid-template-columns: 1fr; }
    .c3845facb { grid-template-columns: 1fr; }
    .c93bf4bf4, .c24f4bf48 { grid-template-columns: 1fr; }
    .c4b2af39b { grid-template-columns: 1fr; }
    .c82295f6f { grid-template-columns: 1fr; }
    .c7d59fc3b { font-size: 1.75rem; }
    .c45325057 { flex-direction: column; text-align: center; }
    .c9f4ab9c0 { justify-content: center; flex-wrap: wrap; }
    .c55ceccd7 { flex-direction: column; align-items: center; text-align: center; }
    .cf38fe63c { flex-direction: column; }
    .c4f30afda { flex-direction: column; align-items: center; }
    section { padding: 50px 0; }
}

@media (max-width: 480px) {
    .c2efd8ee5 { font-size: 1.5rem; }
    .c10af21ec { flex-direction: column; }
    .c39d38aaa, .cd1f81b71 { width: 100%; text-align: center; }
    .c1c5ad0dd { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}
