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

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

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

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

/* ===== Section Common ===== */
.c62935ee9 { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.c6c68aaa0 { text-align: center; margin-bottom: 48px; }
.c86767e32 { font-size: 2rem; font-weight: 700; margin-bottom: 12px; }
.c84e4f90e { 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 ===== */
.cf45a223b { columns: 3; column-gap: 20px; }
.c420958ed { break-inside: avoid; margin-bottom: 20px; }
.c7d07aa63 { 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); }
.c7d07aa63:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cfbbbd795 { position: relative; overflow: hidden; }
.cfbbbd795 img { width: 100%; transition: transform var(--transition); }
.c7d07aa63:hover .cfbbbd795 img { transform: scale(1.03); }
.ccef63b44 { 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); }
.c7d07aa63:hover .ccef63b44 { opacity: 1; }
.c6039f05e { color: #fff; font-weight: 700; font-size: 1rem; }
.c67b92400 { 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); }
.ca55fcaaa { padding: 16px; }
.cc85a8e67 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.ca47dc8fa { font-size: 0.85rem; color: var(--text-secondary); }

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

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

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

/* ===== Creator Growth ===== */
.cbbe6105f { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 40px; }
.c75595b7f { text-align: center; padding: 32px 20px; background: var(--bg-primary); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.cf54c3441 { font-size: 2rem; margin-bottom: 12px; }
.c6e8fd6d9 { font-size: 1.75rem; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.ce2c15e1b { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 8px; }
.c0b4244d9 { font-size: 0.8rem; padding: 3px 10px; border-radius: var(--radius-full); display: inline-block; }
.c0b4244d9.c53ed5c1c { background: #D4EDDA; color: #155724; }
.c0b4244d9.c3d4d8ce8 { background: #E2E3E5; color: #383D41; }
.c57edd002 { text-align: center; }
.c76b53d37 { font-size: 1rem; color: var(--text-secondary); max-width: 640px; margin: 0 auto 24px; line-height: 1.8; }

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

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

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

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

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

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

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

/* ===== Detail Page ===== */
.cfa5eb4fc { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; margin-bottom: 60px; }
.c7ffc7e3a { border-radius: var(--radius-md); overflow: hidden; }
.c7ffc7e3a img { width: 100%; height: auto; }
.c7772bf1c h1 { font-size: 1.75rem; font-weight: 700; margin-bottom: 12px; }
.ceae7cc52 { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.c3e319516 { width: 48px; height: 48px; border-radius: var(--radius-full); object-fit: cover; }
.ceae7cc52 a { color: var(--primary); font-weight: 500; }
.c92412814 { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.c7d35ebc7 { margin-bottom: 24px; color: var(--text-secondary); line-height: 1.8; }
.c09c660d7 { margin-bottom: 24px; padding: 20px; background: var(--bg-secondary); border-radius: var(--radius-md); }
.cd136d561 { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.cd136d561:last-child { border-bottom: none; }
.c5008a86d { color: var(--text-secondary); }
.c9dc6468b { font-weight: 500; }
.c9c2f204d h3 { font-size: 1.2rem; margin-bottom: 16px; }
.c36df762c { margin-bottom: 20px; }
.c0d51d110 { margin-bottom: 12px; }
.c0d51d110 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); }
.c0d51d110 input:checked + label { border-color: var(--primary); background: #FFF5F4; }
.ca8e5d306 { font-weight: 600; flex: 1; }
.ce71d9bea { font-size: 1.1rem; font-weight: 700; color: var(--primary); }
.c09296959 { font-size: 0.8rem; color: var(--text-secondary); }

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ===== Mobile Nav Overlay ===== */
.c1f15ea28 { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 999; opacity: 0; pointer-events: none; transition: opacity var(--transition); }
.c1f15ea28.c4e129a91 { opacity: 1; pointer-events: all; }
.caff3e03a { position: absolute; top: 0; right: 0; width: 280px; height: 100%; background: var(--bg-primary); padding: 80px 24px 24px; }
.caff3e03a ul li { margin-bottom: 16px; }
.caff3e03a 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) {
    .cfd522ebf { grid-template-columns: 1fr; gap: 40px; }
    .cb58ff1b8 { grid-template-columns: repeat(2, 1fr); }
    .cf45a223b { columns: 2; }
    .ce8249cf6 { grid-template-columns: repeat(3, 1fr); }
    .c677737e3 { grid-template-columns: repeat(2, 1fr); }
    .c3373dc1b { grid-template-columns: repeat(2, 1fr); }
    .cbbe6105f { grid-template-columns: repeat(2, 1fr); }
    .cf93eeaeb { grid-template-columns: repeat(2, 1fr); }
    .c71d14965 { grid-template-columns: 1fr; gap: 40px; }
    .cfa5eb4fc { grid-template-columns: 1fr; }
    .ca4952816 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    :root { --header-height: 60px; }
    .c9e20d781 { display: none; }
    .ce74ed26b { display: flex; }
    .cd5e6235e { min-height: auto; padding: calc(var(--header-height) + 40px) 16px 40px; }
    .c6fe424df { font-size: 1.75rem; }
    .c83a90507 { font-size: 1rem; }
    .cb58ff1b8 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .c0bf88bf6 { font-size: 1.25rem; }
    .c86767e32 { font-size: 1.5rem; }
    .cf45a223b { columns: 1; }
    .ce8249cf6 { grid-template-columns: repeat(2, 1fr); }
    .c677737e3 { grid-template-columns: 1fr; }
    .c3373dc1b { grid-template-columns: 1fr; }
    .cbbe6105f { grid-template-columns: 1fr; }
    .cf93eeaeb { grid-template-columns: 1fr; }
    .c62abe12a { grid-template-columns: 1fr; }
    .c49f88abb { grid-template-columns: 1fr; }
    .c26b1766f, .c34dfc77f { grid-template-columns: 1fr; }
    .c014019cb { grid-template-columns: 1fr; }
    .c34648f88 { grid-template-columns: 1fr; }
    .c8104deca { font-size: 1.75rem; }
    .cb59fe606 { flex-direction: column; text-align: center; }
    .c6f12c6a6 { justify-content: center; flex-wrap: wrap; }
    .c7183f087 { flex-direction: column; align-items: center; text-align: center; }
    .cb196324d { flex-direction: column; }
    .c292624a8 { flex-direction: column; align-items: center; }
    section { padding: 50px 0; }
}

@media (max-width: 480px) {
    .c6fe424df { font-size: 1.5rem; }
    .c462c8c86 { flex-direction: column; }
    .c8a380148, .c7b493784 { width: 100%; text-align: center; }
    .ce8249cf6 { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}
