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

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

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

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

/* ===== Section Common ===== */
.c65f84ad0 { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.c2a18ce05 { text-align: center; margin-bottom: 48px; }
.c9210df27 { font-size: 2rem; font-weight: 700; margin-bottom: 12px; }
.c184c73b5 { 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 ===== */
.c5344424c { columns: 3; column-gap: 20px; }
.c40930fce { break-inside: avoid; margin-bottom: 20px; }
.ca1b504de { 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); }
.ca1b504de:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.c9649b75d { position: relative; overflow: hidden; }
.c9649b75d img { width: 100%; transition: transform var(--transition); }
.ca1b504de:hover .c9649b75d img { transform: scale(1.03); }
.c61800079 { 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); }
.ca1b504de:hover .c61800079 { opacity: 1; }
.c5372433c { color: #fff; font-weight: 700; font-size: 1rem; }
.c150d9465 { 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); }
.c5b1a44b7 { padding: 16px; }
.cb89620bb { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.caa87f492 { font-size: 0.85rem; color: var(--text-secondary); }

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

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

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

/* ===== Creator Growth ===== */
.c148c463f { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 40px; }
.ce8054ebd { text-align: center; padding: 32px 20px; background: var(--bg-primary); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.c10d46b59 { font-size: 2rem; margin-bottom: 12px; }
.cb6b06c12 { font-size: 1.75rem; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.c843265ee { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 8px; }
.c0d95f174 { font-size: 0.8rem; padding: 3px 10px; border-radius: var(--radius-full); display: inline-block; }
.c0d95f174.c2ab0aeb2 { background: #D4EDDA; color: #155724; }
.c0d95f174.c2622125a { background: #E2E3E5; color: #383D41; }
.c7985a255 { text-align: center; }
.c80268e9a { font-size: 1rem; color: var(--text-secondary); max-width: 640px; margin: 0 auto 24px; line-height: 1.8; }

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

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

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

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

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

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

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

/* ===== Detail Page ===== */
.ccb437661 { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; margin-bottom: 60px; }
.c64d0a698 { border-radius: var(--radius-md); overflow: hidden; }
.c64d0a698 img { width: 100%; height: auto; }
.cca0634dd h1 { font-size: 1.75rem; font-weight: 700; margin-bottom: 12px; }
.c93d82277 { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.c88c3c9c7 { width: 48px; height: 48px; border-radius: var(--radius-full); object-fit: cover; }
.c93d82277 a { color: var(--primary); font-weight: 500; }
.c10722b59 { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.c594b4f31 { margin-bottom: 24px; color: var(--text-secondary); line-height: 1.8; }
.c042466fa { margin-bottom: 24px; padding: 20px; background: var(--bg-secondary); border-radius: var(--radius-md); }
.c238a8cee { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.c238a8cee:last-child { border-bottom: none; }
.c034803b9 { color: var(--text-secondary); }
.cc80c07b0 { font-weight: 500; }
.c73d2201d h3 { font-size: 1.2rem; margin-bottom: 16px; }
.cf5abdd5b { margin-bottom: 20px; }
.c8bcc5902 { margin-bottom: 12px; }
.c8bcc5902 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); }
.c8bcc5902 input:checked + label { border-color: var(--primary); background: #FFF5F4; }
.c5f5a227f { font-weight: 600; flex: 1; }
.ce8bfc439 { font-size: 1.1rem; font-weight: 700; color: var(--primary); }
.cab3bf2c5 { font-size: 0.8rem; color: var(--text-secondary); }

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ===== Mobile Nav Overlay ===== */
.cf0f62d6d { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 999; opacity: 0; pointer-events: none; transition: opacity var(--transition); }
.cf0f62d6d.cebc53732 { opacity: 1; pointer-events: all; }
.c9fa54a92 { position: absolute; top: 0; right: 0; width: 280px; height: 100%; background: var(--bg-primary); padding: 80px 24px 24px; }
.c9fa54a92 ul li { margin-bottom: 16px; }
.c9fa54a92 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) {
    .cdb5ef9d6 { grid-template-columns: 1fr; gap: 40px; }
    .cc072c888 { grid-template-columns: repeat(2, 1fr); }
    .c5344424c { columns: 2; }
    .c7a89a604 { grid-template-columns: repeat(3, 1fr); }
    .c6a5bcd96 { grid-template-columns: repeat(2, 1fr); }
    .c34dd812f { grid-template-columns: repeat(2, 1fr); }
    .c148c463f { grid-template-columns: repeat(2, 1fr); }
    .caf7942b7 { grid-template-columns: repeat(2, 1fr); }
    .cb2b5d7c7 { grid-template-columns: 1fr; gap: 40px; }
    .ccb437661 { grid-template-columns: 1fr; }
    .cdf7b2104 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    :root { --header-height: 60px; }
    .cc966dd0b { display: none; }
    .cce1a4e5c { display: flex; }
    .c1716c4aa { min-height: auto; padding: calc(var(--header-height) + 40px) 16px 40px; }
    .cf9d4bf11 { font-size: 1.75rem; }
    .cce77a7a6 { font-size: 1rem; }
    .cc072c888 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .cb7dfe538 { font-size: 1.25rem; }
    .c9210df27 { font-size: 1.5rem; }
    .c5344424c { columns: 1; }
    .c7a89a604 { grid-template-columns: repeat(2, 1fr); }
    .c6a5bcd96 { grid-template-columns: 1fr; }
    .c34dd812f { grid-template-columns: 1fr; }
    .c148c463f { grid-template-columns: 1fr; }
    .caf7942b7 { grid-template-columns: 1fr; }
    .c401b896c { grid-template-columns: 1fr; }
    .ca55ca432 { grid-template-columns: 1fr; }
    .c0a601aee, .c365ecafd { grid-template-columns: 1fr; }
    .c184f7d66 { grid-template-columns: 1fr; }
    .c966a4bc2 { grid-template-columns: 1fr; }
    .c6e2a2700 { font-size: 1.75rem; }
    .cdbf90e52 { flex-direction: column; text-align: center; }
    .c17d46aa5 { justify-content: center; flex-wrap: wrap; }
    .ce6fc7e4e { flex-direction: column; align-items: center; text-align: center; }
    .c70f13e26 { flex-direction: column; }
    .c7234f37c { flex-direction: column; align-items: center; }
    section { padding: 50px 0; }
}

@media (max-width: 480px) {
    .cf9d4bf11 { font-size: 1.5rem; }
    .c5cf03e0a { flex-direction: column; }
    .cdd8bc978, .c7e70b017 { width: 100%; text-align: center; }
    .c7a89a604 { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}
