/* video-tiktok-idol — tool styles scoped to .tool-card */

.tool-card .header h1 { font-size: 32px; margin-bottom: 10px; }
.tool-card .header p { font-size: 18px; opacity: 0.95; }
.tool-card .idea-category {
            background: linear-gradient(135deg, #a855f715 0%, #ec489915 100%);
            padding: 30px;
            border-radius: 12px;
            border-left: 4px solid #a855f7;
            margin-bottom: 30px;
        }
.tool-card .idea-category h2 {
            color: #a855f7;
            font-size: 24px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
.tool-card .idea-list {
            display: grid;
            gap: 15px;
        }
.tool-card .idea-item {
            background: white;
            padding: 20px;
            border-radius: 8px;
            border-left: 3px solid #a855f7;
            transition: transform 0.2s;
        }
.tool-card .idea-item:hover {
            transform: translateX(5px);
            box-shadow: 0 4px 12px rgba(168, 85, 247, 0.2);
        }
.tool-card .idea-title {
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 8px;
            font-size: 16px;
        }
.tool-card .idea-description {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
        }
.tool-card .seo-content {
            margin-top: 40px;
            line-height: 1.9;
            color: #444;
            font-size: 15px;
        }
.tool-card .seo-content .container {
            padding: 0 20px;
        }
.tool-card .seo-content h2, .tool-card .seo-content h3 {
            font-size: 18px;
            font-weight: 600;
            margin-top: 24px;
            margin-bottom: 10px;
            color: #667eea;
        }
.tool-card .seo-content p {
            margin-bottom: 14px;
            color: #555;
        }
.tool-card .seo-content ul, .tool-card .seo-content ol {
            margin-left: 22px;
            margin-bottom: 16px;
        }
.tool-card .seo-content li {
            margin-bottom: 8px;
            color: #555;
        }
.tool-card .examples-content {
            margin-top: 40px;
            line-height: 1.9;
            color: #444;
            font-size: 15px;
        }
.tool-card .examples-content .container {
            padding: 0 20px;
        }
.tool-card .examples-content h2, .tool-card .examples-content h3 {
            font-size: 18px;
            font-weight: 600;
            margin-top: 24px;
            margin-bottom: 10px;
            color: #667eea;
        }
.tool-card .examples-content p {
            margin-bottom: 14px;
            color: #555;
        }
.tool-card .examples-content pre {
            background: #1e1e2e;
            color: #cdd6f4;
            padding: 18px 20px;
            border-radius: 8px;
            overflow-x: auto;
            margin-bottom: 18px;
            font-size: 13px;
            line-height: 1.6;
        }
.tool-card .examples-content code {
            font-family: 'Fira Code', 'Cascadia Code', 'Monaco', 'Menlo', monospace;
        }
.tool-card .examples-content ul, .tool-card .examples-content ol {
            margin-left: 22px;
            margin-bottom: 16px;
        }
.tool-card .examples-content li {
            margin-bottom: 8px;
            color: #555;
        }
